vanilla-dmz: init at 0.4.4, fixes #11102

Vanilla DMZ cursor theme
This commit is contained in:
Charles Strahan 2015-11-17 16:24:48 -05:00 committed by Rok Garbas
parent defe78e553
commit 60df6fdd34
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, lib, fetchzip, xorg }:
stdenv.mkDerivation rec {
name = "vanilla-dmz-${version}";
version = "0.4.4";
src = fetchzip {
url = "http://ftp.de.debian.org/debian/pool/main/d/dmz-cursor-theme/dmz-cursor-theme_${version}.tar.gz";
sha256 = "1l0c0svk7dy0d7icg7j2181wdn3fvks5gmyqnvjk749ppy5ks8mj";
};
buildInputs = [ xorg.xcursorgen ];
buildPhase = ''
cd DMZ-White/pngs; ./make.sh; cd -
cd DMZ-Black/pngs; ./make.sh; cd -
'';
installPhase = ''
install -d $out/share/icons/Vanilla-DMZ/cursors
cp -a DMZ-White/xcursors/* $out/share/icons/Vanilla-DMZ/cursors
install -Dm644 DMZ-White/index.theme $out/share/icons/Vanilla-DMZ/index.theme
install -d $out/share/icons/Vanilla-DMZ-AA/cursors
cp -a DMZ-Black/xcursors/* $out/share/icons/Vanilla-DMZ-AA/cursors
install -Dm644 DMZ-Black/index.theme $out/share/icons/Vanilla-DMZ-AA/index.theme
'';
meta = with lib; {
homepage = "http://jimmac.musichall.cz";
description = "A style neutral scalable cursor theme.";
platforms = platforms.all;
license = licenses.cc-by-nc-sa-30;
maintainers = with maintainers; [ cstrahan ];
};
}

View File

@ -10920,6 +10920,8 @@ let
unifont_upper = callPackage ../data/fonts/unifont_upper { };
vanilla-dmz = callPackage ../data/icons/vanilla-dmz { };
vistafonts = callPackage ../data/fonts/vista-fonts { };
wqy_microhei = callPackage ../data/fonts/wqy-microhei { };