mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
6fa6d38d74
vault-medusa: 0.3.5 -> 0.3.6
23 lines
600 B
Nix
23 lines
600 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "vault-medusa";
|
|
version = "0.3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jonasvinther";
|
|
repo = "medusa";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KAKHuUv6nFVi3ucXkXGs9yfy2WFBnIDaDiNLKXsEOlI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-DCq+Dke33trkntrXz49I1mDxsJodVbtZEbg1UF6Tmwk=";
|
|
|
|
meta = with lib; {
|
|
description = "A cli tool for importing and exporting Hashicorp Vault secrets";
|
|
homepage = "https://github.com/jonasvinther/medusa";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|