summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/7.10.3.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-01-04 11:18:38 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-12 23:57:47 +0100
commitc0518e6777d85b30f1dc3e711214d730a345061f (patch)
tree6d5e44cc9d20ba979f3b6f2cd1a6c09d216782ab /pkgs/development/compilers/ghc/7.10.3.nix
parent19d22184d3b1b74be5ecb9eb5c9a1630c9dd4b57 (diff)
downloadnixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar.gz
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar.bz2
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar.lz
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar.xz
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.tar.zst
nixlib-c0518e6777d85b30f1dc3e711214d730a345061f.zip
ghc: fixup recent changes with multiple outputs
Diffstat (limited to 'pkgs/development/compilers/ghc/7.10.3.nix')
-rw-r--r--pkgs/development/compilers/ghc/7.10.3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix
index 88d1bec4d42b..68ac1a9d99e4 100644
--- a/pkgs/development/compilers/ghc/7.10.3.nix
+++ b/pkgs/development/compilers/ghc/7.10.3.nix
@@ -39,8 +39,8 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
     "--with-gcc=${stdenv.cc}/bin/cc"
-    "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib"
-    "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib"
+    "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+    "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.lib}/lib"
   ] ++ stdenv.lib.optional stdenv.isDarwin [
     "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
   ];