about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:41:10 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:00:49 +0200
commit99acb412ab50bb7aaf6060b698e9b9751f13fef6 (patch)
treeedcc7035cffb8b5d3c0d8e854be824f4a2d98d60 /pkgs/development/compilers/ghc
parent3f8b08f5064743ccab3b231757be61c6473a1cd1 (diff)
downloadnixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar.gz
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar.bz2
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar.lz
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar.xz
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.tar.zst
nixlib-99acb412ab50bb7aaf6060b698e9b9751f13fef6.zip
treewide: Make explicit that 'dev' output of ncurses is used
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/8.0.1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix
index 1565ce2b3dbd..33fb84160707 100644
--- a/pkgs/development/compilers/ghc/8.0.1.nix
+++ b/pkgs/development/compilers/ghc/8.0.1.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
   configureFlags = [
     "--with-gcc=${stdenv.cc}/bin/cc"
     "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
-    "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses.out}/lib"
+    "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
   ] ++ stdenv.lib.optional stdenv.isDarwin [
     "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
   ];