lol

Merge pull request #126671 from cab404/super-slicer-2-3-56-4

authored by

Bernardo Meurer and committed by
GitHub
44c5e2b2 80babde8

+6 -7
+6 -7
pkgs/applications/misc/prusa-slicer/super-slicer.nix
··· 1 1 { lib, fetchFromGitHub, makeDesktopItem, prusa-slicer }: 2 2 let 3 3 appname = "SuperSlicer"; 4 - version = "2.2.54.2"; 4 + version = "2.3.56.5"; 5 5 pname = "super-slicer"; 6 6 description = "PrusaSlicer fork with more features and faster development cycle"; 7 7 override = super: { ··· 10 10 src = fetchFromGitHub { 11 11 owner = "supermerill"; 12 12 repo = "SuperSlicer"; 13 - sha256 = "sha256-ThmsxFXI1uReK+JwpHrIWzHpBdIOP77kDjv+QaK+Azk="; 13 + sha256 = "sha256-Gg+LT1YKyUGNJE9XvWE1LSlIQ6Vq5GfVBTUw/A7Qx7E="; 14 14 rev = version; 15 + fetchSubmodules = true; 15 16 }; 16 17 18 + # We don't need PS overrides anymore, and gcode-viewer is embedded in the binary. 19 + postInstall = null; 20 + 17 21 # See https://github.com/supermerill/SuperSlicer/issues/432 18 22 cmakeFlags = super.cmakeFlags ++ [ 19 23 "-DSLIC3R_BUILD_TESTS=0" 20 24 ]; 21 - 22 - postInstall = '' 23 - mkdir -p "$out/share/pixmaps/" 24 - ln -s "$out/share/SuperSlicer/icons/Slic3r.png" "$out/share/pixmaps/${appname}.png" 25 - ''; 26 25 27 26 desktopItems = [ 28 27 (makeDesktopItem {