Skip to content

Commit 5f9d317

Browse files
committed
Prefer profiles for stable toolchains
1 parent e471233 commit 5f9d317

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

README.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can put the code below into your `~/.config/nixpkgs/overlays.nix`.
2222
```
2323
Then the provided attribute paths are available in nix command.
2424
```bash
25-
$ nix-env -iA rust-bin.stable.latest.rust # Do anything you like.
25+
$ nix-env -iA rust-bin.stable.latest.default # Do anything you like.
2626
```
2727

2828
Alternatively, you can install it into nix channels.
@@ -68,7 +68,7 @@ Here's an example of using it in nixos configuration.
6868
./configuration.nix # Your system configuration.
6969
({ pkgs, ... }: {
7070
nixpkgs.overlays = [ rust-overlay.overlay ];
71-
environment.systemPackages = [ pkgs.rust-bin.stable.latest.rust ];
71+
environment.systemPackages = [ pkgs.rust-bin.stable.latest.default ];
7272
})
7373
];
7474
};
@@ -164,18 +164,16 @@ Some examples (assume `nixpkgs` had the overlay applied):
164164
You can check availability on [Rustup packages availibility](https://rust-lang.github.io/rustup-components-history/).
165165

166166
- A specific version of stable rust:
167-
`nixpkgs.rust-bin.stable."1.48.0".rust`
167+
`nixpkgs.rust-bin.stable."1.48.0".default`
168168
- A specific date of beta rust:
169-
`nixpkgs.rust-bin.nightly."2021-01-01".rust`
170-
- A specific version of stable rust:
171-
`nixpkgs.rust-bin.stable."1.48.0".rust`
169+
`nixpkgs.rust-bin.beta."2021-01-01".default`
172170
- A specific date of nightly rust:
173-
`nixpkgs.rust-bin.nightly."2020-12-31".rust`
171+
`nixpkgs.rust-bin.nightly."2020-12-31".default`
174172
- Latest stable rust with additional component `rust-src` and extra target
175173
`arm-unknown-linux-gnueabihf`:
176174

177175
```nix
178-
nixpkgs.rust-bin.stable.latest.rust.override {
176+
nixpkgs.rust-bin.stable.latest.default.override {
179177
extensions = [ "rust-src" ];
180178
targets = [ "arm-unknown-linux-gnueabihf" ];
181179
}

rust-overlay.nix

+10-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,16 @@ let
454454
{
455455
# Legacy support for special pre-aggregated package.
456456
# It has more components than `default` profile but less than `complete` profile.
457-
rust = mkPackage "rust" manifest.pkg.rust;
457+
rust =
458+
let pkg = mkPackage "rust" manifest.pkg.rust; in
459+
if builtins.match ".*[.].*[.].*" != null
460+
then builtins.trace ''
461+
Rust ${manifest.version}:
462+
Pre-aggregated package `rust` is not encouraged for stable channel since it contains almost all and uncertain components.
463+
Consider use `default` profile like `rust-bin.stable.latest.default` and override it with extensions you need.
464+
See README for more information.
465+
'' pkg
466+
else pkg;
458467

459468
# Internal use.
460469
_components = componentSet;

0 commit comments

Comments
 (0)