diff options
author | John Soo <jsoo1@asu.edu> | 2020-03-28 17:02:29 -0700 |
---|---|---|
committer | Guix Patches Tester <> | 2020-03-30 03:37:08 +0100 |
commit | 2df293a56e98ff949b39e6ce19af14ebfb5b82c3 (patch) | |
tree | 44d89bf43b1250ce352679d7027102d3a1be7761 | |
parent | 3e3364fc526e1a54ea7744361ffcf6a59a6610a8 (diff) | |
download | patches-series-3329.tar patches-series-3329.tar.gz |
gnu: Add emacs-next-minimal.series-3329
Hi Guix,
In preparation for the next emacs version I thought it would be good to
start adding "next" versions of some emacs packages. I added this for
proof-general, but there may be other needs for the minimal emacs for
version 27.
Thanks,
John
>From 100e821af07716c463131acdb695bce630e2efa4 Mon Sep 17 00:00:00 2001
From: John Soo <jsoo1@asu.edu>
Date: Thu, 19 Mar 2020 10:38:15 -0700
Subject: [PATCH] gnu: Add emacs-next-minimal.
* gnu/packages/emacs.scm (emacs-next-minimal): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 3d0368be4e..cac3f0e977 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2019 Valentin Ignatev <valentignatev@gmail.com> ;;; Copyright © 2019 Leo Prikler <leo.prikler@student.tugraz.at> ;;; Copyright © 2019 Amin Bandali <bandali@gnu.org> +;;; Copyright © 2019 John Soo <jsoo1@asu.edu> ;;; ;;; This file is part of GNU Guix. ;;; @@ -357,6 +358,34 @@ languages.") (native-inputs `(("pkg-config" ,pkg-config))))) +(define-public emacs-next-minimal + (package + (inherit emacs-next) + (name "emacs-next-minimal") + (synopsis (package-synopsis emacs-minimal)) + (build-system gnu-build-system) + (inputs + `(("jansson" ,jansson) + ("texinfo" ,texinfo) + ,@(package-inputs emacs-minimal))) + (native-inputs + `(("autoconf" ,autoconf) + ,@(package-native-inputs emacs-minimal))) + (arguments + (substitute-keyword-arguments (package-arguments emacs-next) + ((#:modules _) + `((guix build emacs-utils) + ,@%gnu-build-system-modules)) + ((#:imported-modules _) + `((guix build emacs-utils) + ,@%gnu-build-system-modules)) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-site-start) + (delete 'restore-emacs-pdmp))) + ((#:configure-flags flags ''()) + `(list "--with-gnutls=no" "--disable-build-details")))))) + (define-public emacs-xwidgets (package (inherit emacs) |