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

37 lines
894 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
2018-02-24 11:31:11 +00:00
name = "${pname}-${version}";
pname = "numix-icon-theme";
version = "18.07.17";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
2018-02-24 11:31:11 +00:00
repo = pname;
2017-12-26 17:58:12 +00:00
rev = version;
sha256 = "0clh55kmhc52d33dfm2c6h3lg6ddfh8a088ir9lv1camn9kj55bd";
2015-03-04 02:15:30 +00:00
};
nativeBuildInputs = [ gtk3 hicolor-icon-theme ];
2015-03-04 02:15:30 +00:00
installPhase = ''
2018-02-24 11:31:11 +00:00
mkdir -p $out/share/icons
mv Numix{,-Light} $out/share/icons
'';
postFixup = ''
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
2015-03-04 02:15:30 +00:00
'';
meta = with stdenv.lib; {
2015-03-04 02:15:30 +00:00
description = "Numix icon theme";
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 jgeerds ];
2015-03-04 02:15:30 +00:00
};
}