prusa-slicer: 2.9.2 -> 2.9.3 (#443800)

authored by Arne Keller and committed by GitHub b841d90d 6363797b

+27 -18
+27 -18
pkgs/applications/misc/prusa-slicer/default.nix
··· 24 mpfr, 25 nanosvg, 26 nlopt, 27 opencascade-occt_7_6_1, 28 openvdb, 29 qhull, ··· 39 systemd, 40 udevCheckHook, 41 z3, 42 wxGTK-override ? null, 43 opencascade-override ? null, 44 }: ··· 61 in 62 stdenv.mkDerivation (finalAttrs: { 63 pname = "prusa-slicer"; 64 - version = "2.9.2"; 65 66 src = fetchFromGitHub { 67 owner = "prusa3d"; 68 repo = "PrusaSlicer"; 69 - hash = "sha256-j/fdEgcFq0nWBLpyapwZIbBIXCnqEWV6Tk+6sTHk/Bc="; 70 rev = "version_${finalAttrs.version}"; 71 }; 72 ··· 132 catch2_3 133 webkitgtk_4_1 134 z3 135 ] 136 ++ lib.optionals withSystemd [ 137 systemd ··· 223 "libslic3r_tests|sla_print_tests" 224 ]; 225 226 - meta = 227 - with lib; 228 - { 229 - description = "G-code generator for 3D printer"; 230 - homepage = "https://github.com/prusa3d/PrusaSlicer"; 231 - license = licenses.agpl3Plus; 232 - maintainers = with maintainers; [ 233 - tweber 234 - tmarkus 235 - fliegendewurst 236 - ]; 237 - platforms = platforms.unix; 238 - } 239 - // lib.optionalAttrs (stdenv.hostPlatform.isDarwin) { 240 - mainProgram = "PrusaSlicer"; 241 - }; 242 })
··· 24 mpfr, 25 nanosvg, 26 nlopt, 27 + nlohmann_json, 28 opencascade-occt_7_6_1, 29 openvdb, 30 qhull, ··· 40 systemd, 41 udevCheckHook, 42 z3, 43 + nix-update-script, 44 wxGTK-override ? null, 45 opencascade-override ? null, 46 }: ··· 63 in 64 stdenv.mkDerivation (finalAttrs: { 65 pname = "prusa-slicer"; 66 + version = "2.9.3"; 67 68 src = fetchFromGitHub { 69 owner = "prusa3d"; 70 repo = "PrusaSlicer"; 71 + hash = "sha256-B2uHrh09xKehmxnk3I4MHIjBfB/pGgFXC6R5k10JoJY="; 72 rev = "version_${finalAttrs.version}"; 73 }; 74 ··· 134 catch2_3 135 webkitgtk_4_1 136 z3 137 + nlohmann_json 138 ] 139 ++ lib.optionals withSystemd [ 140 systemd ··· 226 "libslic3r_tests|sla_print_tests" 227 ]; 228 229 + passthru.updateScript = nix-update-script { 230 + extraArgs = [ 231 + "--version-regex" 232 + "^version_(.+)$" 233 + ]; 234 + }; 235 + 236 + meta = { 237 + description = "G-code generator for 3D printer"; 238 + homepage = "https://github.com/prusa3d/PrusaSlicer"; 239 + changelog = "https://github.com/prusa3d/PrusaSlicer/releases/tag/version_${finalAttrs.version}"; 240 + license = lib.licenses.agpl3Plus; 241 + maintainers = with lib.maintainers; [ 242 + tweber 243 + tmarkus 244 + fliegendewurst 245 + ]; 246 + platforms = lib.platforms.unix; 247 + } 248 + // lib.optionalAttrs (stdenv.hostPlatform.isDarwin) { 249 + mainProgram = "PrusaSlicer"; 250 + }; 251 })