nixpkgs/pkgs/tools/security/vault-medusa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
598 B
Nix
Raw Normal View History

2022-06-10 17:45:38 +00:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "vault-medusa";
2023-01-18 03:52:55 +00:00
version = "0.4.1";
2022-06-10 17:45:38 +00:00
src = fetchFromGitHub {
owner = "jonasvinther";
repo = "medusa";
rev = "v${version}";
2023-01-18 03:52:55 +00:00
sha256 = "sha256-VL22p723LDHpn+WhKoPm3u1uSTMofJpy3tZNlgcWQSk=";
2022-06-10 17:45:38 +00:00
};
2023-01-18 03:52:55 +00:00
vendorHash = "sha256-pptAtzw9vRguQJK73kjfM/wnTJDekXBWV3Yeb8p8LOY=";
2022-06-10 17:45:38 +00:00
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 ];
2022-06-10 17:45:38 +00:00
};
}