rage: 0.8.0 -> 0.8.1

https://github.com/str4d/rage/releases/tag/v0.8.1
This commit is contained in:
Mario Rodas 2022-06-18 04:20:00 +00:00
parent 295f0ef3c2
commit 419e1c95e2
2 changed files with 4 additions and 8 deletions

View file

@ -4,22 +4,20 @@
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
, Foundation , Foundation
, Security
, libiconv
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "rage"; pname = "rage";
version = "0.8.0"; version = "0.8.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "str4d"; owner = "str4d";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-ra68q5gwcbod5iajPIWEIGQceMK8ikSq/UKUfIEYaGE="; sha256 = "sha256-FexplUdn56TanxAKC+a8uWoR3soJT1/1qi9t2tw19Vw=";
}; };
cargoSha256 = "sha256-o5HVMRWSIrCsbOEOeUvCvj+mkmjqRY3XaHx82IY73Cc="; cargoSha256 = "sha256-xlpi6UQTL1p9JSLENKrLjG2DF9mYiV+E8bfjHQtqOyY=";
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
@ -27,8 +25,6 @@ rustPlatform.buildRustPackage rec {
buildInputs = lib.optionals stdenv.isDarwin [ buildInputs = lib.optionals stdenv.isDarwin [
Foundation Foundation
Security
libiconv
]; ];
# cargo test has an x86-only dependency # cargo test has an x86-only dependency

View file

@ -5486,7 +5486,7 @@ with pkgs;
}; };
rage = callPackage ../tools/security/rage { rage = callPackage ../tools/security/rage {
inherit (darwin.apple_sdk.frameworks) Foundation Security; inherit (darwin.apple_sdk.frameworks) Foundation;
}; };
rar2fs = callPackage ../tools/filesystems/rar2fs { }; rar2fs = callPackage ../tools/filesystems/rar2fs { };