From 69b181af30d15948cfd7143dfd1d2d24f73b75d3 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <slyich@gmail.com> Date: Sat, 14 Jan 2023 16:18:56 +0000 Subject: [PATCH] lzip: drop unused 'texinfo' input As `lzip` is a bootstrap package it's sensitive not to pull in packages that increase `sdtenv` build dependency scope. In this case `texinfo` can be omitted and we can use man and info pages that come with release tarball itself. Checked with diffoscope there is no material difference in the outputs. --- pkgs/tools/compression/lzip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/lzip/default.nix b/pkgs/tools/compression/lzip/default.nix index 7fa7b4e35c85..3d55efdec15e 100644 --- a/pkgs/tools/compression/lzip/default.nix +++ b/pkgs/tools/compression/lzip/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, texinfo }: +{ lib, stdenv, fetchurl }: # Note: this package is used for bootstrapping fetchurl, and thus # cannot use fetchpatch! All mutable patches (generated by GitHub or @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { version = "1.23"; outputs = [ "out" "man" "info" ]; - nativeBuildInputs = [ texinfo ]; + nativeBuildInputs = [ ]; src = fetchurl { url = "mirror://savannah/lzip/${pname}-${version}.tar.gz";