passphrase2pgp: init at 1.1.0
This commit is contained in:
parent
db74faeb71
commit
d7cf422f7e
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib, pandoc, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "passphrase2pgp";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "skeeto";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Nje77tn55CKRU6igEA/6IquDhXVVQAdiez6nmN49di4";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-7q5nwkj4TP7VgHmV9YBbCB11yTPL7tK4gD+uN4Vw3Cs";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/doc/$name
|
||||||
|
cp README.md $out/share/doc/$name
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Predictable, passphrase-based PGP key generator";
|
||||||
|
homepage = "https://github.com/skeeto/passphrase2pgp";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with maintainers; [ kaction ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1398,6 +1398,8 @@ in
|
||||||
|
|
||||||
pass = callPackage ../tools/security/pass { };
|
pass = callPackage ../tools/security/pass { };
|
||||||
|
|
||||||
|
passphrase2pgp = callPackage ../tools/security/passphrase2pgp { };
|
||||||
|
|
||||||
pass-git-helper = python3Packages.callPackage ../applications/version-management/git-and-tools/pass-git-helper { };
|
pass-git-helper = python3Packages.callPackage ../applications/version-management/git-and-tools/pass-git-helper { };
|
||||||
|
|
||||||
pass-nodmenu = callPackage ../tools/security/pass {
|
pass-nodmenu = callPackage ../tools/security/pass {
|
||||||
|
|
Loading…
Reference in New Issue