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.

25 lines
631 B
Nix
Raw Normal View History

2022-02-21 10:30:56 +00:00
{buildGoModule, fetchFromGitHub, lib}:
buildGoModule rec {
pname = "cf-vault";
2024-01-04 05:25:03 +00:00
version = "0.0.18";
2022-02-21 10:30:56 +00:00
src = fetchFromGitHub {
owner = "jacobbednarz";
repo = pname;
rev = version;
2024-01-04 05:25:03 +00:00
sha256 = "sha256-vp9ufjNZabY/ck2lIT+QpD6IgaVj1BkBRTjPxkb6IjQ=";
2022-02-21 10:30:56 +00:00
};
2024-01-04 05:25:03 +00:00
vendorHash = "sha256-7qFB1Y1AnqMgdu186tAXCdoYOhCMz8pIh6sY02LbIgs=";
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 ];
2024-02-11 02:19:15 +00:00
mainProgram = "cf-vault";
2022-02-21 10:30:56 +00:00
};
}