summaryrefslogtreecommitdiff
path: root/gnu/packages/lua.scm
diff options
context:
space:
mode:
authorNox <noximilien@riseup.net>2026-05-19 00:49:39 +0200
committerNguyễn Gia Phong <cnx@loang.net>2026-06-07 21:40:42 +0900
commite0b763355d6518b64c9ef7698954c308eceeaeee (patch)
treec3d2abc0bd20ae7d7dd6e58d10b6a508f0f2fb41 /gnu/packages/lua.scm
parent8a4010f7988b960da8876b210b6d579e526c78cb (diff)
gnu: Add lua-expat variants.
* gnu/packages/lua.scm (lua-expat) (lua5.4-expat, lua5.5-expat): New variables. Change-Id: I5fccb7b536908b06fa2a66b1e278579de3622569 Merges: https://codeberg.org/guix/guix/pulls/8711 Reviewed-by: Carlo Zancanaro <carlo@zancanaro.id.au> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r--gnu/packages/lua.scm9
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 50353df3df4..4b12a0a2d86 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -364,6 +364,15 @@ some projects.")))
364(define-public lua5.2-expat 364(define-public lua5.2-expat
365 (make-lua-expat "lua5.2-expat" lua-5.2)) 365 (make-lua-expat "lua5.2-expat" lua-5.2))
366 366
367(define-public lua-expat
368 (make-lua-expat "lua-expat" lua))
369
370(define-public lua5.4-expat
371 (make-lua-expat "lua5.4-expat" lua-5.4))
372
373(define-public lua5.5-expat
374 (make-lua-expat "lua5.5-expat" lua-5.5))
375
367(define (make-lua-socket name lua) 376(define (make-lua-socket name lua)
368 (package 377 (package
369 (name name) 378 (name name)