Skip to content

Commit

Permalink
glibcLocales: Only supported on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
wmertens committed Jan 21, 2015
1 parent 1defdb9 commit fc8048d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5441,8 +5441,8 @@ let
installLocales = config.glibc.locales or false;
};

# Not supported on Darwin
glibcLocales = if (! stdenv.isDarwin) then (callPackage ../development/libraries/glibc/locales.nix { }) else null;
# Only supported on Linux
glibcLocales = if stdenv.isLinux then callPackage ../development/libraries/glibc/2.19/locales.nix { } else null;

glibcInfo = callPackage ../development/libraries/glibc/info.nix { };

Expand Down

0 comments on commit fc8048d

Please sign in to comment.