From 4d65795173c84329cf1e2f4254150a57c72276bc Mon Sep 17 00:00:00 2001 From: Yappaholic Date: Tue, 19 May 2026 17:47:53 +0300 Subject: gnu: Add lua-5.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/lua.scm (lua-5.5): New variable. Merges: https://codeberg.org/guix/guix/pulls/8515 Reviewed-by: Carlo Zancanaro Signed-off-by: Nguyễn Gia Phong --- gnu/packages/lua.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'gnu/packages/lua.scm') diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 0f4ff637951..190b723a02b 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -151,6 +151,22 @@ automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.") (license license:x11))) +(define-public lua-5.5 + (package (inherit lua) + (version "5.5.0") + (source (origin + (method url-fetch) + (uri (string-append "https://www.lua.org/ftp/lua-" + version ".tar.gz")) + (sha256 + (base32 "0gcbsr00difm2s82pflxg28zcnjka9048lncbfvwl1fhpcmw7k2p")) + ;; Note: Some lua-5.4 patches seem to apply without issues + (patches (search-patches "lua-5.4-pkgconfig.patch" + "lua-5.4-liblua-so.patch" + "lua-5.x-search-path-helpers.patch" + "lua-5.5-search-paths.patch")))) + (native-search-paths (lua-search-paths "5.5")))) + (define-public lua-5.4 (package (inherit lua) (version "5.4.8") -- cgit v1.2.3