i3status-rust: add missing iproute and iw

This commit is contained in:
Yurii Matsiuk 2022-01-26 12:59:04 +01:00
parent 88b39f7a87
commit 3994e8f9f0
No known key found for this signature in database
GPG Key ID: 61302290298601AA

View File

@ -9,6 +9,8 @@
, openssl
, ethtool
, lm_sensors
, iw
, iproute2
}:
rustPlatform.buildRustPackage rec {
@ -45,7 +47,7 @@ rustPlatform.buildRustPackage rec {
'';
postFixup = ''
wrapProgram $out/bin/i3status-rs --prefix PATH : "${ethtool}/bin"
wrapProgram $out/bin/i3status-rs --prefix PATH : ${lib.makeBinPath [ iproute2 ethtool iw ]}
'';
# Currently no tests are implemented, so we avoid building the package twice