@@ -22,7 +22,7 @@ You can put the code below into your `~/.config/nixpkgs/overlays.nix`.
22
22
```
23
23
Then the provided attribute paths are available in nix command.
24
24
``` 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.
26
26
```
27
27
28
28
Alternatively, you can install it into nix channels.
@@ -68,7 +68,7 @@ Here's an example of using it in nixos configuration.
68
68
./configuration.nix # Your system configuration.
69
69
({ pkgs, ... }: {
70
70
nixpkgs.overlays = [ rust-overlay.overlay ];
71
- environment.systemPackages = [ pkgs.rust-bin.stable.latest.rust ];
71
+ environment.systemPackages = [ pkgs.rust-bin.stable.latest.default ];
72
72
})
73
73
];
74
74
};
@@ -164,18 +164,16 @@ Some examples (assume `nixpkgs` had the overlay applied):
164
164
You can check availability on [ Rustup packages availibility] ( https://rust-lang.github.io/rustup-components-history/ ) .
165
165
166
166
- A specific version of stable rust:
167
- ` nixpkgs.rust-bin.stable."1.48.0".rust `
167
+ ` nixpkgs.rust-bin.stable."1.48.0".default `
168
168
- 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 `
172
170
- A specific date of nightly rust:
173
- ` nixpkgs.rust-bin.nightly."2020-12-31".rust `
171
+ ` nixpkgs.rust-bin.nightly."2020-12-31".default `
174
172
- Latest stable rust with additional component ` rust-src ` and extra target
175
173
` arm-unknown-linux-gnueabihf ` :
176
174
177
175
``` nix
178
- nixpkgs.rust-bin.stable.latest.rust .override {
176
+ nixpkgs.rust-bin.stable.latest.default .override {
179
177
extensions = [ "rust-src" ];
180
178
targets = [ "arm-unknown-linux-gnueabihf" ];
181
179
}
0 commit comments