Skip to content

Commit

Permalink
gokey: init at 0.1.2-unstable-2023-11-16
Browse files Browse the repository at this point in the history
  • Loading branch information
con-f-use committed Feb 9, 2024
1 parent f636d30 commit cd81223
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/by-name/go/gokey/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule {
pname = "gokey";
version = "0.1.2-unstable-2023-11-16";

src = fetchFromGitHub {
owner = "cloudflare";
repo = "gokey";
rev = "26fcef24d123e0eaf7b92224e6880f529f94aa9f";
hash = "sha256-nt4fO8NKYfRkpoC1z8zDrEZC7+fo6sU/ZOHCMHIAT58=";
};

vendorHash = "sha256-ZDCoRE2oP8ANsu7jfLm3BMLzXdsq1dhsEigvwWgKk54=";

meta = with lib; {
homepage = "https://github.com/cloudflare/gokey";
description = "Vault-less password store";
license = licenses.bsd3;
maintainers = [ maintainers.confus ];
mainProgram = "gokey";
};
}

0 comments on commit cd81223

Please sign in to comment.