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

32 lines
759 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
2016-01-22 13:33:28 +00:00
version = "a704451830d343670721cbf1391df18611d61901";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme";
2016-01-22 13:33:28 +00:00
name = "${package-name}-20160120-${version}";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
2016-01-22 13:33:28 +00:00
sha256 = "0kk0rvywbm074nskjvvy0vjf6giw54jgvrw7sz9kwnv6h75ki96m";
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
};
}