mirror of
https://github.com/rust-osdev/uefi-rs
synced 2026-08-26 18:26:05 -04:00
Now, a nix-shell always has the latest rust stable version, compliant to our rust-toolchain.toml file.
10 lines
241 B
Nix
10 lines
241 B
Nix
# Returns the Rust toolchain for Nix compliant to the rust-toolchain.toml file
|
|
# but without rustup.
|
|
|
|
{
|
|
# Comes from rust-overlay
|
|
rust-bin
|
|
}:
|
|
|
|
# Includes rustc, cargo, rustfmt, etc
|
|
rust-bin.fromRustupToolchainFile ../rust-toolchain.toml
|