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