summary refs log tree commit diff
path: root/pkgs/tools/security/rage
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2020-11-22 13:18:38 -0800
committerRyan Mulligan <ryan@ryantm.com>2020-11-22 13:18:38 -0800
commit31c770d065fe4fce58131998e3a62000655332bc (patch)
tree3a1f393f57ba39ad49f8b6689056be11f021e8b1 /pkgs/tools/security/rage
parent272744825d28f9cea96fe77fe685c8ba2af8eb12 (diff)
downloadnixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar.gz
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar.bz2
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar.lz
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar.xz
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.tar.zst
nixpkgs-31c770d065fe4fce58131998e3a62000655332bc.zip
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
Diffstat (limited to 'pkgs/tools/security/rage')
-rw-r--r--pkgs/tools/security/rage/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/security/rage/default.nix b/pkgs/tools/security/rage/default.nix
index 26ae27dff6b..1e0164e10cf 100644
--- a/pkgs/tools/security/rage/default.nix
+++ b/pkgs/tools/security/rage/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, Security }:
+{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, darwin }:
 
 rustPlatform.buildRustPackage rec {
   pname = "rage";
-  version = "0.4.0";
+  version = "0.5.0";
 
   src = fetchFromGitHub {
     owner = "str4d";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1wwndzy4xxbar9r67z8g7pp0s1xsxk5xaarh4h6hc0kh411zglrq";
+    sha256 = "sha256-XSDfAsXfwSoe5JMdJtZlC324Sra+4fVJhE3/k2TthEc=";
   };
 
-  cargoSha256 = "08njl8irkqkfxj54pz4sx3l9aqb40h10wxb82zza52pqd4zapgn6";
+  cargoSha256 = "sha256-GPr5zxeODAjD+ynp/nned9gZUiReYcdzosuEbLIKZSs=";
 
   nativeBuildInputs = [ installShellFiles ];
 
-  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
 
   postBuild = ''
     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";
     homepage = "https://github.com/str4d/rage";
     changelog = "https://github.com/str4d/rage/releases/tag/v${version}";
-    license = licenses.asl20;
-    maintainers = [ maintainers.marsam ];
+    license = with licenses; [ asl20 mit ]; # either at your option
+    maintainers = with maintainers; [ marsam ryantm ];
   };
 }