vanilla-dmz: 0.4.4 -> 0.4.5 (+license fix)

The package debian/copyright states Attribution-ShareAlike 3.0 Unported
(CC BY-SA 3.0) which is cc-by-sa-30, was wrongly cc-by-nc-sa-30 which is
unfree

+20 -6
+20 -6
pkgs/data/icons/vanilla-dmz/default.nix
··· 1 - { stdenv, lib, fetchzip, xorg, hicolor-icon-theme }: 2 3 stdenv.mkDerivation rec { 4 pname = "vanilla-dmz"; 5 - version = "0.4.4"; 6 src = fetchzip { 7 - url = "http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.gz"; 8 - sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj"; 9 }; 10 - buildInputs = [ xorg.xcursorgen ]; 11 propagatedBuildInputs = [ 12 hicolor-icon-theme 13 ]; 14 dontDropIconThemeCache = true; 15 buildPhase = '' 16 cd DMZ-White/pngs; ./make.sh; cd - 17 cd DMZ-Black/pngs; ./make.sh; cd - 18 ''; 19 installPhase = '' 20 install -d $out/share/icons/Vanilla-DMZ/cursors 21 cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors ··· 25 cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors 26 install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme 27 ''; 28 meta = with lib; { 29 homepage = "http://jimmac.musichall.cz"; 30 description = "A style neutral scalable cursor theme"; 31 platforms = platforms.all; 32 - license = licenses.cc-by-nc-sa-30; 33 maintainers = with maintainers; [ cstrahan ]; 34 }; 35 }
··· 1 + { stdenv 2 + , lib 3 + , fetchzip 4 + , xorg 5 + , hicolor-icon-theme 6 + }: 7 8 stdenv.mkDerivation rec { 9 pname = "vanilla-dmz"; 10 + version = "0.4.5"; 11 + 12 src = fetchzip { 13 + url = "mirror://debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.xz"; 14 + sha256 = "14r8fri4byyzavzdifpga6118hxqjwpzd11xxj28s16zxcanq16m"; 15 }; 16 + 17 + buildInputs = [ 18 + xorg.xcursorgen 19 + ]; 20 + 21 propagatedBuildInputs = [ 22 hicolor-icon-theme 23 ]; 24 + 25 dontDropIconThemeCache = true; 26 + 27 buildPhase = '' 28 cd DMZ-White/pngs; ./make.sh; cd - 29 cd DMZ-Black/pngs; ./make.sh; cd - 30 ''; 31 + 32 installPhase = '' 33 install -d $out/share/icons/Vanilla-DMZ/cursors 34 cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors ··· 38 cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors 39 install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme 40 ''; 41 + 42 meta = with lib; { 43 homepage = "http://jimmac.musichall.cz"; 44 description = "A style neutral scalable cursor theme"; 45 platforms = platforms.all; 46 + license = licenses.cc-by-sa-30; 47 maintainers = with maintainers; [ cstrahan ]; 48 }; 49 }