summary refs log tree commit diff
path: root/pkgs/data/icons/hackneyed
diff options
context:
space:
mode:
authorKylie McClain <kylie@somas.is>2023-04-07 16:57:28 -0400
committerKylie McClain <kylie@somas.is>2023-11-07 10:40:40 -0500
commit562376398d4108bee1ddd46c44864d9947f1301c (patch)
tree9e2955c8c677cec6bc860fad3f803f936ff2145f /pkgs/data/icons/hackneyed
parentc95728ce727a6e47f66c6dfac6877f44830f5cc8 (diff)
downloadnixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar.gz
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar.bz2
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar.lz
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar.xz
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.tar.zst
nixpkgs-562376398d4108bee1ddd46c44864d9947f1301c.zip
hackneyed: 0.8.2 -> 0.9.1
Co-authored-by: Arne Keller <2012gdwu+github@posteo.de>
Diffstat (limited to 'pkgs/data/icons/hackneyed')
-rw-r--r--pkgs/data/icons/hackneyed/default.nix26
1 files changed, 19 insertions, 7 deletions
diff --git a/pkgs/data/icons/hackneyed/default.nix b/pkgs/data/icons/hackneyed/default.nix
index 74aedaa3786..e26a32b159e 100644
--- a/pkgs/data/icons/hackneyed/default.nix
+++ b/pkgs/data/icons/hackneyed/default.nix
@@ -1,29 +1,41 @@
-{ lib, fetchzip, stdenvNoCC, fetchFromGitLab, xcursorgen, imagemagick6, inkscape }:
+{ lib, stdenvNoCC, fetchFromGitLab, imagemagick, inkscape, xcursorgen }:
 
 stdenvNoCC.mkDerivation rec {
   pname = "hackneyed";
-  version = "0.8.2";
+  version = "0.9.1";
 
   src = fetchFromGitLab {
     owner = "Enthymeme";
     repo = "hackneyed-x11-cursors";
     rev = version;
-    sha256 = "sha256-Wtrw/EzxCj4cAyfdBp0OJE4+c6FouW7+b6nFTLxdXNY=";
+    hash = "sha256-+7QtHgBuhJtQejiHeZ+QoedJo24LqSY51XRVLv9Ho2g=";
   };
 
-  buildInputs = [ imagemagick6 inkscape xcursorgen ];
+  nativeBuildInputs = [ imagemagick inkscape xcursorgen ];
 
   postPatch = ''
     patchShebangs *.sh
-    substituteInPlace make-png.sh \
-      --replace /usr/bin/inkscape ${inkscape}/bin/inkscape
   '';
 
   enableParallelBuilding = true;
 
-  makeFlags = [ "PREFIX=$(out)" ];
+  makeFlags = [
+    "INKSCAPE=inkscape"
+    "INSTALL=install"
+    "PREFIX=$(out)"
+    "VERBOSE=1"
+    "XCURSORGEN=xcursorgen"
+  ];
+
   buildFlags = [ "theme" "theme.left" ];
 
+  # The Makefile declares a dependency on the value of $(INKSCAPE) for some reason;
+  # it's unnecessary for building though.
+  prePatch = ''
+    substituteInPlace GNUmakefile \
+        --replace 'inkscape-version: $(INKSCAPE)' 'inkscape-version:'
+  '';
+
   meta = with lib; {
     homepage = "https://gitlab.com/Enthymeme/hackneyed-x11-cursors";
     description = "A scalable cursor theme that resembles Windows 3.x/NT 3.x cursors";