nixpkgs/pkgs/tools/security/rage/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2020-06-15 12:20:00 +03:00
{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
2020-01-18 12:20:00 +03:00
rustPlatform.buildRustPackage rec {
pname = "rage";
version = "0.4.0";
2020-01-18 12:20:00 +03:00
src = fetchFromGitHub {
owner = "str4d";
repo = pname;
rev = "v${version}";
sha256 = "1wwndzy4xxbar9r67z8g7pp0s1xsxk5xaarh4h6hc0kh411zglrq";
2020-01-18 12:20:00 +03:00
};
cargoSha256 = "08njl8irkqkfxj54pz4sx3l9aqb40h10wxb82zza52pqd4zapgn6";
2020-01-18 12:20:00 +03:00
2020-06-15 12:20:00 +03:00
nativeBuildInputs = [ installShellFiles ];
2020-01-18 12:20:00 +03:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-06-15 12:20:00 +03:00
postBuild = ''
cargo run --example generate-docs
cargo run --example generate-completions
'';
postInstall = ''
installManPage target/manpages/*
installShellCompletion target/completions/*.{bash,fish,zsh}
'';
2020-01-18 12:20:00 +03:00
meta = with stdenv.lib; {
description = "A simple, secure and modern encryption tool with small explicit keys, no config options, and UNIX-style composability";
homepage = "https://github.com/str4d/rage";
changelog = "https://github.com/str4d/rage/releases/tag/v${version}";
2020-01-18 12:20:00 +03:00
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}