3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/icons/numix-icon-theme-circle/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme, hicolor-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
pname = "numix-icon-theme-circle";
version = "19.09.20";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = pname;
rev = version;
sha256 = "1pmz2dy1580ln5m57xw3vhqrjhviayisgbs2km3i77hyx66hiivi";
2015-03-04 02:15:30 +00:00
};
nativeBuildInputs = [ gtk3 numix-icon-theme ];
2015-03-04 02:15:30 +00:00
propagatedBuildInputs = [
hicolor-icon-theme
];
dontDropIconThemeCache = true;
2015-03-04 02:15:30 +00:00
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
'';
postFixup = ''
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
'';
meta = with stdenv.lib; {
2015-03-04 02:15:30 +00:00
description = "Numix icon theme (circle version)";
2018-09-07 23:32:30 +01:00
homepage = https://numixproject.github.io;
license = licenses.gpl3;
# darwin cannot deal with file names differing only in case
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
2015-03-04 02:15:30 +00:00
};
}