fix(container-use): add cu symlink to main binary

This commit is contained in:
2026-05-06 14:17:40 +03:00
parent ce5e6a53f7
commit 9fb3eebd8a

View File

@@ -23,6 +23,10 @@ buildGoModule rec {
doCheck = false; doCheck = false;
postInstall = ''
ln -s $out/bin/container-use $out/bin/cu
'';
ldflags = [ ldflags = [
"-s -w -X main.version=v${version}" "-s -w -X main.version=v${version}"
]; ];