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

32 lines
748 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
2015-10-23 13:18:36 +00:00
version = "0f7641b048a07eb614662c502eb209dad5eb6d97";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme";
2015-10-23 13:18:36 +00:00
name = "${package-name}-20151023";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
2015-10-23 13:18:36 +00:00
sha256 = "16kbasgbb5mgiyl9b240215kivdnl8ynpkxhp5gairba9l4jpbih";
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
'';
meta = with stdenv.lib; {
2015-03-04 02:15:30 +00:00
description = "Numix icon theme";
homepage = https://numixproject.org;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ romildo jgeerds ];
2015-03-04 02:15:30 +00:00
};
}