about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-28 03:41:32 +0200
committerGitHub <noreply@github.com>2023-10-28 03:41:32 +0200
commita3095de3b3590520e5a1acce34f368e42cd5f073 (patch)
tree46bbbd7c054d0d887eeb891e1c8307ac8faef7d6 /pkgs/tools
parente31c7fcf578c8ff1607a8960cf38ffa55a4355ed (diff)
parent9a6b037f08a77d62bd4a2c098794023d18e86c82 (diff)
Merge pull request #261951 from r-ryantm/auto-update/rtx
rtx: 2023.10.1 -> 2023.10.2
Diffstat (limited to 'pkgs/tools')
-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 6e70b3b046a8c..6ceaa4508d8fc 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 ];