adding flake with sbcl and direnv

This commit is contained in:
efim
2022-07-24 12:01:17 +00:00
parent 067aebaf81
commit fe0950582d
4 changed files with 57 additions and 0 deletions

16
flake.nix Normal file
View File

@@ -0,0 +1,16 @@
{
description = "learning Common Lisp";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = pkgs.mkShell {
buildInputs = [ pkgs.sbcl ];
};
}
);
# see https://serokell.io/blog/practical-nix-flakes
}