From c5c82a5391f3c7b4c6d583a79ce5d1f21f681160 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 9 Dec 2024 00:16:40 +0100 Subject: [PATCH] fix: i do not know how to do makefiles ok? it's in sbin/ not in bin/, nix moves it to bin/ later on. Signed-off-by: Raito Bezarius --- overlay.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overlay.nix b/overlay.nix index 80dd3a5..c674ad3 100644 --- a/overlay.nix +++ b/overlay.nix @@ -207,8 +207,8 @@ extraPkgs // { ${(old.postInstall or "")} non_necessary_binaries=("tc" "rdma" "dcb" "tipc" "vdpa") for needless_binary in "''${non_necessary_binaries[@]}"; do - echo "Removing unnecessary binary $out/bin/$needless_binary" - rm "$out/bin/$needless_binary" + echo "Removing unnecessary binary $out/sbin/$needless_binary" + rm "$out/sbin/$needless_binary" done ''; });