lol

hackneyed: 0.9.1 -> 0.9.3 (#412632)

authored by

Peder Bergebakken Sundt and committed by
GitHub
36e6f377 0e44ec6b

+9 -6
+9 -6
pkgs/by-name/ha/hackneyed/package.nix
··· 4 4 fetchFromGitLab, 5 5 imagemagick, 6 6 inkscape, 7 + jq, 7 8 xcursorgen, 8 9 }: 9 10 10 11 stdenvNoCC.mkDerivation rec { 11 12 pname = "hackneyed"; 12 - version = "0.9.1"; 13 + version = "0.9.3"; 13 14 14 15 src = fetchFromGitLab { 15 16 owner = "Enthymeme"; 16 17 repo = "hackneyed-x11-cursors"; 17 18 rev = version; 18 - hash = "sha256-+7QtHgBuhJtQejiHeZ+QoedJo24LqSY51XRVLv9Ho2g="; 19 + hash = "sha256-gq+qBYm15satH/XXK1QYDVu2L2DvZ+2aYg/wDqncwmA="; 19 20 }; 20 21 21 22 nativeBuildInputs = [ 22 23 imagemagick 23 24 inkscape 25 + jq 24 26 xcursorgen 25 27 ]; 26 28 ··· 33 35 makeFlags = [ 34 36 "INKSCAPE=inkscape" 35 37 "INSTALL=install" 38 + "JQ=jq" 36 39 "PREFIX=$(out)" 37 40 "VERBOSE=1" 38 41 "XCURSORGEN=xcursorgen" ··· 50 53 --replace 'inkscape-version: $(INKSCAPE)' 'inkscape-version:' 51 54 ''; 52 55 53 - meta = with lib; { 56 + meta = { 54 57 homepage = "https://gitlab.com/Enthymeme/hackneyed-x11-cursors"; 55 58 description = "Scalable cursor theme that resembles Windows 3.x/NT 3.x cursors"; 56 - platforms = platforms.all; 57 - license = licenses.mit; 58 - maintainers = with maintainers; [ somasis ]; 59 + platforms = lib.platforms.all; 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ somasis ]; 59 62 }; 60 63 }