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