rustUnstable: Don't depend on a stable rust compiler

+3 -1
+3 -1
pkgs/top-level/all-packages.nix
··· 4669 rustPlatform = rustStable; 4670 4671 rustStable = recurseIntoAttrs (makeRustPlatform rustc cargo rustStable); 4672 - rustUnstable = recurseIntoAttrs (makeRustPlatform rustcMaster cargo rustUnstable); 4673 4674 # rust platform to build cargo itself (with cargoSnapshot) 4675 rustCargoPlatform = makeRustPlatform rustc cargoSnapshot.cargo rustCargoPlatform; 4676 4677 makeRustPlatform = rustc: cargo: self: 4678 let
··· 4669 rustPlatform = rustStable; 4670 4671 rustStable = recurseIntoAttrs (makeRustPlatform rustc cargo rustStable); 4672 + rustUnstable = recurseIntoAttrs (makeRustPlatform rustcMaster 4673 + (cargo.override { rustPlatform = rustUnstableCargoPlatform; }) rustUnstable); 4674 4675 # rust platform to build cargo itself (with cargoSnapshot) 4676 rustCargoPlatform = makeRustPlatform rustc cargoSnapshot.cargo rustCargoPlatform; 4677 + rustUnstableCargoPlatform = makeRustPlatform rustcMaster cargoSnapshot.cargo rustUnstableCargoPlatform; 4678 4679 makeRustPlatform = rustc: cargo: self: 4680 let