From 693d4164a00ec78b701e5ec999a8a2ea5653104f Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 1 May 2022 04:20:00 +0000 Subject: [PATCH] rage: 0.7.1 -> 0.8.0 https://github.com/str4d/rage/releases/tag/v0.8.0 --- pkgs/tools/security/rage/default.nix | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/security/rage/default.nix b/pkgs/tools/security/rage/default.nix index 589a56adc329..09e7b2b41695 100644 --- a/pkgs/tools/security/rage/default.nix +++ b/pkgs/tools/security/rage/default.nix @@ -1,20 +1,29 @@ -{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles -, Foundation, Security, libiconv }: +{ lib +, stdenv +, rustPlatform +, fetchFromGitHub +, installShellFiles +, Foundation +, Security +, libiconv +}: rustPlatform.buildRustPackage rec { pname = "rage"; - version = "0.7.1"; + version = "0.8.0"; src = fetchFromGitHub { owner = "str4d"; repo = pname; rev = "v${version}"; - sha256 = "sha256-0OQnYc1IWYscvSw5YZH54Fh8cBasLlcVqrQcQ4MAsU8="; + sha256 = "sha256-ra68q5gwcbod5iajPIWEIGQceMK8ikSq/UKUfIEYaGE="; }; - cargoSha256 = "sha256-31s70pgEQDw3uifmhv1iWQuzKQVc2q+f76PPnGKIYdc="; + cargoSha256 = "sha256-o5HVMRWSIrCsbOEOeUvCvj+mkmjqRY3XaHx82IY73Cc="; - nativeBuildInputs = [ installShellFiles ]; + nativeBuildInputs = [ + installShellFiles + ]; buildInputs = lib.optionals stdenv.isDarwin [ Foundation