summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/gawk
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/tools/text/gawk
parente0de3b1dc512a1ec9c2be49d4a081482fb505838 (diff)
treewide: Make explicit that 'dev' output of readline is used
Diffstat (limited to 'pkgs/tools/text/gawk')
-rw-r--r--pkgs/tools/text/gawk/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index 8578960b9875..c7e0857c2ca4 100644
--- a/pkgs/tools/text/gawk/default.nix
+++ b/pkgs/tools/text/gawk/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional stdenv.isDarwin locale;
configureFlags = stdenv.lib.optional (stdenv.system != "x86_64-cygwin") "--with-libsigsegv-prefix=${libsigsegv}"
- ++ [(if interactive then "--with-readline=${readline}" else "--without-readline")];
+ ++ [(if interactive then "--with-readline=${readline.dev}" else "--without-readline")];
postInstall = "rm $out/bin/gawk-*";