From 9f481b394bc47c1b4ea449399b1bf29b8d550f84 Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Sun, 26 May 2024 11:19:31 -0700 Subject: [PATCH] texinfo: remove spurious xz buildInput diffoscope indicates that the builds are the same with and without it. --- pkgs/development/tools/misc/texinfo/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/texinfo/common.nix b/pkgs/development/tools/misc/texinfo/common.nix index 858884461ce2..d1f8cc582543 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;