8 lines
124 B
Nix
8 lines
124 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
rustc cargo rls rustfmt cargo-watch
|
||
|
];
|
||
|
}
|