rage: 0.4.0 -> 0.5.0

* Upgrades to latest version
* Moves darwin security access into derivation,
  simplifying all-packages.nix
* Add RyanTM as maintainer
This commit is contained in:
Ryan Mulligan 2020-11-22 13:18:38 -08:00
parent 272744825d
commit 31c770d065
2 changed files with 8 additions and 10 deletions

View file

@ -1,21 +1,21 @@
{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }: { stdenv, rustPlatform, fetchFromGitHub, installShellFiles, darwin }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "rage"; pname = "rage";
version = "0.4.0"; version = "0.5.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "str4d"; owner = "str4d";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1wwndzy4xxbar9r67z8g7pp0s1xsxk5xaarh4h6hc0kh411zglrq"; sha256 = "sha256-XSDfAsXfwSoe5JMdJtZlC324Sra+4fVJhE3/k2TthEc=";
}; };
cargoSha256 = "08njl8irkqkfxj54pz4sx3l9aqb40h10wxb82zza52pqd4zapgn6"; cargoSha256 = "sha256-GPr5zxeODAjD+ynp/nned9gZUiReYcdzosuEbLIKZSs=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ]; buildInputs = stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
postBuild = '' postBuild = ''
cargo run --example generate-docs cargo run --example generate-docs
@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
description = "A simple, secure and modern encryption tool with small explicit keys, no config options, and UNIX-style composability"; 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"; homepage = "https://github.com/str4d/rage";
changelog = "https://github.com/str4d/rage/releases/tag/v${version}"; changelog = "https://github.com/str4d/rage/releases/tag/v${version}";
license = licenses.asl20; license = with licenses; [ asl20 mit ]; # either at your option
maintainers = [ maintainers.marsam ]; maintainers = with maintainers; [ marsam ryantm ];
}; };
} }

View file

@ -3510,9 +3510,7 @@ in
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security;
}; };
rage = callPackage ../tools/security/rage { rage = callPackage ../tools/security/rage { };
inherit (darwin.apple_sdk.frameworks) Security;
};
rar2fs = callPackage ../tools/filesystems/rar2fs { }; rar2fs = callPackage ../tools/filesystems/rar2fs { };