cadey-printerfacts/shell.nix

18 lines
247 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
dhall = import <dhall> { };
in pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
cargo-watch
rls
rustfmt
dhall.linux-dhall
dhall.linux-dhall-yaml
];
RUST_LOG = "info";
}