chore: Version 0.3 #136

Open
aniva wants to merge 487 commits from dev into main
1 changed files with 3 additions and 2 deletions
Showing only changes of commit cfd74aba91 - 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 ];
};
};
};
}