summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-11 01:02:21 +0000
committerGitHub <noreply@github.com>2021-01-11 01:02:21 +0000
commit36bab113bfe0793dc458a8627a4eba3d88da12ec (patch)
treea4e5bb03f6923378d701c420b91ff4a14bf569b4 /pkgs/tools/X11
parentdd7235715565d6dde51b3cf5861d17484084b426 (diff)
parentf337a3fc227b056e044388b15e646a091697a4e5 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/icon-slicer/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/X11/icon-slicer/default.nix b/pkgs/tools/X11/icon-slicer/default.nix
new file mode 100644
index 000000000000..18d6d468af8c
--- /dev/null
+++ b/pkgs/tools/X11/icon-slicer/default.nix
@@ -0,0 +1,29 @@
+{ 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 stdenv.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;
+ };
+}