From 5a1794401eeb5c06b177d092faa673f65b00dcdd Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Tue, 24 Mar 2026 10:01:34 -0600 Subject: [PATCH] fix(build): add top level links to binaries It seems that we need dataplane, init, and the cli available from / Signed-off-by: Daniel Noland --- default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.nix b/default.nix index 94f4eb516..8b8364d78 100644 --- a/default.nix +++ b/default.nix @@ -464,6 +464,9 @@ let ln -s "${workspace.dataplane}/bin/dataplane" "$tmp/bin/dataplane" ln -s "${workspace.cli}/bin/cli" "$tmp/bin/cli" ln -s "${workspace.init}/bin/dataplane-init" "$tmp/bin/dataplane-init" + ln -s "${workspace.dataplane}/bin/dataplane" "$tmp/dataplane" + ln -s "${workspace.cli}/bin/cli" "$tmp/dataplane-cli" + ln -s "${workspace.init}/bin/dataplane-init" "$tmp/dataplane-init" for i in "${pkgs.pkgsHostHost.busybox}/bin/"*; do ln -s "${pkgs.pkgsHostHost.busybox}/bin/busybox" "$tmp/bin/$(basename "$i")" done