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:
parent
d4d82a6ef2
commit
69b181af30
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue