1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 03:36:53 +00:00
nixpkgs/pkgs/data/icons/numix-icon-theme/default.nix

32 lines
715 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
2015-09-11 13:23:54 +01:00
version = "ae57260";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme";
2015-09-11 13:23:54 +01:00
name = "${package-name}-20150910";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
2015-09-11 13:23:54 +01:00
sha256 = "147a8d9wkhrq4f4154gb0l16rj849lsccxl8npicr6zixvsjgqlq";
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
};
}