rshim-user-space: drop busybox dependency (#434679)

This commit is contained in:
nikstur 2025-08-18 15:42:50 +02:00 committed by GitHub
commit e43ac5cf0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,16 +1,23 @@
{ {
stdenv,
lib,
fetchFromGitHub,
autoconf, autoconf,
automake, automake,
makeBinaryWrapper, bashNonInteractive,
pkg-config, coreutils,
pciutils, fetchFromGitHub,
libusb1,
fuse, fuse,
busybox, gawk,
gnugrep,
gnused,
lib,
libusb1,
makeBinaryWrapper,
pciutils,
pkg-config,
procps,
pv, pv,
stdenv,
which,
util-linux,
withBfbInstall ? true, withBfbInstall ? true,
}: }:
@ -58,8 +65,16 @@ stdenv.mkDerivation rec {
wrapProgram $out/bin/bfb-install \ wrapProgram $out/bin/bfb-install \
--set PATH ${ --set PATH ${
lib.makeBinPath [ lib.makeBinPath [
busybox bashNonInteractive
coreutils
gawk
gnugrep
gnused
pciutils
procps
pv pv
util-linux
which
] ]
} }
''; '';