defaultIconTheme: Enable darwin support

wip/yesman
Hamish Mackenzie 7 years ago
parent f0b634c7e8
commit 89b89d1071
  1. 2
      pkgs/data/icons/hicolor-icon-theme/default.nix
  2. 2
      pkgs/desktops/gnome-3/3.22/core/adwaita-icon-theme/default.nix
  3. 2
      pkgs/development/tools/misc/icon-naming-utils/default.nix

@ -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;
};
}

@ -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;
};
}

@ -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;
};
}

Loading…
Cancel
Save