2015-03-04 02:15:30 +00:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "2c11fbfcee";
|
|
|
|
|
|
|
|
package-name = "numix-icon-theme";
|
|
|
|
|
|
|
|
name = "${package-name}-${version}";
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
|
|
|
|
sha256 = "61dc170b8a70b20a9075f06e1668d6bd8907a6db0ef9e3568c473296d0f351e1";
|
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -dm 755 $out/usr/share/icons
|
|
|
|
cp -dr --no-preserve='ownership' Numix{,-Light} $out/usr/share/icons/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Numix icon theme";
|
|
|
|
homepage = https://numixproject.org;
|
2015-03-05 06:23:18 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
}
|