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

46 lines
1.2 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.12.27";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = pname;
rev = version;
sha256 = "0za44h7f4vk37yl30xlaa6w76maiipb6p63gl9hl1rshdn9nxq0y";
2015-03-04 02:15:30 +00:00
};
nativeBuildInputs = [ gtk3 ];
2015-03-04 02:15:30 +00:00
buildInputs = [ numix-icon-theme ];
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 panel in $out/share/icons/*/*/panel; do
ln -sf $(realpath ${numix-icon-theme}/share/icons/Numix/16/$(readlink $panel)) $panel
done
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 22:32:30 +00: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
};
}