This is an automated email from the git hooks/post-receive script.

vagrantc pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 538fc4917f gnu: lua-5.4: compile with readline support
538fc4917f is described below

commit 538fc4917f55cb2ab0b7c090de00855fa421db69
Author: Kimapr <[email protected]>
AuthorDate: Tue Mar 11 11:43:34 2025 +0500

    gnu: lua-5.4: compile with readline support
    
    * gnu/packages/lua.scm (lua-5.4)[arguments]: change target to
    "linux-readline".
    
    Modified-by: Vagrant Cascadian <[email protected]>
    Suggested-by: Andreas Enge <[email protected]>
    Signed-off-by: Vagrant Cascadian <[email protected]>
---
 gnu/packages/lua.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm
index 4c65bcbf12..cbac56e131 100644
--- a/gnu/packages/lua.scm
+++ b/gnu/packages/lua.scm
@@ -134,6 +134,11 @@ for configuration, scripting, and rapid prototyping.")
 (define-public lua-5.4
   (package (inherit lua)
            (version "5.4.6")
+           (arguments
+            (substitute-keyword-arguments (package-arguments lua)
+              ((#:make-flags flags)
+               (append (delete "linux" flags)
+                       '("linux-readline")))))
            (source (origin
                      (method url-fetch)
                      (uri (string-append "https://www.lua.org/ftp/lua-";

Reply via email to