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";
|
2023-03-27 19:17:25 +00:00
|
|
|
version = "0.9.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "str4d";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-27 19:17:25 +00:00
|
|
|
hash = "sha256-df+ch0JfPgmf/qKMV3sBSmfCvRTazVnAa1SRRvhrteQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-03-27 19:17:25 +00:00
|
|
|
cargoHash = "sha256-GW3u3LyUJqu4AMnb/2M7mYa45qbRtG2IDuCJoEVOfn0=";
|
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
|
|
|
};
|
|
|
|
}
|