guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 318b22c7d7041063b19e261e79f898e9dd9e88d8
Author: Ryan Prior <[email protected]>
AuthorDate: Mon Sep 14 18:02:14 2026 +0000

    gnu: lua-luv: Fix missing Lua module.
    
    luv can be built both a shared library (libluv.so)
    and a Lua module (luv.so).  For some reason the latter
    was disabled when this package was authored.
    
    * gnu/packages/lua.scm (lua-luv)[arguments]<#:configure-flags>:
      Unset BUILD_MODULE=Off.
    
    Merges: https://codeberg.org/guix/guix/pulls/11248
    Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
 gnu/packages/lua.scm | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 72f65e427e3..d936dc93180 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -1267,7 +1267,6 @@ Grammars (PEGs).")
            #:configure-flags
            #~'("-DWITH_LUA_ENGINE=Lua"
                "-DWITH_SHARED_LIBUV=On"
-               "-DBUILD_MODULE=Off"
                "-DBUILD_SHARED_LIBS=On"
                "-DLUA_BUILD_TYPE=System")
            #:phases

Reply via email to