about summary refs log tree commit diff
path: root/pkgs/tools/security/rage
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-05-01 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-05-01 04:20:00 +0000
commit693d4164a00ec78b701e5ec999a8a2ea5653104f (patch)
treeb984cfbbaad899c45cec4904a49e58026653420e /pkgs/tools/security/rage
parent43d7b5760b5a2be67818b9e28519fe263841a6ef (diff)
rage: 0.7.1 -> 0.8.0
https://github.com/str4d/rage/releases/tag/v0.8.0
Diffstat (limited to 'pkgs/tools/security/rage')
-rw-r--r--pkgs/tools/security/rage/default.nix21
1 files changed, 15 insertions, 6 deletions
diff --git a/pkgs/tools/security/rage/default.nix b/pkgs/tools/security/rage/default.nix
index 589a56adc3299..09e7b2b416959 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