3
0
Fork 0
forked from mirrors/nixpkgs

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.
This commit is contained in:
Sergei Trofimovich 2023-01-14 16:18:56 +00:00
parent d4d82a6ef2
commit 69b181af30

View file

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