haskell-generic-builder: set LOCALE_ARCHIVE only on Linux

This commit is contained in:
Peter Simons 2015-02-25 19:49:39 +01:00
parent 0a97e2153e
commit 3e9e1a2f4e

View file

@ -120,7 +120,6 @@ stdenv.mkDerivation ({
propagatedNativeBuildInputs = optionals hasActiveLibrary propagatedBuildInputs;
LANG = "en_US.UTF-8"; # GHC needs the locale configured during the Haddock phase.
LOCALE_ARCHIVE = optionalString stdenv.isLinux "${glibcLocales}/lib/locale/locale-archive";
setupCompilerEnvironmentPhase = ''
runHook preSetupCompilerEnvironment
@ -298,4 +297,5 @@ stdenv.mkDerivation ({
// optionalAttrs (postInstall != "") { inherit postInstall; }
// optionalAttrs (preFixup != "") { inherit preFixup; }
// optionalAttrs (postFixup != "") { inherit postFixup; }
// optionalAttrs (stdenv.isLinux) { LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
)