mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
40 lines
920 B
Nix
40 lines
920 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|