summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMoritz Angermann <moritz.angermann@gmail.com>2018-07-18 12:04:39 +0800
committerGitHub <noreply@github.com>2018-07-18 12:04:39 +0800
commitc034dea090caf37d8f4973557283cba9b4df0f0d (patch)
tree8cdfdaaa67612ef8f55f71275ac1d6ef799aa21e /pkgs
parent3f762923aabe7459c291d7400497b48842c3b3e5 (diff)
downloadnixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar.gz
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar.bz2
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar.lz
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar.xz
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.tar.zst
nixlib-c034dea090caf37d8f4973557283cba9b4df0f0d.zip
Update 8.4.3.nix
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/ghc/8.4.3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ghc/8.4.3.nix b/pkgs/development/compilers/ghc/8.4.3.nix
index c0ac16608f81..f5b5a83c57da 100644
--- a/pkgs/development/compilers/ghc/8.4.3.nix
+++ b/pkgs/development/compilers/ghc/8.4.3.nix
@@ -152,7 +152,7 @@ stdenv.mkDerivation (rec {
     "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
   ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && !enableIntegerSimple) [
     "--with-gmp-includes=${targetPackages.gmp.dev}/include" "--with-gmp-libraries=${targetPackages.gmp.out}/lib"
-  ]) ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc" && !targetPlatform.isWindows) [
+  ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc" && !targetPlatform.isWindows) [
     "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
   ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
     "--enable-bootstrap-with-devel-snapshot"