File tree 2 files changed +8
-11
lines changed
2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ Running `nix develop` will create a shell with the default nightly Rust toolchai
153
153
stable = {
154
154
# The latest stable toolchain.
155
155
latest = {
156
- # [Experimental]
157
156
# Profiles, predefined component sets.
158
157
# See: https://rust-lang.github.io/rustup/concepts/profiles.html
159
158
minimal = «derivation»; # Only `cargo`, `rustc` and `rust-std`.
@@ -211,8 +210,7 @@ Some examples (assume `nixpkgs` had the overlay applied):
211
210
212
211
- Latest stable/beta/nightly rust with almost all components (provided the same as ` mozilla-overlay ` ):
213
212
` nixpkgs.rust-bin.{stable,beta,nightly}.latest.rust `
214
- - * \[ Experimental\] *
215
- Latest stable/beta/nightly rust with ` default ` or ` minimal ` profile (provided the same as default behavior of ` rustup install ` ).
213
+ - Latest stable/beta/nightly rust with ` default ` or ` minimal ` profile (provided the same as default behavior of ` rustup install ` ).
216
214
` nixpkgs.rust-bin.{stable,beta,nightly}.latest.{default,minimal} `
217
215
218
216
Note: ` default ` profile on ` nightly ` may not always be available due to absense of required components.
Original file line number Diff line number Diff line change @@ -559,22 +559,21 @@ let
559
559
560
560
in {
561
561
# For each channel:
562
- # rust-bin.stable.latest.cargo
563
- # rust-bin.stable.latest.rust # Aggregate all others. (recommended)
562
+ # rust-bin.stable.latest.{minimal,default,complete} # Profiles.
563
+ # rust-bin.stable.latest.rust # Pre-aggregate from upstream.
564
+ # rust-bin.stable.latest.cargo # Components...
564
565
# rust-bin.stable.latest.rustc
565
- # rust-bin.stable.latest.rust-analysis
566
566
# rust-bin.stable.latest.rust-docs
567
- # rust-bin.stable.latest.rust-src
568
- # rust-bin.stable.latest.rust-std
567
+ # ...
569
568
#
570
569
# For a specific version of stable:
571
- # rust-bin.stable."1.47.0".rust
570
+ # rust-bin.stable."1.47.0".default
572
571
#
573
572
# For a specific date of beta:
574
- # rust-bin.beta."2021-01-01".rust
573
+ # rust-bin.beta."2021-01-01".default
575
574
#
576
575
# For a specific date of nightly:
577
- # rust-bin.nightly."2020-01-01".rust
576
+ # rust-bin.nightly."2020-01-01".default
578
577
rust-bin = with builtins ;
579
578
( super . rust-bin or { } ) //
580
579
mapAttrs ( channel : mapAttrs ( version : toolchainFromManifest ) ) super . rust-bin . manifests //
You can’t perform that action at this time.
0 commit comments