cadey-printerfacts/shell.nix

14 lines
167 B
Nix
Raw Normal View History

2020-05-13 16:38:16 -04:00
let
2020-05-15 09:16:16 -04:00
pkgs = import <nixpkgs> { };
2020-05-13 16:38:16 -04:00
in pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
cargo-watch
rls
rustfmt
];
RUST_LOG = "info";
}