Unverified Commit c7d8f118 authored by numinit's avatar numinit Committed by GitHub
Browse files

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

parents ca0fb22e b531698d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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";
+12 −6
Original line number Diff line number Diff line
@@ -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
    ];
  };
}