summary refs log tree commit diff
path: root/pkgs/tools/misc/rtx
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-10-19 03:05:31 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-10-19 03:05:31 +0000
commit9a6b037f08a77d62bd4a2c098794023d18e86c82 (patch)
tree184aa0c8e1de761f592fdaaa3a894eb96ad12932 /pkgs/tools/misc/rtx
parent1ae1ab8d01d53806bfaf96beddd86776d9cd205e (diff)
downloadnixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar.gz
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar.bz2
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar.lz
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar.xz
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.tar.zst
nixpkgs-9a6b037f08a77d62bd4a2c098794023d18e86c82.zip
rtx: 2023.10.1 -> 2023.10.2
Diffstat (limited to 'pkgs/tools/misc/rtx')
-rw-r--r--pkgs/tools/misc/rtx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/rtx/default.nix b/pkgs/tools/misc/rtx/default.nix
index 6e70b3b046a..6ceaa4508d8 100644
--- a/pkgs/tools/misc/rtx/default.nix
+++ b/pkgs/tools/misc/rtx/default.nix
@@ -15,16 +15,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rtx";
-  version = "2023.10.1";
+  version = "2023.10.2";
 
   src = fetchFromGitHub {
     owner = "jdxcode";
     repo = "rtx";
     rev = "v${version}";
-    hash = "sha256-E0jBTnfp8asLC2V8TtYSCh6fTxqkFwCMZjsjjBKEN0s=";
+    hash = "sha256-wp5+n8dSnCExxgnCHl0GhcWTu8J6nGBJnjzWmc7XJ3E=";
   };
 
-  cargoHash = "sha256-n/GxC5wDfhPboynFu8S1f9+kNDVmcKoSHaT96khyi2Q=";
+  cargoHash = "sha256-Y/AUdg001/ezYHgOEt32go7DiIMLym9GyB88hG4NdKs=";
 
   nativeBuildInputs = [ installShellFiles pkg-config ];
   buildInputs = [ openssl  ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];