3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/prusa-slicer/super-slicer.nix

61 lines
1.6 KiB
Nix
Raw Normal View History

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