nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, makeDesktopItem, prusa-slicer }:
2020-09-01 22:14:47 +02:00
let
appname = "SuperSlicer";
pname = "super-slicer";
description = "PrusaSlicer fork with more features and faster development cycle";
versions = {
2022-02-04 02:44:09 +01:00
stable = { version = "2.3.57.10"; sha256 = "sha256-/1oZgmZpRoizVpklKaI12qP4bVIGYyVpybmuCIz3Y0M="; };
latest = { version = "2.3.57.10"; sha256 = "sha256-/1oZgmZpRoizVpklKaI12qP4bVIGYyVpybmuCIz3Y0M="; };
};
override = { version, sha256 }: super: {
2020-09-01 22:14:47 +02:00
inherit version pname;
src = fetchFromGitHub {
owner = "supermerill";
repo = "SuperSlicer";
inherit sha256;
2020-09-01 22:14:47 +02:00
rev = version;
fetchSubmodules = true;
2020-09-01 22:14:47 +02:00
};
2021-09-10 00:06:04 +02:00
patches = null;
# We don't need PS overrides anymore, and gcode-viewer is embedded in the binary.
postInstall = null;
2021-07-12 18:01:40 +02:00
separateDebugInfo = true;
2020-09-01 22:14:47 +02:00
# See https://github.com/supermerill/SuperSlicer/issues/432
cmakeFlags = super.cmakeFlags ++ [
"-DSLIC3R_BUILD_TESTS=0"
];
2021-01-15 19:42:12 +01:00
desktopItems = [
(makeDesktopItem {
name = "superslicer";
2021-01-15 19:42:12 +01:00
exec = "superslicer";
icon = appname;
comment = description;
desktopName = appname;
genericName = "3D printer tool";
categories = [ "Development" ];
2021-01-15 19:42:12 +01:00
})
];
2020-09-01 22:14:47 +02:00
meta = with lib; {
2020-09-01 22:14:47 +02:00
inherit description;
homepage = "https://github.com/supermerili/SuperSlicer";
license = licenses.agpl3;
maintainers = with maintainers; [ cab404 moredread ];
2021-12-16 19:26:34 +01:00
mainProgram = "superslicer";
2020-09-01 22:14:47 +02:00
};
passthru = allVersions;
2020-09-01 22:14:47 +02:00
};
allVersions = builtins.mapAttrs (_name: version: (prusa-slicer.overrideAttrs (override version))) versions;
in
allVersions.stable