rust_template/shell.nix

10 lines
163 B
Nix
Raw Normal View History

2020-07-07 02:44:44 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc rls cargo cargo-watch lua5_3 rustfmt pkg-config
bashInteractive
];
}