571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
1008 B
Nix
31 lines
1008 B
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";
|
|
};
|
|
}
|