aws-vault: 7.2.0 -> 7.7.5, switch to maintained fork (#454705)

This commit is contained in:
numinit 2025-11-06 04:56:43 +00:00 committed by GitHub
commit c7d8f118ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 6 deletions

View file

@ -7749,6 +7749,13 @@
githubId = 3422442;
name = "Ruben Maher";
};
er0k = {
email = "er0k@er0k.net";
github = "er0k";
githubId = 916239;
name = "er0k";
keys = [ { fingerprint = "60DE 4570 2E31 81A2 AF87 F075 B005 BA3C 8EE8 108D"; } ];
};
eraserhd = {
email = "jason.m.felice@gmail.com";
github = "eraserhd";

View file

@ -9,22 +9,25 @@
}:
buildGoModule rec {
pname = "aws-vault";
version = "7.2.0";
version = "7.7.5";
src = fetchFromGitHub {
owner = "99designs";
owner = "ByteNess";
repo = "aws-vault";
rev = "v${version}";
hash = "sha256-Qs4vxFgehWQYYECBGBSU8YI/BHLwOQUO5wBlNEUzD7c=";
hash = "sha256-K91GNyvtjDO6UMU9cC+TbUdMWdXrPlKLU8u5cbEMdRA=";
};
vendorHash = "sha256-4bJKDEZlO0DzEzTQ7m+SQuzhe+wKmL6wLueqgSz/46s=";
proxyVendor = true;
vendorHash = "sha256-3AL3vjKqzjrzgPrLLwIgWpn1hRB6soTMbaRly/fvziA=";
nativeBuildInputs = [
installShellFiles
makeWrapper
];
env.CGO_ENABLED = "0";
postInstall = ''
# make xdg-open overrideable at runtime
# aws-vault uses https://github.com/skratchdot/open-golang/blob/master/open/open.go to open links
@ -55,8 +58,11 @@ buildGoModule rec {
meta = with lib; {
description = "Vault for securely storing and accessing AWS credentials in development environments";
mainProgram = "aws-vault";
homepage = "https://github.com/99designs/aws-vault";
homepage = "https://github.com/ByteNess/aws-vault";
license = licenses.mit;
maintainers = with maintainers; [ zimbatm ];
maintainers = with maintainers; [
zimbatm
er0k
];
};
}