nixpkgs-suyu/pkgs/tools/admin/cf-vault/default.nix

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

24 lines
603 B
Nix
Raw Normal View History

2022-02-21 11:30:56 +01:00
{buildGoModule, fetchFromGitHub, lib}:
buildGoModule rec {
pname = "cf-vault";
2022-09-12 13:23:33 +02:00
version = "0.0.13";
2022-02-21 11:30:56 +01:00
src = fetchFromGitHub {
owner = "jacobbednarz";
repo = pname;
rev = version;
2022-09-12 13:23:33 +02:00
sha256 = "sha256-wW/CSF+DexrdmOvp3BpyBmltOyF4TBTW3OXwjdqfaR4=";
2022-02-21 11:30:56 +01:00
};
2022-09-12 13:23:33 +02:00
vendorSha256 = "sha256-H44YCoay/dVL22YhMy2AT/Jageu0pM9IS0SWPp9E4F8=";
2022-02-21 11:30:56 +01:00
meta = with lib; {
description = ''
A tool for managing your Cloudflare credentials, securely..
'';
homepage = "https://github.com/jacobbednarz/cf-vault/";
license = licenses.mit;
maintainers = with maintainers; [ viraptor ];
};
}