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

32 lines
755 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-03-04 03:15:30 +01:00
stdenv.mkDerivation rec {
version = "2017-09-17";
2015-03-04 03:15:30 +01:00
package-name = "numix-icon-theme";
name = "${package-name}-${version}";
2015-03-04 03:15:30 +01:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = "d0e7da93520e521bf7df7cffa3620c10a8400a7f";
sha256 = "1my43kv9yz9vdn51zhd13c8zavba17cqrmxkmhpx0c8xldjqfp3i";
2015-03-04 03:15:30 +01:00
};
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/icons
cp -dr --no-preserve='ownership' Numix{,-Light} $out/share/icons/
2015-03-04 03:15:30 +01:00
'';
meta = with stdenv.lib; {
2015-03-04 03:15:30 +01:00
description = "Numix icon theme";
homepage = https://numixproject.org;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ romildo jgeerds ];
2015-03-04 03:15:30 +01:00
};
}