about summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-02-09 11:16:43 -0500
committerzowoq <59103226+zowoq@users.noreply.github.com>2023-02-10 06:55:18 +1000
commit5bc96030b03cf1199899b07a04c2076dcd1d75ff (patch)
tree324eb0ac1af37c9d750fc7bfeb120723bd3f5753 /pkgs/development/compilers/rust
parent87e315024e17288436fca93cc6d25ce789711e65 (diff)
downloadnixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar.gz
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar.bz2
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar.lz
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar.xz
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.tar.zst
nixlib-5bc96030b03cf1199899b07a04c2076dcd1d75ff.zip
rustc: 1.67.0 -> 1.67.1
Diff: https://github.com/rust-lang/rust/compare/1.67.0...1.67.1

Changelog: https://blog.rust-lang.org/2023/02/09/Rust-1.67.1.html
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/1_67.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/development/compilers/rust/1_67.nix b/pkgs/development/compilers/rust/1_67.nix
index a0a43f31386d..2d22432798a4 100644
--- a/pkgs/development/compilers/rust/1_67.nix
+++ b/pkgs/development/compilers/rust/1_67.nix
@@ -21,8 +21,8 @@
 } @ args:
 
 import ./default.nix {
-  rustcVersion = "1.67.0";
-  rustcSha256 = "sha256-0CnxT85Foux6mmBdKgpAquRznLL9rinun3pukCWn/eQ=";
+  rustcVersion = "1.67.1";
+  rustcSha256 = "sha256-Rkg9Pl3oWjvUb456OuGDdJY5EGfb5xOiXTzwUbPZ/24=";
 
   llvmSharedForBuild = pkgsBuildBuild.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
   llvmSharedForHost = pkgsBuildHost.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
@@ -59,14 +59,6 @@ import ./default.nix {
   selectRustPackage = pkgs: pkgs.rust_1_67;
 
   rustcPatches = [
-    # fix thin archive reading
-    # https://github.com/rust-lang/rust/pull/107360
-    (fetchpatch {
-      name = "revert-back-to-llvmarchivebuilder-on-all-platforms.patch";
-      url = "https://github.com/rust-lang/rust/commit/de363d54c40a378717881240e719f5f7223ba376.patch";
-      hash = "sha256-3Xb803LZUZ1dldxGJ65Iw6gg1V1K827OB/0b32GqilU=";
-    })
-
     # Fixes ICE.
     # https://github.com/rust-lang/rust/pull/107688
     (fetchpatch {