lua

lua 5.2.4

Powerful, fast, lightweight, embeddable scripting language

<rendered-html><p>Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.</p> </rendered-html>

https://www.lua.org
MIT License
main program: luaprograms: luac, lua
Platforms (45)
powerpc-linuxriscv64-linuxx86_64-netbsdpowerpc64le-linuxarc-linuxmipsel-netbsdi686-openbsdarmv7l-netbsd
View source on NixOS/nixpkgs →

Install

Copy into your configuration

NixOS (configuration.nix)
environment.systemPackages = with pkgs; [
  lua
];
Ad-hoc shell
nix-shell -p lua
Flake (nix run)
nix run nixpkgs#lua