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