guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: emacs-next-pgtk: Inherit from emacs-next-tree-sitter.


From: guix-commits
Subject: 02/02: gnu: emacs-next-pgtk: Inherit from emacs-next-tree-sitter.
Date: Sat, 11 Mar 2023 23:05:13 -0500 (EST)

abcdw pushed a commit to branch master
in repository guix.

commit 7001cc68b6d5785a8dd6aa202d4acbb2ea9364e5
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Sat Mar 11 11:19:21 2023 +0400

    gnu: emacs-next-pgtk: Inherit from emacs-next-tree-sitter.
    
    Inherit pgtk emacs from tree-sitter to have both features available for
    wayland users.  For more details:
    https://yhetil.org/guix-devel/87r0txr99u.fsf@inventati.org/T/#u
    
    * gnu/packages/emacs.scm (emacs-next-pgtk): Inherit from
    emacs-next-tree-sitter.
---
 gnu/packages/emacs.scm | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index e93dd772e4..34de0bf3e4 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -420,24 +420,6 @@ languages.")
        (modify-inputs (package-native-inputs emacs)
          (prepend autoconf))))))
 
-(define-public emacs-next-pgtk
-  (package
-    (inherit emacs-next)
-    (name "emacs-next-pgtk")
-    (source
-     (origin
-       (inherit (package-source emacs-next))
-       (patches
-        (append (search-patches "emacs-pgtk-super-key-fix.patch")
-                (origin-patches (package-source emacs-next))))))
-    (arguments
-     (substitute-keyword-arguments (package-arguments emacs-next)
-       ((#:configure-flags flags #~'())
-        #~(cons* "--with-pgtk" #$flags))))
-    (synopsis "Emacs text editor with @code{pgtk} support")
-    (description "This Emacs build implements graphical UI purely in terms of
-GTK.")))
-
 (define-public emacs-next-tree-sitter
   (let ((commit "ac7ec87a7a0db887e4ae7fe9005aea517958b778")
         (revision "0"))
@@ -462,6 +444,24 @@ GTK.")))
       (synopsis "Emacs text editor with @code{tree-sitter} support")
       (description "This Emacs build supports tree-sitter."))))
 
+(define-public emacs-next-pgtk
+  (package
+    (inherit emacs-next-tree-sitter)
+    (name "emacs-next-pgtk")
+    (source
+     (origin
+       (inherit (package-source emacs-next-tree-sitter))
+       (patches
+        (append (search-patches "emacs-pgtk-super-key-fix.patch")
+                (origin-patches (package-source emacs-next-tree-sitter))))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments emacs-next-tree-sitter)
+       ((#:configure-flags flags #~'())
+        #~(cons* "--with-pgtk" #$flags))))
+    (synopsis "Emacs text editor with @code{pgtk} and @code{tree-sitter} 
support")
+    (description "This Emacs build implements graphical UI purely in terms
+of GTK and supports tree-sitter.")))
+
 (define-public emacs-minimal
   ;; This is the version that you should use as an input to packages that just
   ;; need to byte-compile .el files.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]