Merge pull request #24976 from hamishmack/darwin-icons

defaultIconTheme: Enable darwin support
This commit is contained in:
Daiderd Jordan 2017-04-18 19:16:43 +02:00 committed by GitHub
commit da811a56b5
3 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,6 @@ stdenv.mkDerivation rec {
meta = {
description = "Default fallback theme used by implementations of the icon theme specification";
homepage = http://icon-theme.freedesktop.org/releases/;
platforms = stdenv.lib.platforms.linux;
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
postInstall = '' rm -rf "$out/locale" '';
meta = with stdenv.lib; {
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
maintainers = gnome3.maintainers;
};
}

View File

@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://tango.freedesktop.org/Standard_Icon_Naming_Specification;
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
};
}