about summary refs log tree commit diff
path: root/pkgs/development/libraries/slang
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:46:17 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:03:35 +0200
commit8d473f107c8d9f0c43986765304faf75f5e49b5a (patch)
treedfe9689e2400e0c837a71dc413f27419dc8cff07 /pkgs/development/libraries/slang
parente0de3b1dc512a1ec9c2be49d4a081482fb505838 (diff)
downloadnixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.gz
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.bz2
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.lz
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.xz
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.tar.zst
nixlib-8d473f107c8d9f0c43986765304faf75f5e49b5a.zip
treewide: Make explicit that 'dev' output of readline is used
Diffstat (limited to 'pkgs/development/libraries/slang')
-rw-r--r--pkgs/development/libraries/slang/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/slang/default.nix b/pkgs/development/libraries/slang/default.nix
index c86c196a09d2..2f2b3d3fc061 100644
--- a/pkgs/development/libraries/slang/default.nix
+++ b/pkgs/development/libraries/slang/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
     sed -i -e "s|/bin/ln|ln|" src/Makefile.in
     sed -i -e "s|-ltermcap|-lncurses|" ./configure
   '';
-  configureFlags = "--with-png=${libpng.dev} --with-z=${zlib} --with-pcre=${pcre.dev} --with-readline=${readline}";
+  configureFlags = "--with-png=${libpng.dev} --with-z=${zlib} --with-pcre=${pcre.dev} --with-readline=${readline.dev}";
   buildInputs = [ pcre libpng zlib readline ];
   propagatedBuildInputs = [ ncurses ];