diff options
author | Andrew Tropin <andrew@trop.in> | 2023-03-09 14:23:20 +0400 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2023-03-09 15:31:09 +0400 |
commit | b4c64ddce44bb31332784c3f8e037bd565194604 (patch) | |
tree | e713f592e6491046abf922753c5d85007a2639c2 /gnu | |
parent | a106ee80eb162b40e026a03c8919ee75bc076933 (diff) | |
download | guix-b4c64ddce44bb31332784c3f8e037bd565194604.tar.gz |
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.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 12 |
1 files 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 @@ languages.") (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 |