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

figsoda 5bc96030 87e31502

Changed files
+2 -10
pkgs
development
compilers
rust
+2 -10
pkgs/development/compilers/rust/1_67.nix
···
} @ args:
import ./default.nix {
-
rustcVersion = "1.67.0";
-
rustcSha256 = "sha256-0CnxT85Foux6mmBdKgpAquRznLL9rinun3pukCWn/eQ=";
llvmSharedForBuild = pkgsBuildBuild.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
llvmSharedForHost = pkgsBuildHost.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
···
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 {
···
} @ args:
import ./default.nix {
+
rustcVersion = "1.67.1";
+
rustcSha256 = "sha256-Rkg9Pl3oWjvUb456OuGDdJY5EGfb5xOiXTzwUbPZ/24=";
llvmSharedForBuild = pkgsBuildBuild.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
llvmSharedForHost = pkgsBuildHost.llvmPackages_15.libllvm.override { enableSharedLibraries = true; };
···
selectRustPackage = pkgs: pkgs.rust_1_67;
rustcPatches = [
# Fixes ICE.
# https://github.com/rust-lang/rust/pull/107688
(fetchpatch {