aws-vault: add wrapper and simple install check (#121155)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Yurii Matsiuk <ymatsiuk@users.noreply.github.com>
This commit is contained in:
Yurii Matsiuk 2021-04-30 13:21:38 +02:00 committed by GitHub
parent 989006a89d
commit be99e67190
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,10 @@
{ buildGoModule, lib, fetchFromGitHub, installShellFiles }:
{ buildGoModule
, fetchFromGitHub
, installShellFiles
, lib
, makeWrapper
, xdg-utils
}:
buildGoModule rec {
pname = "aws-vault";
version = "6.3.1";
@ -12,9 +18,10 @@ buildGoModule rec {
vendorSha256 = "sha256-Lb5iiuT/Fd3RMt98AafIi9I0FHJaSpJ8pH7r4yZiiiw=";
nativeBuildInputs = [ installShellFiles ];
nativeBuildInputs = [ installShellFiles makeWrapper ];
postInstall = ''
wrapProgram $out/bin/aws-vault --prefix PATH : ${lib.makeBinPath [ xdg-utils ]}
installShellCompletion --cmd aws-vault \
--bash $src/contrib/completions/bash/aws-vault.bash \
--fish $src/contrib/completions/fish/aws-vault.fish \
@ -32,6 +39,12 @@ buildGoModule rec {
-X main.Version=v${version}
'';
doInstallCheck = true;
installCheckPhase = ''
$out/bin/aws-vault --version 2>&1 | grep ${version} > /dev/null
'';
meta = with lib; {
description =
"A vault for securely storing and accessing AWS credentials in development environments";