lesspipe: add missing dependency on 'strings'

This commit is contained in:
Henri Menke
2023-12-24 11:30:03 +00:00
committed by Emery Hemingway
parent e18dd77cff
commit e1aa849754
+2 -2
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper, perl, procps, file, gnused, bash }:
{ lib, stdenv, fetchFromGitHub, makeWrapper, perl, procps, file, gnused, bash, binutils }:
stdenv.mkDerivation rec {
pname = "lesspipe";
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
postInstall = ''
for f in lesspipe.sh lesscomplete; do
wrapProgram "$out/bin/$f" --prefix-each PATH : "${lib.makeBinPath [ file gnused procps ]}"
wrapProgram "$out/bin/$f" --prefix-each PATH : "${lib.makeBinPath [ binutils file gnused procps ]}"
done
'';