2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, Foundation
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rage";
|
2022-06-26 10:26:21 +00:00
|
|
|
version = "0.8.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "str4d";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-06-26 10:26:21 +00:00
|
|
|
sha256 = "sha256-FexplUdn56TanxAKC+a8uWoR3soJT1/1qi9t2tw19Vw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
cargoSha256 = "sha256-xlpi6UQTL1p9JSLENKrLjG2DF9mYiV+E8bfjHQtqOyY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2020-12-07 07:45:13 +00:00
|
|
|
Foundation
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
# cargo test has an x86-only dependency
|
|
|
|
doCheck = stdenv.hostPlatform.isx86;
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
postBuild = ''
|
|
|
|
cargo run --example generate-docs
|
|
|
|
cargo run --example generate-completions
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage target/manpages/*
|
|
|
|
installShellCompletion target/completions/*.{bash,fish,zsh}
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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";
|
2021-05-03 20:48:10 +00:00
|
|
|
changelog = "https://github.com/str4d/rage/raw/v${version}/rage/CHANGELOG.md";
|
2020-11-24 20:58:05 +00:00
|
|
|
license = with licenses; [ asl20 mit ]; # either at your option
|
|
|
|
maintainers = with maintainers; [ marsam ryantm ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|