cadey-printerfacts/shell.nix
Christine Dodrill b1f6e6d823 fix
Signed-off-by: Christine Dodrill <me@christine.website>
2021-01-01 20:52:07 -05:00

14 lines
167 B
Nix

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