unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#58018] [PATCH] gnu: Add lite-xl.
@ 2022-09-23  7:00 zamfofex
  2022-09-29 20:52 ` bug#58018: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: zamfofex @ 2022-09-23  7:00 UTC (permalink / raw)
  To: 58018; +Cc: zamfofex

* gnu/packages/text-editors.scm (lite-xl): New variable.
---
 gnu/packages/text-editors.scm | 40 +++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 0c30a70..6df2814 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2021 Calum Irwin <calumirwin1@gmail.com>
 ;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
 ;;; Copyright © 2022 Foo Chuan Wei <chuanwei.foo@hotmail.com>
+;;; Copyright © 2022 zamfofex <zamfofex@twdb.moe>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -45,6 +46,7 @@ (define-module (gnu packages text-editors)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix build-system meson)
   #:use-module (guix build-system python)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (gnu packages)
@@ -62,6 +64,7 @@ (define-module (gnu packages text-editors)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages glib)
+  #:use-module (gnu packages graphics)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages haskell-xyz)
@@ -81,6 +84,7 @@ (define-module (gnu packages text-editors)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages regex)
   #:use-module (gnu packages ruby)
+  #:use-module (gnu packages sdl)
   #:use-module (gnu packages sqlite)
   #:use-module (gnu packages terminals)
   #:use-module (gnu packages texinfo)
@@ -1260,3 +1264,39 @@ (define-public mle
 splitting, multiple cursors, and integration with various shell
 commands.")
     (license license:asl2.0)))
+
+(define-public lite-xl
+  (package
+    (name "lite-xl")
+    (version "2.0.5")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lite-xl/lite-xl")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0l2i9mvbkc4kqkwk2p17zd1rlm5v41acdyp2xivi53p2hkj4x6pf"))
+              (modules '((guix build utils)))
+              (snippet '(substitute* "meson.build"
+                          (("dependency\\('lua5\\.2',")
+                           "dependency('lua-5.2',")))))
+    (build-system meson-build-system)
+    (inputs (list agg
+                  freetype
+                  lua-5.2
+                  pcre2
+                  reproc
+                  sdl2))
+    (native-inputs (list pkg-config))
+    (home-page "https://lite-xl.com")
+    (synopsis "A lightweight text editor written in Lua")
+    (description
+     "Lite XL is derived from lite. It is a lightweight text editor
+written mostly in Lua — it aims to provide something practical, pretty, small
+and fast easy to modify and extend, or to use without doing either.
+
+The aim of Lite XL compared to lite is to be more user friendly, improve the
+quality of font rendering, and reduce CPU usage.")
+    (license license:expat)))
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#58018: [PATCH] gnu: Add lite-xl.
  2022-09-23  7:00 [bug#58018] [PATCH] gnu: Add lite-xl zamfofex
@ 2022-09-29 20:52 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-09-29 20:52 UTC (permalink / raw)
  To: zamfofex; +Cc: 58018-done

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

Hi,

zamfofex <zamfofex@twdb.moe> skribis:

> * gnu/packages/text-editors.scm (lite-xl): New variable.

Applied with the changes below.  Thanks!

Ludo’.


[-- Attachment #2: Type: text/x-patch, Size: 1168 bytes --]

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 6df2814411..40d6d28b55 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1291,12 +1291,12 @@ (define-public lite-xl
                   sdl2))
     (native-inputs (list pkg-config))
     (home-page "https://lite-xl.com")
-    (synopsis "A lightweight text editor written in Lua")
+    (synopsis "Lightweight text editor written in Lua")
     (description
-     "Lite XL is derived from lite. It is a lightweight text editor
-written mostly in Lua — it aims to provide something practical, pretty, small
-and fast easy to modify and extend, or to use without doing either.
+     "Lite XL is derived from lite.  It is a lightweight text editor written
+mostly in Lua.  It aims to provide something practical, pretty, small and fast
+easy to modify and extend, or to use without doing either.
 
-The aim of Lite XL compared to lite is to be more user friendly, improve the
+The aim of Lite XL compared to lite is to be more user-friendly, improve the
 quality of font rendering, and reduce CPU usage.")
     (license license:expat)))

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-09-29 20:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-23  7:00 [bug#58018] [PATCH] gnu: Add lite-xl zamfofex
2022-09-29 20:52 ` bug#58018: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).