nixpkgs/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
601 B
Nix
Raw Normal View History

2022-02-21 10:30:56 +00:00
{buildGoModule, fetchFromGitHub, lib}:
buildGoModule rec {
pname = "cf-vault";
2023-06-29 06:47:21 +00:00
version = "0.0.15";
2022-02-21 10:30:56 +00:00
src = fetchFromGitHub {
owner = "jacobbednarz";
repo = pname;
rev = version;
2023-06-29 06:47:21 +00:00
sha256 = "sha256-+6+I69LRCoU35lTrM8cZnzJsHB9SIr6OQKaiRFo7aW4=";
2022-02-21 10:30:56 +00:00
};
vendorHash = "sha256-oNLGHV0NFYAU1pHQWeCmegonkEtMtGts0uWZWPnLVuY=";
2022-02-21 10:30:56 +00: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 ];
};
}