2020-04-18 00:53:38 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, gnome-icon-theme, hicolor-icon-theme }:
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-24 11:31:11 +00:00
|
|
|
pname = "numix-icon-theme";
|
2020-03-30 06:50:39 +01:00
|
|
|
version = "20.03.20";
|
2015-03-04 02:15:30 +00:00
|
|
|
|
2015-07-15 03:16:06 +01: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;
|
2020-03-30 06:50:39 +01:00
|
|
|
sha256 = "092f8k38xf9yz898nrangm0ia211d41z8kx0v6njfqfgpiad1s7q";
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
|
2019-09-12 15:47:48 +01:00
|
|
|
nativeBuildInputs = [ gtk3 ];
|
|
|
|
|
2020-04-18 00:53:38 +01:00
|
|
|
propagatedBuildInputs = [ gnome-icon-theme hicolor-icon-theme ];
|
2019-09-12 15:47:48 +01:00
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
2015-03-04 02:15:30 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
2018-02-24 11:31:11 +00:00
|
|
|
mkdir -p $out/share/icons
|
2019-10-01 13:47:21 +01:00
|
|
|
cp -a Numix{,-Light} $out/share/icons/
|
2018-02-24 11:31:11 +00:00
|
|
|
|
|
|
|
for theme in $out/share/icons/*; do
|
|
|
|
gtk-update-icon-cache $theme
|
|
|
|
done
|
2015-03-04 02:15:30 +00:00
|
|
|
'';
|
2015-07-15 03:16:06 +01:00
|
|
|
|
2015-09-11 13:23:22 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-04 02:15:30 +00:00
|
|
|
description = "Numix icon theme";
|
2020-03-30 06:50:39 +01:00
|
|
|
homepage = "https://numixproject.github.io";
|
2015-09-11 13:23:22 +01:00
|
|
|
license = licenses.gpl3;
|
2018-08-21 01:15:07 +01:00
|
|
|
# darwin cannot deal with file names differing only in case
|
|
|
|
platforms = platforms.linux;
|
2019-03-12 22:45:33 +00:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
2015-03-04 02:15:30 +00:00
|
|
|
};
|
|
|
|
}
|