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

50 lines
1.3 KiB
Nix
Raw Normal View History

2020-09-01 20:14:47 +00:00
{
lib, fetchFromGitHub, makeDesktopItem, prusa-slicer
2020-09-01 20:14:47 +00:00
}:
let
appname = "SuperSlicer";
version = "2.2.54.2";
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-ThmsxFXI1uReK+JwpHrIWzHpBdIOP77kDjv+QaK+Azk=";
2020-09-01 20:14:47 +00:00
rev = version;
};
# See https://github.com/supermerill/SuperSlicer/issues/432
cmakeFlags = super.cmakeFlags ++ [
"-DSLIC3R_BUILD_TESTS=0"
];
postInstall = ''
mkdir -p "$out/share/pixmaps/"
2020-10-06 20:54:04 +00:00
ln -s "$out/share/SuperSlicer/icons/Slic3r.png" "$out/share/pixmaps/${appname}.png"
2020-09-01 20:14:47 +00:00
'';
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