Files
nixpkgs/pkgs/by-name/ic/icon-slicer/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

41 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
gdk-pixbuf,
popt,
}:
stdenv.mkDerivation rec {
pname = "icon-slicer";
version = "0.3";
src = fetchurl {
url = "https://freedesktop.org/software/icon-slicer/releases/icon-slicer-${version}.tar.gz";
sha256 = "0kdnc08k2rs8llfg7xgvnrsk60x59pv5fqz6kn2ifnn2s1nj3w05";
};
patches = [
# Fixes hotspot `y` coordinate. The `x` coordinate is used on the y-axis.
(fetchurl {
url = "https://aur.archlinux.org/cgit/aur.git/plain/hotspotfix.patch?h=icon-slicer";
sha256 = "1l1dc1x5p4hys02arkmq3x6b1xdi510969d25g928zr4gf4an03h";
})
];
nativeBuildInputs = [
popt
pkg-config
];
buildInputs = [ gdk-pixbuf ];
meta = with lib; {
description = "Utility for generating icon themes and libXcursor cursor themes";
homepage = "https://www.freedesktop.org/wiki/Software/icon-slicer/";
license = licenses.mit;
maintainers = with maintainers; [ zaninime ];
platforms = platforms.linux;
mainProgram = "icon-slicer";
};
}