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
603 B
Nix
Raw Normal View History

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