This commit is contained in:
2024-11-22 23:25:55 +01:00
parent 4c0efbafa0
commit e70a66a907
3 changed files with 72 additions and 52 deletions

View File

@@ -20,7 +20,23 @@ in
lpc21isp
dfu-util
cura
orca-slicer
openscad
(orca-slicer.overrideAttrs (
final: prev: {
version = "2.2.0";
src = fetchFromGitHub {
owner = "SoftFever";
repo = "OrcaSlicer";
rev = "v${final.version}";
hash = "sha256-h+cHWhrp894KEbb3ic2N4fNTn13WlOSYoMsaof0RvRI=";
};
patches = builtins.filter (
p:
(builtins.baseNameOf p) != "0002-fix-build-for-gcc-13.diff"
&& (builtins.baseNameOf p) != "meshboolean-const.patch"
) prev.patches;
}
))
freecad
];
};