about summary refs log tree commit diff
path: root/pkgs/tools/compression
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2023-01-14 16:18:56 +0000
committerSergei Trofimovich <slyich@gmail.com>2023-01-14 16:21:14 +0000
commit69b181af30d15948cfd7143dfd1d2d24f73b75d3 (patch)
tree86c5b8b6b2a1b55d6c63185e4061937da697c329 /pkgs/tools/compression
parentd4d82a6ef27ac9ad679ddfc1747f63a908bebbc4 (diff)
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.
Diffstat (limited to 'pkgs/tools/compression')
-rw-r--r--pkgs/tools/compression/lzip/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/compression/lzip/default.nix b/pkgs/tools/compression/lzip/default.nix
index 7fa7b4e35c858..3d55efdec15e2 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";