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