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 7 additions and 2 deletions
Showing only changes of commit c5404b8210 - Show all commits

View File

@ -39,7 +39,13 @@
name = "Pantograph";
#roots = pkgs.lib.optional pkgs.stdenv.isDarwin [ "Main" "Pantograph" ];
roots = [ "Main" "Pantograph" ];
src = ./.;
src = pkgs.lib.cleanSourceWith {
src = ./.;
filter = path: type:
!(pkgs.lib.hasInfix "/Test/" path) &&
!(pkgs.lib.hasSuffix ".md" path) &&
!(pkgs.lib.hasSuffix "Makefile" path);
};
};
test = leanPkgs.buildLeanPackage {
name = "Test";
@ -58,7 +64,6 @@
packages = {
inherit (leanPkgs) lean lean-all;
inherit (project) sharedLib executable;
test = test.executable;
default = project.executable;
};
checks = {