diff options
author | Alex Kost <alezost@gmail.com> | 2016-05-11 23:25:29 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-05-24 11:32:27 +0300 |
commit | b2eaf7bacd86d962d6e6ae0efa755741d1b781c8 (patch) | |
tree | d21cf4f45a12b774183f62914a287dbaf41f4352 /gnu | |
parent | 486f36eb9eee508589c6edc99f4e194e105cc1ff (diff) | |
download | guix-b2eaf7bacd86d962d6e6ae0efa755741d1b781c8.tar guix-b2eaf7bacd86d962d6e6ae0efa755741d1b781c8.tar.gz |
gnu: Add emacs-minimal.
* gnu/packages/emacs.scm (emacs-minimal): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index ae02a079b0..624059105f 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -178,10 +178,25 @@ large Lisp programs. It has full Unicode support for nearly all human languages.") (license license:gpl3+))) -(define-public emacs-no-x +(define-public emacs-minimal ;; This is the version that you should use as an input to packages that just ;; need to byte-compile .el files. (package (inherit emacs) + (name "emacs-minimal") + (synopsis "The extensible text editor (used only for byte-compilation)") + (build-system gnu-build-system) + (arguments + (substitute-keyword-arguments (package-arguments emacs) + ((#:phases phases) + `(modify-phases ,phases + (delete 'install-site-start))))) + (inputs + `(("ncurses" ,ncurses))) + (native-inputs + `(("pkg-config" ,pkg-config))))) + +(define-public emacs-no-x + (package (inherit emacs) (name "emacs-no-x") (synopsis "The extensible, customizable, self-documenting text editor (console only)") |