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