summaryrefslogtreecommitdiff
path: root/libpanto-lua/build.zig.zon
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-07-07 11:29:23 -0600
committert <t@tjp.lol>2026-07-07 12:15:28 -0600
commit621d7fee0ace729f8d44126032d2c6e13f72ee7f (patch)
treea2938b0a9e5c0930e8644721abbe94875df9ff08 /libpanto-lua/build.zig.zon
parent0fa6d4209ff9b4a95e7d1955887aa4c73ee3423c (diff)
Move libpanto projects to libpantograph dependencyHEADmain
Remove the in-repo libpanto sources and binding projects from pantograph. Consume libpantograph through the Zig package URL at code.tjp.lol/libpantograph.git, including the Lua module artifact used by CLI extensions.
Diffstat (limited to 'libpanto-lua/build.zig.zon')
-rw-r--r--libpanto-lua/build.zig.zon26
1 files changed, 0 insertions, 26 deletions
diff --git a/libpanto-lua/build.zig.zon b/libpanto-lua/build.zig.zon
deleted file mode 100644
index d685c13..0000000
--- a/libpanto-lua/build.zig.zon
+++ /dev/null
@@ -1,26 +0,0 @@
-.{
- .fingerprint = 0xe0ed1e60c285f54f,
- .name = .panto_lua,
- .version = "0.0.0",
- .dependencies = .{
- .panto = .{
- .path = "../libpanto",
- },
- // Lua 5.4 source — used only for its headers (`lua.h`,
- // `lauxlib.h`, `lualib.h`) at `@cImport` time. A Lua C-module
- // does NOT link the Lua library: the host interpreter provides
- // every `lua_*`/`luaL_*` symbol at `dlopen` time, resolved via
- // dynamic lookup. We pin the same tarball the CLI uses so the
- // standalone module and the embedded VM build against identical
- // 5.4 headers.
- .lua_src = .{
- .url = "https://www.lua.org/ftp/lua-5.4.7.tar.gz",
- .hash = "N-V-__8AAIMvFABt-Qcpk24RD10ldEN743D8Q2e19Er8x3dJ",
- },
- },
- .paths = .{
- "build.zig",
- "build.zig.zon",
- "src",
- },
-}