nixpkgs/pkgs/data/icons/numix-icon-theme/default.nix

31 lines
666 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
version = "2c11fbfcee";
package-name = "numix-icon-theme";
name = "${package-name}-20150302";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
sha256 = "1bjh2j4vqk9s31syv7ig3hwpp5z0n6sx74iz332y0wdz6ngj5x08";
2015-03-04 02:15:30 +00:00
};
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/icons
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
2015-03-04 02:15:30 +00:00
'';
2015-03-04 02:15:30 +00:00
meta = {
description = "Numix icon theme";
homepage = https://numixproject.org;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.all;
2015-03-04 02:15:30 +00:00
};
}