mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{
|
|
stdenv, lib, fetchFromGitHub, makeDesktopItem, prusa-slicer
|
|
}:
|
|
let
|
|
appname = "SuperSlicer";
|
|
version = "2.2.54.2";
|
|
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=";
|
|
rev = version;
|
|
};
|
|
|
|
# See https://github.com/supermerill/SuperSlicer/issues/432
|
|
cmakeFlags = super.cmakeFlags ++ [
|
|
"-DSLIC3R_BUILD_TESTS=0"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/share/pixmaps/"
|
|
ln -s "$out/share/SuperSlicer/icons/Slic3r.png" "$out/share/pixmaps/${appname}.png"
|
|
mkdir -p "$out/share/applications"
|
|
cp "$desktopItem"/share/applications/* "$out/share/applications/"
|
|
'';
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = appname;
|
|
exec = "superslicer";
|
|
icon = appname;
|
|
comment = description;
|
|
desktopName = appname;
|
|
genericName = "3D printer tool";
|
|
categories = "Development;";
|
|
};
|
|
|
|
meta = with lib; {
|
|
inherit description;
|
|
homepage = "https://github.com/supermerili/SuperSlicer";
|
|
license = licenses.agpl3;
|
|
maintainers = with maintainers; [ cab404 moredread ];
|
|
};
|
|
|
|
};
|
|
in prusa-slicer.overrideAttrs override
|