kestrel: init at 0.10.0

This commit is contained in:
zendo 2022-10-24 20:58:13 +08:00
parent afd4752a38
commit e5e79becfe
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, fetchFromGitHub
, rustPlatform
, installShellFiles
}:
rustPlatform.buildRustPackage rec {
pname = "kestrel";
version = "0.10.0";
src = fetchFromGitHub {
owner = "finfet";
repo = pname;
rev = "v${version}";
hash = "sha256-aJKqx/PY7BanzE5AtqmKxvkULgXXqueGnDniLd9tHOg=";
};
cargoHash = "sha256-UnXaDdQzoYP1N2FnLjOQgiJKnCyCojXKKxVlWYZT0DE=";
nativeBuildInputs = [
installShellFiles
];
postInstall = ''
installManPage docs/man/kestrel.1
installShellCompletion --bash --name ${pname} completion/kestrel.bash-completion
'';
meta = with lib; {
description = "File encryption done right";
longDescription = "
Kestrel is a data-at-rest file encryption program
that lets you encrypt files to anyone with a public key.
";
homepage = "https://getkestrel.com";
license = licenses.bsd3;
maintainers = with maintainers; [ zendo ];
};
}

View file

@ -8233,6 +8233,8 @@ with pkgs;
keepalived = callPackage ../tools/networking/keepalived { };
kestrel = callPackage ../tools/security/kestrel { };
kexec-tools = callPackage ../os-specific/linux/kexec-tools { };
keepkey_agent = with python3Packages; toPythonApplication keepkey_agent;