guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/07: gnu: Add emacs-no-x.


From: Ludovic Courtès
Subject: 05/07: gnu: Add emacs-no-x.
Date: Thu, 19 Mar 2015 22:16:00 +0000

civodul pushed a commit to branch master
in repository guix.

commit 4fd540b7f0fe672f7509e29157620bb22fd2e883
Author: Ludovic Courtès <address@hidden>
Date:   Thu Mar 19 23:05:21 2015 +0100

    gnu: Add emacs-no-x.
    
    * gnu/packages/emacs.scm (emacs-no-x): New variable.
---
 gnu/packages/emacs.scm |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 96c6148..021bfb3 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -114,6 +114,23 @@ large Lisp programs.  It has full Unicode support for 
nearly all human
 languages.")
     (license license:gpl3+)))
 
+(define-public emacs-no-x
+  ;; This is the version that you should use as an input to packages that just
+  ;; need to byte-compile .el files.
+  (package (inherit emacs)
+    (location (source-properties->location (current-source-location)))
+    (name "emacs-no-x")
+    (synopsis "The extensible, customizable, self-documenting text
+editor (console only)")
+    (build-system gnu-build-system)
+    (inputs (fold alist-delete
+                  (package-inputs emacs)
+                  '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
+                    "libpng" "libxpm" "libice" "libsm"
+
+                    ;; D-Bus depends on libx11, so remove it as well.
+                    "dbus")))))
+
 (define-public emacs-no-x-toolkit
   (package (inherit emacs)
     (location (source-properties->location (current-source-location)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]