ssh-to-pgp: init at 1.0.0

This is needed for onboarding sops-nix.
This commit is contained in:
Jörg Thalheim 2021-02-01 11:56:02 +01:00
parent 241780287e
commit 0d7fbbe1d6
No known key found for this signature in database
GPG key ID: B3F5D81B0C6967C4
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib, fetchFromGitHub, buildGoModule, gnupg }:
buildGoModule rec {
pname = "ssh-to-pgp";
version = "1.0.0";
src = fetchFromGitHub {
owner = "Mic92";
repo = "ssh-to-pgp";
rev = version;
sha256 = "sha256-TDrpnWAez8muysMdmKFBDZfK8CyhGn1VqHB8+zD6jSk=";
};
vendorSha256 = "sha256-ZF/WsmqmGHZIAGTPKJ70UhtmssNhiInEZfzrKxQLw9I=";
checkInputs = [ gnupg ];
checkPhase = ''
HOME=$TMPDIR go test .
'';
doCheck = true;
meta = with lib; {
description = "Convert ssh private keys to PGP";
homepage = "https://github.com/Mic92/ssh-to-pgp";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
};
}

View file

@ -7900,6 +7900,8 @@ in
ssh-chat = callPackage ../applications/networking/instant-messengers/ssh-chat { };
ssh-to-pgp = callPackage ../tools/security/ssh-to-pgp { };
suricata = callPackage ../applications/networking/ids/suricata {
python = python3;
};