17479728ec
Use git commit date as version number. Install to $out/share/icons instead of $out/usr/share/icons.
31 lines
717 B
Nix
31 lines
717 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2c11fbfcee";
|
|
|
|
package-name = "numix-icon-theme";
|
|
|
|
name = "${package-name}-20150302";
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/numixproject/${package-name}/archive/${version}.zip";
|
|
sha256 = "61dc170b8a70b20a9075f06e1668d6bd8907a6db0ef9e3568c473296d0f351e1";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
install -dm 755 $out/share/icons
|
|
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Numix icon theme";
|
|
homepage = https://numixproject.org;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|