about summary refs log tree commit diff
path: root/shells/lua.nix
blob: 215ed7eef81af964389841d8ae0d3ad062573b0d (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  name = "lua-shell";
  buildInputs = with pkgs; [
    lua
  ];
}