mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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 <vagrant@debian.org> Suggested-by: Andreas Enge <andreas@enge.fr> Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
This commit is contained in:
parent
364c3f8f4e
commit
538fc4917f
1 changed files with 5 additions and 0 deletions
|
@ -134,6 +134,11 @@ for configuration, scripting, and rapid prototyping.")
|
||||||
(define-public lua-5.4
|
(define-public lua-5.4
|
||||||
(package (inherit lua)
|
(package (inherit lua)
|
||||||
(version "5.4.6")
|
(version "5.4.6")
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments lua)
|
||||||
|
((#:make-flags flags)
|
||||||
|
(append (delete "linux" flags)
|
||||||
|
'("linux-readline")))))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.lua.org/ftp/lua-"
|
(uri (string-append "https://www.lua.org/ftp/lua-"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue