vault: wrap with gawk glibc

Binary will shell out awk and getent
launchpad/nixpkgs/master
Jonathan Ringer 3 years ago committed by Jonathan Ringer
parent 7cdf59bede
commit 08ab2d3c2a
  1. 11
      pkgs/tools/security/vault/default.nix

@ -1,4 +1,8 @@
{ lib, fetchFromGitHub, buildGoPackage, installShellFiles, nixosTests }:
{ lib, fetchFromGitHub, buildGoPackage, installShellFiles, nixosTests
, makeWrapper
, gawk
, glibc
}:
buildGoPackage rec {
pname = "vault";
@ -15,13 +19,16 @@ buildGoPackage rec {
subPackages = [ "." ];
nativeBuildInputs = [ installShellFiles ];
nativeBuildInputs = [ installShellFiles makeWrapper ];
buildFlagsArray = [ "-tags=vault" "-ldflags=-s -w -X ${goPackagePath}/sdk/version.GitCommit=${src.rev}" ];
postInstall = ''
echo "complete -C $out/bin/vault vault" > vault.bash
installShellCompletion vault.bash
wrapProgram $out/bin/vault \
--prefix PATH ${lib.makeBinPath [ gawk glibc ]}
'';
passthru.tests.vault = nixosTests.vault;

Loading…
Cancel
Save