summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-02-10 11:00:04 +0800
committerGitHub <noreply@github.com>2023-02-10 11:00:04 +0800
commit197a964bf046d4850358bfe6dce36c2b5de7d601 (patch)
treeec5bcc87e19d8e14e48571642fab6fd00fccf5dd /pkgs
parentce81c3ab72043a8b6e6584a0fc443aeac97c9c0e (diff)
parentbbd31f5ec2b02e4ca7248ecf76f610644bdc4c2c (diff)
downloadnixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar.gz
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar.bz2
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar.lz
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar.xz
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.tar.zst
nixpkgs-197a964bf046d4850358bfe6dce36c2b5de7d601.zip
Merge pull request #215499 from vcunat/p/rustup-bump
rustup: 1.25.1 -> 1.25.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/rustup/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/rustup/default.nix b/pkgs/development/tools/rust/rustup/default.nix
index d7c4aaa39ee..6f9466b60d2 100644
--- a/pkgs/development/tools/rust/rustup/default.nix
+++ b/pkgs/development/tools/rust/rustup/default.nix
@@ -23,16 +23,16 @@ in
 
 rustPlatform.buildRustPackage rec {
   pname = "rustup";
-  version = "1.25.1";
+  version = "1.25.2";
 
   src = fetchFromGitHub {
     owner = "rust-lang";
     repo = "rustup";
     rev = version;
-    sha256 = "sha256-zCr8xu0j/pBsdJEAYTCGrEouA8QumBnyhM4YLFZJqZI=";
+    sha256 = "sha256-zFdw6P4yrLDshtF9A5MbkxFcUE8KvlZGx5qkW4LSPzw=";
   };
 
-  cargoSha256 = "sha256-FDVZn2PjqxovQmmandJICkidurhoXCAxo3bibuxQSMY=";
+  cargoSha256 = "sha256-QJKxKAW7MutpJsJwB/EImQLPaax7L/A25yRAAwEDXUQ=";
 
   nativeBuildInputs = [ makeBinaryWrapper pkg-config ];