me
/
guix
Archived
1
0
Fork 0

gnu: lite-xl: Update to 2.1.1.

Lua input is updated because the new version would not build
with Lua 5.2.

* gnu/packages/text-editors.scm (lite-xl): Update to 2.1.1.
[inputs]: Use lua-5.4.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Parnikkapore 2023-01-10 23:33:04 +08:00 committed by 宋文武
parent 5062c64ccb
commit 99d27b7c09
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 5 additions and 5 deletions

View File

@ -1360,7 +1360,7 @@ commands.")
(define-public lite-xl
(package
(name "lite-xl")
(version "2.0.5")
(version "2.1.1")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1369,15 +1369,15 @@ commands.")
(file-name (git-file-name name version))
(sha256
(base32
"0l2i9mvbkc4kqkwk2p17zd1rlm5v41acdyp2xivi53p2hkj4x6pf"))
"1pnmax68hvk1ry4bjsxwq4qimfn55pai8jlljw6jiqzcmh4mp7xm"))
(modules '((guix build utils)))
(snippet '(substitute* "meson.build"
(("dependency\\('lua5\\.2',")
"dependency('lua-5.2',")))))
(("dependency\\('lua5\\.4',")
"dependency('lua-5.4',")))))
(build-system meson-build-system)
(inputs (list agg
freetype
lua-5.2
lua-5.4
pcre2
reproc
sdl2))