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

34 lines
839 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, numix-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
version = "2016-06-10";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme-circle";
name = "${package-name}-${version}";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = "577b8a2a8dd6429f7d3df37b15d9fd7fcbb58d56";
sha256 = "1zx26ng6z45j1yff2m0cng4nffk8swdq1pya1l2dm7841mx5ram4";
2015-03-04 02:15:30 +00:00
};
buildInputs = [ numix-icon-theme ];
2015-03-04 02:15:30 +00:00
dontBuild = true;
installPhase = ''
install -dm 755 $out/share/icons
cp -dr --no-preserve='ownership' Numix-Circle{,-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 (circle version)";
homepage = https://numixproject.org;
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ jgeerds ];
2015-03-04 02:15:30 +00:00
};
}