summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-07-01 12:51:24 -0400
committerGitHub <noreply@github.com>2023-07-01 12:51:24 -0400
commit271adaedcba2789e46198acd82ff13b24cdd1c90 (patch)
treed111956527c45ec0e430415fa0f7ef20857b015a
parentc61c792b94a2c99c89655a993953154ea721fb37 (diff)
parent324036b3d7cac775374843df9e26edd627509892 (diff)
downloadnixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar.gz
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar.bz2
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar.lz
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar.xz
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.tar.zst
nixpkgs-271adaedcba2789e46198acd82ff13b24cdd1c90.zip
Merge pull request #240870 from r-ryantm/auto-update/rtx
rtx: 1.32.0 -> 1.32.1
-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 040c76a1f99..f8ffbf398da 100644
--- a/pkgs/tools/misc/rtx/default.nix
+++ b/pkgs/tools/misc/rtx/default.nix
@@ -11,16 +11,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rtx";
-  version = "1.32.0";
+  version = "1.32.1";
 
   src = fetchFromGitHub {
     owner = "jdxcode";
     repo = "rtx";
     rev = "v${version}";
-    sha256 = "sha256-1TaBxVu/aNZ3iZWlo1Gn9pFK5j/vKsx6yT+eAPkmYSw=";
+    sha256 = "sha256-de3d3tW1VWx91fFXhfMKcWlAraUltfkT9p4i9AciSB0=";
   };
 
-  cargoSha256 = "sha256-wgTckF1IqnTa6gYVYHDNLdyx2w2urYG5Qqkq1iyuA3M=";
+  cargoHash = "sha256-dz6q7sfmtSzk5UwoAx969oImGDPifr2Nhh/vrXV5fxc=";
 
   nativeBuildInputs = [ installShellFiles ];
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];