vault-bin: correct wrapping arguments

This commit is contained in:
Jonathan Ringer 2021-07-28 14:12:59 -07:00
parent 3cc3160fe6
commit 68c4a69a96
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -42,8 +42,8 @@ in stdenv.mkDerivation {
echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault
'' + lib.optionalString stdenv.isLinux ''
wrapProgram $out/bin/vault \
--prefix PATH ${lib.makeBinPath [ gawk glibc ]}
'' + ''
--prefix PATH : ${lib.makeBinPath [ gawk glibc ]}
runHook postInstall
'';