gnu: python-pandas: Fix build on 32-bit.
[jackhill/guix/guix.git] / gnu / packages / emacs.scm
CommitLineData
468bdabb 1;;; GNU Guix --- Functional package management for GNU
4a3e602c 2;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
38cb4766 3;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
846b2534 4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
cfb9026a 5;;; Copyright © 2014, 2015, 2016, 2017 Alex Kost <alezost@gmail.com>
78395334 6;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
ce9701fb 7;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
4670f70a 8;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
11e4c1fd 9;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
9576cc72 10;;; Copyright © 2016 humanitiesNerd <catonano@gmail.com>
0985f526 11;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
c5c08f1b 12;;; Copyright © 2016 David Thompson <davet@gnu.org>
ae609001 13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
d95e8e01 14;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
899bcad3 15;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
46bd4515 16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
cf95bd3a 17;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
e7761186 18;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
154c71e0 19;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net>
cf006d2e 20;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
1e523180 21;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
60b57c3d 22;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
468bdabb
LC
23;;;
24;;; This file is part of GNU Guix.
25;;;
26;;; GNU Guix is free software; you can redistribute it and/or modify it
27;;; under the terms of the GNU General Public License as published by
28;;; the Free Software Foundation; either version 3 of the License, or (at
29;;; your option) any later version.
30;;;
31;;; GNU Guix is distributed in the hope that it will be useful, but
32;;; WITHOUT ANY WARRANTY; without even the implied warranty of
33;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34;;; GNU General Public License for more details.
35;;;
36;;; You should have received a copy of the GNU General Public License
37;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
38
1ffa7090 39(define-module (gnu packages emacs)
f61e0e79 40 #:use-module ((guix licenses) #:prefix license:)
468bdabb
LC
41 #:use-module (guix packages)
42 #:use-module (guix download)
f906d30c 43 #:use-module (guix git-download)
e5045f30
FB
44 #:use-module (guix gexp)
45 #:use-module (guix monads)
46 #:use-module (guix store)
468bdabb 47 #:use-module (guix build-system gnu)
78395334 48 #:use-module (guix build-system emacs)
71f57158 49 #:use-module (guix build-system glib-or-gtk)
fe4163f3 50 #:use-module (guix build-system trivial)
59a43334 51 #:use-module (gnu packages)
cf006d2e 52 #:use-module (gnu packages code)
f906d30c 53 #:use-module (gnu packages guile)
7abe1965 54 #:use-module (gnu packages gtk)
8ba4dc63 55 #:use-module (gnu packages gnome)
1ffa7090 56 #:use-module (gnu packages ncurses)
41184943 57 #:use-module (gnu packages tex)
1ffa7090 58 #:use-module (gnu packages texinfo)
a7fd7b68 59 #:use-module (gnu packages tls)
4f028c8f 60 #:use-module (gnu packages pkg-config)
50efa797
LC
61 #:use-module (gnu packages xorg)
62 #:use-module (gnu packages lesstif)
e55354b8 63 #:use-module (gnu packages image)
504a83af 64 #:use-module (gnu packages linux)
9a4c9715 65 #:use-module (gnu packages version-control)
18d26210
MW
66 #:use-module (gnu packages imagemagick)
67 #:use-module (gnu packages w3m)
89925972 68 #:use-module (gnu packages wget)
18d26210 69 #:use-module (gnu packages autotools)
be379ee7 70 #:use-module (gnu packages base)
f61e0e79 71 #:use-module (gnu packages compression)
50efa797 72 #:use-module (gnu packages xml)
4a3e602c 73 #:use-module (gnu packages glib)
388fd01b 74 #:use-module (gnu packages acl)
13fe4891 75 #:use-module (gnu packages package-management)
77c9286d 76 #:use-module (gnu packages perl)
ec9825d6 77 #:use-module (gnu packages pdf)
58a7dc13 78 #:use-module (gnu packages scheme)
41184943 79 #:use-module (gnu packages statistics)
77c9286d
LC
80 #:use-module (gnu packages xiph)
81 #:use-module (gnu packages mp3)
154c71e0 82 #:use-module (gnu packages gettext)
a80b60f4
AI
83 #:use-module (gnu packages fribidi)
84 #:use-module (gnu packages gd)
85 #:use-module (gnu packages fontutils)
4a3e602c
TUBK
86 #:use-module (guix utils)
87 #:use-module (srfi srfi-1))
468bdabb
LC
88
89(define-public emacs
90 (package
91 (name "emacs")
846b2534 92 (version "25.1")
468bdabb
LC
93 (source (origin
94 (method url-fetch)
95 (uri (string-append "mirror://gnu/emacs/emacs-"
3be9f724 96 version ".tar.xz"))
468bdabb
LC
97 (sha256
98 (base32
846b2534 99 "0cwgyiyymnx4xdg99dm2drfxcyhy2jmyf0rkr9fwj9mwwf77kwhr"))
fc1adab1 100 (patches (search-patches "emacs-exec-path.patch"
4509ec72 101 "emacs-fix-scheme-indent-function.patch"
486f36eb
AK
102 "emacs-source-date-epoch.patch"))
103 (modules '((guix build utils)))
104 (snippet
105 ;; Delete the bundled byte-compiled elisp files and
106 ;; generated autoloads.
107 '(with-directory-excursion "lisp"
108 (for-each delete-file
109 (append (find-files "." "\\.elc$")
110 (find-files "." "loaddefs\\.el$")
111 ;; This is the only "autoloads" file that
112 ;; does not have "*loaddefs.el" name.
dc701091
LC
113 '("eshell/esh-groups.el")))
114
115 ;; Make sure Tramp looks for binaries in the right places on
116 ;; remote GuixSD machines, where 'getconf PATH' returns
117 ;; something bogus.
118 (substitute* "net/tramp-sh.el"
119 ;; Patch the line after "(defcustom tramp-remote-path".
120 (("\\(tramp-default-remote-path")
121 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
122 "~/.guix-profile/bin" "~/.guix-profile/sbin"
123 "/run/current-system/profile/bin"
124 "/run/current-system/profile/sbin")))))))
71f57158 125 (build-system glib-or-gtk-build-system)
468bdabb 126 (arguments
13fe4891
FB
127 `(#:phases
128 (modify-phases %standard-phases
129 (add-before 'configure 'fix-/bin/pwd
130 (lambda _
131 ;; Use `pwd', not `/bin/pwd'.
132 (substitute* (find-files "." "^Makefile\\.in$")
133 (("/bin/pwd")
134 "pwd"))))
13fe4891 135 (add-after 'install 'install-site-start
59d04f63
AK
136 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
137 ;; provided by Guix and installed in
13fe4891
FB
138 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
139 ;; automatically found.
140 (lambda* (#:key inputs outputs #:allow-other-keys)
59d04f63
AK
141 (let* ((out (assoc-ref outputs "out"))
142 (lisp-dir (string-append out "/share/emacs/site-lisp")))
143 (copy-file (assoc-ref inputs "guix-emacs.el")
144 (string-append lisp-dir "/guix-emacs.el"))
13fe4891
FB
145 (with-output-to-file (string-append lisp-dir "/site-start.el")
146 (lambda ()
9bd94544
AK
147 (display
148 (string-append "(when (require 'guix-emacs nil t)\n"
149 " (guix-emacs-autoload-packages))\n"))))
13fe4891 150 #t))))))
468bdabb 151 (inputs
c4c4cc05 152 `(("gnutls" ,gnutls)
468bdabb
LC
153 ("ncurses" ,ncurses)
154
155 ;; TODO: Add the optional dependencies.
fa275717 156 ("libx11" ,libx11)
0a9e9a63 157 ("gtk+" ,gtk+)
fa275717 158 ("libxft" ,libxft)
50efa797 159 ("libtiff" ,libtiff)
504a83af 160 ("giflib" ,giflib)
50efa797 161 ("libjpeg" ,libjpeg-8)
388fd01b 162 ("acl" ,acl)
50efa797
LC
163
164 ;; When looking for libpng `configure' links with `-lpng -lz', so we
165 ;; must also provide zlib as an input.
166 ("libpng" ,libpng)
f61e0e79 167 ("zlib" ,zlib)
50efa797 168
8ba4dc63 169 ("librsvg" ,librsvg)
fa275717 170 ("libxpm" ,libxpm)
50efa797 171 ("libxml2" ,libxml2)
504a83af
MW
172 ("libice" ,libice)
173 ("libsm" ,libsm)
174 ("alsa-lib" ,alsa-lib)
13fe4891 175 ("dbus" ,dbus)
01c5c21a
AI
176
177 ;; multilingualization support
178 ("libotf" ,libotf)
179 ("m17n-lib" ,m17n-lib)))
c4c4cc05 180 (native-inputs
59d04f63
AK
181 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
182 ("pkg-config" ,pkg-config)
c4c4cc05 183 ("texinfo" ,texinfo)))
64c98347
LC
184
185 (native-search-paths
186 (list (search-path-specification
187 (variable "INFOPATH")
188 (files '("share/info")))))
189
468bdabb 190 (home-page "http://www.gnu.org/software/emacs/")
f50d2669 191 (synopsis "The extensible, customizable, self-documenting text editor")
468bdabb 192 (description
79c311b8
LC
193 "GNU Emacs is an extensible and highly customizable text editor. It is
194based on an Emacs Lisp interpreter with extensions for text editing. Emacs
195has been extended in essentially all areas of computing, giving rise to a
196vast array of packages supporting, e.g., email, IRC and XMPP messaging,
197spreadsheets, remote server editing, and much more. Emacs includes extensive
198documentation on all aspects of the system, from basic editing to writing
199large Lisp programs. It has full Unicode support for nearly all human
200languages.")
f61e0e79 201 (license license:gpl3+)))
4f028c8f 202
b2eaf7ba 203(define-public emacs-minimal
4fd540b7
LC
204 ;; This is the version that you should use as an input to packages that just
205 ;; need to byte-compile .el files.
b2eaf7ba
AK
206 (package (inherit emacs)
207 (name "emacs-minimal")
208 (synopsis "The extensible text editor (used only for byte-compilation)")
209 (build-system gnu-build-system)
210 (arguments
211 (substitute-keyword-arguments (package-arguments emacs)
212 ((#:phases phases)
213 `(modify-phases ,phases
214 (delete 'install-site-start)))))
215 (inputs
216 `(("ncurses" ,ncurses)))
217 (native-inputs
218 `(("pkg-config" ,pkg-config)))))
219
220(define-public emacs-no-x
4fd540b7 221 (package (inherit emacs)
4fd540b7
LC
222 (name "emacs-no-x")
223 (synopsis "The extensible, customizable, self-documenting text
224editor (console only)")
225 (build-system gnu-build-system)
226 (inputs (fold alist-delete
227 (package-inputs emacs)
228 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
8ba4dc63 229 "libpng" "librsvg" "libxpm" "libice" "libsm"
4fd540b7
LC
230
231 ;; D-Bus depends on libx11, so remove it as well.
232 "dbus")))))
233
4a3e602c
TUBK
234(define-public emacs-no-x-toolkit
235 (package (inherit emacs)
236 (name "emacs-no-x-toolkit")
237 (synopsis "The extensible, customizable, self-documenting text
238editor (without an X toolkit)" )
71f57158 239 (build-system gnu-build-system)
388fd01b
MW
240 (inputs (append `(("inotify-tools" ,inotify-tools))
241 (alist-delete "gtk+" (package-inputs emacs))))
242 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
243 (package-arguments emacs)))))
4a3e602c 244
f906d30c
CAW
245(define-public guile-emacs
246 (package (inherit emacs)
247 (name "guile-emacs")
248 (version "20150512.41120e0")
249 (source (origin
250 (method git-fetch)
251 (uri (git-reference
252 (url "git://git.hcoop.net/git/bpt/emacs.git")
253 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
254 (sha256
255 (base32
256 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
257 (native-inputs
258 `(("autoconf" ,autoconf)
259 ("automake" ,automake)
260 ("guile" ,guile-for-guile-emacs)
261 ,@(package-native-inputs emacs)))
262 (arguments
263 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
264 #:parallel-build? #f
265 ;; Tests aren't passing for now.
266 #:tests? #f
267 ,@(package-arguments emacs))
268 ((#:phases phases)
269 `(modify-phases ,phases
270 (add-after 'unpack 'autogen
271 (lambda _
272 (zero? (system* "sh" "autogen.sh"))))))))))
273
4f028c8f
LC
274\f
275;;;
276;;; Emacs hacking.
277;;;
278
279(define-public geiser
280 (package
281 (name "geiser")
113e23e0 282 (version "0.9")
4f028c8f
LC
283 (source (origin
284 (method url-fetch)
cf8f58b2
LC
285 (uri (string-append "mirror://savannah/geiser/" version
286 "/geiser-" version ".tar.gz"))
4f028c8f 287 (sha256
1f8ad12a 288 (base32
a9c61335 289 "0phz9d8wjk4p13vqannv0003fwh8qqrp0gfzcs2hgq1mrmv1srss"))))
4f028c8f 290 (build-system gnu-build-system)
d51cafb0
AK
291 (arguments
292 '(#:phases (alist-cons-after
293 'install 'post-install
294 (lambda* (#:key outputs #:allow-other-keys)
295 (symlink "geiser-install.el"
296 (string-append (assoc-ref outputs "out")
297 "/share/emacs/site-lisp/"
298 "geiser-autoloads.el")))
299 %standard-phases)))
6aaf3899 300 (inputs `(("guile" ,guile-2.0)))
b8fc3622 301 (native-inputs `(("emacs" ,emacs-minimal)))
4f028c8f
LC
302 (home-page "http://nongnu.org/geiser/")
303 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
304 (description
9586011d
LC
305 "Geiser is a collection of Emacs major and minor modes that conspire with
306one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
307continuously running Scheme interpreter takes the center of the stage in
308Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
309implementation, Emacs and, ultimately, the schemer, giving them access to live
310metadata.")
f61e0e79 311 (license license:bsd-3)))
9a4c9715 312
11e4c1fd 313(define-public geiser-next
a9c61335
AK
314 ;; This has become "geiser".
315 (deprecated-package "geiser-next" geiser))
11e4c1fd 316
fe4163f3
MW
317(define-public paredit
318 (package
967cfd18 319 (name "emacs-paredit")
c181b870 320 (version "24")
fe4163f3 321 (source (origin
c181b870
AK
322 (method url-fetch)
323 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
324 version ".el"))
325 (sha256
326 (base32
327 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
fe4163f3 328 (build-system trivial-build-system)
b8fc3622 329 (native-inputs `(("emacs" ,emacs-minimal)))
fe4163f3
MW
330 (arguments
331 `(#:modules ((guix build utils)
332 (guix build emacs-utils))
333 #:builder
334 (begin
335 (use-modules (guix build utils))
336 (use-modules (guix build emacs-utils))
337
338 (let* ((emacs (string-append (assoc-ref %build-inputs "emacs")
339 "/bin/emacs"))
340 (source (assoc-ref %build-inputs "source"))
341 (lisp-dir (string-append %output
342 "/share/emacs/site-lisp"))
343 (target (string-append lisp-dir "/paredit.el")))
344 (mkdir-p lisp-dir)
345 (copy-file source target)
346 (with-directory-excursion lisp-dir
347 (parameterize ((%emacs emacs))
d51cafb0 348 (emacs-generate-autoloads ,name lisp-dir)
fe4163f3
MW
349 (emacs-batch-eval '(byte-compile-file "paredit.el"))))))))
350 (home-page "http://mumble.net/~campbell/emacs/paredit/")
351 (synopsis "Emacs minor mode for editing parentheses")
352 (description
353 "ParEdit (paredit.el) is a minor mode for performing structured editing
354of S-expression data. The typical example of this would be Lisp or Scheme
355source code.
356
357ParEdit helps **keep parentheses balanced** and adds many keys for moving
358S-expressions and moving around in S-expressions. Its behavior can be jarring
359for those who may want transient periods of unbalanced parentheses, such as
360when typing parentheses directly or commenting out code line by line.")
f61e0e79 361 (license license:gpl3+)))
fe4163f3 362
967cfd18
LC
363(define-public paredit/old-name
364 (deprecated-package "paredit" paredit))
365
2f910ef6
LC
366(define-public git-modes
367 (package
368 (name "git-modes")
d1dfa22f 369 (version "1.2.2")
2f910ef6
LC
370 (source (origin
371 (method url-fetch)
372 (uri (string-append
373 "https://github.com/magit/git-modes/archive/"
374 version ".tar.gz"))
8fd3c1ff 375 (file-name (string-append name "-" version ".tar.gz"))
2f910ef6
LC
376 (sha256
377 (base32
d1dfa22f 378 "0gb9c18jib8rpm14vig9774104lwmd8353ps0259m861syf6664d"))))
2f910ef6
LC
379 (build-system gnu-build-system)
380 (arguments
381 `(#:modules ((guix build gnu-build-system)
382 (guix build emacs-utils)
383 (guix build utils))
384 #:imported-modules (,@%gnu-build-system-modules
385 (guix build emacs-utils))
386
387 #:make-flags (list (string-append "PREFIX="
388 (assoc-ref %outputs "out"))
389 ;; Don't put .el files in a 'git-modes'
390 ;; sub-directory.
391 (string-append "LISPDIR="
392 (assoc-ref %outputs "out")
393 "/share/emacs/site-lisp"))
89949e8f 394 #:tests? #f ; no check target
2f910ef6
LC
395 #:phases (modify-phases %standard-phases
396 (delete 'configure)
397 (add-after 'install 'emacs-autoloads
398 (lambda* (#:key outputs #:allow-other-keys)
399 (let* ((out (assoc-ref outputs "out"))
400 (lisp (string-append
401 out "/share/emacs/site-lisp/")))
402 (emacs-generate-autoloads ,name lisp)))))))
b8fc3622 403 (native-inputs `(("emacs" ,emacs-minimal)))
2f910ef6
LC
404 (home-page "https://github.com/magit/git-modes")
405 (synopsis "Emacs major modes for Git configuration files")
406 (description
407 "This package provides Emacs major modes for editing various Git
408configuration files, such as .gitattributes, .gitignore, and .git/config.")
409 (license license:gpl3+)))
410
2b0e4300
AK
411(define-public emacs-with-editor
412 (package
413 (name "emacs-with-editor")
3e275818 414 (version "2.5.10")
2b0e4300
AK
415 (source (origin
416 (method url-fetch)
417 (uri (string-append
418 "https://github.com/magit/with-editor/archive/v"
419 version ".tar.gz"))
420 (file-name (string-append name "-" version ".tar.gz"))
421 (sha256
422 (base32
3e275818 423 "0lsxa1hghybkzvqhqvvym3hxbyp9vjcnnpb9j800z0vyhbnlka67"))))
2b0e4300
AK
424 (build-system emacs-build-system)
425 (propagated-inputs
426 `(("emacs-dash" ,emacs-dash)))
427 (home-page "https://github.com/magit/with-editor")
428 (synopsis "Emacs library for using Emacsclient as EDITOR")
429 (description
430 "This package provides an Emacs library to use the Emacsclient as
431@code{$EDITOR} of child processes, making sure they know how to call home.
432For remote processes a substitute is provided, which communicates with Emacs
433on stdout instead of using a socket as the Emacsclient does.")
434 (license license:gpl3+)))
435
9a4c9715
MW
436(define-public magit
437 (package
438 (name "magit")
7f86a97c 439 (version "2.10.2")
9a4c9715
MW
440 (source (origin
441 (method url-fetch)
fac8b30b
MW
442 (uri (string-append
443 "https://github.com/magit/magit/releases/download/"
444 version "/" name "-" version ".tar.gz"))
9a4c9715 445 (sha256
7e4871ba 446 (base32
7f86a97c 447 "09qcc3a61irxi89x7q82hdy8dk0liiwyz66632wzcd881mhrhx18"))))
9a4c9715 448 (build-system gnu-build-system)
2c047b4a 449 (native-inputs `(("texinfo" ,texinfo)
b8fc3622 450 ("emacs" ,emacs-minimal)))
46bd4515
AG
451 (inputs
452 `(("git" ,git)
453 ("perl" ,perl)))
3db5ed11
AK
454 (propagated-inputs
455 `(("dash" ,emacs-dash)
456 ("with-editor" ,emacs-with-editor)))
9a4c9715
MW
457 (arguments
458 `(#:modules ((guix build gnu-build-system)
459 (guix build utils)
460 (guix build emacs-utils))
8ff3df5b 461 #:imported-modules (,@%gnu-build-system-modules
9a4c9715 462 (guix build emacs-utils))
7e4871ba
LC
463
464 #:test-target "test"
55f29c39 465 #:tests? #f ; tests are not included in the release
7e4871ba 466
55f29c39
AK
467 #:make-flags
468 (list (string-append "PREFIX=" %output)
469 ;; Don't put .el files in a sub-directory.
470 (string-append "lispdir=" %output "/share/emacs/site-lisp")
471 (string-append "DASH_DIR="
472 (assoc-ref %build-inputs "dash")
473 "/share/emacs/site-lisp/guix.d/dash-"
3db5ed11
AK
474 ,(package-version emacs-dash))
475 (string-append "WITH_EDITOR_DIR="
476 (assoc-ref %build-inputs "with-editor")
477 "/share/emacs/site-lisp/guix.d/with-editor-"
478 ,(package-version emacs-with-editor)))
d41a8a07 479
9a4c9715 480 #:phases
c466bfd1 481 (modify-phases %standard-phases
55f29c39 482 (delete 'configure)
c466bfd1
LC
483 (add-before
484 'build 'patch-exec-paths
485 (lambda* (#:key inputs #:allow-other-keys)
46bd4515
AG
486 (let ((git (assoc-ref inputs "git"))
487 (perl (assoc-ref inputs "perl")))
55f29c39
AK
488 (emacs-substitute-variables "lisp/magit-git.el"
489 ("magit-git-executable" (string-append git "/bin/git")))
46bd4515
AG
490 (substitute* "lisp/magit-sequence.el"
491 (("perl") (string-append perl "/bin/perl")))
55f29c39 492 #t))))))
9a4c9715
MW
493 (home-page "http://magit.github.io/")
494 (synopsis "Emacs interface for the Git version control system")
495 (description
496 "With Magit, you can inspect and modify your Git repositories with Emacs.
497You can review and commit the changes you have made to the tracked files, for
498example, and you can browse the history of past changes. There is support for
499cherry picking, reverting, merging, rebasing, and other common Git
500operations.")
f61e0e79 501 (license license:gpl3+)))
18d26210 502
97cc51f8
LC
503(define-public magit-svn
504 (package
505 (name "magit-svn")
b7f16845 506 (version "2.1.1")
97cc51f8 507 (source (origin
be379ee7
AK
508 (method url-fetch)
509 (uri (string-append
510 "https://github.com/magit/magit-svn/archive/"
511 version ".tar.gz"))
512 (file-name (string-append name "-" version ".tar.gz"))
97cc51f8
LC
513 (sha256
514 (base32
b7f16845 515 "04y88j7q9h8xjbx5dbick6n5nr1522sn9i1znp0qwk3vjb4b5mzz"))))
97cc51f8 516 (build-system trivial-build-system)
b8fc3622 517 (native-inputs `(("emacs" ,emacs-minimal)
be379ee7
AK
518 ("tar" ,tar)
519 ("gzip" ,gzip)))
520 (propagated-inputs `(("dash" ,emacs-dash)
521 ("magit" ,magit)))
97cc51f8
LC
522 (arguments
523 `(#:modules ((guix build utils)
524 (guix build emacs-utils))
525
526 #:builder
527 (begin
528 (use-modules (guix build utils)
529 (guix build emacs-utils))
530
be379ee7
AK
531 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
532 "/bin/tar"))
533 (PATH (string-append (assoc-ref %build-inputs "gzip")
534 "/bin"))
535 (emacs (string-append (assoc-ref %build-inputs "emacs")
97cc51f8
LC
536 "/bin/emacs"))
537 (magit (string-append (assoc-ref %build-inputs "magit")
538 "/share/emacs/site-lisp"))
be379ee7
AK
539 (dash (string-append (assoc-ref %build-inputs "dash")
540 "/share/emacs/site-lisp/guix.d/dash-"
541 ,(package-version emacs-dash)))
97cc51f8
LC
542 (source (assoc-ref %build-inputs "source"))
543 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
be379ee7
AK
544 (setenv "PATH" PATH)
545 (system* tar "xvf" source)
96c46210
LC
546
547 (install-file (string-append ,name "-" ,version "/magit-svn.el")
548 lisp-dir)
97cc51f8
LC
549
550 (with-directory-excursion lisp-dir
551 (parameterize ((%emacs emacs))
552 (emacs-generate-autoloads ,name lisp-dir)
553 (setenv "EMACSLOADPATH"
be379ee7 554 (string-append ":" magit ":" dash))
97cc51f8
LC
555 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))))))
556 (home-page "https://github.com/magit/magit-svn")
557 (synopsis "Git-SVN extension to Magit")
558 (description
559 "This package is an extension to Magit, the Git Emacs mode, providing
560support for Git-SVN.")
561 (license license:gpl3+)))
562
c1562e3d
AK
563(define-public emacs-magit-popup
564 (package
565 (name "emacs-magit-popup")
566 (version (package-version magit))
567 (source (origin
568 (method url-fetch)
569 (uri (string-append
570 "https://raw.githubusercontent.com/magit/magit/"
571 version "/lisp/magit-popup.el"))
572 (file-name (string-append "magit-popup-" version ".el"))
573 (sha256
574 (base32
7f86a97c 575 "08b6ypfiq8zavjfq0wcdh26xziwq7rqvvv3lfpib9101146kzx6d"))))
c1562e3d
AK
576 (build-system emacs-build-system)
577 (propagated-inputs
578 `(("emacs-dash" ,emacs-dash)))
579 (home-page "https://github.com/magit/magit")
580 (synopsis "Define prefix-infix-suffix command combos")
581 (description
582 "This library implements a generic interface for toggling switches and
583setting options and then invoking an Emacs command which does something with
584these arguments. The prototypical use is for the command to call an external
585process, passing on the arguments as command line arguments.")
586 (license license:gpl3+)))
587
00f4bd50
FB
588(define-public haskell-mode
589 (package
590 (name "haskell-mode")
08fc0d68 591 (version "16.1")
00f4bd50
FB
592 (source (origin
593 (method url-fetch)
594 (file-name (string-append name "-" version ".tar.gz"))
595 (uri (string-append
596 "https://github.com/haskell/haskell-mode/archive/v"
597 version ".tar.gz"))
598 (sha256
08fc0d68
FB
599 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))))
600 (inputs
601 `(("emacs-el-search" ,emacs-el-search) ; for tests
602 ("emacs-stream" ,emacs-stream))) ; for tests
603 (propagated-inputs
604 `(("emacs-dash" ,emacs-dash)))
00f4bd50 605 (native-inputs
b8fc3622 606 `(("emacs" ,emacs-minimal)
6aaf3899 607 ("texinfo" ,texinfo)))
00f4bd50
FB
608 (build-system gnu-build-system)
609 (arguments
610 `(#:make-flags (list (string-append "EMACS="
611 (assoc-ref %build-inputs "emacs")
612 "/bin/emacs"))
08fc0d68
FB
613 #:modules ((ice-9 match)
614 (srfi srfi-26)
615 ,@%gnu-build-system-modules)
00f4bd50
FB
616 #:phases
617 (modify-phases %standard-phases
618 (delete 'configure)
619 (add-before
620 'build 'pre-build
621 (lambda* (#:key inputs #:allow-other-keys)
08fc0d68
FB
622 (define (el-dir store-dir)
623 (match (find-files store-dir)
624 ((f1 f2 ...) (dirname f1))
625 (_ "")))
626
00f4bd50 627 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
08fc0d68
FB
628 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
629
00f4bd50 630 (setenv "SHELL" "sh")
08fc0d68
FB
631 (setenv "EMACSLOADPATH"
632 (string-concatenate
633 (map (match-lambda
634 (((? emacs-prefix? name) . dir)
635 (string-append (el-dir dir) ":"))
636 (_ ""))
637 inputs)))
00f4bd50 638 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
08fc0d68
FB
639 (substitute* "tests/haskell-code-conventions.el"
640 ;; Function name recently changed in "emacs-el-search".
641 (("el-search--search-pattern") "el-search-forward")
642 ;; Don't contact home.
643 (("\\(when \\(>= emacs-major-version 25\\)")
644 "(require 'el-search) (when nil"))
00f4bd50
FB
645 #t)))
646 (replace
647 'install
648 (lambda* (#:key outputs #:allow-other-keys)
649 (let* ((out (assoc-ref outputs "out"))
650 (el-dir (string-append out "/share/emacs/site-lisp"))
651 (doc (string-append
652 out "/share/doc/haskell-mode-" ,version))
653 (info (string-append out "/share/info")))
654 (define (copy-to-dir dir files)
96c46210
LC
655 (for-each (lambda (f)
656 (install-file f dir))
657 files))
00f4bd50
FB
658
659 (with-directory-excursion "doc"
660 (unless (zero? (system* "makeinfo" "haskell-mode.texi"))
661 (error "makeinfo failed"))
96c46210 662 (install-file "haskell-mode.info" info))
00f4bd50
FB
663 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
664 (copy-to-dir el-dir (find-files "." "\\.elc?"))
08fc0d68 665 ;; These are part of other packages.
00f4bd50 666 (with-directory-excursion el-dir
08fc0d68 667 (for-each delete-file '("dash.el" "ert.el")))
00f4bd50
FB
668 #t))))))
669 (home-page "https://github.com/haskell/haskell-mode")
670 (synopsis "Haskell mode for Emacs")
671 (description
672 "This is an Emacs mode for editing, debugging and developing Haskell
673programs.")
674 (license license:gpl3+)))
675
1defd8cd
LC
676(define-public let-alist
677 (package
678 (name "emacs-let-alist")
679 (version "1.0.4")
680 (source (origin
681 (method url-fetch)
f32ffa04 682 (uri (string-append "https://elpa.gnu.org/packages/let-alist-"
1defd8cd
LC
683 version ".el"))
684 (sha256
685 (base32
686 "07312bvvyz86lf64vdkxg2l1wgfjl25ljdjwlf1bdzj01c4hm88x"))))
687 (build-system trivial-build-system)
688 (arguments
689 `(#:modules ((guix build utils)
690 (guix build emacs-utils))
691
692 #:builder (begin
693 (use-modules (guix build emacs-utils)
694 (guix build utils))
695
696 (let* ((out (assoc-ref %outputs "out"))
697 (lispdir (string-append out
698 "/share/emacs/site-lisp/"
699 "guix.d/let-alist-"
700 ,version))
701 (emacs (assoc-ref %build-inputs "emacs")))
702
703 (mkdir-p lispdir)
704 (copy-file (assoc-ref %build-inputs "source")
705 (string-append lispdir "/let-alist.el"))
706
707 (setenv "PATH" (string-append emacs "/bin"))
708 (emacs-byte-compile-directory lispdir)
709 #t))))
b8fc3622 710 (native-inputs `(("emacs" ,emacs-minimal)))
f32ffa04 711 (home-page "https://elpa.gnu.org/packages/let-alist.html")
1defd8cd
LC
712 (synopsis "Easily let-bind values of an assoc-list by their names")
713 (description
714 "This package offers a single Emacs Lisp macro, @code{let-alist}. This
715macro takes a first argument, whose value must be an alist (association list),
716and a body.
717
718The macro expands to a let form containing the body, where each dotted symbol
719inside body is let-bound to their cdrs in the alist. Only those present in
720the body are let-bound and this search is done at compile time.")
721 (license license:gpl3+)))
722
6e3fdbbe
LC
723(define-public flycheck
724 (package
725 (name "emacs-flycheck")
afb6fdaa 726 (version "28")
6e3fdbbe
LC
727 (source (origin
728 (method url-fetch)
0b928076
AK
729 (uri (string-append
730 "https://github.com/flycheck/flycheck/releases/download/"
731 version "/flycheck-" version ".tar"))
6e3fdbbe
LC
732 (sha256
733 (base32
afb6fdaa 734 "1yjxivk11d7w39zfhj2xr4h6xhwx1aj6yhyzd63rjrad7xpjfl86"))))
6e3fdbbe
LC
735 (build-system emacs-build-system)
736 (propagated-inputs
737 `(("emacs-dash" ,emacs-dash)
bdff55ea
LC
738 ("emacs-let-alist" ,let-alist)
739 ("emacs-seq" ,emacs-seq)))
6e3fdbbe
LC
740 (home-page "https://www.flycheck.org")
741 (synopsis "On-the-fly syntax checking")
742 (description
743 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
744replacement for the older Flymake extension which is part of GNU Emacs, with
745many improvements and additional features.
746
747Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
748checking for over 30 programming and markup languages with more than 70
749different tools. It highlights errors and warnings inline in the buffer, and
750provides an optional IDE-like error list.")
751 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
752
18d26210
MW
753\f
754;;;
755;;; Web browsing.
756;;;
757
758(define-public emacs-w3m
759 (package
760 (name "emacs-w3m")
2e74b9f4 761 (version "1.4.538+0.20141022")
18d26210
MW
762 (source (origin
763 (method url-fetch)
764 (uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_"
765 version ".orig.tar.gz"))
766 (sha256
2e74b9f4
AK
767 (base32
768 "0zfxmq86pwk64yv0426gnjrvhjrgrjqn08sdcdhmmjmfpmqvm79y"))))
18d26210 769 (build-system gnu-build-system)
6aaf3899 770 (native-inputs `(("autoconf" ,autoconf)
b8fc3622 771 ("emacs" ,emacs-minimal)))
18d26210 772 (inputs `(("w3m" ,w3m)
6aaf3899 773 ("imagemagick" ,imagemagick)))
18d26210 774 (arguments
caaf1933 775 `(#:modules ((guix build gnu-build-system)
18d26210
MW
776 (guix build utils)
777 (guix build emacs-utils))
8ff3df5b 778 #:imported-modules (,@%gnu-build-system-modules
18d26210
MW
779 (guix build emacs-utils))
780 #:configure-flags
781 (let ((out (assoc-ref %outputs "out")))
782 (list (string-append "--with-lispdir="
783 out "/share/emacs/site-lisp")
784 (string-append "--with-icondir="
2e74b9f4
AK
785 out "/share/images/emacs-w3m")
786 ;; Leave .el files uncompressed, otherwise GC can't
787 ;; identify run-time dependencies. See
788 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
789 "--without-compress-install"))
18d26210
MW
790 #:tests? #f ; no check target
791 #:phases
932ece65
AK
792 (modify-phases %standard-phases
793 (add-after 'unpack 'autoconf
794 (lambda _
795 (zero? (system* "autoconf"))))
796 (add-before 'build 'patch-exec-paths
797 (lambda* (#:key inputs outputs #:allow-other-keys)
798 (let ((out (assoc-ref outputs "out"))
799 (w3m (assoc-ref inputs "w3m"))
800 (imagemagick (assoc-ref inputs "imagemagick"))
801 (coreutils (assoc-ref inputs "coreutils")))
802 (emacs-substitute-variables "w3m.el"
803 ("w3m-command" (string-append w3m "/bin/w3m"))
804 ("w3m-touch-command"
805 (string-append coreutils "/bin/touch"))
806 ("w3m-image-viewer"
807 (string-append imagemagick "/bin/display"))
808 ("w3m-icon-directory"
809 (string-append out "/share/images/emacs-w3m")))
810 (emacs-substitute-variables "w3m-image.el"
811 ("w3m-imagick-convert-program"
812 (string-append imagemagick "/bin/convert"))
813 ("w3m-imagick-identify-program"
814 (string-append imagemagick "/bin/identify")))
815 #t)))
816 (replace 'install
817 (lambda* (#:key outputs #:allow-other-keys)
818 (and (zero? (system* "make" "install" "install-icons"))
819 (with-directory-excursion
820 (string-append (assoc-ref outputs "out")
821 "/share/emacs/site-lisp")
822 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
823 (symlink "w3m-load.el" "w3m-autoloads.el")
824 #t)))))))
18d26210
MW
825 (home-page "http://emacs-w3m.namazu.org/")
826 (synopsis "Simple Web browser for Emacs based on w3m")
827 (description
35b9e423 828 "Emacs-w3m is an emacs interface for the w3m web browser.")
f61e0e79 829 (license license:gpl2+)))
89925972
MW
830
831(define-public emacs-wget
832 (package
833 (name "emacs-wget")
834 (version "0.5.0")
835 (source (origin
836 (method url-fetch)
837 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
838 version ".orig.tar.gz"))
839 (sha256
840 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
841 (build-system gnu-build-system)
6aaf3899 842 (inputs `(("wget" ,wget)))
b8fc3622 843 (native-inputs `(("emacs" ,emacs-minimal)))
89925972 844 (arguments
caaf1933 845 `(#:modules ((guix build gnu-build-system)
89925972
MW
846 (guix build utils)
847 (guix build emacs-utils))
caaf1933 848 #:imported-modules (,@%gnu-build-system-modules
89925972
MW
849 (guix build emacs-utils))
850 #:tests? #f ; no check target
851 #:phases
852 (alist-replace
853 'configure
854 (lambda* (#:key outputs #:allow-other-keys)
855 (substitute* "Makefile"
856 (("/usr/local") (assoc-ref outputs "out"))
857 (("/site-lisp/emacs-wget") "/site-lisp")))
858 (alist-cons-before
859 'build 'patch-exec-paths
860 (lambda* (#:key inputs outputs #:allow-other-keys)
861 (let ((wget (assoc-ref inputs "wget")))
862 (emacs-substitute-variables "wget.el"
863 ("wget-command" (string-append wget "/bin/wget")))))
d51cafb0
AK
864 (alist-cons-after
865 'install 'post-install
866 (lambda* (#:key outputs #:allow-other-keys)
867 (emacs-generate-autoloads
868 "wget" (string-append (assoc-ref outputs "out")
869 "/share/emacs/site-lisp/")))
870 %standard-phases)))))
89925972 871 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
ae2189a9 872 (synopsis "Simple file downloader for Emacs based on wget")
89925972 873 (description
35b9e423 874 "Emacs-wget is an emacs interface for the wget file downloader.")
f61e0e79 875 (license license:gpl2+)))
77c9286d
LC
876
877\f
878;;;
879;;; Multimedia.
880;;;
881
882(define-public emms
883 (package
d06d4d7b 884 (name "emacs-emms")
c3a10d30 885 (version "4.2")
77c9286d
LC
886 (source (origin
887 (method url-fetch)
888 (uri (string-append "mirror://gnu/emms/emms-"
889 version ".tar.gz"))
890 (sha256
891 (base32
c3a10d30 892 "1xa9y64g5z8gfnxk1c2rf3plfjhqn4r6j8dpiygnfs6w4giysn22"))
77c9286d
LC
893 (modules '((guix build utils)))
894 (snippet
895 '(substitute* "Makefile"
896 (("/usr/bin/install-info")
897 ;; No need to use 'install-info' since it would create a
898 ;; useless 'dir' file.
899 "true")
900 (("^INFODIR=.*")
901 ;; Install Info files to $out/share/info, not $out/info.
902 "INFODIR := $(PREFIX)/share/info\n")
903 (("/site-lisp/emms")
904 ;; Install directly in share/emacs/site-lisp, not in a
905 ;; sub-directory.
906 "/site-lisp")
907 (("^all: (.*)\n" _ rest)
908 ;; Build 'emms-print-metadata'.
909 (string-append "all: " rest " emms-print-metadata\n"))))))
910 (build-system gnu-build-system)
911 (arguments
caaf1933 912 `(#:modules ((guix build gnu-build-system)
77c9286d
LC
913 (guix build utils)
914 (guix build emacs-utils))
caaf1933 915 #:imported-modules (,@%gnu-build-system-modules
77c9286d
LC
916 (guix build emacs-utils))
917
2fe176be
EF
918 #:phases
919 (modify-phases %standard-phases
920 (replace 'configure
921 (lambda* (#:key inputs outputs #:allow-other-keys)
922 (let ((out (assoc-ref outputs "out"))
923 (vorbis (assoc-ref inputs "vorbis-tools"))
924 (alsa (assoc-ref inputs "alsa-utils"))
925 (mpg321 (assoc-ref inputs "mpg321"))
926 (mp3info (assoc-ref inputs "mp3info")))
927 ;; Specify the installation directory.
928 (substitute* "Makefile"
929 (("PREFIX=.*$")
930 (string-append "PREFIX := " out "\n")))
931
932 (setenv "SHELL" (which "sh"))
933 (setenv "CC" "gcc")
934
935 ;; Specify the absolute file names of the various
936 ;; programs so that everything works out-of-the-box.
937 (with-directory-excursion "lisp"
938 (emacs-substitute-variables
939 "emms-player-mpg321-remote.el"
940 ("emms-player-mpg321-remote-command"
941 (string-append mpg321 "/bin/mpg321")))
942 (substitute* "emms-player-simple.el"
943 (("\"ogg123\"")
944 (string-append "\"" vorbis "/bin/ogg123\"")))
945 (emacs-substitute-variables "emms-info-ogginfo.el"
946 ("emms-info-ogginfo-program-name"
947 (string-append vorbis "/bin/ogginfo")))
948 (emacs-substitute-variables "emms-info-libtag.el"
949 ("emms-info-libtag-program-name"
950 (string-append out "/bin/emms-print-metadata")))
951 (emacs-substitute-variables "emms-info-mp3info.el"
952 ("emms-info-mp3info-program-name"
953 (string-append mp3info "/bin/mp3info")))
954 (substitute* "emms-volume-amixer.el"
955 (("\"amixer\"")
956 (string-append "\"" alsa "/bin/amixer\"")))
957 (substitute* "emms-tag-editor.el"
958 (("\"mp3info\"")
959 (string-append "\"" mp3info "/bin/mp3info\"")))))))
960 (add-before 'install 'pre-install
961 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 962 ;; The 'install' rule expects the target directories to exist.
2fe176be 963 (let* ((out (assoc-ref outputs "out"))
c3a10d30 964 (bin (string-append out "/bin"))
2fe176be 965 (man1 (string-append out "/share/man/man1")))
c3a10d30 966 (mkdir-p bin)
2fe176be
EF
967 (mkdir-p man1)
968 #t)))
969 (add-after 'install 'post-install
970 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 971 (let ((out (assoc-ref outputs "out")))
2fe176be
EF
972 (symlink "emms-auto.el"
973 (string-append out "/share/emacs/site-lisp/"
c3a10d30 974 "emms-autoloads.el"))))))
77c9286d 975 #:tests? #f))
b8fc3622 976 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
77c9286d 977 ("texinfo" ,texinfo)))
c72aed6d 978 (inputs `(("alsa-utils" ,alsa-utils)
77c9286d
LC
979 ("vorbis-tools" ,vorbis-tools)
980 ("mpg321" ,mpg321)
981 ("taglib" ,taglib)
982 ("mp3info" ,mp3info)))
38cb4766 983 (properties '((upstream-name . "emms")))
77c9286d
LC
984 (synopsis "Emacs Multimedia System")
985 (description
986 "EMMS is the Emacs Multimedia System. It is a small front-end which
987can control one of the supported external players. Thus, it supports
988whatever formats are supported by your music player. It also
989supports tagging and playlist management, all behind a clean and
990light user interface.")
991 (home-page "http://www.gnu.org/software/emms/")
f61e0e79 992 (license license:gpl3+)))
c7e553a3 993
1095bd1d
RW
994(define-public emacs-emms-player-mpv
995 (package
996 (name "emacs-emms-player-mpv")
f9875807 997 (version "0.0.10")
1095bd1d
RW
998 (source
999 (origin
1000 (method url-fetch)
1001 (uri (string-append "https://github.com/dochang/emms-player-mpv/archive/"
1002 version ".tar.gz"))
1003 (file-name (string-append name "-" version ".tar.gz"))
1004 (sha256
1005 (base32
f9875807 1006 "1q81fpmwr8hpdgq71vbdai2nml4yyqbmk4ffdyl4irlwph8gfjyq"))))
1095bd1d
RW
1007 (build-system emacs-build-system)
1008 (propagated-inputs
1009 `(("emms" ,emms)))
1010 (home-page "https://github.com/dochang/emms-player-mpv/")
1011 (synopsis "Mpv support for EMMS")
1012 (description
1013 "This package provides an EMMS player that uses mpv. It supports pause
1014and seeking.")
1015 (license license:gpl3+)))
1016
2316078a
RW
1017(define-public emacs-emms-mode-line-cycle
1018 (package
1019 (name "emacs-emms-mode-line-cycle")
1020 (version "0.2.5")
1021 (source
1022 (origin
1023 (method url-fetch)
1024 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
1025 "/archive/" version ".tar.gz"))
1026 (file-name (string-append name "-" version ".tar.gz"))
1027 (sha256
1028 (base32
1029 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
1030 (build-system emacs-build-system)
1031 (propagated-inputs
1032 `(("emms" ,emms)))
1033 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1034 (synopsis "Display the EMMS mode line as a ticker")
1035 (description
1036 "This is a minor mode for updating the EMMS mode-line string cyclically
1037within a specified width. It is useful for displaying long track titles.")
1038 (license license:gpl3+)))
1039
c7e553a3
LC
1040\f
1041;;;
1042;;; Miscellaneous.
1043;;;
1044
1045(define-public bbdb
1046 (package
1047 (name "bbdb")
1048 (version "3.1.2")
1049 (source (origin
1050 (method url-fetch)
1051 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1052 version ".tar.gz"))
1053 (sha256
1054 (base32
1055 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1056 (modules '((guix build utils)))
1057 (snippet
1058 ;; We don't want to build and install the PDF.
1059 '(substitute* "doc/Makefile.in"
1060 (("^doc_DATA = .*$")
1061 "doc_DATA =\n")))))
1062 (build-system gnu-build-system)
1063 (arguments
1064 '(#:phases (alist-cons-after
1065 'install 'post-install
1066 (lambda* (#:key outputs #:allow-other-keys)
1067 ;; Add an autoloads file with the right name for guix.el.
1068 (let* ((out (assoc-ref outputs "out"))
1069 (site (string-append out "/share/emacs/site-lisp")))
1070 (with-directory-excursion site
1071 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el"))))
1072 %standard-phases)))
b8fc3622 1073 (native-inputs `(("emacs" ,emacs-minimal)))
c7e553a3
LC
1074 (home-page "http://savannah.nongnu.org/projects/bbdb/")
1075 (synopsis "Contact management utility for Emacs")
1076 (description
1077 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1078an address book for email and snail mail addresses, phone numbers and the
1079like. It can be linked with various Emacs mail clients (Message and Mail
1080mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
f61e0e79 1081 (license license:gpl3+)))
78395334 1082
cf006d2e
CB
1083(define-public emacs-ag
1084 (package
1085 (name "emacs-ag")
1086 (version "0.47")
1087 (source (origin
1088 (method url-fetch)
1089 (uri (string-append
1090 "https://github.com/Wilfred/ag.el/archive/"
1091 version ".tar.gz"))
1092 (file-name (string-append name "-" version ".tar.gz"))
1093 (sha256
1094 (base32
1095 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1096 (build-system emacs-build-system)
1097 (arguments
1098 `(#:phases
1099 (modify-phases %standard-phases
1100 (add-before 'install 'patch-exec-paths
1101 (lambda* (#:key inputs #:allow-other-keys)
1102 (emacs-substitute-variables "ag.el"
1103 ("ag-executable"
1104 (string-append (assoc-ref inputs "the-silver-searcher")
1105 "/bin/ag")))
1106 #t)))))
1107 (inputs
1108 `(("the-silver-searcher" ,the-silver-searcher)))
1109 (propagated-inputs
1110 `(("dash" ,emacs-dash)
1111 ("s" ,emacs-s)))
1112 (home-page "https://github.com/Wilfred/ag.el")
1113 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1114 (description "This package provides the ability to use the silver
1115searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1116include version control system awareness, use of Perl compatible regular
1117expressions, editing the search results directly and searching file names
1118rather than the contents of files.")
1119 (license license:gpl3+)))
1120
b654de6d
AK
1121(define-public emacs-async
1122 (package
1123 (name "emacs-async")
a8ce82ac 1124 (version "1.9")
b654de6d
AK
1125 (source (origin
1126 (method url-fetch)
f32ffa04 1127 (uri (string-append "https://elpa.gnu.org/packages/async-"
b654de6d
AK
1128 version ".tar"))
1129 (sha256
1130 (base32
a8ce82ac 1131 "1ip5nc8xyln5szvqwp6wqva9xr84pn8ssn3nnphrszr19y4js2bm"))))
b654de6d 1132 (build-system emacs-build-system)
f32ffa04 1133 (home-page "https://elpa.gnu.org/packages/async.html")
b654de6d
AK
1134 (synopsis "Asynchronous processing in Emacs")
1135 (description
1136 "This package provides the ability to call asynchronous functions and
1137processes. For example, it can be used to run dired commands (for copying,
1138moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1139as a library for other Emacs packages.")
1140 (license license:gpl3+)))
1141
78395334
FB
1142(define-public emacs-auctex
1143 (package
1144 (name "emacs-auctex")
6b7f909f 1145 (version "11.90.0")
78395334
FB
1146 (source
1147 (origin
1148 (method url-fetch)
1149 (uri (string-append
f32ffa04 1150 "https://elpa.gnu.org/packages/auctex-"
78395334
FB
1151 version
1152 ".tar"))
1153 (sha256
1154 (base32
6b7f909f 1155 "04nsndwcf0dimgc2p1yzzrymc36amzdnjg0158nxplmjkzdp28gy"))))
78395334 1156 (build-system emacs-build-system)
a6eafbed
AK
1157 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1158 ;; ('emacs-minimal' does not provide dbus).
1159 (arguments `(#:emacs ,emacs))
78395334
FB
1160 (native-inputs
1161 `(("perl" ,perl)))
1162 (home-page "http://www.gnu.org/software/auctex/")
1163 (synopsis "Integrated environment for TeX")
1164 (description
1165 "AUCTeX is a comprehensive customizable integrated environment for
1166writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1167or XEmacs.")
1168 (license license:gpl3+)))
85ef742c
FB
1169
1170(define-public emacs-mmm-mode
1171 (package
1172 (name "emacs-mmm-mode")
1173 (version "0.5.4")
1174 (source
1175 (origin
1176 (method url-fetch)
1177 (uri (string-append
0c909c05
AK
1178 "https://github.com/purcell/mmm-mode/archive/"
1179 version ".tar.gz"))
1180 (file-name (string-append name "-" version ".tar.gz"))
85ef742c
FB
1181 (sha256
1182 (base32
0c909c05
AK
1183 "10kwslnflbjqm62wkrq420crqzdqalzfflp9pqk1i12zm6dm4mfv"))))
1184 (build-system gnu-build-system)
1185 (arguments
1186 '(#:phases
1187 (modify-phases %standard-phases
1188 (add-after 'unpack 'autogen
1189 (lambda _
1190 (zero? (system* "sh" "autogen.sh")))))))
1191 (native-inputs
1192 `(("autoconf" ,autoconf)
1193 ("automake" ,automake)
b8fc3622 1194 ("emacs" ,emacs-minimal)
0c909c05 1195 ("texinfo" ,texinfo)))
85ef742c 1196 (home-page "https://github.com/purcell/mmm-mode")
0c909c05 1197 (synopsis "Allow multiple major modes in an Emacs buffer")
85ef742c 1198 (description
0c909c05 1199 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
85ef742c
FB
1200single buffer.")
1201 (license license:gpl3+)))
ec9825d6
RW
1202
1203(define-public emacs-pdf-tools
1204 (package
1205 (name "emacs-pdf-tools")
eccd0b57 1206 (version "0.70")
ec9825d6
RW
1207 (source (origin
1208 (method url-fetch)
1209 (uri (string-append
1210 "https://github.com/politza/pdf-tools/archive/v"
1211 version ".tar.gz"))
1212 (file-name (string-append name "-" version ".tar.gz"))
1213 (sha256
1214 (base32
eccd0b57 1215 "1m0api6wiawswyk46bdsyk6r5rg3b86a4paar6nassm6x6c6vr77"))))
ec9825d6
RW
1216 (build-system gnu-build-system)
1217 (arguments
1218 `(#:tests? #f ; there are no tests
1219 #:modules ((guix build gnu-build-system)
1bcae5c5 1220 ((guix build emacs-build-system) #:prefix emacs:)
ec9825d6
RW
1221 (guix build utils)
1222 (guix build emacs-utils))
1223 #:imported-modules (,@%gnu-build-system-modules
1bcae5c5 1224 (guix build emacs-build-system)
ec9825d6
RW
1225 (guix build emacs-utils))
1226 #:phases
1227 (modify-phases %standard-phases
1bcae5c5
AK
1228 ;; Build server side using 'gnu-build-system'.
1229 (add-after 'unpack 'enter-server-dir
1230 (lambda _ (chdir "server") #t))
1231 (add-before 'configure 'autogen
1232 (lambda _
1233 (zero? (system* "bash" "autogen.sh"))))
1234
1235 ;; Build emacs side using 'emacs-build-system'.
1236 (add-after 'compress-documentation 'enter-lisp-dir
1237 (lambda _ (chdir "../lisp") #t))
1238 (add-after 'enter-lisp-dir 'emacs-patch-variables
1239 (lambda* (#:key outputs #:allow-other-keys)
1240 ;; Set path to epdfinfo program.
1241 (emacs-substitute-variables "pdf-info.el"
1242 ("pdf-info-epdfinfo-program"
1243 (string-append (assoc-ref outputs "out")
1244 "/bin/epdfinfo")))
1245 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1246 ;; upgrading" that pdf-tools tries to perform.
1247 (emacs-substitute-variables "pdf-tools.el"
1248 ("pdf-tools-handle-upgrades" '()))))
1249 (add-after 'emacs-patch-variables 'emacs-install
1250 (assoc-ref emacs:%standard-phases 'install))
1251 (add-after 'emacs-install 'emacs-build
1252 (assoc-ref emacs:%standard-phases 'build))
1253 (add-after 'emacs-install 'emacs-make-autoloads
1254 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
ec9825d6
RW
1255 (native-inputs `(("autoconf" ,autoconf)
1256 ("automake" ,automake)
1257 ("pkg-config" ,pkg-config)
b8fc3622 1258 ("emacs" ,emacs-minimal)))
e6527d64
AK
1259 (propagated-inputs
1260 `(("let-alist" ,let-alist)))
ec9825d6
RW
1261 (inputs `(("poppler" ,poppler)
1262 ("cairo" ,cairo)
1263 ("glib" ,glib)
1264 ("libpng" ,libpng)
1265 ("zlib" ,zlib)))
1266 (synopsis "Emacs support library for PDF files")
1267 (description
1268 "PDF Tools is, among other things, a replacement of DocView for PDF
1269files. The key difference is that pages are not pre-rendered by
1270e.g. ghostscript and stored in the file-system, but rather created on-demand
1271and stored in memory.")
1272 (home-page "https://github.com/politza/pdf-tools")
1273 (license license:gpl3+)))
d4dbf10e
FB
1274
1275(define-public emacs-dash
1276 (package
1277 (name "emacs-dash")
a31a79bc 1278 (version "2.13.0")
d4dbf10e
FB
1279 (source (origin
1280 (method url-fetch)
1281 (uri (string-append
1282 "https://github.com/magnars/dash.el/archive/"
1283 version ".tar.gz"))
1284 (file-name (string-append name "-" version ".tar.gz"))
1285 (sha256
1286 (base32
a31a79bc 1287 "1pjlkrzr8n45bnp3xs3dybvy0nz3gwamrfc7vsi1nhpkkw99ihhb"))))
d4dbf10e
FB
1288 (build-system emacs-build-system)
1289 (arguments
1290 `(#:phases
1291 (modify-phases %standard-phases
1292 (add-before 'install 'check
1293 (lambda _
1294 (zero? (system* "./run-tests.sh")))))))
1295 (home-page "https://github.com/magnars/dash.el")
1296 (synopsis "Modern list library for Emacs")
1297 (description "This package provides a modern list API library for Emacs.")
1298 (license license:gpl3+)))
85777fe5 1299
753baf77
AK
1300(define-public emacs-bui
1301 (package
1302 (name "emacs-bui")
f6b1dd23 1303 (version "1.1.0")
753baf77
AK
1304 (source (origin
1305 (method url-fetch)
1306 (uri (string-append
1307 "https://github.com/alezost/bui.el/archive/v"
1308 version ".tar.gz"))
1309 (file-name (string-append name "-" version ".tar.gz"))
1310 (sha256
1311 (base32
f6b1dd23 1312 "112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
753baf77
AK
1313 (build-system emacs-build-system)
1314 (propagated-inputs
1315 `(("dash" ,emacs-dash)))
1316 (home-page "https://github.com/alezost/bui.el")
1317 (synopsis "Buffer interface library for Emacs")
1318 (description
1319 "BUI (Buffer User Interface) is a library for making @code{list} and
1320@code{info} interfaces to display an arbitrary data of the same
1321type, for example: packages, buffers, files, etc.")
1322 (license license:gpl3+)))
1323
64e43c67
AK
1324(define-public emacs-guix
1325 (package
1326 (name "emacs-guix")
b4905fc1 1327 (version "0.3")
64e43c67
AK
1328 (source (origin
1329 (method url-fetch)
1330 (uri (string-append "https://github.com/alezost/guix.el"
1331 "/releases/download/v" version
1332 "/emacs-guix-" version ".tar.gz"))
1333 (sha256
1334 (base32
b4905fc1 1335 "1327zp140c7acckk0ajl88cgwr0lk9j3mb67nsq2janxrkwmj6br"))))
64e43c67
AK
1336 (build-system gnu-build-system)
1337 (arguments
1338 `(#:configure-flags
1339 (let ((guix (assoc-ref %build-inputs "guix"))
1340 (geiser (assoc-ref %build-inputs "geiser"))
1341 (dash (assoc-ref %build-inputs "dash"))
1342 (bui (assoc-ref %build-inputs "bui"))
1343 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1344 (site-lisp "/share/emacs/site-lisp"))
1345 (list (string-append "--with-guix-site-dir="
1346 guix "/share/guile/site/2.0")
1347 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1348 (string-append "--with-dash-lispdir="
1349 dash site-lisp "/guix.d/dash-"
1350 ,(package-version emacs-dash))
1351 (string-append "--with-bui-lispdir="
1352 bui site-lisp "/guix.d/bui-"
1353 ,(package-version emacs-bui))
1354 (string-append "--with-popup-lispdir="
1355 magit-popup site-lisp "/guix.d/magit-popup-"
1356 ,(package-version emacs-magit-popup))))))
1357 (native-inputs
1358 `(("pkg-config" ,pkg-config)
1359 ("emacs" ,emacs-minimal)))
1360 (inputs
1361 `(("guile" ,guile-2.0)
1362 ("guix" ,guix)))
1363 (propagated-inputs
1364 `(("geiser" ,geiser)
1365 ("dash" ,emacs-dash)
1366 ("bui" ,emacs-bui)
1367 ("magit-popup" ,emacs-magit-popup)))
1368 (home-page "https://github.com/alezost/guix.el")
1369 (synopsis "Emacs interface for GNU Guix")
1370 (description
b2f1f7b0
AK
1371 "Emacs-Guix provides a visual interface, tools and features for the GNU
1372Guix package manager. Particularly, it allows you to do various package
1373management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1374@code{M-x guix-help} command.")
64e43c67
AK
1375 (license license:gpl3+)))
1376
d6e5de1e
RJ
1377(define-public emacs-d-mode
1378 (package
1379 (name "emacs-d-mode")
1380 (version "2.0.8")
1381 (source (origin
1382 (method url-fetch)
1383 (uri (string-append
1384 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1385 "archive/" version ".tar.gz"))
1386 (sha256
1387 (base32
1388 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0"))))
1389 (build-system emacs-build-system)
1390 (propagated-inputs
1391 `(("emacs-undercover" ,emacs-undercover)))
1392 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1393 (synopsis "Emacs major mode for editing D code")
1394 (description "This package provides an Emacs major mode for highlighting
1395code written in the D programming language. This mode is currently known to
1396work with Emacs 24 and 25.")
1397 (license license:gpl2+)))
1398
1075b437
DB
1399(define-public emacs-undo-tree
1400 (package
1401 (name "emacs-undo-tree")
1402 (version "0.6.4")
1403 (source (origin
1404 (method git-fetch)
1405 (uri (git-reference
1406 (url "http://dr-qubit.org/git/undo-tree.git")
1407 (commit "release/0.6.4")))
1408 (file-name (string-append name "-" version "-checkout"))
1409 (sha256
1410 (base32
1411 "0b6hnv6bq1g5np5q2yw9r9aj1cxpp14akm21br7vpb7wp01fv4b3"))))
1412 (build-system emacs-build-system)
1413 (home-page "http://www.dr-qubit.org/emacs.php")
1414 (synopsis "Treat undo history as a tree")
1415 (description "Tree-like interface to Emacs undo system, providing
1416graphical tree presentation of all previous states of buffer that
1417allows easily move between them.")
1418 (license license:gpl3+)))
1419
85777fe5
FB
1420(define-public emacs-s
1421 (package
1422 (name "emacs-s")
48e28c69 1423 (version "1.11.0")
85777fe5
FB
1424 (source (origin
1425 (method url-fetch)
1426 (uri (string-append
1427 "https://github.com/magnars/s.el/archive/"
1428 version ".tar.gz"))
1429 (file-name (string-append name "-" version ".tar.gz"))
1430 (sha256
1431 (base32
48e28c69 1432 "0krq5nz3llfx0vwdqn18pmq777ja0fac185w0h9qymppb1j1hvc2"))))
85777fe5
FB
1433 (build-system emacs-build-system)
1434 (arguments
1435 `(#:phases
1436 (modify-phases %standard-phases
1437 (add-before 'install 'check
1438 (lambda _
1439 (zero? (system* "./run-tests.sh")))))))
1440 (home-page "https://github.com/magnars/s.el")
a124bbd2 1441 (synopsis "Emacs string manipulation library")
85777fe5
FB
1442 (description "This package provides an Emacs library for manipulating
1443strings.")
1444 (license license:gpl3+)))
cf9ce01f 1445
899bcad3 1446(define-public emacs-sx
1447 (package
1448 (name "emacs-sx")
1449 (version "0.4")
1450 (source (origin
1451 (method url-fetch)
1452 (uri (string-append "https://github.com/vermiculus/sx.el/"
1453 "archive/v" version ".tar.gz"))
1454 (file-name (string-append name "-" version ".tar.gz"))
1455 (sha256
1456 (base32
1457 "1w0xghfljqg31axcnv8gzlrd8pw25nji6idnrhflq0af9qh1dw03"))))
1458 (build-system emacs-build-system)
1459 (propagated-inputs
1460 `(("emacs-markdown-mode" ,emacs-markdown-mode)
1461 ("let-alist" ,let-alist)))
1462 (home-page "https://github.com/vermiculus/sx.el/")
1463 (synopsis "Emacs StackExchange client")
1464 (description
1465 "Emacs StackExchange client. Ask and answer questions on
1466Stack Overflow, Super User, and other StackExchange sites.")
1467 (license license:gpl3+)))
1468
cf9ce01f
FB
1469(define-public emacs-f
1470 (package
1471 (name "emacs-f")
ad5d899e 1472 (version "0.18.2")
cf9ce01f
FB
1473 (source (origin
1474 (method url-fetch)
1475 (uri (string-append
1476 "https://github.com/rejeep/f.el/archive/v"
1477 version ".tar.gz"))
1478 (file-name (string-append name "-" version ".tar.gz"))
1479 (sha256
1480 (base32
ad5d899e 1481 "1926shh2ymdsgz05c6q181mzzz1rci99ch568j151xi865jinyg5"))))
cf9ce01f
FB
1482 (build-system emacs-build-system)
1483 (propagated-inputs
1484 `(("emacs-s" ,emacs-s)
1485 ("emacs-dash" ,emacs-dash)))
1486 (home-page "http://github.com/rejeep/f.el")
1487 (synopsis "Emacs API for working with files and directories")
1488 (description "This package provides an Emacs library for working with
1489files and directories.")
1490 (license license:gpl3+)))
48dbeef7 1491
0916dc52
CB
1492(define-public emacs-git-gutter
1493 (package
1494 (name "emacs-git-gutter")
1495 (version "0.90")
1496 (source (origin
1497 (method url-fetch)
1498 (uri (string-append
1499 "https://github.com/syohex/" name "/archive/"
1500 version ".tar.gz"))
1501 (file-name (string-append name "-" version ".tar.gz"))
1502 (sha256
1503 (base32
1504 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1505 (build-system emacs-build-system)
1506 (home-page "https://github.com/syohex/emacs-git-gutter")
1507 (synopsis "See and manage hunks of text in a version control system")
1508 (description
1509 "This package is an Emacs minor mode for displaying and interacting with
1510hunks of text managed in a version control system. Added modified and deleted
1511areas can be indicated with symbols on the edge of the buffer, and commands
1512can be used to move between and perform actions on these hunks.
1513
1514Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1515display and behaviour is easily customisable.")
1516 (license license:gpl3+)))
1517
0b35f11d
RW
1518(define-public emacs-git-timemachine
1519 (package
1520 (name "emacs-git-timemachine")
1521 (version "3.0")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (string-append "https://github.com/pidu/git-timemachine/"
1526 "archive/" version ".tar.gz"))
1527 (file-name (string-append name "-" version ".tar.gz"))
1528 (sha256
1529 (base32
1530 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa"))))
1531 (build-system emacs-build-system)
1532 (home-page "https://github.com/pidu/git-timemachine")
1533 (synopsis "Step through historic versions of Git-controlled files")
1534 (description "This package enables you to step through historic versions
1535of files under Git version control from within Emacs.")
1536 (license license:gpl3+)))
1537
1c32830b
RW
1538(define-public emacs-el-mock
1539 (package
1540 (name "emacs-el-mock")
1541 (version "1.25.1")
1542 (source
1543 (origin
1544 (method url-fetch)
1545 (uri (string-append "https://github.com/rejeep/el-mock.el/"
1546 "archive/v" version ".tar.gz"))
1547 (file-name (string-append name "-" version ".tar.gz"))
1548 (sha256
1549 (base32
1550 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
1551 (build-system emacs-build-system)
1552 (home-page "http://github.com/rejeep/el-mock.el")
1553 (synopsis "Tiny mock and stub framework in Emacs Lisp")
1554 (description
1555 "Emacs Lisp Mock is a library for mocking and stubbing using readable
1556syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
1557Expectations, but it can be used in other contexts.")
1558 (license license:gpl3+)))
1559
0c5d837c
RW
1560(define-public emacs-espuds
1561 (package
1562 (name "emacs-espuds")
1563 (version "0.3.3")
1564 (source
1565 (origin
1566 (method url-fetch)
1567 (uri (string-append "https://github.com/ecukes/espuds/"
1568 "archive/v" version ".tar.gz"))
1569 (file-name (string-append name "-" version ".tar.gz"))
1570 (sha256
1571 (base32
1572 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
1573 (build-system emacs-build-system)
1574 (propagated-inputs
1575 `(("emacs-s" ,emacs-s)
1576 ("emacs-dash" ,emacs-dash)
1577 ("emacs-f" ,emacs-f)))
1578 (home-page "http://github.com/ecukes/espuds")
1579 (synopsis "Common step definitions for Ecukes")
1580 (description "Espuds is a collection of the most commonly used step
1581definitions for testing with the Ecukes framework.")
1582 (license license:gpl3+)))
1583
8bebe734
CB
1584(define-public emacs-es-mode
1585 (package
1586 (name "emacs-es-mode")
1587 (version "4.2.0")
1588 (source (origin
1589 (method url-fetch)
1590 (uri (string-append
1591 "https://github.com/dakrone/es-mode/archive/"
1592 version ".tar.gz"))
1593 (file-name (string-append name "-" version ".tar.gz"))
1594 (sha256
1595 (base32
1596 "02as82clm553yss7jfjac888308zr1h2229cch4z1yij70j25c8y"))))
1597 (build-system emacs-build-system)
1598 (propagated-inputs
1599 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
1600 ;; to be rendered incorrectly
1601 `(("emacs-org" ,emacs-org)))
1602 (home-page "https://github.com/dakrone/es-mode")
1603 (synopsis "Major mode for editing Elasticsearch queries")
1604 (description "@code{es-mode} includes highlighting, completion and
1605indentation support for Elasticsearch queries. Also supported are
1606@code{es-mode} blocks in @code{org-mode}, for which the results of queries can
1607be processed through @code{jq}, or in the case of aggregations, can be
1608rendered in to a table. In addition, there is an @code{es-command-center}
1609mode, which displays information about Elasticsearch clusters.")
1610 (license license:gpl3+)))
1611
d0e43782
RW
1612(define-public emacs-expand-region
1613 (package
1614 (name "emacs-expand-region")
61c71171 1615 (version "0.11.0")
d0e43782
RW
1616 (source
1617 (origin
1618 (method url-fetch)
1619 (uri (string-append "https://github.com/magnars/expand-region.el"
1620 "/archive/" version ".tar.gz"))
1621 (file-name (string-append name "-" version ".tar.gz"))
1622 (sha256
1623 (base32
61c71171 1624 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
d0e43782
RW
1625 (build-system emacs-build-system)
1626 (home-page "https://github.com/magnars/expand-region.el")
1627 (synopsis "Increase selected region by semantic units")
1628 (description
1629 "Expand region increases the selected region by semantic units. Just
1630keep pressing the key until it selects what you want. There's also
1631@code{er/contract-region} if you expand too far.")
1632 (license license:gpl3+)))
1633
65568446
RW
1634(define-public emacs-fill-column-indicator
1635 (package
1636 (name "emacs-fill-column-indicator")
1637 (version "1.81")
1638 (source
1639 (origin
1640 (method url-fetch)
1641 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
1642 "/archive/v" version ".tar.gz"))
1643 (file-name (string-append name "-" version ".tar.gz"))
1644 (sha256
1645 (base32
1646 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
1647 (build-system emacs-build-system)
1648 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
1649 (synopsis "Graphically indicate the fill column")
1650 (description
1651 "Fill-column-indicator graphically indicates the location of the fill
1652column by drawing a thin line down the length of the editing window.")
1653 (license license:gpl3+)))
1654
7b9769b0
RW
1655(define-public emacs-znc
1656 (package
1657 (name "emacs-znc")
1658 (version "0.0.2")
1659 (source
1660 (origin
1661 (method url-fetch)
1662 (uri (string-append "https://marmalade-repo.org/packages/znc-"
1663 version ".el"))
1664 (sha256
1665 (base32
1666 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
1667 (build-system emacs-build-system)
1668 (home-page "https://github.com/sshirokov/ZNC.el")
1669 (synopsis "Make ERC and ZNC get along better")
1670 (description
1671 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
1672IRC bouncer with ERC.")
1673 (license license:expat)))
1674
1f9a7097
RW
1675(define-public emacs-shut-up
1676 (package
1677 (name "emacs-shut-up")
1678 (version "0.3.2")
1679 (source
1680 (origin
1681 (method url-fetch)
1682 (uri (string-append "https://github.com/cask/shut-up/"
1683 "archive/v" version ".tar.gz"))
1684 (file-name (string-append name "-" version ".tar.gz"))
1685 (sha256
1686 (base32
1687 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
1688 (build-system emacs-build-system)
1689 (home-page "https://github.com/cask/shut-up")
1690 (synopsis "Silence Emacs")
1691 (description "This package silences most output of Emacs when running an
1692Emacs shell script.")
1693 (license license:expat)))
1694
dbe38a3a
RW
1695(define-public emacs-undercover
1696 (package
1697 (name "emacs-undercover")
1698 (version "0.6.0")
1699 (source
1700 (origin
1701 (method url-fetch)
1702 (uri (string-append "https://github.com/sviridov/undercover.el/"
1703 "archive/v" version ".tar.gz"))
1704 (file-name (string-append name "-" version ".tar.gz"))
1705 (sha256
1706 (base32
1707 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
1708 (build-system emacs-build-system)
1709 (propagated-inputs
1710 `(("emacs-dash" ,emacs-dash)
1711 ("emacs-shut-up" ,emacs-shut-up)))
1712 (home-page "https://github.com/sviridov/undercover.el")
1713 (synopsis "Test coverage library for Emacs Lisp")
1714 (description
1715 "Undercover is a test coverage library for software written in Emacs
1716Lisp.")
1717 (license license:expat)))
1718
07046e5f
RW
1719(define-public emacs-paren-face
1720 (package
1721 (name "emacs-paren-face")
1722 (version "1.0.0")
1723 (source
1724 (origin
1725 (method url-fetch)
1726 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
1727 version ".tar.gz"))
1728 (file-name (string-append name "-" version ".tar.gz"))
1729 (sha256
1730 (base32
1731 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
1732 (build-system emacs-build-system)
1733 (home-page "http://github.com/tarsius/paren-face")
1734 (synopsis "Face for parentheses in lisp modes")
1735 (description
1736 "This library defines a face named @code{parenthesis} used just for
1737parentheses. The intended purpose of this face is to make parentheses less
1738visible in Lisp code by dimming them. Lispers probably don't need to be
1739constantly made aware of the existence of the parentheses. Dimming them might
1740be even more useful for people new to lisp who have not yet learned to
1741subconsciously blend out the parentheses.")
1742 (license license:gpl3+)))
1743
a46e3c0d
RW
1744(define-public emacs-page-break-lines
1745 (package
1746 (name "emacs-page-break-lines")
1747 (version "0.11")
1748 (source
1749 (origin
1750 (method url-fetch)
1751 (uri (string-append "https://github.com/purcell/page-break-lines/"
1752 "archive/" version ".tar.gz"))
1753 (file-name (string-append name "-" version ".tar.gz"))
1754 (sha256
1755 (base32
1756 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
1757 (build-system emacs-build-system)
1758 (home-page "https://github.com/purcell/page-break-lines")
1759 (synopsis "Display page breaks as tidy horizontal lines")
1760 (description
1761 "This library provides a global mode which displays form feed characters
1762as horizontal rules.")
1763 (license license:gpl3+)))
1764
1f8a951b
RW
1765(define-public emacs-simple-httpd
1766 (package
1767 (name "emacs-simple-httpd")
1768 (version "1.4.6")
1769 (source
1770 (origin
1771 (method url-fetch)
1772 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
1773 "archive/" version ".tar.gz"))
1774 (file-name (string-append name "-" version ".tar.gz"))
1775 (sha256
1776 (base32
1777 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
1778 (build-system emacs-build-system)
1779 (home-page "https://github.com/skeeto/emacs-http-server")
1780 (synopsis "HTTP server in pure Emacs Lisp")
1781 (description
1782 "This package provides a simple HTTP server written in Emacs Lisp to
1783serve files and directory listings.")
1784 (license license:unlicense)))
1785
6c04acaa
RW
1786(define-public emacs-skewer-mode
1787 (package
1788 (name "emacs-skewer-mode")
1789 (version "1.6.2")
1790 (source
1791 (origin
1792 (method url-fetch)
1793 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
1794 version ".tar.gz"))
1795 (file-name (string-append name "-" version ".tar.gz"))
1796 (sha256
1797 (base32
1798 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
1799 (build-system emacs-build-system)
1800 (propagated-inputs
1801 `(("emacs-simple-httpd" ,emacs-simple-httpd)
1802 ("emacs-js2-mode" ,emacs-js2-mode)))
1803 (home-page "https://github.com/skeeto/skewer-mode")
1804 (synopsis "Live web development in Emacs")
1805 (description
1806 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
1807a web browser. Expressions are sent on-the-fly from an editing buffer to be
1808evaluated in the browser, just like Emacs does with an inferior Lisp process
1809in Lisp modes.")
1810 (license license:unlicense)))
1811
ce9701fb
RW
1812(define-public emacs-stripe-buffer
1813 (package
1814 (name "emacs-stripe-buffer")
1815 (version "0.2.5")
1816 (source
1817 (origin
1818 (method url-fetch)
1819 (uri (string-append "https://github.com/sabof/stripe-buffer/"
1820 "archive/" version ".tar.gz"))
1821 (file-name (string-append name "-" version ".tar.gz"))
1822 (sha256
1823 (base32
1824 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
1825 (build-system emacs-build-system)
1826 (home-page "https://github.com/sabof/stripe-buffer/")
1827 (synopsis "Add stripes to list buffers")
1828 (description
1829 "This Emacs package adds faces to add stripes to list buffers and org
1830tables.")
1831 (license license:gpl2+)))
1832
8d810163
RW
1833(define-public emacs-rich-minority
1834 (package
1835 (name "emacs-rich-minority")
1836 (version "1.0.1")
1837 (source
1838 (origin
1839 (method url-fetch)
1840 (uri (string-append "https://github.com/Malabarba/rich-minority/"
1841 "archive/" version ".tar.gz"))
1842 (file-name (string-append name "-" version ".tar.gz"))
1843 (sha256
1844 (base32
1845 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
1846 (build-system emacs-build-system)
1847 (home-page "https://github.com/Malabarba/rich-minority")
1848 (synopsis "Clean-up and beautify the list of minor modes")
1849 (description
1850 "This Emacs package hides and/or highlights minor modes in the
1851mode-line.")
1852 (license license:gpl2+)))
1853
b33f913d
RW
1854(define-public emacs-smart-mode-line
1855 (package
1856 (name "emacs-smart-mode-line")
1857 (version "2.10.1")
1858 (source
1859 (origin
1860 (method url-fetch)
1861 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
1862 "archive/" version ".tar.gz"))
1863 (file-name (string-append name "-" version ".tar.gz"))
1864 (sha256
1865 (base32
1866 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
1867 (build-system emacs-build-system)
1868 (propagated-inputs
1869 `(("emacs-rich-minority" ,emacs-rich-minority)))
1870 (home-page "http://github.com/Malabarba/smart-mode-line")
66e07664 1871 (synopsis "Color-coded smart mode-line")
b33f913d
RW
1872 (description
1873 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
1874read from small to large monitors by using colors, a prefix feature, and smart
1875truncation.")
1876 (license license:gpl2+)))
1877
3bcb304e
RW
1878(define-public emacs-shell-switcher
1879 (package
1880 (name "emacs-shell-switcher")
1881 (version "1.0.1")
1882 (source
1883 (origin
1884 (method url-fetch)
1885 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
1886 "/archive/v" version ".tar.gz"))
1887 (file-name (string-append name "-" version ".tar.gz"))
1888 (sha256
1889 (base32
1890 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
1891 (build-system emacs-build-system)
1892 (home-page "https://github.com/DamienCassou/shell-switcher")
1893 (synopsis "Provide fast switching between shell buffers")
1894 (description
1895 "This package provides commands to quickly switch between shell buffers.")
1896 (license license:gpl3+)))
1897
48dbeef7
FB
1898(define-public emacs-ob-ipython
1899 (package
1900 (name "emacs-ob-ipython")
1901 (version "20150704.8807064693")
1902 (source (origin
1903 (method git-fetch)
1904 (uri (git-reference
698bd297 1905 (commit "880706469338ab59b5bb7dbe8460016f89755364")
48dbeef7
FB
1906 (url "https://github.com/gregsexton/ob-ipython.git")))
1907 (sha256
1908 (base32
1909 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
1910 (build-system emacs-build-system)
1911 (propagated-inputs
1912 `(("emacs-f" ,emacs-f)))
1913 (home-page "http://www.gregsexton.org")
1914 (synopsis "Org-Babel functions for IPython evaluation")
1915 (description "This package adds support to Org-Babel for evaluating Python
1916source code using IPython.")
1917 (license license:gpl3+)))
6fd66b6c
LC
1918
1919(define-public emacs-debbugs
1920 (package
1921 (name "emacs-debbugs")
21f828e0 1922 (version "0.12")
6fd66b6c
LC
1923 (source (origin
1924 (method url-fetch)
f32ffa04 1925 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
6fd66b6c
LC
1926 version ".tar"))
1927 (sha256
1928 (base32
21f828e0 1929 "1swi4d7fhahimid9j12cypmkz7dlqgffrnhfxy5ra44y3j2b35ph"))))
6fd66b6c 1930 (build-system emacs-build-system)
32e16112
AK
1931 (propagated-inputs
1932 `(("emacs-async" ,emacs-async)))
f32ffa04 1933 (home-page "https://elpa.gnu.org/packages/debbugs.html")
6fd66b6c
LC
1934 (synopsis "Access the Debbugs bug tracker in Emacs")
1935 (description
1936 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
1937Tracker} from within Emacs.
1938
1939For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
1940and the command @code{M-x debbugs-gnu-search} for bug searching. If you
1941prefer the listing of bugs as TODO items of @code{org-mode}, you could use
1942@code{M-x debbugs-org} and related commands.
1943
1944A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
1945Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
1946 (license license:gpl3+)))
3ffe36f5
LC
1947
1948(define-public emacs-deferred
1949 (package
1950 (name "emacs-deferred")
1951 (version "0.3.2")
1952 (home-page "https://github.com/kiwanami/emacs-deferred")
1953 (source (origin
1954 (method git-fetch)
1955 (uri (git-reference
1956 (url home-page)
1957 (commit (string-append "v" version))))
1958 (sha256
1959 (base32
1960 "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr"))
1961 (file-name (string-append name "-" version))))
1962 (build-system emacs-build-system)
1963 ;; FIXME: Would need 'el-expectations' to actually run tests.
1964 (synopsis "Simple asynchronous functions for Emacs Lisp")
1965 (description
1966 "The @code{deferred.el} library provides support for asynchronous tasks.
1967The API is almost the same as that of
1968@uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
1969for asynchronous tasks.")
1970 (license license:gpl3+)))
d001bb5a
LC
1971
1972(define-public butler
1973 (package
1974 (name "emacs-butler")
1975 (version "0.2.4")
1976 (home-page "https://github.com/AshtonKem/Butler")
1977 (source (origin
1978 (method git-fetch)
1979 (uri (git-reference
1980 (url home-page)
1981 (commit version)))
1982 (sha256
1983 (base32
1984 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
1985 (file-name (string-append name "-" version))))
1986 (build-system emacs-build-system)
1987 (propagated-inputs
1988 `(("emacs-deferred" ,emacs-deferred)))
1989 (synopsis "Emacs client for Jenkins")
1990 (description
1991 "Butler provides an interface to connect to Jenkins continuous
1992integration servers. Users can specify a list of server in the
1993@code{butler-server-list} variable and then use @code{M-x butler-status} to
1994view the build status of those servers' build jobs, and possibly to trigger
1995build jobs.")
1996 (license license:gpl3+)))
2d1db448 1997
d1dbeddd
RW
1998(define-public emacs-company
1999 (package
2000 (name "emacs-company")
2001 (version "0.8.12")
2002 (source
2003 (origin
2004 (method url-fetch)
2005 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2006 version ".tar.gz"))
2007 (file-name (string-append name "-" version ".tar.gz"))
2008 (sha256
2009 (base32
2010 "1vwmbqm7h4lrszv2qxy6fqzznm9raigi84cadx982c9m7shp0zzz"))))
2011 (build-system emacs-build-system)
2012 (home-page "http://company-mode.github.io/")
2013 (synopsis "Modular text completion framework")
2014 (description
2015 "Company is a modular completion mechanism. Modules for retrieving
2016completion candidates are called back-ends, modules for displaying them are
2017front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2018These are distributed in separate files and can be used individually.")
2019 (license license:gpl3+)))
2020
7c438099
RW
2021(define-public emacs-multiple-cursors
2022 (package
2023 (name "emacs-multiple-cursors")
2024 (version "1.4.0")
2025 (source
2026 (origin
2027 (method url-fetch)
2028 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2029 "archive/" version ".tar.gz"))
2030 (file-name (string-append name "-" version ".tar.gz"))
2031 (sha256
2032 (base32
2033 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2034 (build-system emacs-build-system)
2035 (home-page "https://github.com/magnars/multiple-cursors.el")
2036 (synopsis "Multiple cursors for Emacs")
2037 (description
2038 "This package adds support to Emacs for editing text with multiple
2039simultaneous cursors.")
2040 (license license:gpl3+)))
2041
2d1db448
LC
2042(define-public typo
2043 (package
2044 (name "emacs-typo")
2045 (version "1.1")
2046 (home-page "https://github.com/jorgenschaefer/typoel")
2047 (source (origin
2048 (method git-fetch)
2049 (uri (git-reference
2050 (url home-page)
2051 (commit (string-append "v" version))))
2052 (sha256
2053 (base32
2054 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2055 (file-name (string-append name "-" version))))
2056 (build-system emacs-build-system)
2057 (synopsis "Minor mode for typographic editing")
2058 (description
2059 "This package provides two Emacs modes, @code{typo-mode} and
2060@code{typo-global-mode}. These modes automatically insert Unicode characters
2061for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2062automatically inserts a Unicode opening or closing quotation mark, depending
2063on context.")
2064 (license license:gpl3+)))
e037a09f
FB
2065
2066(define-public emacs-scheme-complete
2067 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2068 (package
2069 (name "emacs-scheme-complete")
2070 (version (string-append "20151223." (string-take commit 8)))
2071 (source
2072 (origin
2073 (file-name (string-append name "-" version))
2074 (method git-fetch)
2075 (uri (git-reference
2076 (url "https://github.com/ashinn/scheme-complete.git")
2077 (commit commit)))
2078 (sha256
2079 (base32
2080 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2081 (patches
fc1adab1 2082 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
e037a09f
FB
2083 (build-system emacs-build-system)
2084 (home-page "https://github.com/ashinn/scheme-complete")
2085 (synopsis "Smart tab completion for Scheme in Emacs")
2086 (description
2087 "This file provides a single function, @code{scheme-smart-complete},
2088which you can use for intelligent, context-sensitive completion for any Scheme
2089implementation in Emacs. To use it just load this file and bind that function
2090to a key in your preferred mode.")
2091 (license license:public-domain))))
58a7dc13
FB
2092
2093(define-public emacs-mit-scheme-doc
2094 (package
2095 (name "emacs-mit-scheme-doc")
2096 (version "20140203")
2097 (source
2098 (origin
2099 (modules '((guix build utils)))
2100 (snippet
2101 ;; keep only file of interest
2102 '(begin
2103 (for-each delete-file '("dot-emacs.el" "Makefile"))
2104 (copy-file "6.945-config/mit-scheme-doc.el" "mit-scheme-doc.el")
2105 (delete-file-recursively "6.945-config")))
2106 (file-name (string-append name "-" version ".tar.bz2"))
2107 (method url-fetch)
2108 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2109 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2110 (sha256
2111 (base32
2112 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2113 (build-system emacs-build-system)
2114 (inputs `(("mit-scheme" ,mit-scheme)))
2115 (arguments
2116 `(#:phases
2117 (modify-phases %standard-phases
2118 (add-after 'unpack 'configure-doc
2119 (lambda* (#:key inputs #:allow-other-keys)
2120 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2121 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2122 "mit-scheme-"
2123 ,(package-version mit-scheme))))
2124 (substitute* "mit-scheme-doc.el"
2125 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2126 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2127 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2128 (synopsis "MIT-Scheme documentation lookup for Emacs")
2129 (description
2130 "This package provides a set of Emacs functions to search definitions of
2131identifiers in the MIT-Scheme documentation.")
2132 (license license:gpl2+)))
e5045f30 2133
e5045f30
FB
2134(define-public emacs-constants
2135 (package
2136 (name "emacs-constants")
f99f3f24 2137 (version "2.6")
a9e41d2f 2138 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
e5045f30
FB
2139 (source
2140 (origin
37dbfc50 2141 (file-name (string-append name "-" version ".tar.gz"))
f99f3f24
FB
2142 (method url-fetch)
2143 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2144 "/archive/v" version ".tar.gz"))
e5045f30
FB
2145 (sha256
2146 (base32
f99f3f24 2147 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
e5045f30 2148 (build-system emacs-build-system)
e5045f30
FB
2149 (synopsis "Enter definition of constants into an Emacs buffer")
2150 (description
2151 "This package provides functions for inserting the definition of natural
2152constants and units into an Emacs buffer.")
2153 (license license:gpl2+)))
85960693 2154
e203221f
RW
2155(define-public emacs-tagedit
2156 (package
2157 (name "emacs-tagedit")
2158 (version "1.4.0")
2159 (source
2160 (origin
2161 (method url-fetch)
2162 (uri (string-append "https://github.com/magnars/tagedit/"
2163 "archive/" version ".tar.gz"))
2164 (file-name (string-append name "-" version ".tar.gz"))
2165 (sha256
2166 (base32
2167 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2168 (build-system emacs-build-system)
2169 (propagated-inputs
2170 `(("emacs-s" ,emacs-s)
2171 ("emacs-dash" ,emacs-dash)))
2172 (home-page "https://github.com/magnars/tagedit")
2173 (synopsis "Some paredit-like features for html-mode")
2174 (description
2175 "This package provides a collection of paredit-like functions for editing
2176in @code{html-mode}.")
2177 (license license:gpl3+)))
2178
85960693
FB
2179(define-public emacs-slime
2180 (package
2181 (name "emacs-slime")
54055e9f 2182 (version "2.18")
85960693
FB
2183 (source
2184 (origin
2185 (file-name (string-append name "-" version ".tar.gz"))
2186 (method url-fetch)
2187 (uri (string-append
2188 "https://github.com/slime/slime/archive/v"
2189 version ".tar.gz"))
2190 (sha256
2191 (base32
54055e9f 2192 "146avwbwr6mw0nmgyihx8gkr0mv6al7a73igzxvysj62000cqvlj"))))
85960693
FB
2193 (build-system emacs-build-system)
2194 (native-inputs
2195 `(("texinfo" ,texinfo)))
2196 (arguments
2197 `(#:phases
2198 (modify-phases %standard-phases
2199 (add-before 'install 'configure
2200 (lambda* _
2201 (emacs-substitute-variables "slime.el"
2202 ("inferior-lisp-program" "sbcl"))
2203 #t))
2204 (add-before 'install 'install-doc
2205 (lambda* (#:key outputs #:allow-other-keys)
2206 (let* ((out (assoc-ref outputs "out"))
2207 (info-dir (string-append out "/share/info"))
2208 (doc-dir (string-append out "/share/doc/"
2209 ,name "-" ,version))
2210 (doc-files '("doc/slime-refcard.pdf"
2211 "README.md" "NEWS" "PROBLEMS"
2212 "CONTRIBUTING.md")))
2213 (with-directory-excursion "doc"
2214 (substitute* "Makefile"
2215 (("infodir=/usr/local/info")
2216 (string-append "infodir=" info-dir)))
2217 (system* "make" "html/index.html")
2218 (system* "make" "slime.info")
2219 (install-file "slime.info" info-dir)
2220 (copy-recursively "html" (string-append doc-dir "/html")))
2221 (for-each (lambda (f)
2222 (install-file f doc-dir)
2223 (delete-file f))
2224 doc-files)
2225 (delete-file-recursively "doc")
2226 #t))))))
2227 (home-page "https://github.com/slime/slime")
2228 (synopsis "Superior Lisp Interaction Mode for Emacs")
2229 (description
2230 "SLIME extends Emacs with support for interactive programming in
2231Common Lisp. The features are centered around @{slime-mode}, an Emacs
2232minor mode that complements the standard @{lisp-mode}. While lisp-mode
2233supports editing Lisp source files, @{slime-mode} adds support for
2234interacting with a running Common Lisp process for compilation,
2235debugging, documentation lookup, and so on.")
2236 (license license:gpl2+)))
e11d14fe 2237
2238(define-public emacs-popup
2239 (package
2240 (name "emacs-popup")
2241 (version "0.5.3")
2242 (source (origin
2243 (method url-fetch)
2244 (uri (string-append
2245 "https://github.com/auto-complete/popup-el/archive/v"
2246 version ".tar.gz"))
2247 (file-name (string-append name "-" version ".tar.gz"))
2248 (sha256
2249 (base32
2250 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
2251 (build-system emacs-build-system)
e11d14fe 2252 (home-page "https://github.com/auto-complete/popup-el")
2253 (synopsis "Visual Popup User Interface for Emacs")
2254 (description
2255 "Popup.el is a visual popup user interface library for Emacs.
2256This provides a basic API and common UI widgets such as popup tooltips
2257and popup menus.")
2258 (license license:gpl3+)))
48766ea8
RW
2259
2260(define-public emacs-god-mode
2261 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
2262 (revision "1"))
2263 (package
2264 (name "emacs-god-mode")
2265 (version (string-append "20151005.925."
2266 revision "-" (string-take commit 9)))
2267 (source
2268 (origin
2269 (method git-fetch)
2270 (uri (git-reference
2271 (url "https://github.com/chrisdone/god-mode.git")
2272 (commit commit)))
2273 (file-name (string-append name "-" version "-checkout"))
2274 (sha256
2275 (base32
2276 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
2277 (build-system emacs-build-system)
2278 (home-page "https://github.com/chrisdone/god-mode")
2279 (synopsis "Minor mode for entering commands without modifier keys")
2280 (description
2281 "This package provides a global minor mode for entering Emacs commands
2282without modifier keys. It's similar to Vim's separation of commands and
2283insertion mode. When enabled all keys are implicitly prefixed with
2284@samp{C-} (among other helpful shortcuts).")
2285 (license license:gpl3+))))
4670f70a
CM
2286
2287(define-public emacs-rfcview
2288 (package
2289 (name "emacs-rfcview")
2290 (version "0.13")
2291 (home-page "http://www.loveshack.ukfsn.org/emacs")
2292 (source (origin
02736daa 2293 (method url-fetch)
4670f70a
CM
2294 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
2295 (sha256
2296 (base32
2297 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
2298 (build-system emacs-build-system)
4670f70a
CM
2299 (synopsis "Prettify Request for Comments (RFC) documents")
2300 (description "The Internet Engineering Task Force (IETF) and the Internet
2301Society (ISOC) publish various Internet-related protocols and specifications
2302as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
2303documents. RFCs and STDs are published in a simple text form. This package
2304provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
2305read these documents in Emacs. It prettifies the text and adds
2306hyperlinks/menus for easier navigation. It also provides functions for
2307browsing the index of RFC documents and fetching them from remote servers or
2308local directories.")
2309 (license license:gpl3+)))
2310
9e9c71eb
CM
2311(define-public emacs-ffap-rfc-space
2312 (package
2313 (name "emacs-ffap-rfc-space")
2314 (version "12")
2315 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
2316 (source (origin
02736daa 2317 (method url-fetch)
9e9c71eb
CM
2318 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
2319 (sha256
2320 (base32
2321 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
2322 (build-system emacs-build-system)
9e9c71eb
CM
2323 (synopsis "Make ffap recognize an RFC with a space before its number")
2324 (description "The Internet Engineering Task Force (IETF) and the
2325Internet Society (ISOC) publish various Internet-related protocols and
2326specifications as \"Request for Comments\" (RFC) documents. The
2327built-in Emacs module \"ffap\" (Find File at Point) has the ability to
2328recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
2329and load the appropriate RFC from a remote server. However, it fails
2330to recognize a name like \"RFC 1234\". This package enhances ffap so
2331that it correctly finds RFCs even when a space appears before the
2332number.")
2333 (license license:gpl3+)))
9576cc72 2334
db1a4960
RW
2335(define-public emacs-org-bullets
2336 (package
2337 (name "emacs-org-bullets")
2338 (version "0.2.4")
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
2343 version ".tar.gz"))
2344 (file-name (string-append name "-" version ".tar.gz"))
2345 (sha256
2346 (base32
2347 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
2348 (build-system emacs-build-system)
2349 (home-page "https://github.com/sabof/org-bullets")
2350 (synopsis "Show bullets in org-mode as UTF-8 characters")
2351 (description
2352 "This package provides an Emacs minor mode causing bullets in
2353@code{org-mode} to be rendered as UTF-8 characters.")
2354 (license license:gpl3+)))
2355
ed8bc028
RJ
2356(define-public emacs-org-trello
2357 (package
2358 (name "emacs-org-trello")
2359 (version "0.7.9")
2360 (source (origin
2361 (method url-fetch)
2362 (uri (string-append
2363 "https://github.com/org-trello/org-trello/archive/"
2364 version ".tar.gz"))
2365 (file-name (string-append name "-" version ".tar.gz"))
2366 (sha256
2367 (base32
2368 "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf"))))
2369 (build-system emacs-build-system)
2370 (propagated-inputs
2371 `(("emacs-deferred" ,emacs-deferred)
2372 ("emacs-request" ,emacs-request)
2373 ("emacs-dash" ,emacs-dash)
2374 ("emacs-s" ,emacs-s)))
2375 (home-page "https://org-trello.github.io")
2376 (synopsis "Emacs minor mode for interacting with Trello")
2377 (description "This package provides an Emacs minor mode to extend
2378@code{org-mode} with Trello abilities. Trello is an online project
2379organizer.")
2380 (license license:gpl3+)))
2381
9576cc72
AP
2382(define-public emacs-zenburn-theme
2383 (package
2384 (name "emacs-zenburn-theme")
2385 (version "2.4")
2386 (source (origin
2387 (method url-fetch)
2388 (uri (string-append
2389 "https://github.com/bbatsov/zenburn-emacs/archive/v"
2390 version ".tar.gz"))
2391 (file-name (string-append name "-" version ".tar.gz"))
2392 (sha256
2393 (base32
2394 "0lyi84bm8sa7vj40n6zg6rlbsmi53mi1y9xn6gkjj29s5zbcnlg7"))))
2395 (build-system emacs-build-system)
2396 (home-page "http://github.com/bbatsov/zenburn-emacs")
2397 (synopsis "Low contrast color theme for Emacs")
2398 (description
2399 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
2400It is built on top of the custom theme support in Emacs 24 or later.")
2401 (license license:gpl3+)))
2402
012c8b35
RW
2403(define-public emacs-solarized-theme
2404 (package
2405 (name "emacs-solarized-theme")
2406 (version "1.2.2")
2407 (source (origin
2408 (method url-fetch)
2409 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
2410 "archive/v" version ".tar.gz"))
2411 (file-name (string-append name "-" version ".tar.gz"))
2412 (sha256
2413 (base32
2414 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
2415 (build-system emacs-build-system)
2416 (propagated-inputs
090bdb9e 2417 `(("emacs-dash" ,emacs-dash)))
012c8b35
RW
2418 (home-page "http://github.com/bbatsov/solarized-emacs")
2419 (synopsis "Port of the Solarized theme for Emacs")
2420 (description
2421 "Solarized for Emacs is a port of the Solarized theme for Vim. This
2422package provides a light and a dark variant.")
2423 (license license:gpl3+)))
2424
e7761186
AV
2425(define-public emacs-ahungry-theme
2426 (package
2427 (name "emacs-ahungry-theme")
2428 (version "1.3.0")
2429 (source
2430 (origin (method url-fetch)
f32ffa04 2431 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
e7761186
AV
2432 version ".tar"))
2433 (sha256
2434 (base32
2435 "1p2zaq0s4bbl5cx6wyab24wamw7m0mysb0v47dqjmnvfc25z84rq"))))
2436 (build-system emacs-build-system)
2437 (home-page "https://github.com/ahungry/color-theme-ahungry")
2438 (synopsis "Ahungry color theme for Emacs")
2439 (description "Ahungry theme for Emacs provides bright and bold colors.
2440If you load it from a terminal, you will be able to make use of the
2441transparent background. If you load it from a GUI, it will default to a
2442dark background.")
2443 (license license:gpl3+)))
2444
5c447e28
AP
2445(define-public emacs-smartparens
2446 (package
2447 (name "emacs-smartparens")
ec14d215 2448 (version "1.9.0")
5c447e28
AP
2449 (source (origin
2450 (method url-fetch)
2451 (uri (string-append
2452 "https://github.com/Fuco1/smartparens/archive/"
2453 version ".tar.gz"))
2454 (file-name (string-append name "-" version ".tar.gz"))
2455 (sha256
2456 (base32
ec14d215 2457 "12065r7h1s9v8lnq5mk3654dkw4cq60ky8aniqq5n2ivv6qd2d4q"))))
5c447e28
AP
2458 (build-system emacs-build-system)
2459 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
2460 (home-page "https://github.com/Fuco1/smartparens")
2461 (synopsis "Paredit-like insertion, wrapping and navigation with user
2462defined pairs")
2463 (description
2464 "Smartparens is a minor mode for Emacs that deals with parens pairs
2465and tries to be smart about it. It started as a unification effort to
2466combine functionality of several existing packages in a single,
2467compatible and extensible way to deal with parentheses, delimiters, tags
2468and the like. Some of these packages include autopair, textmate,
2469wrap-region, electric-pair-mode, paredit and others. With the basic
2470features found in other packages it also brings many improvements as
2471well as completely new features.")
2472 (license license:gpl3+)))
8eeb301d 2473
8f82641a
RJ
2474(define-public emacs-hl-todo
2475 (package
2476 (name "emacs-hl-todo")
4e0d9fce 2477 (version "1.7.4")
8f82641a
RJ
2478 (source (origin
2479 (method url-fetch)
2480 (uri (string-append
2481 "https://raw.githubusercontent.com/tarsius/hl-todo/"
2482 version "/hl-todo.el"))
0e7c4089 2483 (file-name (string-append "hl-todo-" version ".el"))
8f82641a
RJ
2484 (sha256
2485 (base32
4e0d9fce 2486 "016ivl4s0ysrm1xbfi86j5xcs759fcb0mkspxw81x8mpi3yb46ya"))))
8f82641a
RJ
2487 (build-system emacs-build-system)
2488 (home-page "https://github.com/tarsius/hl-todo")
2489 (synopsis "Emacs mode to highlight TODO and similar keywords")
2490 (description
2491 "This package provides an Emacs mode to highlight TODO and similar
2492keywords in comments and strings. This package also provides commands for
2493moving to the next or previous keyword and to invoke @code{occur} with a
2494regexp that matches all known keywords.")
2495 (license license:gpl3+)))
2496
480f7350
RW
2497(define-public emacs-perspective
2498 (package
2499 (name "emacs-perspective")
2500 (version "1.12")
2501 (source
2502 (origin
2503 (method url-fetch)
2504 (uri (string-append "https://github.com/nex3/perspective-el/"
2505 "archive/" version ".tar.gz"))
2506 (file-name (string-append name "-" version ".tar.gz"))
2507 (sha256
2508 (base32
2509 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
2510 (build-system emacs-build-system)
2511 (home-page "http://github.com/nex3/perspective-el")
2512 (synopsis "Switch between named \"perspectives\"")
2513 (description
2514 "This package provides tagged workspaces in Emacs, similar to workspaces in
2515windows managers such as Awesome and XMonad. @code{perspective.el} provides
2516multiple workspaces (or \"perspectives\") for each Emacs frame. Each
2517perspective is composed of a window configuration and a set of buffers.
2518Switching to a perspective activates its window configuration, and when in a
2519perspective only its buffers are available by default.")
2520 ;; This package is released under the same license as Emacs (GPLv3+) or
2521 ;; the Expat license.
2522 (license license:gpl3+)))
2523
36e5d103
RJ
2524(define-public emacs-request
2525 (package
2526 (name "emacs-request")
2527 (version "0.2.0")
2528 (source (origin
2529 (method url-fetch)
2530 (uri (string-append
2531 "https://github.com/tkf/emacs-request/archive/v"
2532 version ".tar.gz"))
2533 (file-name (string-append name "-" version ".tar.gz"))
2534 (sha256
2535 (base32 "0sll9g9x15jxrdr58pdxx4iz74rnjd43q521iqm890i6hmkrgwap"))))
2536 (build-system emacs-build-system)
2537 (home-page "https://github.com/tkf/emacs-request")
2538 (synopsis "Package for speaking HTTP in Emacs Lisp")
2539 (description "This package provides a HTTP request library with multiple
2540backends. It supports url.el which is shipped with Emacs and the curl command
2541line program.")
2542 (license license:gpl3+)))
2543
f1b61e26 2544(define-public emacs-rudel
2545 (package
2546 (name "emacs-rudel")
2547 (version "0.3.1")
2548 (source
2549 (origin
2550 (method url-fetch)
2551 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
2552 version ".tar"))
2553 (sha256
2554 (base32
2555 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
2556 (build-system emacs-build-system)
2557 (home-page "http://rudel.sourceforge.net/")
2558 (synopsis "Collaborative editing framework")
2559 (description
2560 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
2561is to share buffers with other users in order to edit the contents of those
2562buffers collaboratively. Rudel supports multiple backends to enable
2563communication with other collaborative editors using different protocols,
2564though currently Obby (for use with the Gobby editor) is the only
2565fully-functional one.")
2566 (license license:gpl3+)))
2567
79b3d3ea
RW
2568(define-public emacs-hydra
2569 (package
2570 (name "emacs-hydra")
86d959bd 2571 (version "0.13.6")
79b3d3ea
RW
2572 (source
2573 (origin
2574 (method url-fetch)
2575 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
2576 version ".tar.gz"))
2577 (file-name (string-append name "-" version ".tar.gz"))
2578 (sha256
2579 (base32
86d959bd 2580 "0575vh858gm35p57s49dy6pc2ij46dmj9zaa4z0cp98sqra3j3l0"))))
79b3d3ea
RW
2581 (build-system emacs-build-system)
2582 (home-page "https://github.com/abo-abo/hydra")
2583 (synopsis "Make Emacs bindings that stick around")
2584 (description
2585 "This package can be used to tie related commands into a family of short
2586bindings with a common prefix---a Hydra. Once you summon the Hydra (through
2587the prefixed binding), all the heads can be called in succession with only a
2588short extension. Any binding that isn't the Hydra's head vanquishes the
2589Hydra. Note that the final binding, besides vanquishing the Hydra, will still
2590serve its original purpose, calling the command assigned to it. This makes
2591the Hydra very seamless; it's like a minor mode that disables itself
2592automatically.")
2593 (license license:gpl3+)))
2594
12db29ba
RW
2595(define-public emacs-ivy
2596 (package
2597 (name "emacs-ivy")
2598 (version "0.8.0")
2599 (source
2600 (origin
2601 (method url-fetch)
2602 (uri (string-append "https://github.com/abo-abo/swiper/archive/"
2603 version ".tar.gz"))
2604 (file-name (string-append name "-" version ".tar.gz"))
2605 (sha256
2606 (base32
2607 "18nqwl05is71dzswnvpfhlg7b0v3apvbsfxrwab9c0apwavi892q"))))
2608 (build-system emacs-build-system)
2609 (propagated-inputs
2610 `(("emacs-hydra" ,emacs-hydra)))
2611 (home-page "http://oremacs.com/swiper/")
2612 (synopsis "Incremental vertical completion for Emacs")
2613 (description
2614 "This package provides @code{ivy-read} as an alternative to
2615@code{completing-read} and similar functions. No attempt is made to determine
2616the best candidate. Instead, the user can navigate candidates with
2617@code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
2618splitting the input text by spaces and re-building it into a regular
2619expression.")
2620 (license license:gpl3+)))
2621
5edc24ec
RW
2622(define-public emacs-avy
2623 (package
2624 (name "emacs-avy")
2625 (version "0.4.0")
2626 (source
2627 (origin
2628 (method url-fetch)
2629 (uri (string-append "https://github.com/abo-abo/avy/archive/"
2630 version ".tar.gz"))
2631 (file-name (string-append name "-" version ".tar.gz"))
2632 (sha256
2633 (base32
2634 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
2635 (build-system emacs-build-system)
2636 (home-page "https://github.com/abo-abo/avy")
2637 (synopsis "Tree-based completion for Emacs")
2638 (description
2639 "This package provides a generic completion method based on building a
2640balanced decision tree with each candidate being a leaf. To traverse the tree
2641from the root to a desired leaf, typically a sequence of @code{read-key} can
2642be used.
2643
2644In order for @code{read-key} to make sense, the tree needs to be visualized
2645appropriately, with a character at each branch node. So this completion
2646method works only for things that you can see on your screen, all at once,
2647such as the positions of characters, words, line beginnings, links, or
2648windows.")
2649 (license license:gpl3+)))
2650
93dba17c
RW
2651(define-public emacs-ace-window
2652 (package
2653 (name "emacs-ace-window")
2654 (version "0.9.0")
2655 (source
2656 (origin
2657 (method url-fetch)
2658 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
2659 version ".tar.gz"))
2660 (file-name (string-append name "-" version ".tar.gz"))
2661 (sha256
2662 (base32
2663 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
2664 (build-system emacs-build-system)
2665 (propagated-inputs
2666 `(("emacs-avy" ,emacs-avy)))
2667 (home-page "https://github.com/abo-abo/ace-window")
2668 (synopsis "Quickly switch windows in Emacs")
2669 (description
2670 "@code{ace-window} is meant to replace @code{other-window}.
2671In fact, when there are only two windows present, @code{other-window} is
2672called. If there are more, each window will have its first character
2673highlighted. Pressing that character will switch to that window.")
2674 (license license:gpl3+)))
2675
e1918ce4
RW
2676(define-public emacs-iedit
2677 (package
2678 (name "emacs-iedit")
2679 (version "0.9.9")
2680 (source
2681 (origin
2682 (method url-fetch)
2683 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
2684 version ".tar.gz"))
2685 (file-name (string-append name "-" version ".tar.gz"))
2686 (sha256
2687 (base32
2688 "00v86zllcsivmiibigbr91qij2zdf1lr9db8z8again1sn63wkdj"))))
2689 (build-system emacs-build-system)
2690 (home-page "http://www.emacswiki.org/emacs/Iedit")
2691 (synopsis "Edit multiple regions in the same way simultaneously")
2692 (description
2693 "This package is an Emacs minor mode and allows you to edit one
2694occurrence of some text in a buffer (possibly narrowed) or region, and
2695simultaneously have other occurrences edited in the same way.
2696
2697You can also use Iedit mode as a quick way to temporarily show only the buffer
2698lines that match the current text being edited. This gives you the effect of
2699a temporary @code{keep-lines} or @code{occur}.")
2700 (license license:gpl3+)))
2701
a5338dd4
RW
2702(define-public emacs-lispy
2703 (package
2704 (name "emacs-lispy")
2705 (version "0.26.0")
2706 (source
2707 (origin
2708 (method url-fetch)
2709 (uri (string-append "https://github.com/abo-abo/lispy/archive/"
2710 version ".tar.gz"))
2711 (file-name (string-append name "-" version ".tar.gz"))
2712 (sha256
2713 (base32
2714 "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl"))))
2715 (build-system emacs-build-system)
2716 (propagated-inputs
2717 `(("emacs-ace-window" ,emacs-ace-window)
2718 ("emacs-iedit" ,emacs-iedit)
2719 ("emacs-ivy" ,emacs-ivy)
2720 ("emacs-hydra" ,emacs-hydra)))
2721 (home-page "https://github.com/abo-abo/lispy")
2722 (synopsis "Modal S-expression editing")
2723 (description
2724 "Due to the structure of Lisp syntax it's very rare for the programmer to
2725want to insert characters right before \"(\" or right after \")\". Thus
2726unprefixed printable characters can be used to call commands when the point is
2727at one of these special locations. Lispy provides unprefixed keybindings for
2728S-expression editing when point is at the beginning or end of an
2729S-expression.")
2730 (license license:gpl3+)))
2731
8eeb301d
AP
2732(define-public emacs-clojure-mode
2733 (package
2734 (name "emacs-clojure-mode")
2735 (version "5.3.0")
2736 (source (origin
2737 (method url-fetch)
2738 (uri (string-append
2739 "https://github.com/clojure-emacs/clojure-mode/archive/"
2740 version ".tar.gz"))
2741 (file-name (string-append name "-" version ".tar.gz"))
2742 (sha256
2743 (base32
2744 "0gi8ra3ap5m3mz4qh1yxp2cldn7z9xcxvypznr6rrlc6a9l8s5a6"))))
2745 (build-system emacs-build-system)
2746 (home-page "http://github.com/clojure-emacs/clojure-mode")
2747 (synopsis "Major mode for Clojure code")
2748 (description
2749 "This Emacs package provides font-lock, indentation, navigation and basic
2750refactoring for the @uref{http://clojure.org, Clojure programming language}.
2751It is recommended to use @code{clojure-mode} with paredit or smartparens.")
2752 (license license:gpl3+)))
d345491a
AP
2753
2754(define-public emacs-epl
2755 (package
2756 (name "emacs-epl")
2757 (version "0.8")
2758 (source (origin
2759 (method url-fetch)
2760 (uri (string-append
2761 "https://github.com/cask/epl/archive/"
2762 version ".tar.gz"))
2763 (sha256
2764 (base32
2765 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
2766 (build-system emacs-build-system)
2767 (home-page "http://github.com/cask/epl")
2768 (synopsis "Emacs Package Library")
2769 (description
2770 "A package management library for Emacs, based on @code{package.el}.
2771
2772The purpose of this library is to wrap all the quirks and hassle of
2773@code{package.el} into a sane API.")
2774 (license license:gpl3+)))
ad6c4bc4
AP
2775
2776(define-public emacs-queue
2777 (package
2778 (name "emacs-queue")
2779 (version "0.1.1")
2780 (source (origin
02736daa 2781 (method url-fetch)
f32ffa04 2782 (uri (string-append "https://elpa.gnu.org/packages/queue-"
ad6c4bc4
AP
2783 version ".el"))
2784 (sha256
2785 (base32
2786 "0jw24fxqnf9qcaf2nh09cnds1kqfk7hal35dw83x1ari95say391"))))
2787 (build-system emacs-build-system)
2788 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
2789 (synopsis "Queue data structure for Emacs")
2790 (description
2791 "This Emacs library provides queue data structure. These queues can be
2792used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
2793stack, i.e. elements can be added to the front or back of the queue, and can
2794be removed from the front. This type of data structure is sometimes called an
2795\"output-restricted deque\".")
2796 (license license:gpl3+)))
32abfcf4
AP
2797
2798(define-public emacs-pkg-info
2799 (package
2800 (name "emacs-pkg-info")
2801 (version "0.6")
2802 (source (origin
2803 (method url-fetch)
2804 (uri (string-append
2805 "https://github.com/lunaryorn/pkg-info.el/archive/"
2806 version ".tar.gz"))
2807 (file-name (string-append name "-" version ".tar.gz"))
2808 (sha256
2809 (base32
2810 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
2811 (build-system emacs-build-system)
2812 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
2813 (home-page "https://github.com/lunaryorn/pkg-info.el")
2814 (synopsis "Information about Emacs packages")
2815 (description
2816 "This library extracts information from the installed Emacs packages.")
2817 (license license:gpl3+)))
565bccc5
AP
2818
2819(define-public emacs-spinner
2820 (package
2821 (name "emacs-spinner")
cd4d96b8 2822 (version "1.7.3")
565bccc5 2823 (source (origin
02736daa 2824 (method url-fetch)
f32ffa04 2825 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
565bccc5
AP
2826 version ".el"))
2827 (sha256
2828 (base32
cd4d96b8 2829 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
565bccc5
AP
2830 (build-system emacs-build-system)
2831 (home-page "https://github.com/Malabarba/spinner.el")
2832 (synopsis "Emacs mode-line spinner for operations in progress")
2833 (description
2834 "This Emacs package adds spinners and progress-bars to the mode-line for
2835ongoing operations.")
2836 (license license:gpl3+)))
62a45cb6
AP
2837
2838(define-public emacs-seq
2839 (package
2840 (name "emacs-seq")
a5dee1ac 2841 (version "2.19")
62a45cb6
AP
2842 (source (origin
2843 (method url-fetch)
f32ffa04 2844 (uri (string-append "https://elpa.gnu.org/packages/seq-"
62a45cb6
AP
2845 version ".tar"))
2846 (sha256
2847 (base32
a5dee1ac 2848 "11hb7is6a4h1lscjcfrzh576j0g3m5yjydn16s6x5bxp5gsr6zha"))))
62a45cb6 2849 (build-system emacs-build-system)
f32ffa04 2850 (home-page "https://elpa.gnu.org/packages/seq.html")
62a45cb6
AP
2851 (synopsis "Sequence manipulation functions for Emacs")
2852 (description
2853 "This Emacs library provides sequence-manipulation functions that
2854complement basic functions provided by @code{subr.el}. All provided functions
2855work on lists, strings and vectors.")
2856 (license license:gpl3+)))
6ede256f
DT
2857
2858(define-public emacs-better-defaults
2859 (package
2860 (name "emacs-better-defaults")
2861 (version "0.1.3")
2862 (source
2863 (origin
2864 (method url-fetch)
2865 (uri (string-append "https://github.com/technomancy/better-defaults"
2866 "/archive/" version ".tar.gz"))
13384842 2867 (file-name (string-append name "-" version ".tar.gz"))
6ede256f
DT
2868 (sha256
2869 (base32
2870 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
2871 (build-system emacs-build-system)
2872 (home-page "https://github.com/technomancy/better-defaults")
2873 (synopsis "Better defaults for Emacs")
2874 (description
2875 "Better defaults attempts to address the most obvious deficiencies of the
2876Emacs default configuration in uncontroversial ways that nearly everyone can
2877agree upon.")
2878 (license license:gpl3+)))
c5c08f1b 2879
7034791a
RJ
2880(define-public emacs-eprime
2881 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
2882 (package
2883 (name "emacs-eprime")
2884 (version (string-append "20140513-" (string-take commit 7)))
2885 (source (origin
2886 (method url-fetch)
2887 (uri (string-append "https://raw.githubusercontent.com"
2888 "/AndrewHynes/eprime-mode/"
2889 commit "/eprime-mode.el"))
2890 (file-name (string-append "eprime-" version ".el"))
2891 (sha256
2892 (base32
2893 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
2894 (build-system emacs-build-system)
2895 (home-page "https://github.com/AndrewHynes/eprime-mode")
2896 (synopsis "E-prime checking mode for Emacs")
2897 (description "This package provides an E-prime checking mode for Emacs
2898that highlights non-conforming text. The subset of the English language called
2899E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
2900 (license license:gpl3+))))
2901
41184943
RJ
2902(define-public emacs-ess
2903 (package
2904 (name "emacs-ess")
2905 (version "16.04")
2906 (source (origin
2907 (method url-fetch)
2908 (uri (string-append "http://ess.r-project.org/downloads/ess/ess-"
2909 version ".tgz"))
2910 (sha256
2911 (base32
2912 "0w7mbbajn377gdmvnd21mpyr368b2ia46gq6cb99y4y5rspf9pcg"))))
2913 (build-system gnu-build-system)
2914 (arguments
2915 `(#:tests? #f ; There is no test suite.
2916 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
2917 #:phases
2918 (modify-phases %standard-phases
2919 (delete 'configure)
2920 (add-before 'build 'more-shebang-patching
2921 (lambda* (#:key inputs #:allow-other-keys)
2922 (substitute* "Makeconf"
2923 (("SHELL = /bin/sh")
2924 (string-append "SHELL = " (which "sh")))))))))
2925 (inputs
2926 `(("emacs" ,emacs-minimal)
2927 ("r" ,r)))
2928 (native-inputs
2929 `(("perl" ,perl)
2930 ("texinfo" ,texinfo)
2931 ("texlive" ,texlive)))
2932 (home-page "http://ess.r-project.org/")
2933 (synopsis "Emacs mode for statistical analysis programs")
2934 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
2935Emacs. It is designed to support editing of scripts and interaction with
2936various statistical analysis programs such as R and OpenBUGS.")
2937 (license license:gpl2+)))
2938
c5c08f1b
DT
2939(define-public emacs-smex
2940 (package
2941 (name "emacs-smex")
2942 (version "3.0")
2943 (source (origin
2944 (method url-fetch)
2945 (uri (string-append "https://raw.githubusercontent.com"
2946 "/nonsequitur/smex/" version "/smex.el"))
2947 (file-name (string-append "smex-" version ".el"))
2948 (sha256
2949 (base32
2950 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
2951 (build-system emacs-build-system)
2952 (home-page "http://github.com/nonsequitur/smex/")
2953 (synopsis "M-x interface with Ido-style fuzzy matching")
2954 (description
2955 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
2956convenient interface to your recently and most frequently used commands. And
2957to all the other commands, too.")
2958 (license license:gpl3+)))
3e5be84b
DT
2959
2960(define-public emacs-js2-mode
2961 (package
2962 (name "emacs-js2-mode")
2963 (version "20150909")
2964 (source (origin
2965 (method url-fetch)
2966 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
2967 version ".tar.gz"))
2968 (file-name (string-append name "-" version ".tar.gz"))
2969 (sha256
2970 (base32
2971 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
2972 (build-system emacs-build-system)
2973 (home-page "https://github.com/mooz/js2-mode/")
2974 (synopsis "Improved JavaScript editing mode for Emacs")
2975 (description
2976 "Js2-mode provides a JavaScript major mode for Emacs that is more
2977advanced than the built-in javascript-mode. Features include accurate syntax
2978highlighting using a recursive-descent parser, on-the-fly reporting of syntax
2979errors and strict-mode warnings, smart line-wrapping within comments and
2980strings, and code folding.")
2981 (license license:gpl3+)))
b78b6e80
DT
2982
2983(define-public emacs-markdown-mode
2984 (package
2985 (name "emacs-markdown-mode")
2986 (version "2.1")
2987 (source (origin
2988 (method url-fetch)
2989 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
2990 "/markdown-mode/v" version
2991 "/markdown-mode.el"))
2992 (file-name (string-append "markdown-mode-" version ".el"))
2993 (sha256
2994 (base32
2995 "1faibar32jnjia9202swblw91q6z1g5s4k9xmypwjahfh8yznl6w"))))
2996 (build-system emacs-build-system)
2997 (home-page "http://jblevins.org/projects/markdown-mode/")
2998 (synopsis "Emacs Major mode for Markdown files")
2999 (description
3000 "Markdown-mode is a major mode for editing Markdown-formatted text files
3001in Emacs.")
3002 (license license:gpl3+)))
a2670dde
DT
3003
3004(define-public emacs-projectile
3005 (package
3006 (name "emacs-projectile")
3007 (version "0.13.0")
3008 (source (origin
3009 (method url-fetch)
3010 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
3011 "/projectile/v" version "/projectile.el"))
3012 (file-name (string-append "projectile-" version ".el"))
3013 (sha256
3014 (base32
3015 "1pc6xb61hzxzc5hkqkli1ab0s7wz0rfgx4kcn9y30ksvhw18smbz"))))
3016 (build-system emacs-build-system)
3017 (propagated-inputs
3018 `(("emacs-dash" ,emacs-dash)
3019 ("emacs-pkg-info" ,emacs-pkg-info)))
3020 (home-page "https://github.com/bbatsov/projectile")
3021 (synopsis "Manage and navigate projects in Emacs easily")
3022 (description
3023 "This library provides easy project management and navigation. The
3024concept of a project is pretty basic - just a folder containing special file.
3025Currently git, mercurial and bazaar repos are considered projects by default.
3026If you want to mark a folder manually as a project just create an empty
3027.projectile file in it.")
3028 (license license:gpl3+)))
4aea1e01
DT
3029
3030(define-public emacs-elfeed
3031 (package
3032 (name "emacs-elfeed")
3033 (version "1.4.1")
3034 (source (origin
3035 (method url-fetch)
3036 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
3037 version ".tar.gz"))
3038 (file-name (string-append name "-" version ".tar.gz"))
3039 (sha256
3040 (base32
3041 "0i75r8x9ypbfjlnym04h16ikcrlks86p7wsgawrx7mh1lk4inp89"))))
3042 (build-system emacs-build-system)
3043 (home-page "https://github.com/skeeto/elfeed")
3044 (synopsis "Atom/RSS feed reader for Emacs")
3045 (description
3046 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
3047and RSS, with a user interface inspired by notmuch.")
3048 (license license:gpl3+)))
c86f0207
DT
3049
3050(define-public emacs-rainbow-delimiters
3051 (package
3052 (name "emacs-rainbow-delimiters")
3053 (version "2.1.3")
3054 (source (origin
3055 (method url-fetch)
3056 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3057 "/rainbow-delimiters/" version
3058 "/rainbow-delimiters.el"))
3059 (file-name (string-append "rainbow-delimiters-" version ".el"))
3060 (sha256
3061 (base32
3062 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
3063 (build-system emacs-build-system)
3064 (home-page "https://github.com/Fanael/rainbow-delimiters")
3065 (synopsis "Highlight brackets according to their depth")
3066 (description
3067 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
3068highlights parentheses, brackets, and braces according to their depth. Each
3069successive level is highlighted in a different color, making it easy to spot
3070matching delimiters, orient yourself in the code, and tell which statements
3071are at a given level.")
3072 (license license:gpl3+)))
65b49ae7 3073
d95e8e01
RJ
3074(define-public emacs-rainbow-identifiers
3075 (package
3076 (name "emacs-rainbow-identifiers")
3077 (version "0.2.2")
3078 (source (origin
3079 (method url-fetch)
3080 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3081 "/rainbow-identifiers/" version
3082 "/rainbow-identifiers.el"))
3083 (file-name (string-append "rainbow-identifiers-" version ".el"))
3084 (sha256
3085 (base32
3086 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
3087 (build-system emacs-build-system)
3088 (home-page "https://github.com/Fanael/rainbow-identifiers")
3089 (synopsis "Highlight identifiers in source code")
3090 (description
3091 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
3092identifiers based on their names. Each identifier gets a color based on a hash
3093of its name.")
3094 (license license:bsd-2)))
3095
fede3a90
RW
3096(define-public emacs-visual-fill-column
3097 (package
3098 (name "emacs-visual-fill-column")
3099 (version "1.7")
3100 (source (origin
3101 (method url-fetch)
3102 (uri (string-append "https://codeload.github.com/joostkremers/"
3103 "visual-fill-column/tar.gz/" version))
3104 (file-name (string-append name "-" version ".tar.gz"))
3105 (sha256
3106 (base32
3107 "12vn7kdq2mpz9hgibbn1vhpf23lcm7c26k3fkz8nidhygwl5x5lq"))))
3108 (build-system emacs-build-system)
3109 (home-page "https://github.com/joostkremers/visual-fill-column")
3110 (synopsis "Fill-column for visual-line-mode")
3111 (description
3112 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
3113the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
3114wrapping lines at the window edge, which is the standard behaviour of
3115@code{visual-line-mode}, it wraps lines at @code{fill-column}. If
3116@code{fill-column} is too large for the window, the text is wrapped at the
3117window edge.")
3118 (license license:gpl3+)))
3119
65b49ae7
DT
3120(define-public emacs-ido-completing-read+
3121 (package
3122 (name "emacs-ido-completing-read+")
3123 (version "3.12")
3124 (source (origin
3125 (method url-fetch)
3126 (uri (string-append "https://raw.githubusercontent.com"
3127 "/DarwinAwardWinner/ido-ubiquitous/v"
3128 version "/ido-completing-read+.el"))
3129 (file-name (string-append "ido-completing-read+-" version ".el"))
3130 (sha256
3131 (base32
3132 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
3133 (build-system emacs-build-system)
3134 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3135 (synopsis "Replacement for completing-read using ido")
3136 (description
3137 "The ido-completing-read+ function is a wrapper for ido-completing-read.
3138Importantly, it detects edge cases that ordinary ido cannot handle and either
3139adjusts them so ido can handle them, or else simply falls back to the standard
3140Emacs completion function instead.")
3141 (license license:gpl3+)))
529fe992
DT
3142
3143(define-public emacs-ido-ubiquitous
3144 (package
3145 (name "emacs-ido-ubiquitous")
3146 (version "3.12")
3147 (source (origin
3148 (method url-fetch)
3149 (uri (string-append "https://raw.githubusercontent.com"
3150 "/DarwinAwardWinner/ido-ubiquitous/v"
3151 version "/ido-ubiquitous.el"))
3152 (file-name (string-append "ido-ubiquitous-" version ".el"))
3153 (sha256
3154 (base32
3155 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
3156 (build-system emacs-build-system)
3157 (propagated-inputs
3158 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
3159 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3160 (synopsis "Use ido (nearly) everywhere")
3161 (description
3162 "Ido-ubiquitous enables ido-style completion for almost every function
3163that uses the standard completion function completing-read.")
3164 (license license:gpl3+)))
63de1231
DT
3165
3166(define-public emacs-yaml-mode
3167 (package
3168 (name "emacs-yaml-mode")
3169 (version "0.0.12")
3170 (source (origin
3171 (method url-fetch)
3172 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
3173 "/yaml-mode/v" version "/yaml-mode.el"))
3174 (file-name (string-append "yaml-mode-" version ".el"))
3175 (sha256
3176 (base32
e08580c5 3177 "17wq433ycli0qx4gdhgrmb392qblm6y2dwcyn38j5ja1lasfb0ax"))))
63de1231
DT
3178 (build-system emacs-build-system)
3179 (home-page "https://github.com/yoshiki/yaml-mode")
3180 (synopsis "Major mode for editing YAML files")
3181 (description
3182 "Yaml-mode is an Emacs major mode for editing files in the YAML data
3183serialization format. It was initially developed by Yoshiki Kurihara and many
3184features were added by Marshall Vandegrift. As YAML and Python share the fact
3185that indentation determines structure, this mode provides indentation and
3186indentation command behavior very similar to that of python-mode.")
3187 (license license:gpl3+)))
7529c883
DT
3188
3189(define-public emacs-web-mode
3190 (package
3191 (name "emacs-web-mode")
3192 (version "14")
3193 (source (origin
3194 (method url-fetch)
3195 (uri (string-append "https://raw.githubusercontent.com/fxbois"
3196 "/web-mode/v" version "/web-mode.el"))
3197 (file-name (string-append "web-mode-" version ".el"))
3198 (sha256
3199 (base32
3200 "086hik5fmxg3kx74qmransx9cz961qd22d4m6ah2dw6cwaj1s3s5"))))
3201 (build-system emacs-build-system)
3202 (synopsis "Major mode for editing web templates")
3203 (description "Web-mode is an Emacs major mode for editing web templates
3204aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
3205client/server side engines). Web-mode is compatible with many template
3206engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
3207Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
3208Dust.js, React/JSX, Angularjs, ejs, etc.")
3209 (home-page "http://web-mode.org/")
3210 (license license:gpl3+)))
ae609001
MJ
3211
3212(define-public emacs-helm
3213 (package
3214 (name "emacs-helm")
fa6a082e 3215 (version "1.9.8")
ae609001
MJ
3216 (source (origin
3217 (method url-fetch)
3218 (uri (string-append
3219 "https://github.com/" name "/helm/archive/v"
3220 version ".tar.gz"))
3221 (file-name (string-append name "-" version ".tar.gz"))
3222 (sha256
3223 (base32
fa6a082e 3224 "019dpzr6l83k1fgxn40aqxjvrpz4dl5d9vi7fc5wjnifmxaqxia6"))))
ae609001
MJ
3225 (build-system emacs-build-system)
3226 (propagated-inputs
3227 `(("emacs-async" ,emacs-async)
3228 ("emacs-popup" ,emacs-popup)))
3229 (home-page "https://emacs-helm.github.io/helm/")
3230 (synopsis "Incremental completion and selection narrowing
3231framework for Emacs")
3232 (description "Helm is incremental completion and selection narrowing
3233framework for Emacs. It will help steer you in the right direction when
3234you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
3235of @code{anything.el} originally written by Tamas Patrovic and can be
3236considered to be its successor. Helm sets out to clean up the legacy code in
3237@code{anything.el} and provide a cleaner, leaner and more modular tool, that's
3238not tied in the trap of backward compatibility.")
3239 (license license:gpl3+)))
f9be4366
AP
3240
3241(define-public emacs-cider
3242 (package
3243 (name "emacs-cider")
3244 (version "0.12.0")
3245 (source (origin
3246 (method url-fetch)
3247 (uri (string-append
3248 "https://github.com/clojure-emacs/cider/archive/v"
3249 version ".tar.gz"))
3250 (file-name (string-append name "-" version ".tar.gz"))
3251 (sha256
3252 (base32
3253 "00qzbfjy3w6bcnki7gw0clmi0cc5yqjdrcyhgv4ymijjs79h9p5s"))))
3254 (build-system emacs-build-system)
3255 (propagated-inputs
3256 `(("emacs-clojure-mode" ,emacs-clojure-mode)
3257 ("emacs-spinner" ,emacs-spinner)
3258 ("emacs-pkg-info" ,emacs-pkg-info)
3259 ("emacs-queue" ,emacs-queue)
3260 ("emacs-seq" ,emacs-seq)))
3261 (home-page "https://cider.readthedocs.org/")
3262 (synopsis "Clojure development environment for Emacs")
3263 (description
3264 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
3265provide an interactive development experience similar to the one you'd get
3266when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
3267Geiser) and Smalltalk.
3268
3269CIDER is the successor to the now deprecated combination of using SLIME +
3270swank-clojure for Clojure development.
3271
3272There are plenty of differences between CIDER and SLIME, but the core ideas
3273are pretty much the same (and SLIME served as the principle inspiration for
3274CIDER).")
3275 (license license:gpl3+)))
26e08b4d 3276
3277(define-public emacs-lua-mode
3278 (package
3279 (name "emacs-lua-mode")
3280 (version "20151025")
3281 (source (origin
3282 (method url-fetch)
3283 (uri (string-append
3284 "https://github.com/immerrr/lua-mode/archive/v"
3285 version ".tar.gz"))
3286 (file-name (string-append name "-" version ".tar.gz"))
3287 (sha256
3288 (base32
3289 "0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v"))))
3290 (build-system emacs-build-system)
3291 (home-page "http://github.com/immerrr/lua-mode/")
3292 (synopsis "Major mode for lua")
3293 (description
3294 "This Emacs package provides a mode for @uref{https://www.lua.org/,
3295Lua programing language}.")
3296 (license license:gpl2+)))
0202612d 3297
3298(define-public emacs-ebuild-mode
3299 (package
3300 (name "emacs-ebuild-mode")
3301 (version "1.30")
3302 (source (origin
3303 (method url-fetch)
3304 (uri (string-append
3305 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
3306 "-" version ".tar.xz"))
3307 (file-name (string-append name "-" version ".tar.xz"))
3308 (sha256
3309 (base32
3310 "0vp7lq1kvmh1b2bms2x1kf2k76dy9m02d7cirkxpiglwaxa0h9vz"))))
3311 (build-system emacs-build-system)
3312 (home-page "https://devmanual.gentoo.org")
3313 (synopsis "Major modes for Gentoo package files")
3314 (description
3315 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
3316news items, openrc and runscripts.")
3317 (license license:gpl2+)))
a9fbe94e 3318
2edbfbf5 3319(define-public emacs-evil
3320 (package
3321 (name "emacs-evil")
3322 (version "1.2.12")
3323 (source
3324 (origin
3325 (method url-fetch)
3326 (uri (string-append "https://bitbucket.org/lyro/evil/get/"
3327 version ".tar.bz2"))
3328 (file-name (string-append name "-" version ".tar.bz2"))
3329 (sha256
3330 (base32
3331 "17cda9fnbq3gmjcxs3lyq64gxswrf37y864bm53rldwsk3khq2yi"))))
3332 (build-system emacs-build-system)
3333 (propagated-inputs
3334 `(("emacs-undo-tree" ,emacs-undo-tree)
3335 ("emacs-goto-chg" ,emacs-goto-chg)))
3336 (home-page "https://bitbucket.com/lyro/evil")
3337 (synopsis "Extensible Vi layer for Emacs")
3338 (description
3339 "Evil is an extensible vi layer for Emacs. It emulates the
3340main features of Vim, and provides facilities for writing custom
3341extensions.")
3342 (license license:gpl3+)))
3343
ce74e520 3344(define-public emacs-goto-chg
3345 (package
3346 (name "emacs-goto-chg")
3347 (version "1.6")
3348 (source
3349 (origin
3350 (method url-fetch)
3351 ;; There is no versioned source.
3352 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
3353 (sha256
3354 (base32
3355 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
3356 (build-system emacs-build-system)
3357 ;; There is no other home page.
3358 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
3359 (synopsis "Go to the last change in the Emacs buffer")
3360 (description
3361 "This package provides @code{M-x goto-last-change} command that goes to
3362the point of the most recent edit in the current Emacs buffer. When repeated,
3363go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
3364used for reverse direction.")
3365 (license license:gpl2+)))
3366
a9fbe94e
LC
3367(define-public emacs-writegood-mode
3368 (package
3369 (name "emacs-writegood-mode")
3370 (version "2.0.2")
3371 (home-page "http://github.com/bnbeckwith/writegood-mode")
3372 (source (origin
3373 (method git-fetch)
3374 (uri (git-reference
3375 (url home-page)
3376 (commit (string-append "v" version))))
3377 (sha256
3378 (base32
3379 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
3380 (file-name (string-append name "-checkout"))))
3381 (build-system emacs-build-system)
3382 (synopsis "Polish up poor writing on the fly")
3383 (description
3384 "This minor mode tries to find and highlight problems with your writing
3385in English as you type. It primarily detects \"weasel words\" and abuse of
3386passive voice.")
3387 (license license:gpl3+)))
e08ca4b9 3388
3389(define-public emacs-neotree
3390 (package
3391 (name "emacs-neotree")
3392 (version "0.2.1")
3393 (home-page "https://github.com/jaypei/emacs-neotree")
3394 (source (origin
3395 (method url-fetch)
3396 (uri (string-append
3397 "https://github.com/jaypei/" name
3398 "/archive/v" version ".tar.gz"))
3399 (sha256
3400 (base32
3401 "0cr37pdkwjgfijfws5bjskfh1rq9rfngxblcj6v5383vpmn83q7s"))
f409d0aa 3402 (file-name (string-append name "-" version ".tar.gz"))))
e08ca4b9 3403 (build-system emacs-build-system)
3404 (synopsis "Folder tree view for Emacs")
3405 (description "This Emacs package provides a folder tree view.")
3406 (license license:gpl3+)))
59065bb3
NG
3407
3408(define-public emacs-org
3409 (package
3410 (name "emacs-org")
a26d6bcc 3411 (version "20170210")
59065bb3
NG
3412 (source (origin
3413 (method url-fetch)
c2662820 3414 (uri (string-append "http://elpa.gnu.org/packages/org-"
59065bb3
NG
3415 version ".tar"))
3416 (sha256
3417 (base32
a26d6bcc 3418 "15415wh3w8d4c8hd7qfrfdjnjb1zppmrkg8cdp7hw2ilyr90c0bn"))))
59065bb3
NG
3419 (build-system emacs-build-system)
3420 (home-page "http://orgmode.org/")
3421 (synopsis "Outline-based notes management and organizer")
3422 (description "Org is an Emacs mode for keeping notes, maintaining TODO
3423lists, and project planning with a fast and effective plain-text system. It
3424also is an authoring system with unique support for literate programming and
3425reproducible research.")
3426 (license license:gpl3+)))
41392b9a 3427
3428(define-public emacs-flx
3429 (package
3430 (name "emacs-flx")
3431 (version "0.6.1")
3432 (source
3433 (origin
3434 (method url-fetch)
3435 (uri (string-append "https://github.com/lewang/"
3436 "flx/archive/v" version ".tar.gz"))
3437 (sha256
3438 (base32
3439 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
3440 (file-name (string-append name "-" version ".tar.gz"))))
3441 (build-system emacs-build-system)
3442 (home-page "https://github.com/lewang/flx")
3443 (synopsis "Fuzzy matching for Emacs")
3444 (description
3445 "Flx provides fuzzy matching for emacs a la sublime text.
3446The sorting algorithm is a balance between word beginnings (abbreviation)
3447and contiguous matches (substring). The longer the substring match,
3448the higher it scores. This maps well to how we think about matching.
3449Flx has support for ido (interactively do things) through flx-ido.")
3450 (license license:gpl3+)))
9657aba4 3451
3452(define-public emacs-cyberpunk-theme
3453 (package
3454 (name "emacs-cyberpunk-theme")
5cd41292 3455 (version "1.18")
9657aba4 3456 (source
3457 (origin
3458 (method url-fetch)
3459 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
3460 "archive/" version ".tar.gz"))
3461 (sha256
3462 (base32
5cd41292 3463 "0pxzbw0qjxgkhhs3gn3k9qy41kl1a4pfzbw83dk24l4b3nxd24wg"))
9657aba4 3464 (file-name (string-append name "-" version ".tar.gz"))))
3465 (build-system emacs-build-system)
3466 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
3467 (synopsis "Cyberpunk theme for emacs built-in color theme support")
3468 (description
3469 "Cyberpunk color theme for the emacs 24+ built-in color theme support
3470known loosely as deftheme. Many mode-specific customizations are included.")
3471 (license license:gpl3+)))
840224aa 3472
8f493950 3473(define-public emacs-danneskjold-theme
3474 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
3475 (revision "1"))
3476 (package
3477 (name "emacs-danneskjold-theme")
3478 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
3479 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
3480 (source
3481 (origin
3482 (method git-fetch)
3483 (uri (git-reference
3484 (url home-page)
3485 (commit commit)))
3486 (file-name (string-append name "-" version "-checkout"))
3487 (sha256
3488 (base32
3489 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
3490 (build-system emacs-build-system)
3491 (arguments
3492 `(#:phases
3493 (modify-phases %standard-phases
3494 (add-after 'unpack 'delete-screenshots
3495 (lambda _
3496 (delete-file-recursively "screenshots") #t)))))
3497 (synopsis "High-contrast Emacs theme")
3498 (description
3499 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
3500 (license license:gpl3+))))
3501
1ba67b62 3502(define-public emacs-dream-theme
3503 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
3504 (revision "1"))
3505 (package
3506 (name "emacs-dream-theme")
3507 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
3508 (source
3509 (origin
3510 (method git-fetch)
3511 (uri (git-reference
3512 (url "https://github.com/djcb/dream-theme")
3513 (commit commit)))
3514 (file-name (string-append name "-" version "-checkout"))
3515 (sha256
3516 (base32
3517 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
3518 (build-system emacs-build-system)
3519 (home-page "https://github.com/djcb/dream-theme")
3520 (synopsis "High-contrast Emacs theme")
3521 (description
3522 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
3523by zenburn, sinburn and similar themes, but slowly diverging from them.")
3524 (license license:gpl3+))))
3525
840224aa 3526(define-public emacs-auto-complete
3527 (package
3528 (name "emacs-auto-complete")
3529 (version "1.5.1")
3530 (source
3531 (origin
3532 (method url-fetch)
3533 (uri (string-append "https://github.com/auto-complete/"
3534 "auto-complete/archive/v" version ".tar.gz"))
3535 (sha256
3536 (base32
3537 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
3538 (file-name (string-append name "-" version ".tar.gz"))))
3539 (build-system emacs-build-system)
3540 (propagated-inputs
3541 `(("emacs-popup" ,emacs-popup)))
3542 (home-page "https://github.com/auto-complete/auto-complete")
3543 (synopsis "Intelligent auto-completion extension for Emacs")
3544 (description
3545 "Auto-Complete is an intelligent auto-completion extension for Emacs.
3546It extends the standard Emacs completion interface and provides an environment
3547that allows users to concentrate more on their own work. Its features are:
3548a visual interface, reduce overhead of completion by using statistic method,
3549extensibility.")
3550 (license license:gpl3+)))
154c71e0
AI
3551
3552(define-public m17n-db
3553 (package
3554 (name "m17n-db")
3555 (version "1.7.0")
3556 (source
3557 (origin
3558 (method url-fetch)
3559 (uri (string-append "mirror://savannah/m17n/m17n-db-"
3560 version ".tar.gz"))
3561 (sha256
3562 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
3563 (build-system gnu-build-system)
3564 (inputs
7c90d0f4 3565 `(("gettext" ,gettext-minimal)))
154c71e0
AI
3566 (arguments
3567 `(#:configure-flags
3568 (list (string-append "--with-charmaps="
3569 (assoc-ref %build-inputs "libc")
3570 "/share/i18n/charmaps"))))
3571 ;; With `guix lint' the home-page URI returns a small page saying
3572 ;; that your browser does not handle frames. This triggers the "URI
3573 ;; returns suspiciously small file" warning.
3574 (home-page "http://www.nongnu.org/m17n/")
3575 (synopsis "Multilingual text processing library (database)")
3576 (description "The m17n library realizes multilingualization of
3577many aspects of applications. The m17n library represents
3578multilingual text as an object named M-text. M-text is a string with
3579attributes called text properties, and designed to substitute for
3580string in C. Text properties carry any information required to input,
3581display and edit the text.
3582
3583This package contains the library database.")
3584 (license license:lgpl2.1+)))
a80b60f4
AI
3585
3586(define-public m17n-lib
3587 (package
3588 (name "m17n-lib")
3589 (version "1.7.0")
3590 (source
3591 (origin
3592 (method url-fetch)
966a543b
LC
3593 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
3594 version ".tar.gz"))
a80b60f4
AI
3595 (sha256
3596 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
3597 (build-system gnu-build-system)
3598 (inputs
3599 `(("fribidi" ,fribidi)
3600 ("gd" ,gd)
3601 ("libotf" ,libotf)
3602 ("libxft" ,libxft)
3603 ("libxml2" ,libxml2)
3604 ("m17n-db" ,m17n-db)))
3605 (arguments
3606 `(#:parallel-build? #f))
3607 ;; With `guix lint' the home-page URI returns a small page saying
3608 ;; that your browser does not handle frames. This triggers the "URI
3609 ;; returns suspiciously small file" warning.
3610 (home-page "http://www.nongnu.org/m17n/")
3611 (synopsis "Multilingual text processing library (runtime)")
3612 (description "The m17n library realizes multilingualization of
3613many aspects of applications. The m17n library represents
3614multilingual text as an object named M-text. M-text is a string with
3615attributes called text properties, and designed to substitute for
3616string in C. Text properties carry any information required to input,
3617display and edit the text.
3618
3619This package contains the library runtime.")
3620 (license license:lgpl2.1+)))
71d3ee1c
AI
3621
3622(define-public emacs-nginx-mode
3623 (package
3624 (name "emacs-nginx-mode")
3625 (version "1.1.4")
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (string-append
3630 "https://github.com/ajc/nginx-mode/archive/v"
3631 version ".tar.gz"))
3632 (file-name (string-append name "-" version ".tar.gz"))
3633 (sha256
3634 (base32
3635 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
3636 (build-system emacs-build-system)
3637 (home-page "https://github.com/ajc/nginx-mode")
3638 (synopsis "Emacs major mode for editing nginx config files")
3639 (description "This package provides an Emacs major mode for
3640editing nginx config files.")
3641 (license license:gpl2+)))
8f50634b
FB
3642
3643(define-public emacs-stream
3644 (package
3645 (name "emacs-stream")
3646 (version "2.2.0")
3647 (home-page "https://github.com/NicolasPetton/stream")
3648 (source
3649 (origin
3650 (method url-fetch)
3651 (file-name (string-append name "-" version ".tar.gz"))
3652 (uri (string-append home-page "/archive/"version ".tar.gz"))
3653 (sha256
3654 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
3655 (build-system emacs-build-system)
3656 (synopsis "Implementation of streams for Emacs")
3657 (description "This library provides an implementation of streams for Emacs.
3658Streams are implemented as delayed evaluation of cons cells.")
3659 (license license:gpl3+)))
0fc06f3e
FB
3660
3661(define-public emacs-el-search
3662 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
3663 (revision "1"))
3664 (package
3665 (name "emacs-el-search")
3666 ;; No ufficial release.
3667 (version (string-append "0.0-" revision "." (string-take commit 7)))
3668 (home-page "https://github.com/emacsmirror/el-search")
3669 (source
3670 (origin
3671 (method git-fetch)
3672 (file-name (string-append name "-" version ".tar.gz"))
3673 (uri (git-reference
3674 (commit commit)
3675 (url (string-append home-page ".git"))))
3676 (sha256
3677 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
3678 (build-system emacs-build-system)
3679 (inputs `(("emacs-stream" ,emacs-stream)))
3680 (synopsis "Expression based interactive search for emacs-lisp-mode")
3681 (description "This package provides expression based interactive search
3682procedures for emacs-lisp-mode.")
3683 (license license:gpl3+))))
1e523180
MO
3684
3685(define-public emacs-ht
3686 (package
3687 (name "emacs-ht")
3688 (version "2.1")
3689 (source
3690 (origin
3691 (method url-fetch)
3692 (uri (string-append
3693 "https://github.com/Wilfred/ht.el/archive/"
3694 version ".tar.gz"))
3695 (file-name (string-append name "-" version ".tar.gz"))
3696 (sha256
3697 (base32
3698 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
3699 (build-system emacs-build-system)
3700 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
3701 (home-page "https://github.com/Wilfred/ht.el")
3702 (synopsis "Hash table library for Emacs")
3703 (description
3704 "This package simplifies the use of hash tables in elisp. It also
3705provides functions to convert hash tables from and to alists and plists.")
3706 (license license:gpl3+)))
3707
521f5d96
MO
3708(define-public emacs-log4e
3709 (package
3710 (name "emacs-log4e")
3711 (version "0.3.0")
3712 (source
3713 (origin
3714 (method url-fetch)
3715 (uri (string-append
3716 "https://github.com/aki2o/log4e/archive/v"
3717 version ".tar.gz"))
3718 (file-name (string-append name "-" version ".tar.gz"))
3719 (sha256
3720 (base32
3721 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
3722 (build-system emacs-build-system)
3723 (arguments
3724 `(#:phases
3725 (modify-phases %standard-phases
3726 (add-after 'unpack 'remove-tests
3727 ;; Guile builder complains about null characters in some
3728 ;; strings of test files. Remove "test" directory (it is not
3729 ;; needed anyway).
3730 (lambda _
3731 (delete-file-recursively "test"))))))
3732 (home-page "https://github.com/aki2o/log4e")
3733 (synopsis "Logging framework for elisp")
3734 (description
3735 "This package provides a logging framework for elisp. It allows
3736you to deal with multiple log levels.")
3737 (license license:gpl3+)))
ba117841
MO
3738
3739(define-public emacs-gntp
3740 (package
3741 (name "emacs-gntp")
3742 (version "0.1")
3743 (source
3744 (origin
3745 (method url-fetch)
3746 (uri (string-append
3747 "https://github.com/tekai/gntp.el/archive/v"
3748 version ".tar.gz"))
3749 (file-name (string-append name "-" version ".tar.gz"))
3750 (sha256
3751 (base32
3752 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
3753 (build-system emacs-build-system)
3754 (home-page "https://github.com/tekai/gntp.el")
3755 (synopsis "Growl Notification Protocol for Emacs")
3756 (description
3757 "This package implements the Growl Notification Protocol GNTP
3758described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
3759It is incomplete as it only lets you send but not receive
3760notifications.")
3761 (license license:bsd-3)))
2c5e31fa
MO
3762
3763(define-public emacs-alert
3764 (package
3765 (name "emacs-alert")
3766 (version "1.2")
3767 (source
3768 (origin
3769 (method url-fetch)
3770 (uri (string-append
3771 "https://github.com/jwiegley/alert/archive/v"
3772 version ".tar.gz"))
3773 (file-name (string-append name "-" version ".tar.gz"))
3774 (sha256
3775 (base32
3776 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
3777 (build-system emacs-build-system)
3778 (propagated-inputs
3779 `(("emacs-gntp" ,emacs-gntp)
3780 ("emacs-log4e" ,emacs-log4e)))
3781 (home-page "https://github.com/jwiegley/alert")
3782 (synopsis "Growl-style notification system for Emacs")
3783 (description
3784 "Alert is a Growl-workalike for Emacs which uses a common notification
3785interface and multiple, selectable \"styles\", whose use is fully
3786customizable by the user.")
3787 (license license:gpl2+)))
c695ed3c
MO
3788
3789(define-public emacs-mu4e-alert
3790 (package
3791 (name "emacs-mu4e-alert")
3792 (version "0.4")
3793 (source
3794 (origin
3795 (method url-fetch)
3796 (uri (string-append
3797 "https://github.com/iqbalansari/mu4e-alert/archive/v"
3798 version ".tar.gz"))
3799 (file-name (string-append name "-" version ".tar.gz"))
3800 (sha256
3801 (base32
3802 "1m63vyb2v5r9swmqv56q80jca8172nk5vaxl7bcm5zbfs8zsvr4b"))))
3803 (build-system emacs-build-system)
3804 (propagated-inputs
3805 `(("emacs-alert" ,emacs-alert)
3806 ("emacs-s" ,emacs-s)
3807 ("emacs-ht" ,emacs-ht)))
3808 (home-page "https://github.com/iqbalansari/mu4e-alert")
3809 (synopsis "Desktop notification for mu4e")
3810 (description
3811 "This package provides desktop notifications for mu4e.
3812Additionally it can display the number of unread emails in the
3813mode-line.")
3814 (license license:gpl3+)))
e967dd9c 3815
3816(define-public emacs-pretty-mode
3817 (package
3818 (name "emacs-pretty-mode")
3819 (version "2.0.3")
3820 (source
3821 (origin
3822 (method url-fetch)
3823 (uri (string-append "https://github.com/akatov/pretty-mode/"
3824 "archive/" version ".tar.gz"))
3825 (file-name (string-append name "-" version ".tar.gz"))
3826 (sha256
3827 (base32
3828 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
3829 (build-system emacs-build-system)
3830 (home-page "https://github.com/akatov/pretty-mode")
3831 (synopsis "Redisplay parts of the buffer as Unicode symbols")
3832 (description
3833 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
3834 (license license:gpl3+)))
c1029f86
RW
3835
3836(define-public emacs-yasnippet
3837 (package
3838 (name "emacs-yasnippet")
3839 (version "0.11.0")
3840 (source (origin
3841 (method url-fetch)
3842 (uri (string-append "https://github.com/joaotavora/yasnippet/"
3843 "archive/" version ".tar.gz"))
3844 (file-name (string-append name "-" version ".tar.gz"))
3845 (sha256
3846 (base32
3847 "15di6mkkf09b7qddpsrm0qln02hji3sx8blya5jxssi9wxxx9iq5"))))
3848 (build-system emacs-build-system)
3849 (home-page "http://github.com/joaotavora/yasnippet")
3850 (synopsis "Yet another snippet extension for Emacs")
3851 (description
3852 "YASnippet is a template system for Emacs. It allows you to type an
3853abbreviation and automatically expand it into function templates.")
3854 (license license:gpl3+)))