lean & prusa-slicer

This commit is contained in:
2024-05-02 08:43:29 +02:00
parent 45932905cb
commit f1fad8c870
26 changed files with 192 additions and 338 deletions

13
overlays/lean.nix Normal file
View File

@@ -0,0 +1,13 @@
final: prev: {
lean4 = prev.lean4.overrideAttrs (old: rec {
version = "4.6.1";
src = prev.fetchFromGitHub {
owner = "leanprover";
repo = "lean4";
rev = "v${version}";
hash = "sha256-wUqGADwSocg2ciycCxg9qp+vJLJ2otA/5JpTrkFrDoQ=";
};
});
}