summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/gawk
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-30 15:48:17 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-30 15:48:17 +0200
commit030af0a8035ba60f34d5b2020c9c020df769ecdf (patch)
treeb792e5ea17a66499ef3ca238131d5f78d33e0bce /pkgs/tools/text/gawk
parent2f9219918357023484cde6268c50293b253a88c9 (diff)
fix .xz in stdenv bootstrap
Presumably needed due to the last staging merge. There was some stdenv stage refactoring within, IIRC.
Diffstat (limited to 'pkgs/tools/text/gawk')
-rw-r--r--pkgs/tools/text/gawk/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix
index f5fbf029aad0..60cb8592589e 100644
--- a/pkgs/tools/text/gawk/default.nix
+++ b/pkgs/tools/text/gawk/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libsigsegv, readline, interactive ? false }:
+{ stdenv, fetchurl, xz, libsigsegv, readline, interactive ? false }:
let
inherit (stdenv.lib) optional;
@@ -12,9 +12,9 @@ stdenv.mkDerivation rec {
};
# When we do build separate interactive version, it makes sense to always include docs.
- #outputs = stdenv.lib.optionals (!interactive) [ "out" "doc" ]; #ToDo
+ outputs = stdenv.lib.optionals (!interactive) [ "out" "doc" ]; #ToDo
- buildInputs = [ libsigsegv ]
+ buildInputs = [ xz.bin libsigsegv ]
++ optional interactive readline;
configureFlags = [ "--with-libsigsegv-prefix=${libsigsegv}" ]