GNU bug report logs -
#34128
[PATCH] add emacs built with xwidgets-support
Previous Next
Full log
View this message in rfc822 format
Hi Arne,
Arne Babenhauserheide <arne_bab <at> web.de> skribis:
> * gnu/packages/emacs.scm (emacs-xwidgets): new variable
Thanks for the patch! I wonder why this hadn’t been done before;
Nicolas, Alex, Pierre, thoughts?
The patch LGTM, minor stylistic issues:
> +(define-public emacs-xwidgets
> + (package (inherit emacs)
> + (name "emacs-xwidgets")
> + (synopsis "The extensible, customizable, self-documenting text
> +editor (with xwidgets support)")
> + (build-system gnu-build-system)
> + (arguments (append
> + (package-arguments emacs)
> + `(#:configure-flags
> + '("--with-xwidgets"))))
> + (inputs (append
> + (package-inputs emacs)
> + `(("webkitgtk" ,webkitgtk)
> + ("libxcomposite" ,libxcomposite))))))
Please indent rather along these lines (like in the rest of the file):
(define-public emacs-xwidgets
(package
(inherit emacs)
(name …) …))
Likewise, for consistency, use unquote-splicing rather than ‘append’:
(inputs `(("webkitgtk" ,webkitgtk)
;; …
,@(package-inputs emacs)))
Could you send an updated patch?
Thanks,
Ludo’.
This bug report was last modified 6 years and 114 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.