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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, makeDesktopItem, prusa-slicer }:
2020-09-01 20:14:47 +00:00
let
appname = "SuperSlicer";
version = "2.3.56.5";
2020-09-01 20:14:47 +00:00
pname = "super-slicer";
description = "PrusaSlicer fork with more features and faster development cycle";
override = super: {
inherit version pname;
src = fetchFromGitHub {
owner = "supermerill";
repo = "SuperSlicer";
sha256 = "sha256-Gg+LT1YKyUGNJE9XvWE1LSlIQ6Vq5GfVBTUw/A7Qx7E=";
2020-09-01 20:14:47 +00:00
rev = version;
fetchSubmodules = true;
2020-09-01 20:14:47 +00:00
};
# We don't need PS overrides anymore, and gcode-viewer is embedded in the binary.
postInstall = null;
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 = appname;
exec = "superslicer";
icon = appname;
comment = description;
desktopName = appname;
genericName = "3D printer tool";
categories = "Development;";
})
];
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/supermerili/SuperSlicer";
license = licenses.agpl3;
maintainers = with maintainers; [ cab404 moredread ];
};
};
in prusa-slicer.overrideAttrs override