summary refs log blame commit diff
path: root/pkgs/tools/admin/aws-vault/default.nix
blob: 6e0bf2d147a3ad0cd48209265687d235a4f8cf37 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                         
                    






                                                  
                                                                    


                    
                                                                                                           


                                                        

    
 
{ buildGoPackage, lib, fetchFromGitHub }:
buildGoPackage rec {
  name = "${pname}-${version}";
  pname = "aws-vault";
  version = "4.3.0";

  goPackagePath = "github.com/99designs/${pname}";

  src = fetchFromGitHub {
    owner = "99designs";
    repo = pname;
    rev = "v${version}";
    sha256 = "0cwzvw1rcvg7y3m8dahr9r05s4i9apnfw5xhiaf0rlkdh3vy33wp";
  };

  meta = with lib; {
    description = "A vault for securely storing and accessing AWS credentials in development environments";
    homepage = "https://github.com/99designs/aws-vault";
    license = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
  };

}