mate-icon-theme: mark linux only

This commit is contained in:
Daiderd Jordan 2018-03-21 22:01:03 +01:00
parent a45ada6614
commit 318d8fea44
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

@ -12,18 +12,18 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ]; nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
buildInputs = [ librsvg hicolor-icon-theme ]; buildInputs = [ librsvg hicolor-icon-theme ];
postInstall = '' postInstall = ''
for theme in "$out"/share/icons/*; do for theme in "$out"/share/icons/*; do
"${gtk3.out}/bin/gtk-update-icon-cache" "$theme" "${gtk3.out}/bin/gtk-update-icon-cache" "$theme"
done done
''; '';
meta = { meta = {
description = "Icon themes from MATE"; description = "Icon themes from MATE";
homepage = http://mate-desktop.org; homepage = http://mate-desktop.org;
license = stdenv.lib.licenses.lgpl3; license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.romildo ]; maintainers = [ stdenv.lib.maintainers.romildo ];
}; };
} }