about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texinfo/common.nix
diff options
context:
space:
mode:
authorAudrey Dutcher <audrey@rhelmot.io>2024-05-26 11:19:31 -0700
committerAudrey Dutcher <audrey@rhelmot.io>2024-05-26 11:34:16 -0700
commit9f481b394bc47c1b4ea449399b1bf29b8d550f84 (patch)
treee01609f1a839f08b41e66b4a61d20e356982b956 /pkgs/development/tools/misc/texinfo/common.nix
parente0cbd6c7c7cae7287713fed1545da0ac73dc3ddb (diff)
texinfo: remove spurious xz buildInput
diffoscope indicates that the builds are the same with and without it.
Diffstat (limited to 'pkgs/development/tools/misc/texinfo/common.nix')
-rw-r--r--pkgs/development/tools/misc/texinfo/common.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/texinfo/common.nix b/pkgs/development/tools/misc/texinfo/common.nix
index 858884461ce26..d1f8cc5825435 100644
--- a/pkgs/development/tools/misc/texinfo/common.nix
+++ b/pkgs/development/tools/misc/texinfo/common.nix
@@ -1,6 +1,6 @@
 { version, sha256, patches ? [] }:
 
-{ lib, stdenv, buildPackages, fetchurl, perl, xz, libintl, bash
+{ lib, stdenv, buildPackages, fetchurl, perl, libintl, bash
 , gnulib, gawk, freebsd, libiconv
 
 # we are a dependency of gcc, this simplifies bootstraping
@@ -49,7 +49,7 @@ stdenv.mkDerivation {
   # A native compiler is needed to build tools needed at build time
   depsBuildBuild = [ buildPackages.stdenv.cc perl ];
 
-  buildInputs = [ xz.bin bash libintl ]
+  buildInputs = [ bash libintl ]
     ++ optionals stdenv.isSunOS [ libiconv gawk ]
     ++ optional interactive ncurses;