gnu: Update harfbuzz to 0.9.20.
[jackhill/guix/guix.git] / gnu / packages / emacs.scm
CommitLineData
468bdabb
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
1ffa7090 19(define-module (gnu packages emacs)
468bdabb
LC
20 #:use-module (guix licenses)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
59a43334 24 #:use-module (gnu packages)
7abe1965 25 #:use-module (gnu packages gtk)
1ffa7090
LC
26 #:use-module (gnu packages ncurses)
27 #:use-module (gnu packages texinfo)
28 #:use-module (gnu packages gnutls)
4f028c8f 29 #:use-module (gnu packages pkg-config)
50efa797
LC
30 #:use-module (gnu packages guile)
31 #:use-module (gnu packages xorg)
32 #:use-module (gnu packages lesstif)
33 #:use-module (gnu packages libjpeg)
34 #:use-module (gnu packages libtiff)
35 #:use-module (gnu packages libpng)
36 #:use-module ((gnu packages compression)
37 #:renamer (symbol-prefix-proc 'compression:))
38 #:use-module (gnu packages xml)
39 #:use-module (gnu packages glib))
468bdabb
LC
40
41(define-public emacs
42 (package
43 (name "emacs")
3be9f724 44 (version "24.3")
468bdabb
LC
45 (source (origin
46 (method url-fetch)
47 (uri (string-append "mirror://gnu/emacs/emacs-"
3be9f724 48 version ".tar.xz"))
468bdabb
LC
49 (sha256
50 (base32
3be9f724 51 "1385qzs3bsa52s5rcncbrkxlydkw0ajzrvfxgv8rws5fx512kakh"))))
468bdabb
LC
52 (build-system gnu-build-system)
53 (arguments
54 '(#:configure-flags
55 (list (string-append "--with-crt-dir=" (assoc-ref %build-inputs "libc")
50efa797
LC
56 "/lib")
57 "--with-gif=no") ; XXX: add libungif
468bdabb
LC
58 #:patches (list (assoc-ref %build-inputs "patch/epaths"))
59 #:phases (alist-cons-before
60 'configure 'fix-/bin/pwd
61 (lambda _
62 ;; Use `pwd', not `/bin/pwd'.
63 (substitute* (find-files "." "^Makefile\\.in$")
64 (("/bin/pwd")
65 "pwd")))
66 %standard-phases)))
67 (inputs
68 `(("pkg-config" ,pkg-config)
69 ("gnutls" ,gnutls)
70 ("texinfo" ,texinfo)
71 ("ncurses" ,ncurses)
72
73 ;; TODO: Add the optional dependencies.
50efa797 74 ("xlibs" ,libx11)
7abe1965 75 ("gtk+" ,gtk+)
50efa797
LC
76 ("libXft" ,libxft)
77 ("libtiff" ,libtiff)
468bdabb 78 ;; ("libungif" ,libungif)
50efa797
LC
79 ("libjpeg" ,libjpeg-8)
80
81 ;; When looking for libpng `configure' links with `-lpng -lz', so we
82 ;; must also provide zlib as an input.
83 ("libpng" ,libpng)
84 ("zlib" ,compression:zlib)
85
86 ("libXpm" ,libxpm)
87 ("libxml2" ,libxml2)
88 ("dbus" ,dbus)
468bdabb
LC
89
90 ("patch/epaths" ,(search-patch "emacs-configure-sh.patch"))
91 ))
92 (home-page "http://www.gnu.org/software/emacs/")
f50d2669 93 (synopsis "The extensible, customizable, self-documenting text editor")
468bdabb
LC
94 (description
95 "GNU Emacs is an extensible, customizable text editor—and more. At its
96core is an interpreter for Emacs Lisp, a dialect of the Lisp
97programming language with extensions to support text editing.
98
99The features of GNU Emacs include: content-sensitive editing modes,
100including syntax coloring, for a wide variety of file types including
101plain text, source code, and HTML; complete built-in documentation,
102including a tutorial for new users; full Unicode support for nearly all
103human languages and their scripts; highly customizable, using Emacs
104Lisp code or a graphical interface; a large number of extensions that
105add other functionality, including a project planner, mail and news
106reader, debugger interface, calendar, and more. Many of these
107extensions are distributed with GNU Emacs; others are available
108separately.")
109 (license gpl3+)))
4f028c8f
LC
110
111\f
112;;;
113;;; Emacs hacking.
114;;;
115
116(define-public geiser
117 (package
118 (name "geiser")
cf8f58b2 119 (version "0.4")
4f028c8f
LC
120 (source (origin
121 (method url-fetch)
cf8f58b2
LC
122 (uri (string-append "mirror://savannah/geiser/" version
123 "/geiser-" version ".tar.gz"))
4f028c8f 124 (sha256
cf8f58b2 125 (base32 "0ds7zk9b1839l9fsqfsgrby6manvy1cf5bjniiqhxl55h0cr6ijp"))))
4f028c8f
LC
126 (build-system gnu-build-system)
127 (inputs `(("guile" ,guile-2.0)
128 ("emacs" ,emacs)))
129 (home-page "http://nongnu.org/geiser/")
130 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
131 (description
132 "Geiser is a collection of Emacs major and minor modes that
133conspire with one or more Scheme interpreters to keep the Lisp Machine
134Spirit alive. It draws inspiration (and a bit more) from environments
135such as Common Lisp’s Slime, Factor’s FUEL, Squeak or Emacs itself, and
136does its best to make Scheme hacking inside Emacs (even more) fun.
137
138Or, to be precise, what i consider fun. Geiser is thus my humble
139contribution to the dynamic school of expression, and a reaction against
140what i perceive as a derailment, in modern times, of standard Scheme
141towards the static camp. Because i prefer growing and healing to poking
142at corpses, the continuously running Scheme interpreter takes the center
143of the stage in Geiser. A bundle of Elisp shims orchestrates the dialog
144between the Scheme interpreter, Emacs and, ultimately, the schemer,
145giving her access to live metadata.")
146 (license bsd-3)))