From 3994e8f9f07e30f9828366b02777ead9ec515467 Mon Sep 17 00:00:00 2001 From: Yurii Matsiuk Date: Wed, 26 Jan 2022 12:59:04 +0100 Subject: [PATCH] i3status-rust: add missing iproute and iw --- pkgs/applications/window-managers/i3/status-rust.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/i3/status-rust.nix b/pkgs/applications/window-managers/i3/status-rust.nix index 803d5154bce5..a194a1326690 100644 --- a/pkgs/applications/window-managers/i3/status-rust.nix +++ b/pkgs/applications/window-managers/i3/status-rust.nix @@ -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