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

36 lines
911 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
pname = "numix-icon-theme-circle";
version = "19.02.22";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
repo = pname;
rev = version;
sha256 = "10jh633rllp9yjfkjjyf8455n84q7ppxw1kk9dp1rsg4dq327ks7";
2015-03-04 02:15:30 +00:00
};
nativeBuildInputs = [ gtk3 numix-icon-theme ];
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; [ ];
2015-03-04 02:15:30 +00:00
};
}