17 lines
307 B
Nix
17 lines
307 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
let rust-toolchain = with pkgs; symlinkJoin {
|
|
name = "rust-toolchain";
|
|
paths = [
|
|
rustc
|
|
cargo
|
|
rustfmt
|
|
rust-analyzer
|
|
clippy
|
|
rustPlatform.rustcSrc
|
|
];
|
|
};
|
|
in pkgs.mkShell {
|
|
buildInputs = [rust-toolchain];
|
|
RUST_BACKTRACE = 1;
|
|
}
|