printerfacts/shell.nix

19 lines
295 B
Nix
Raw Normal View History

2020-05-13 20:38:16 +00:00
let
sources = import ./nix/sources.nix { };
pkgs = import sources.nixpkgs { };
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";
}