[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55419] [PATCH 1/5] gnu: emacs-next-pgtk: Use new package style.
From: |
Liliana Marie Prikler |
Subject: |
[bug#55419] [PATCH 1/5] gnu: emacs-next-pgtk: Use new package style. |
Date: |
Sun, 15 May 2022 00:07:43 +0200 |
* gnu/packages/emacs.scm (emacs-next-pgtk)[arguments]: Convert to list of
G-Expressions.
[inputs]: Use modify-inputs.
---
gnu/packages/emacs.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9649334e45..af902ac9f9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -348,13 +348,13 @@ (define-public emacs-next-pgtk
(name "emacs-next-pgtk")
(arguments
(substitute-keyword-arguments (package-arguments emacs-next)
- ((#:configure-flags flags ''())
- `(cons* "--with-pgtk" "--with-xwidgets" ,flags))))
+ ((#:configure-flags flags #~'())
+ #~(cons* "--with-pgtk" "--with-xwidgets" #$flags))))
(propagated-inputs
(list gsettings-desktop-schemas glib-networking))
(inputs
- `(("webkitgtk" ,webkitgtk-with-libsoup2)
- ,@(package-inputs emacs-next)))
+ (modify-inputs (package-inputs emacs-next)
+ (prepend webkitgtk-with-libsoup2)))
(home-page "https://github.com/masm11/emacs")
(synopsis "Emacs text editor with @code{pgtk} and @code{xwidgets} support")
(description "This Emacs build implements graphical UI purely in terms of
--
2.36.0
- [bug#55419] [PATCH 0/5] Use new package style for Emacs variants., Liliana Marie Prikler, 2022/05/14
- [bug#55419] [PATCH 1/5] gnu: emacs-next-pgtk: Use new package style.,
Liliana Marie Prikler <=
- [bug#55419] [PATCH 4/5] gnu: emacs-no-x-toolkit: Use new package style., Liliana Marie Prikler, 2022/05/14
- [bug#55419] [PATCH 2/5] gnu: emacs-xwidgets: Use new package style., Liliana Marie Prikler, 2022/05/14
- [bug#55419] [PATCH 3/5] gnu: emacs-no-x: Use new package style., Liliana Marie Prikler, 2022/05/14
- [bug#55419] [PATCH 5/5] gnu: emacs-wide-int: Use new package style., Liliana Marie Prikler, 2022/05/14
- [bug#55419] [PATCH 0/5] Use new package style for Emacs variants., Maxime Devos, 2022/05/15