texinfo: remove spurious xz buildInput

diffoscope indicates that the builds are the same with and without it.
This commit is contained in:
Audrey Dutcher 2024-05-26 11:19:31 -07:00
parent e0cbd6c7c7
commit 9f481b394b

View File

@ -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;