chore: Version bump and toolchain cleanup #51

Merged
aniva merged 4 commits from misc/toolchain into dev 2024-03-28 22:36:26 -07:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit bdb060b79f - Show all commits

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 ];
};
};
};
}