mipha/shell.nix

14 lines
220 B
Nix

{ pkgs ? import <nixpkgs> { } }:
let lua = pkgs.callPackage ./nix/lua.nix { };
in pkgs.mkShell {
buildInputs = with pkgs;
with lua53Packages; [
luarocks-nix
lua
busted
moonscript
];
}