From b4c64ddce44bb31332784c3f8e037bd565194604 Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Thu, 9 Mar 2023 14:23:20 +0400 Subject: [PATCH] gnu: emacs-next-pgtk: Remove xwidgets support. xwidgets is beefy and buggy, but emacs-next-pgtk is important for wayland users, so it seems a good idea to remove xwidgets from emacs-next-pgtk. Also, we have a separate emacs-xwidgets package for those who wants to experiment. * gnu/packages/emacs.scm (emacs-next-pgtk)[propagated-inputs]: Remove gsettings-desktop-schemas glib-networking. [arguments]<#:configure-flags>: Remove --with-xwidgets. [inputs]: Remove webkitgtk-with-libsoup2. [home-page]: PGTK is merged to upstream emacs repository now, so inherit home-page from emacs-next. --- gnu/packages/emacs.scm | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 94d08244d1..9a5ec2ad0d 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -462,16 +462,10 @@ (define-public emacs-next-pgtk (arguments (substitute-keyword-arguments (package-arguments emacs-next) ((#:configure-flags flags #~'()) - #~(cons* "--with-pgtk" "--with-xwidgets" #$flags)))) - (propagated-inputs - (list gsettings-desktop-schemas glib-networking)) - (inputs - (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") + #~(cons* "--with-pgtk" #$flags)))) + (synopsis "Emacs text editor with @code{pgtk} support") (description "This Emacs build implements graphical UI purely in terms of -GTK and also enables xwidgets."))) +GTK."))) (define-public emacs-minimal ;; This is the version that you should use as an input to packages that just