From 224e58577f3662277a484456f57c1ae0a7f5016f Mon Sep 17 00:00:00 2001 From: Seven Of Aces Date: Tue, 10 Dec 2024 16:51:04 -0800 Subject: [PATCH] added lua tools to flake --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 19ad15f..031da23 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,6 @@ { # Tooling file for Nix and NixOS to get a quick start + # Run 'nix develop' to enter the development shell description = "pending"; inputs = { @@ -15,6 +16,11 @@ buildInputs = [ # Run CI/CD actions locally pkgs.act + # Lua 5.1 development tools + lua51Packages.lua + lua51Packages.luarocks + lua51Packages.busted + lua51Packages.luacheck ]; shellHook = '' alias run_workflows='act -W $PWD/.forgejo/workflows -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest --pull=false'