3
0
Fork 0
forked from mirrors/nixpkgs

kubectx: show version fix

Fixes #202532
This commit is contained in:
José Luis Lafuente 2022-11-23 17:24:58 +01:00
parent f9318e0c67
commit a29584f0d4
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A

View file

@ -19,6 +19,12 @@ buildGoModule rec {
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
postInstall = ''
installShellCompletion completion/*
'';