uefi-rs/nix/rust-toolchain.nix
Philipp Schuster b65cac29bf nix: get rust toolchain from rust-overlay
Now, a nix-shell always has the latest rust stable version, compliant to our
rust-toolchain.toml file.
2023-11-24 10:54:43 +01:00

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