printerfacts/shell.nix

18 lines
247 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
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";
}