build: Dev shell

This commit is contained in:
Leni Aniva 2024-03-28 22:26:46 -07:00
parent c5404b8210
commit bdb060b79f
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 3 additions and 2 deletions

View File

@ -37,7 +37,6 @@
};
project = leanPkgs.buildLeanPackage {
name = "Pantograph";
#roots = pkgs.lib.optional pkgs.stdenv.isDarwin [ "Main" "Pantograph" ];
roots = [ "Main" "Pantograph" ];
src = pkgs.lib.cleanSourceWith {
src = ./.;
@ -74,7 +73,9 @@
${test.executable}/bin/test > $out
'';
};
devShells.default = project.devShell;
devShells.default = pkgs.mkShell {
buildInputs = [ leanPkgs.lean-all leanPkgs.lean ];
};
};
};
}