14 lines
167 B
Nix
14 lines
167 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> { };
|
||
|
in pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
rustc
|
||
|
cargo
|
||
|
cargo-watch
|
||
|
rls
|
||
|
rustfmt
|
||
|
];
|
||
|
|
||
|
RUST_LOG = "info";
|
||
|
}
|