mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
ssh-to-pgp: init at 1.0.0
This is needed for onboarding sops-nix.
This commit is contained in:
parent
241780287e
commit
0d7fbbe1d6
30
pkgs/tools/security/ssh-to-pgp/default.nix
Normal file
30
pkgs/tools/security/ssh-to-pgp/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -7900,6 +7900,8 @@ in
|
|||||||
|
|
||||||
ssh-chat = callPackage ../applications/networking/instant-messengers/ssh-chat { };
|
ssh-chat = callPackage ../applications/networking/instant-messengers/ssh-chat { };
|
||||||
|
|
||||||
|
ssh-to-pgp = callPackage ../tools/security/ssh-to-pgp { };
|
||||||
|
|
||||||
suricata = callPackage ../applications/networking/ids/suricata {
|
suricata = callPackage ../applications/networking/ids/suricata {
|
||||||
python = python3;
|
python = python3;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user