Lua

From NixOS Wiki
Revision as of 22:07, 3 November 2023 by imported>Qyriad (Link to Lua's nixpkgs manual section in See Also)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

#! nix-shell with lua interpreter

To use a nix-shell shebang with lua you will need to use following structure:

#!/usr/bin/env nix-shell
--[[
#!nix-shell -i lua -p lua
]]

print("this is from lua")

Some background by samueldr[1]:

Two inter-twined fun facts.

  • Lua only skips one shebang line.
  • nix-shell doesn't require its magic lines to be right after the first line.

See Also