summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/diffutils
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/diffutils
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/diffutils')
-rw-r--r--pkgs/tools/text/diffutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix
index 680a75445ef0..70a3bdeb7984 100644
--- a/pkgs/tools/text/diffutils/default.nix
+++ b/pkgs/tools/text/diffutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, coreutils ? null }:
+{ stdenv, fetchurl, xz, coreutils ? null }:
stdenv.mkDerivation rec {
name = "diffutils-3.3";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "info" ];
/* If no explicit coreutils is given, use the one from stdenv. */
- nativeBuildInputs = [ coreutils ];
+ nativeBuildInputs = [ xz.bin coreutils ];
meta = {
homepage = http://www.gnu.org/software/diffutils/diffutils.html;