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

34 lines
823 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, unzip }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
version = "e7008b488edfe37379ba9c4b8d5245dfd6125fc3";
2015-03-04 02:15:30 +00:00
package-name = "numix-icon-theme-circle";
name = "${package-name}-20160121-${version}";
2015-03-04 02:15:30 +00:00
buildInputs = [ unzip ];
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
rev = version;
sha256 = "0pfcz50b9g7zzskws94m6wvd8zm3sjvhpbzq9vjqi1q02nzflap6";
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
};
}