mlua_serde/shell.nix

14 lines
164 B
Nix
Raw Normal View History

2020-07-06 01:07:38 +00:00
let pkgs = import <nixpkgs> { };
in pkgs.mkShell {
2020-07-06 00:50:33 +00:00
buildInputs = with pkgs; [
2020-07-06 01:07:38 +00:00
rustc
cargo
rls
rustfmt
# lua
pkg-config
lua5_3
2020-07-06 00:50:33 +00:00
];
}