mlua_serde/shell.nix

9 lines
134 B
Nix
Raw Normal View History

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