printerfacts/shell.nix

14 lines
167 B
Nix
Raw Normal View History

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