cd32d4eb090a5800113361ddd6f5425ab9b33fdc
[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, 2018 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 Adriano Peluso <catonano@gmail.com>
11 ;;; Copyright © 2016, 2017 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, 2017 Roel Janssen <roel@gnu.org>
15 ;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org>
16 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
17 ;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
18 ;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com>
19 ;;; Copyright © 2016, 2017, 2018 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 <kkebreau@posteo.net>
26 ;;; Copyright © 2017 George Clemmer <myglc2@gmail.com>
27 ;;; Copyright © 2017 Feng Shu <tumashu@163.com>
28 ;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
29 ;;; Copyright © 2017, 2018 Oleg Pykhalov <go.wigust@gmail.com>
30 ;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
31 ;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
32 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
33 ;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
34 ;;; Copyright © 2017, 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
35 ;;;
36 ;;; This file is part of GNU Guix.
37 ;;;
38 ;;; GNU Guix is free software; you can redistribute it and/or modify it
39 ;;; under the terms of the GNU General Public License as published by
40 ;;; the Free Software Foundation; either version 3 of the License, or (at
41 ;;; your option) any later version.
42 ;;;
43 ;;; GNU Guix is distributed in the hope that it will be useful, but
44 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
45 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46 ;;; GNU General Public License for more details.
47 ;;;
48 ;;; You should have received a copy of the GNU General Public License
49 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
50
51 (define-module (gnu packages emacs)
52 #:use-module ((guix licenses) #:prefix license:)
53 #:use-module (guix packages)
54 #:use-module (guix download)
55 #:use-module (guix git-download)
56 #:use-module (guix gexp)
57 #:use-module (guix monads)
58 #:use-module (guix store)
59 #:use-module (guix build-system gnu)
60 #:use-module (guix build-system emacs)
61 #:use-module (guix build-system glib-or-gtk)
62 #:use-module (guix build-system trivial)
63 #:use-module (gnu packages)
64 #:use-module (gnu packages audio)
65 #:use-module (gnu packages bash)
66 #:use-module (gnu packages code)
67 #:use-module (gnu packages guile)
68 #:use-module (gnu packages gtk)
69 #:use-module (gnu packages gnome)
70 #:use-module (gnu packages ncurses)
71 #:use-module (gnu packages python)
72 #:use-module (gnu packages tex)
73 #:use-module (gnu packages texinfo)
74 #:use-module (gnu packages tcl)
75 #:use-module (gnu packages tls)
76 #:use-module (gnu packages pkg-config)
77 #:use-module (gnu packages xorg)
78 #:use-module (gnu packages lesstif)
79 #:use-module (gnu packages image)
80 #:use-module (gnu packages linux)
81 #:use-module (gnu packages version-control)
82 #:use-module (gnu packages imagemagick)
83 #:use-module (gnu packages w3m)
84 #:use-module (gnu packages wget)
85 #:use-module (gnu packages autotools)
86 #:use-module (gnu packages base)
87 #:use-module (gnu packages compression)
88 #:use-module (gnu packages xml)
89 #:use-module (gnu packages glib)
90 #:use-module (gnu packages acl)
91 #:use-module (gnu packages package-management)
92 #:use-module (gnu packages perl)
93 #:use-module (gnu packages pdf)
94 #:use-module (gnu packages scheme)
95 #:use-module (gnu packages statistics)
96 #:use-module (gnu packages xiph)
97 #:use-module (gnu packages mp3)
98 #:use-module (gnu packages gettext)
99 #:use-module (gnu packages fribidi)
100 #:use-module (gnu packages gd)
101 #:use-module (gnu packages fontutils)
102 #:use-module (guix utils)
103 #:use-module (srfi srfi-1)
104 #:use-module (ice-9 match))
105
106 (define-public emacs
107 (package
108 (name "emacs")
109 (version "25.3")
110 (source (origin
111 (method url-fetch)
112 (uri (string-append "mirror://gnu/emacs/emacs-"
113 version ".tar.xz"))
114 (sha256
115 (base32
116 "02y00y9q42g1iqgz5qhmsja75hwxd88yrn9zp14lanay0zkwafi5"))
117 (patches (search-patches "emacs-exec-path.patch"
118 "emacs-fix-scheme-indent-function.patch"
119 "emacs-source-date-epoch.patch"))
120 (modules '((guix build utils)))
121 (snippet
122 ;; Delete the bundled byte-compiled elisp files and
123 ;; generated autoloads.
124 '(with-directory-excursion "lisp"
125 (for-each delete-file
126 (append (find-files "." "\\.elc$")
127 (find-files "." "loaddefs\\.el$")
128 ;; This is the only "autoloads" file that
129 ;; does not have "*loaddefs.el" name.
130 '("eshell/esh-groups.el")))
131
132 ;; Make sure Tramp looks for binaries in the right places on
133 ;; remote GuixSD machines, where 'getconf PATH' returns
134 ;; something bogus.
135 (substitute* "net/tramp-sh.el"
136 ;; Patch the line after "(defcustom tramp-remote-path".
137 (("\\(tramp-default-remote-path")
138 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
139 "~/.guix-profile/bin" "~/.guix-profile/sbin"
140 "/run/current-system/profile/bin"
141 "/run/current-system/profile/sbin")))
142
143 ;; Make sure Man looks for C header files in the right
144 ;; places.
145 (substitute* "man.el"
146 (("\"/usr/local/include\"" line)
147 (string-join
148 (list line
149 "\"~/.guix-profile/include\""
150 "\"/var/guix/profiles/system/profile/include\"")
151 " ")))))))
152 (build-system glib-or-gtk-build-system)
153 (arguments
154 `(#:phases
155 (modify-phases %standard-phases
156 (add-before 'configure 'fix-/bin/pwd
157 (lambda _
158 ;; Use `pwd', not `/bin/pwd'.
159 (substitute* (find-files "." "^Makefile\\.in$")
160 (("/bin/pwd")
161 "pwd"))))
162 (add-after 'install 'install-site-start
163 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
164 ;; provided by Guix and installed in
165 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
166 ;; automatically found.
167 (lambda* (#:key inputs outputs #:allow-other-keys)
168 (let* ((out (assoc-ref outputs "out"))
169 (lisp-dir (string-append out "/share/emacs/site-lisp")))
170 (copy-file (assoc-ref inputs "guix-emacs.el")
171 (string-append lisp-dir "/guix-emacs.el"))
172 (with-output-to-file (string-append lisp-dir "/site-start.el")
173 (lambda ()
174 (display
175 (string-append "(when (require 'guix-emacs nil t)\n"
176 " (guix-emacs-autoload-packages))\n"))))
177 #t))))))
178 (inputs
179 `(("gnutls" ,gnutls)
180 ("ncurses" ,ncurses)
181
182 ;; TODO: Add the optional dependencies.
183 ("libx11" ,libx11)
184 ("gtk+" ,gtk+)
185 ("libxft" ,libxft)
186 ("libtiff" ,libtiff)
187 ("giflib" ,giflib)
188 ("libjpeg" ,libjpeg-8)
189 ("imagemagick" ,imagemagick)
190 ("acl" ,acl)
191
192 ;; When looking for libpng `configure' links with `-lpng -lz', so we
193 ;; must also provide zlib as an input.
194 ("libpng" ,libpng)
195 ("zlib" ,zlib)
196
197 ("librsvg" ,librsvg)
198 ("libxpm" ,libxpm)
199 ("libxml2" ,libxml2)
200 ("libice" ,libice)
201 ("libsm" ,libsm)
202 ("alsa-lib" ,alsa-lib)
203 ("dbus" ,dbus)
204
205 ;; multilingualization support
206 ("libotf" ,libotf)
207 ("m17n-lib" ,m17n-lib)))
208 (native-inputs
209 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
210 ("pkg-config" ,pkg-config)
211 ("texinfo" ,texinfo)))
212
213 (native-search-paths
214 (list (search-path-specification
215 (variable "INFOPATH")
216 (files '("share/info")))))
217
218 (home-page "https://www.gnu.org/software/emacs/")
219 (synopsis "The extensible, customizable, self-documenting text editor")
220 (description
221 "GNU Emacs is an extensible and highly customizable text editor. It is
222 based on an Emacs Lisp interpreter with extensions for text editing. Emacs
223 has been extended in essentially all areas of computing, giving rise to a
224 vast array of packages supporting, e.g., email, IRC and XMPP messaging,
225 spreadsheets, remote server editing, and much more. Emacs includes extensive
226 documentation on all aspects of the system, from basic editing to writing
227 large Lisp programs. It has full Unicode support for nearly all human
228 languages.")
229 (license license:gpl3+)))
230
231 (define-public emacs-minimal
232 ;; This is the version that you should use as an input to packages that just
233 ;; need to byte-compile .el files.
234 (package (inherit emacs)
235 (name "emacs-minimal")
236 (synopsis "The extensible text editor (used only for byte-compilation)")
237 (build-system gnu-build-system)
238 (arguments
239 (substitute-keyword-arguments (package-arguments emacs)
240 ((#:phases phases)
241 `(modify-phases ,phases
242 (delete 'install-site-start)))))
243 (inputs
244 `(("ncurses" ,ncurses)))
245 (native-inputs
246 `(("pkg-config" ,pkg-config)))))
247
248 (define-public emacs-no-x
249 (package (inherit emacs)
250 (name "emacs-no-x")
251 (synopsis "The extensible, customizable, self-documenting text
252 editor (console only)")
253 (build-system gnu-build-system)
254 (inputs (fold alist-delete
255 (package-inputs emacs)
256 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
257 "libpng" "librsvg" "libxpm" "libice" "libsm"
258
259 ;; D-Bus depends on libx11, so remove it as well.
260 "dbus")))))
261
262 (define-public emacs-no-x-toolkit
263 (package (inherit emacs)
264 (name "emacs-no-x-toolkit")
265 (synopsis "The extensible, customizable, self-documenting text
266 editor (without an X toolkit)" )
267 (build-system gnu-build-system)
268 (inputs (append `(("inotify-tools" ,inotify-tools))
269 (alist-delete "gtk+" (package-inputs emacs))))
270 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
271 (package-arguments emacs)))))
272
273 (define-public guile-emacs
274 (package (inherit emacs)
275 (name "guile-emacs")
276 (version "20150512.41120e0")
277 (source (origin
278 (method git-fetch)
279 (uri (git-reference
280 (url "git://git.hcoop.net/git/bpt/emacs.git")
281 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
282 (patches (search-patches "guile-emacs-fix-configure.patch"))
283 (sha256
284 (base32
285 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
286 (native-inputs
287 `(("autoconf" ,autoconf)
288 ("automake" ,automake)
289 ("guile" ,guile-for-guile-emacs)
290 ,@(package-native-inputs emacs)))
291 (arguments
292 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
293 #:parallel-build? #f
294 ;; Tests aren't passing for now.
295 #:tests? #f
296 ,@(package-arguments emacs))
297 ((#:phases phases)
298 `(modify-phases ,phases
299 (add-after 'unpack 'autogen
300 (lambda _
301 (zero? (system* "sh" "autogen.sh"))))
302 ;; Build sometimes fails: deps/dispnew.d: No such file or directory
303 (add-before 'build 'make-deps-dir
304 (lambda _
305 (zero? (system* "mkdir" "-p" "src/deps"))))))))))
306
307 \f
308 ;;;
309 ;;; Emacs hacking.
310 ;;;
311
312 (define-public geiser
313 (package
314 (name "geiser")
315 (version "0.9")
316 (source (origin
317 (method url-fetch)
318 (uri (string-append "mirror://savannah/geiser/" version
319 "/geiser-" version ".tar.gz"))
320 (sha256
321 (base32
322 "0phz9d8wjk4p13vqannv0003fwh8qqrp0gfzcs2hgq1mrmv1srss"))))
323 (build-system gnu-build-system)
324 (arguments
325 '(#:phases
326 (modify-phases %standard-phases
327 (add-after 'install 'post-install
328 (lambda* (#:key outputs #:allow-other-keys)
329 (symlink "geiser-install.el"
330 (string-append (assoc-ref outputs "out")
331 "/share/emacs/site-lisp/"
332 "geiser-autoloads.el"))
333 #t)))))
334 (inputs `(("guile" ,guile-2.0)))
335 (native-inputs `(("emacs" ,emacs-minimal)))
336 (home-page "http://nongnu.org/geiser/")
337 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
338 (description
339 "Geiser is a collection of Emacs major and minor modes that conspire with
340 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
341 continuously running Scheme interpreter takes the center of the stage in
342 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
343 implementation, Emacs and, ultimately, the schemer, giving them access to live
344 metadata.")
345 (license license:bsd-3)))
346
347 (define-public geiser-next
348 ;; This has become "geiser".
349 (deprecated-package "geiser-next" geiser))
350
351 (define-public paredit
352 (package
353 (name "emacs-paredit")
354 (version "24")
355 (source (origin
356 (method url-fetch)
357 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
358 version ".el"))
359 (sha256
360 (base32
361 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
362 (build-system emacs-build-system)
363 (home-page "http://mumble.net/~campbell/emacs/paredit/")
364 (synopsis "Emacs minor mode for editing parentheses")
365 (description
366 "ParEdit (paredit.el) is a minor mode for performing structured editing
367 of S-expression data. The typical example of this would be Lisp or Scheme
368 source code.
369
370 ParEdit helps **keep parentheses balanced** and adds many keys for moving
371 S-expressions and moving around in S-expressions. Its behavior can be jarring
372 for those who may want transient periods of unbalanced parentheses, such as
373 when typing parentheses directly or commenting out code line by line.")
374 (license license:gpl3+)))
375
376 (define-public paredit/old-name
377 (deprecated-package "paredit" paredit))
378
379 (define-public git-modes
380 (package
381 (name "emacs-git-modes")
382 (version "1.2.6")
383 (source (origin
384 (method url-fetch)
385 (uri (string-append
386 "https://github.com/magit/git-modes/archive/"
387 version ".tar.gz"))
388 (file-name (string-append name "-" version ".tar.gz"))
389 (sha256
390 (base32
391 "18z04wn5ird9l0h6n6x97v0kyzdj73832bj9qakm3fjjl7vcn0pw"))))
392 (build-system emacs-build-system)
393 (home-page "https://github.com/magit/git-modes")
394 (synopsis "Emacs major modes for Git configuration files")
395 (description
396 "This package provides Emacs major modes for editing various Git
397 configuration files, such as .gitattributes, .gitignore, and .git/config.")
398 (license license:gpl3+)))
399
400 (define-public git-modes/old-name
401 (deprecated-package "git-modes" git-modes))
402
403 (define-public emacs-with-editor
404 (package
405 (name "emacs-with-editor")
406 (version "2.7.0")
407 (source (origin
408 (method url-fetch)
409 (uri (string-append
410 "https://github.com/magit/with-editor/archive/v"
411 version ".tar.gz"))
412 (file-name (string-append name "-" version ".tar.gz"))
413 (sha256
414 (base32
415 "0kah7pv211zx9fsb5g4hd51bqcq2bxd1chdykd488ihvfz1l5y14"))))
416 (build-system emacs-build-system)
417 (propagated-inputs
418 `(("emacs-dash" ,emacs-dash)))
419 (home-page "https://github.com/magit/with-editor")
420 (synopsis "Emacs library for using Emacsclient as EDITOR")
421 (description
422 "This package provides an Emacs library to use the Emacsclient as
423 @code{$EDITOR} of child processes, making sure they know how to call home.
424 For remote processes a substitute is provided, which communicates with Emacs
425 on stdout instead of using a socket as the Emacsclient does.")
426 (license license:gpl3+)))
427
428 (define-public magit
429 (package
430 (name "magit")
431 (version "2.11.0")
432 (source (origin
433 (method url-fetch)
434 (uri (string-append
435 "https://github.com/magit/magit/releases/download/"
436 version "/" name "-" version ".tar.gz"))
437 (sha256
438 (base32
439 "11xly5bma9jc1jhs8fqbqrci8kz1y26yfq7dqjkqfy956wvfg6hz"))))
440 (build-system gnu-build-system)
441 (native-inputs `(("texinfo" ,texinfo)
442 ("emacs" ,emacs-minimal)))
443 (inputs
444 `(("git" ,git)
445 ("perl" ,perl)))
446 (propagated-inputs
447 `(("dash" ,emacs-dash)
448 ;; XXX Add 'magit-popup' dependency for the next release (after 2.11.0).
449 ("with-editor" ,emacs-with-editor)))
450 (arguments
451 `(#:modules ((guix build gnu-build-system)
452 (guix build utils)
453 (guix build emacs-utils))
454 #:imported-modules (,@%gnu-build-system-modules
455 (guix build emacs-utils))
456
457 #:test-target "test"
458 #:tests? #f ; tests are not included in the release
459
460 #:make-flags
461 (list (string-append "PREFIX=" %output)
462 ;; Don't put .el files in a sub-directory.
463 (string-append "lispdir=" %output "/share/emacs/site-lisp")
464 (string-append "DASH_DIR="
465 (assoc-ref %build-inputs "dash")
466 "/share/emacs/site-lisp/guix.d/dash-"
467 ,(package-version emacs-dash))
468 (string-append "WITH_EDITOR_DIR="
469 (assoc-ref %build-inputs "with-editor")
470 "/share/emacs/site-lisp/guix.d/with-editor-"
471 ,(package-version emacs-with-editor)))
472
473 #:phases
474 (modify-phases %standard-phases
475 (delete 'configure)
476 (add-before
477 'build 'patch-exec-paths
478 (lambda* (#:key inputs #:allow-other-keys)
479 (let ((git (assoc-ref inputs "git"))
480 (perl (assoc-ref inputs "perl")))
481 (emacs-substitute-variables "lisp/magit-git.el"
482 ("magit-git-executable" (string-append git "/bin/git")))
483 (substitute* "lisp/magit-sequence.el"
484 (("perl") (string-append perl "/bin/perl")))
485 #t))))))
486 (home-page "http://magit.github.io/")
487 (synopsis "Emacs interface for the Git version control system")
488 (description
489 "With Magit, you can inspect and modify your Git repositories with Emacs.
490 You can review and commit the changes you have made to the tracked files, for
491 example, and you can browse the history of past changes. There is support for
492 cherry picking, reverting, merging, rebasing, and other common Git
493 operations.")
494 (license license:gpl3+)))
495
496 (define-public magit-svn
497 (package
498 (name "magit-svn")
499 (version "2.1.1")
500 (source (origin
501 (method url-fetch)
502 (uri (string-append
503 "https://github.com/magit/magit-svn/archive/"
504 version ".tar.gz"))
505 (file-name (string-append name "-" version ".tar.gz"))
506 (sha256
507 (base32
508 "04y88j7q9h8xjbx5dbick6n5nr1522sn9i1znp0qwk3vjb4b5mzz"))))
509 (build-system trivial-build-system)
510 (native-inputs `(("emacs" ,emacs-minimal)
511 ("tar" ,tar)
512 ("gzip" ,gzip)))
513 (propagated-inputs `(("dash" ,emacs-dash)
514 ("magit" ,magit)))
515 (arguments
516 `(#:modules ((guix build utils)
517 (guix build emacs-utils))
518
519 #:builder
520 (begin
521 (use-modules (guix build utils)
522 (guix build emacs-utils))
523
524 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
525 "/bin/tar"))
526 (PATH (string-append (assoc-ref %build-inputs "gzip")
527 "/bin"))
528 (emacs (string-append (assoc-ref %build-inputs "emacs")
529 "/bin/emacs"))
530 (magit (string-append (assoc-ref %build-inputs "magit")
531 "/share/emacs/site-lisp"))
532 (dash (string-append (assoc-ref %build-inputs "dash")
533 "/share/emacs/site-lisp/guix.d/dash-"
534 ,(package-version emacs-dash)))
535 (source (assoc-ref %build-inputs "source"))
536 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
537 (setenv "PATH" PATH)
538 (system* tar "xvf" source)
539
540 (install-file (string-append ,name "-" ,version "/magit-svn.el")
541 lisp-dir)
542
543 (with-directory-excursion lisp-dir
544 (parameterize ((%emacs emacs))
545 (emacs-generate-autoloads ,name lisp-dir)
546 (setenv "EMACSLOADPATH"
547 (string-append ":" magit ":" dash))
548 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))))))
549 (home-page "https://github.com/magit/magit-svn")
550 (synopsis "Git-SVN extension to Magit")
551 (description
552 "This package is an extension to Magit, the Git Emacs mode, providing
553 support for Git-SVN.")
554 (license license:gpl3+)))
555
556 (define-public emacs-magit-popup
557 (package
558 (name "emacs-magit-popup")
559 (version "2.12.0")
560 (source (origin
561 (method url-fetch)
562 (uri (string-append
563 "https://github.com/magit/magit-popup/archive/v"
564 version ".tar.gz"))
565 (file-name (string-append name "-" version ".tar.gz"))
566 (sha256
567 (base32
568 "1dnk611f7lww6rb03hk8ijg2jwxx9f26pjfff4bwjmnjz7hnd6vz"))))
569 (build-system emacs-build-system)
570 (arguments
571 `(#:phases
572 (modify-phases %standard-phases
573 (add-before 'install 'make-info
574 (lambda _
575 (zero? (system* "make" "info")))))))
576 (native-inputs
577 `(("texinfo" ,texinfo)))
578 (propagated-inputs
579 `(("emacs-dash" ,emacs-dash)))
580 (home-page "https://github.com/magit/magit-popup")
581 (synopsis "Define prefix-infix-suffix command combos")
582 (description
583 "This library implements a generic interface for toggling switches and
584 setting options and then invoking an Emacs command which does something with
585 these arguments. The prototypical use is for the command to call an external
586 process, passing on the arguments as command line arguments.")
587 (license license:gpl3+)))
588
589 (define-public haskell-mode
590 (package
591 (name "haskell-mode")
592 (version "16.1")
593 (source (origin
594 (method url-fetch)
595 (file-name (string-append name "-" version ".tar.gz"))
596 (uri (string-append
597 "https://github.com/haskell/haskell-mode/archive/v"
598 version ".tar.gz"))
599 (sha256
600 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))))
601 (inputs
602 `(("emacs-el-search" ,emacs-el-search) ; for tests
603 ("emacs-stream" ,emacs-stream))) ; for tests
604 (propagated-inputs
605 `(("emacs-dash" ,emacs-dash)))
606 (native-inputs
607 `(("emacs" ,emacs-minimal)
608 ("texinfo" ,texinfo)))
609 (build-system gnu-build-system)
610 (arguments
611 `(#:make-flags (list (string-append "EMACS="
612 (assoc-ref %build-inputs "emacs")
613 "/bin/emacs"))
614 #:modules ((ice-9 match)
615 (srfi srfi-26)
616 ,@%gnu-build-system-modules)
617 #:phases
618 (modify-phases %standard-phases
619 (delete 'configure)
620 (add-before
621 'build 'pre-build
622 (lambda* (#:key inputs #:allow-other-keys)
623 (define (el-dir store-dir)
624 (match (find-files store-dir)
625 ((f1 f2 ...) (dirname f1))
626 (_ "")))
627
628 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
629 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
630
631 (setenv "SHELL" "sh")
632 (setenv "EMACSLOADPATH"
633 (string-concatenate
634 (map (match-lambda
635 (((? emacs-prefix? name) . dir)
636 (string-append (el-dir dir) ":"))
637 (_ ""))
638 inputs)))
639 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
640 (substitute* "tests/haskell-code-conventions.el"
641 ;; Function name recently changed in "emacs-el-search".
642 (("el-search--search-pattern") "el-search-forward")
643 ;; Don't contact home.
644 (("\\(when \\(>= emacs-major-version 25\\)")
645 "(require 'el-search) (when nil"))
646 #t)))
647 (replace
648 'install
649 (lambda* (#:key outputs #:allow-other-keys)
650 (let* ((out (assoc-ref outputs "out"))
651 (el-dir (string-append out "/share/emacs/site-lisp"))
652 (doc (string-append
653 out "/share/doc/haskell-mode-" ,version))
654 (info (string-append out "/share/info")))
655 (define (copy-to-dir dir files)
656 (for-each (lambda (f)
657 (install-file f dir))
658 files))
659
660 (with-directory-excursion "doc"
661 (unless (zero? (system* "makeinfo" "haskell-mode.texi"))
662 (error "makeinfo failed"))
663 (install-file "haskell-mode.info" info))
664 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
665 (copy-to-dir el-dir (find-files "." "\\.elc?"))
666 ;; These are part of other packages.
667 (with-directory-excursion el-dir
668 (for-each delete-file '("dash.el" "ert.el")))
669 #t))))))
670 (home-page "https://github.com/haskell/haskell-mode")
671 (synopsis "Haskell mode for Emacs")
672 (description
673 "This is an Emacs mode for editing, debugging and developing Haskell
674 programs.")
675 (license license:gpl3+)))
676
677 (define-public flycheck
678 (package
679 (name "emacs-flycheck")
680 (version "30")
681 (source (origin
682 (method url-fetch)
683 (uri (string-append
684 "https://github.com/flycheck/flycheck/releases/download/"
685 version "/flycheck-" version ".tar"))
686 (sha256
687 (base32
688 "1rxzkaqsj48z3nska5wsgwafvwkam014dzqd32baycmxjl0jxvy7"))))
689 (build-system emacs-build-system)
690 (propagated-inputs
691 `(("emacs-dash" ,emacs-dash)))
692 (home-page "https://www.flycheck.org")
693 (synopsis "On-the-fly syntax checking")
694 (description
695 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
696 replacement for the older Flymake extension which is part of GNU Emacs, with
697 many improvements and additional features.
698
699 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
700 checking for over 30 programming and markup languages with more than 70
701 different tools. It highlights errors and warnings inline in the buffer, and
702 provides an optional IDE-like error list.")
703 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
704
705 \f
706 ;;;
707 ;;; Web browsing.
708 ;;;
709
710 (define-public emacs-w3m
711 (package
712 (name "emacs-w3m")
713 (version "1.4.538+0.20141022")
714 (source (origin
715 (method url-fetch)
716 (uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_"
717 version ".orig.tar.gz"))
718 (sha256
719 (base32
720 "0zfxmq86pwk64yv0426gnjrvhjrgrjqn08sdcdhmmjmfpmqvm79y"))))
721 (build-system gnu-build-system)
722 (native-inputs `(("autoconf" ,autoconf)
723 ("emacs" ,emacs-minimal)))
724 (inputs `(("w3m" ,w3m)
725 ("imagemagick" ,imagemagick)))
726 (arguments
727 `(#:modules ((guix build gnu-build-system)
728 (guix build utils)
729 (guix build emacs-utils))
730 #:imported-modules (,@%gnu-build-system-modules
731 (guix build emacs-utils))
732 #:configure-flags
733 (let ((out (assoc-ref %outputs "out")))
734 (list (string-append "--with-lispdir="
735 out "/share/emacs/site-lisp")
736 (string-append "--with-icondir="
737 out "/share/images/emacs-w3m")
738 ;; Leave .el files uncompressed, otherwise GC can't
739 ;; identify run-time dependencies. See
740 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
741 "--without-compress-install"))
742 #:tests? #f ; no check target
743 #:phases
744 (modify-phases %standard-phases
745 (add-after 'unpack 'autoconf
746 (lambda _
747 (zero? (system* "autoconf"))))
748 (add-before 'build 'patch-exec-paths
749 (lambda* (#:key inputs outputs #:allow-other-keys)
750 (let ((out (assoc-ref outputs "out"))
751 (w3m (assoc-ref inputs "w3m"))
752 (imagemagick (assoc-ref inputs "imagemagick"))
753 (coreutils (assoc-ref inputs "coreutils")))
754 (emacs-substitute-variables "w3m.el"
755 ("w3m-command" (string-append w3m "/bin/w3m"))
756 ("w3m-touch-command"
757 (string-append coreutils "/bin/touch"))
758 ("w3m-image-viewer"
759 (string-append imagemagick "/bin/display"))
760 ("w3m-icon-directory"
761 (string-append out "/share/images/emacs-w3m")))
762 (emacs-substitute-variables "w3m-image.el"
763 ("w3m-imagick-convert-program"
764 (string-append imagemagick "/bin/convert"))
765 ("w3m-imagick-identify-program"
766 (string-append imagemagick "/bin/identify")))
767 #t)))
768 (replace 'install
769 (lambda* (#:key outputs #:allow-other-keys)
770 (and (zero? (system* "make" "install" "install-icons"))
771 (with-directory-excursion
772 (string-append (assoc-ref outputs "out")
773 "/share/emacs/site-lisp")
774 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
775 (symlink "w3m-load.el" "w3m-autoloads.el")
776 #t)))))))
777 (home-page "http://emacs-w3m.namazu.org/")
778 (synopsis "Simple Web browser for Emacs based on w3m")
779 (description
780 "Emacs-w3m is an emacs interface for the w3m web browser.")
781 (license license:gpl2+)))
782
783 (define-public emacs-wget
784 (package
785 (name "emacs-wget")
786 (version "0.5.0")
787 (source (origin
788 (method url-fetch)
789 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
790 version ".orig.tar.gz"))
791 (sha256
792 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
793 (build-system gnu-build-system)
794 (inputs `(("wget" ,wget)))
795 (native-inputs `(("emacs" ,emacs-minimal)))
796 (arguments
797 `(#:modules ((guix build gnu-build-system)
798 (guix build utils)
799 (guix build emacs-utils))
800 #:imported-modules (,@%gnu-build-system-modules
801 (guix build emacs-utils))
802 #:tests? #f ; no check target
803 #:phases
804 (modify-phases %standard-phases
805 (replace 'configure
806 (lambda* (#:key outputs #:allow-other-keys)
807 (substitute* "Makefile"
808 (("/usr/local") (assoc-ref outputs "out"))
809 (("/site-lisp/emacs-wget") "/site-lisp"))
810 #t))
811 (add-before 'build 'patch-exec-paths
812 (lambda* (#:key inputs outputs #:allow-other-keys)
813 (let ((wget (assoc-ref inputs "wget")))
814 (emacs-substitute-variables "wget.el"
815 ("wget-command" (string-append wget "/bin/wget"))))
816 #t))
817 (add-after 'install 'post-install
818 (lambda* (#:key outputs #:allow-other-keys)
819 (emacs-generate-autoloads
820 "wget" (string-append (assoc-ref outputs "out")
821 "/share/emacs/site-lisp/"))
822 #t)))))
823 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
824 (synopsis "Simple file downloader for Emacs based on wget")
825 (description
826 "Emacs-wget is an emacs interface for the wget file downloader.")
827 (license license:gpl2+)))
828
829 \f
830 ;;;
831 ;;; Multimedia.
832 ;;;
833
834 (define-public emms
835 (package
836 (name "emacs-emms")
837 (version "4.4")
838 (source (origin
839 (method url-fetch)
840 (uri (string-append "mirror://gnu/emms/emms-"
841 version ".tar.gz"))
842 (sha256
843 (base32
844 "1b0kalhn81dir26jgsma30i5bbly7d3s1ngqpf01zjjpr7lw5v0h"))
845 (modules '((guix build utils)))
846 (snippet
847 '(substitute* "Makefile"
848 (("/usr/bin/install-info")
849 ;; No need to use 'install-info' since it would create a
850 ;; useless 'dir' file.
851 "true")
852 (("^INFODIR=.*")
853 ;; Install Info files to $out/share/info, not $out/info.
854 "INFODIR := $(PREFIX)/share/info\n")
855 (("/site-lisp/emms")
856 ;; Install directly in share/emacs/site-lisp, not in a
857 ;; sub-directory.
858 "/site-lisp")
859 (("^all: (.*)\n" _ rest)
860 ;; Build 'emms-print-metadata'.
861 (string-append "all: " rest " emms-print-metadata\n"))))))
862 (build-system gnu-build-system)
863 (arguments
864 `(#:modules ((guix build gnu-build-system)
865 (guix build utils)
866 (guix build emacs-utils))
867 #:imported-modules (,@%gnu-build-system-modules
868 (guix build emacs-utils))
869
870 #:phases
871 (modify-phases %standard-phases
872 (replace 'configure
873 (lambda* (#:key inputs outputs #:allow-other-keys)
874 (let ((out (assoc-ref outputs "out"))
875 (flac (assoc-ref inputs "flac"))
876 (vorbis (assoc-ref inputs "vorbis-tools"))
877 (alsa (assoc-ref inputs "alsa-utils"))
878 (mpg321 (assoc-ref inputs "mpg321"))
879 (mp3info (assoc-ref inputs "mp3info")))
880 ;; Specify the installation directory.
881 (substitute* "Makefile"
882 (("PREFIX=.*$")
883 (string-append "PREFIX := " out "\n")))
884
885 (setenv "SHELL" (which "sh"))
886 (setenv "CC" "gcc")
887
888 ;; Specify the absolute file names of the various
889 ;; programs so that everything works out-of-the-box.
890 (with-directory-excursion "lisp"
891 (emacs-substitute-variables
892 "emms-player-mpg321-remote.el"
893 ("emms-player-mpg321-remote-command"
894 (string-append mpg321 "/bin/mpg321")))
895 (substitute* "emms-player-simple.el"
896 (("\"ogg123\"")
897 (string-append "\"" vorbis "/bin/ogg123\"")))
898 (substitute* "emms-player-simple.el"
899 (("\"mpg321\"")
900 (string-append "\"" mpg321 "/bin/mpg321\"")))
901 (emacs-substitute-variables "emms-info-ogginfo.el"
902 ("emms-info-ogginfo-program-name"
903 (string-append vorbis "/bin/ogginfo")))
904 (emacs-substitute-variables "emms-info-libtag.el"
905 ("emms-info-libtag-program-name"
906 (string-append out "/bin/emms-print-metadata")))
907 (emacs-substitute-variables "emms-info-mp3info.el"
908 ("emms-info-mp3info-program-name"
909 (string-append mp3info "/bin/mp3info")))
910 (emacs-substitute-variables "emms-info-metaflac.el"
911 ("emms-info-metaflac-program-name"
912 (string-append flac "/bin/metaflac")))
913 (emacs-substitute-variables "emms-source-file.el"
914 ("emms-source-file-gnu-find" (which "find")))
915 (substitute* "emms-volume-amixer.el"
916 (("\"amixer\"")
917 (string-append "\"" alsa "/bin/amixer\"")))
918 (substitute* "emms-tag-editor.el"
919 (("\"mp3info\"")
920 (string-append "\"" mp3info "/bin/mp3info\"")))))))
921 (add-before 'install 'pre-install
922 (lambda* (#:key outputs #:allow-other-keys)
923 ;; The 'install' rule expects the target directories to exist.
924 (let* ((out (assoc-ref outputs "out"))
925 (bin (string-append out "/bin"))
926 (man1 (string-append out "/share/man/man1")))
927 (mkdir-p bin)
928 (mkdir-p man1)
929 #t)))
930 (add-after 'install 'post-install
931 (lambda* (#:key outputs #:allow-other-keys)
932 (let ((out (assoc-ref outputs "out")))
933 (symlink "emms-auto.el"
934 (string-append out "/share/emacs/site-lisp/"
935 "emms-autoloads.el"))))))
936 #:tests? #f))
937 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
938 ("texinfo" ,texinfo)))
939 (inputs `(("alsa-utils" ,alsa-utils)
940 ("flac" ,flac) ;for metaflac
941 ("vorbis-tools" ,vorbis-tools)
942 ("mpg321" ,mpg321)
943 ("taglib" ,taglib)
944 ("mp3info" ,mp3info)))
945 (properties '((upstream-name . "emms")))
946 (synopsis "Emacs Multimedia System")
947 (description
948 "EMMS is the Emacs Multimedia System. It is a small front-end which
949 can control one of the supported external players. Thus, it supports
950 whatever formats are supported by your music player. It also
951 supports tagging and playlist management, all behind a clean and
952 light user interface.")
953 (home-page "https://www.gnu.org/software/emms/")
954 (license license:gpl3+)))
955
956 (define-public emacs-emms-player-mpv
957 (package
958 (name "emacs-emms-player-mpv")
959 (version "0.0.10")
960 (source
961 (origin
962 (method url-fetch)
963 (uri (string-append "https://github.com/dochang/emms-player-mpv/archive/"
964 version ".tar.gz"))
965 (file-name (string-append name "-" version ".tar.gz"))
966 (sha256
967 (base32
968 "1q81fpmwr8hpdgq71vbdai2nml4yyqbmk4ffdyl4irlwph8gfjyq"))))
969 (build-system emacs-build-system)
970 (propagated-inputs
971 `(("emms" ,emms)))
972 (home-page "https://github.com/dochang/emms-player-mpv/")
973 (synopsis "Mpv support for EMMS")
974 (description
975 "This package provides an EMMS player that uses mpv. It supports pause
976 and seeking.")
977 (license license:gpl3+)))
978
979 (define-public emacs-emms-mode-line-cycle
980 (package
981 (name "emacs-emms-mode-line-cycle")
982 (version "0.2.5")
983 (source
984 (origin
985 (method url-fetch)
986 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
987 "/archive/" version ".tar.gz"))
988 (file-name (string-append name "-" version ".tar.gz"))
989 (sha256
990 (base32
991 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
992 (build-system emacs-build-system)
993 (propagated-inputs
994 `(("emms" ,emms)))
995 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
996 (synopsis "Display the EMMS mode line as a ticker")
997 (description
998 "This is a minor mode for updating the EMMS mode-line string cyclically
999 within a specified width. It is useful for displaying long track titles.")
1000 (license license:gpl3+)))
1001
1002 \f
1003 ;;;
1004 ;;; Miscellaneous.
1005 ;;;
1006
1007 (define-public bbdb
1008 (package
1009 (name "bbdb")
1010 (version "3.1.2")
1011 (source (origin
1012 (method url-fetch)
1013 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1014 version ".tar.gz"))
1015 (sha256
1016 (base32
1017 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1018 (modules '((guix build utils)))
1019 (snippet
1020 ;; We don't want to build and install the PDF.
1021 '(substitute* "doc/Makefile.in"
1022 (("^doc_DATA = .*$")
1023 "doc_DATA =\n")))))
1024 (build-system gnu-build-system)
1025 (arguments
1026 '(#:phases
1027 (modify-phases %standard-phases
1028 (add-after 'install 'post-install
1029 (lambda* (#:key outputs #:allow-other-keys)
1030 ;; Add an autoloads file with the right name for guix.el.
1031 (let* ((out (assoc-ref outputs "out"))
1032 (site (string-append out "/share/emacs/site-lisp")))
1033 (with-directory-excursion site
1034 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1035 #t)))))
1036 (native-inputs `(("emacs" ,emacs-minimal)))
1037 (home-page "http://savannah.nongnu.org/projects/bbdb/")
1038 (synopsis "Contact management utility for Emacs")
1039 (description
1040 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1041 an address book for email and snail mail addresses, phone numbers and the
1042 like. It can be linked with various Emacs mail clients (Message and Mail
1043 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1044 (license license:gpl3+)))
1045
1046 (define-public emacs-aggressive-indent
1047 (package
1048 (name "emacs-aggressive-indent")
1049 (version "1.8.3")
1050 (source (origin
1051 (method url-fetch)
1052 (uri (string-append "https://elpa.gnu.org/packages/"
1053 "aggressive-indent-" version ".el"))
1054 (sha256
1055 (base32
1056 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1057 (build-system emacs-build-system)
1058 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1059 (synopsis "Minor mode to aggressively keep your code always indented")
1060 (description
1061 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1062 always indented. It reindents after every change, making it more reliable
1063 than @code{electric-indent-mode}.")
1064 (license license:gpl2+)))
1065
1066 (define-public emacs-ag
1067 (package
1068 (name "emacs-ag")
1069 (version "0.47")
1070 (source (origin
1071 (method url-fetch)
1072 (uri (string-append
1073 "https://github.com/Wilfred/ag.el/archive/"
1074 version ".tar.gz"))
1075 (file-name (string-append name "-" version ".tar.gz"))
1076 (sha256
1077 (base32
1078 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1079 (build-system emacs-build-system)
1080 (arguments
1081 `(#:phases
1082 (modify-phases %standard-phases
1083 (add-before 'install 'make-info
1084 (lambda _
1085 (with-directory-excursion "docs"
1086 (zero? (system* "make" "info")))))
1087 (add-after 'install 'install-info
1088 (lambda* (#:key outputs #:allow-other-keys)
1089 (let* ((out (assoc-ref outputs "out"))
1090 (info (string-append out "/share/info")))
1091 (install-file "docs/_build/texinfo/agel.info" info)
1092 #t))))))
1093 (native-inputs
1094 `(("python-sphinx" ,python-sphinx)
1095 ("texinfo" ,texinfo)))
1096 (propagated-inputs
1097 `(("dash" ,emacs-dash)
1098 ("s" ,emacs-s)
1099 ;; We need to use 'ag' as the executable on remote systems.
1100 ("the-silver-searcher" ,the-silver-searcher)))
1101 (home-page "https://github.com/Wilfred/ag.el")
1102 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1103 (description "This package provides the ability to use the silver
1104 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1105 include version control system awareness, use of Perl compatible regular
1106 expressions, editing the search results directly and searching file names
1107 rather than the contents of files.")
1108 (license license:gpl3+)))
1109
1110 (define-public emacs-async
1111 (package
1112 (name "emacs-async")
1113 (version "1.9.2")
1114 (source (origin
1115 (method url-fetch)
1116 (uri (string-append "https://elpa.gnu.org/packages/async-"
1117 version ".tar"))
1118 (sha256
1119 (base32
1120 "17fnvrj7jww29sav6a6jpizclg4w2962m6h37akpii71gf0vrffw"))))
1121 (build-system emacs-build-system)
1122 (home-page "https://elpa.gnu.org/packages/async.html")
1123 (synopsis "Asynchronous processing in Emacs")
1124 (description
1125 "This package provides the ability to call asynchronous functions and
1126 processes. For example, it can be used to run dired commands (for copying,
1127 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1128 as a library for other Emacs packages.")
1129 (license license:gpl3+)))
1130
1131 (define-public emacs-auctex
1132 (package
1133 (name "emacs-auctex")
1134 (version "12.1.0")
1135 (source
1136 (origin
1137 (method url-fetch)
1138 (uri (string-append
1139 "https://elpa.gnu.org/packages/auctex-"
1140 version
1141 ".tar"))
1142 (sha256
1143 (base32
1144 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1145 (build-system emacs-build-system)
1146 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1147 ;; ('emacs-minimal' does not provide dbus).
1148 (arguments
1149 `(#:emacs ,emacs
1150 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1151 #:exclude '("^tests/" "^latex/README")))
1152 (native-inputs
1153 `(("perl" ,perl)))
1154 (home-page "https://www.gnu.org/software/auctex/")
1155 (synopsis "Integrated environment for TeX")
1156 (description
1157 "AUCTeX is a comprehensive customizable integrated environment for
1158 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1159 or XEmacs.")
1160 (license license:gpl3+)))
1161
1162 (define-public emacs-autothemer
1163 (package
1164 (name "emacs-autothemer")
1165 (version "0.2.2")
1166 (source
1167 (origin
1168 (method url-fetch)
1169 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1170 version ".tar.gz"))
1171 (file-name (string-append name "-" version ".tar.gz"))
1172 (sha256
1173 (base32
1174 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1175 (build-system emacs-build-system)
1176 (propagated-inputs
1177 `(("emacs-dash" ,emacs-dash)))
1178 (home-page "https://github.com/sebastiansturm/autothemer")
1179 (synopsis "Conveniently create Emacs themes")
1180 (description
1181 "Autothemer provides a thin layer on top of @code{deftheme} and
1182 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1183 a set of simplified face specifications and a user-supplied color palette")
1184 (license license:gpl3+)))
1185
1186 (define-public emacs-calfw
1187 (package
1188 (name "emacs-calfw")
1189 (version "1.5")
1190 (source
1191 (origin
1192 (method url-fetch)
1193 (uri (string-append
1194 "https://github.com/kiwanami/emacs-calfw/archive/v"
1195 version ".tar.gz"))
1196 (file-name (string-append name "-" version ".tar.gz"))
1197 (sha256
1198 (base32
1199 "17ssg8gx66yp63nhygjq2r6kgl4h45cacmrxsxs9f0lrfcx37k0l"))))
1200 (build-system emacs-build-system)
1201 (home-page "https://github.com/kiwanami/emacs-calfw/")
1202 (synopsis "Calendar framework for Emacs")
1203 (description
1204 "This package displays a calendar view with various schedule data in the
1205 Emacs buffer.")
1206 (license license:gpl3+)))
1207
1208 (define-public emacs-direnv
1209 (package
1210 (name "emacs-direnv")
1211 (version "1.2.0")
1212 (source
1213 (origin
1214 (method url-fetch)
1215 (uri (string-append
1216 "https://github.com/wbolster/emacs-direnv/archive/"
1217 version ".tar.gz"))
1218 (file-name (string-append name "-" version ".tar.gz"))
1219 (sha256
1220 (base32
1221 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1222 (build-system emacs-build-system)
1223 (propagated-inputs
1224 `(("dash" ,emacs-dash)
1225 ("with-editor" ,emacs-with-editor)))
1226 (home-page "https://github.com/wbolster/emacs-direnv")
1227 (synopsis "Direnv integration for Emacs")
1228 (description
1229 "This package provides support for invoking direnv to get the environment
1230 for the current file and updating the environment within Emacs to match.
1231
1232 Direnv can be invoked manually, and a global minor mode is included that will
1233 update the environment when the active buffer changes.
1234
1235 Using emacs-direnv means that programs started from Emacs will use the
1236 environment set through Direnv.")
1237 (license license:gpl3+)))
1238
1239 (define-public emacs-ggtags
1240 (package
1241 (name "emacs-ggtags")
1242 (version "0.8.12")
1243 (source
1244 (origin
1245 (method url-fetch)
1246 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1247 version ".el"))
1248 (sha256
1249 (base32
1250 "0ny3llk021g6r0s75xdm4hzpbxv393ddm2r6f2xdk8kqnq4gnirp"))))
1251 (build-system emacs-build-system)
1252 (home-page "https://github.com/leoliu/ggtags")
1253 (synopsis "Frontend to the GNU Global source code tagging system")
1254 (description "@code{ggtags} provides a frontend to the GNU Global source
1255 code tagging system.
1256
1257 Features:
1258
1259 @itemize
1260 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1261 @item Automatically update Global's tag files when needed with tuning for
1262 large source trees.
1263 @item Intuitive navigation among multiple matches with mode-line display of
1264 current match, total matches and exit status.
1265 @item Read tag with completion.
1266 @item Show definition at point.
1267 @item Jump to #include files.
1268 @item Support search history and saving a search to register/bookmark.
1269 @item Query replace.
1270 @item Manage Global's environment variables on a per-project basis.
1271 @item Highlight (definition) tag at point.
1272 @item Abbreviated display of file names.
1273 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1274 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1275 @code{pygments} backend.
1276 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1277 @code{cscope} etc.
1278 @item Support projects on remote hosts (e.g. via @code{tramp}).
1279 @item Support eldoc.
1280 @item Search @code{GTAGSLIBPATH} for references and symbols.
1281 @end itemize\n")
1282 (license license:gpl3+)))
1283
1284 (define-public emacs-go-mode
1285 (package
1286 (name "emacs-go-mode")
1287 (version "1.5.0")
1288 (source (origin
1289 (method url-fetch)
1290 (uri (string-append "https://github.com/dominikh/go-mode.el/"
1291 "archive/v" version ".tar.gz"))
1292 (file-name (string-append name "-" version ".tar.gz"))
1293 (sha256
1294 (base32
1295 "1adngbjyb8qnwg7n6r2y31djw9j6qf3b9fi63zd85035q7x4ljnm"))))
1296 (build-system emacs-build-system)
1297 (home-page "https://github.com/dominikh/go-mode.el")
1298 (synopsis "Go mode for Emacs")
1299 (description
1300 "This package provides go-mode, an Emacs mode for working with software
1301 written in the Go programming language.")
1302 (license license:bsd-3)))
1303
1304 (define-public emacs-google-maps
1305 (package
1306 (name "emacs-google-maps")
1307 (version "1.0.0")
1308 (source (origin
1309 (method url-fetch)
1310 (uri (string-append "https://github.com/jd/google-maps.el/"
1311 "archive/" version ".tar.gz"))
1312 (file-name (string-append name "-" version ".tar.gz"))
1313 (sha256
1314 (base32
1315 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1316 (build-system emacs-build-system)
1317 (home-page "https://github.com/jd/google-maps.el")
1318 (synopsis "Access Google Maps from Emacs")
1319 (description "The @code{google-maps} package allows to display Google
1320 Maps directly inside Emacs.")
1321 (license license:gpl3+)))
1322
1323 (define-public emacs-graphviz-dot-mode
1324 (let ((commit "fdaabbcc95d9156e3dadc84f81a4750c5b692580")
1325 (revision "1"))
1326 (package
1327 (name "emacs-graphviz-dot-mode")
1328 (version (string-append "0.3.10-" revision "."
1329 (string-take commit 7)))
1330 (source (origin
1331 (method git-fetch)
1332 (uri (git-reference
1333 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1334 (commit commit)))
1335 (file-name (string-append name "-" version "-checkout"))
1336 (sha256
1337 (base32
1338 "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714"))))
1339 (build-system emacs-build-system)
1340 (arguments
1341 `(#:phases
1342 (modify-phases %standard-phases
1343 (add-before 'install 'make-info
1344 (lambda* (#:key inputs #:allow-other-keys)
1345 (with-directory-excursion "texinfo"
1346 (substitute* "Makefile"
1347 (("\\/usr\\/bin\\/gzip")
1348 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1349 (zero?
1350 (system* "make"
1351 "clean"
1352 "info"
1353 (string-append "TEXINFODIR="
1354 (assoc-ref inputs "texinfo")
1355 "/bin"))))))
1356 (add-after 'install 'install-info
1357 (lambda* (#:key outputs #:allow-other-keys)
1358 (let* ((out (assoc-ref outputs "out"))
1359 (info (string-append out "/share/info")))
1360 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1361 #t))))))
1362 (native-inputs
1363 `(("texinfo" ,texinfo)
1364 ("gzip" ,gzip)))
1365 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1366 (synopsis "Major mode for editing Graphviz Dot files")
1367 (description
1368 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1369 files using the dot syntax, and use Graphviz to convert these files to
1370 diagrams.")
1371 (license license:gpl2+))))
1372
1373 (define-public emacs-mmm-mode
1374 (package
1375 (name "emacs-mmm-mode")
1376 (version "0.5.4")
1377 (source
1378 (origin
1379 (method url-fetch)
1380 (uri (string-append
1381 "https://github.com/purcell/mmm-mode/archive/"
1382 version ".tar.gz"))
1383 (file-name (string-append name "-" version ".tar.gz"))
1384 (sha256
1385 (base32
1386 "10kwslnflbjqm62wkrq420crqzdqalzfflp9pqk1i12zm6dm4mfv"))))
1387 (build-system gnu-build-system)
1388 (arguments
1389 '(#:phases
1390 (modify-phases %standard-phases
1391 (add-after 'unpack 'autogen
1392 (lambda _
1393 (zero? (system* "sh" "autogen.sh")))))))
1394 (native-inputs
1395 `(("autoconf" ,autoconf)
1396 ("automake" ,automake)
1397 ("emacs" ,emacs-minimal)
1398 ("texinfo" ,texinfo)))
1399 (home-page "https://github.com/purcell/mmm-mode")
1400 (synopsis "Allow multiple major modes in an Emacs buffer")
1401 (description
1402 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1403 single buffer.")
1404 (license license:gpl3+)))
1405
1406 (define-public emacs-tablist
1407 (package
1408 (name "emacs-tablist")
1409 (version "0.70")
1410 (source (origin
1411 (method url-fetch)
1412 (uri (string-append
1413 "https://github.com/politza/tablist/archive/v"
1414 version ".tar.gz"))
1415 (file-name (string-append name "-" version ".tar.gz"))
1416 (sha256
1417 (base32
1418 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1419 (build-system emacs-build-system)
1420 (home-page "https://github.com/politza/tablist")
1421 (synopsis "Extension for @code{tabulated-list-mode}")
1422 (description "Tablist is the Emacs package that provides several
1423 additional features to @code{tabulated-list-mode}: it adds marks,
1424 filters, new key bindings and faces. It can be enabled by
1425 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1426 (license license:gpl3+)))
1427
1428 (define-public emacs-pdf-tools
1429 (package
1430 (name "emacs-pdf-tools")
1431 (version "0.80")
1432 (source (origin
1433 (method url-fetch)
1434 (uri (string-append
1435 "https://github.com/politza/pdf-tools/archive/v"
1436 version ".tar.gz"))
1437 (file-name (string-append name "-" version ".tar.gz"))
1438 (sha256
1439 (base32
1440 "06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
1441 (build-system gnu-build-system)
1442 (arguments
1443 `(#:tests? #f ; there are no tests
1444 #:modules ((guix build gnu-build-system)
1445 ((guix build emacs-build-system) #:prefix emacs:)
1446 (guix build utils)
1447 (guix build emacs-utils))
1448 #:imported-modules (,@%gnu-build-system-modules
1449 (guix build emacs-build-system)
1450 (guix build emacs-utils))
1451 #:phases
1452 (modify-phases %standard-phases
1453 ;; Build server side using 'gnu-build-system'.
1454 (add-after 'unpack 'enter-server-dir
1455 (lambda _ (chdir "server") #t))
1456 (add-after 'enter-server-dir 'autogen
1457 (lambda _
1458 (zero? (system* "bash" "autogen.sh"))))
1459
1460 ;; Build emacs side using 'emacs-build-system'.
1461 (add-after 'compress-documentation 'enter-lisp-dir
1462 (lambda _ (chdir "../lisp") #t))
1463 (add-after 'enter-lisp-dir 'emacs-patch-variables
1464 (lambda* (#:key outputs #:allow-other-keys)
1465 ;; Set path to epdfinfo program.
1466 (emacs-substitute-variables "pdf-info.el"
1467 ("pdf-info-epdfinfo-program"
1468 (string-append (assoc-ref outputs "out")
1469 "/bin/epdfinfo")))
1470 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1471 ;; upgrading" that pdf-tools tries to perform.
1472 (emacs-substitute-variables "pdf-tools.el"
1473 ("pdf-tools-handle-upgrades" '()))))
1474 (add-after 'emacs-patch-variables 'emacs-install
1475 (assoc-ref emacs:%standard-phases 'install))
1476 (add-after 'emacs-install 'emacs-build
1477 (assoc-ref emacs:%standard-phases 'build))
1478 (add-after 'emacs-install 'emacs-make-autoloads
1479 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1480 (native-inputs `(("autoconf" ,autoconf)
1481 ("automake" ,automake)
1482 ("pkg-config" ,pkg-config)
1483 ("emacs" ,emacs-minimal)))
1484 (inputs `(("poppler" ,poppler)
1485 ("cairo" ,cairo)
1486 ("glib" ,glib)
1487 ("libpng" ,libpng)
1488 ("zlib" ,zlib)))
1489 (propagated-inputs `(("tablist" ,emacs-tablist)))
1490 (synopsis "Emacs support library for PDF files")
1491 (description
1492 "PDF Tools is, among other things, a replacement of DocView for PDF
1493 files. The key difference is that pages are not pre-rendered by
1494 e.g. ghostscript and stored in the file-system, but rather created on-demand
1495 and stored in memory.")
1496 (home-page "https://github.com/politza/pdf-tools")
1497 (license license:gpl3+)))
1498
1499 (define-public emacs-dash
1500 (package
1501 (name "emacs-dash")
1502 (version "2.13.0")
1503 (source (origin
1504 (method url-fetch)
1505 (uri (string-append
1506 "https://github.com/magnars/dash.el/archive/"
1507 version ".tar.gz"))
1508 (file-name (string-append name "-" version ".tar.gz"))
1509 (sha256
1510 (base32
1511 "1pjlkrzr8n45bnp3xs3dybvy0nz3gwamrfc7vsi1nhpkkw99ihhb"))))
1512 (build-system emacs-build-system)
1513 (arguments
1514 `(#:phases
1515 (modify-phases %standard-phases
1516 (add-before 'install 'check
1517 (lambda _
1518 (zero? (system* "./run-tests.sh")))))))
1519 (home-page "https://github.com/magnars/dash.el")
1520 (synopsis "Modern list library for Emacs")
1521 (description "This package provides a modern list API library for Emacs.")
1522 (license license:gpl3+)))
1523
1524 (define-public emacs-bui
1525 (package
1526 (name "emacs-bui")
1527 (version "1.1.0")
1528 (source (origin
1529 (method url-fetch)
1530 (uri (string-append
1531 "https://github.com/alezost/bui.el/archive/v"
1532 version ".tar.gz"))
1533 (file-name (string-append name "-" version ".tar.gz"))
1534 (sha256
1535 (base32
1536 "112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
1537 (build-system emacs-build-system)
1538 (propagated-inputs
1539 `(("dash" ,emacs-dash)))
1540 (home-page "https://github.com/alezost/bui.el")
1541 (synopsis "Buffer interface library for Emacs")
1542 (description
1543 "BUI (Buffer User Interface) is a library for making @code{list} and
1544 @code{info} interfaces to display an arbitrary data of the same
1545 type, for example: packages, buffers, files, etc.")
1546 (license license:gpl3+)))
1547
1548 (define-public emacs-guix
1549 (package
1550 (name "emacs-guix")
1551 (version "0.3.4")
1552 (source (origin
1553 (method url-fetch)
1554 (uri (string-append "https://github.com/alezost/guix.el"
1555 "/releases/download/v" version
1556 "/emacs-guix-" version ".tar.gz"))
1557 (sha256
1558 (base32
1559 "152zf9vkafmnnf7by5armg165npznb961csgnvr8iwdj3smvivjf"))))
1560 (build-system gnu-build-system)
1561 (arguments
1562 `(#:configure-flags
1563 (let ((guix (assoc-ref %build-inputs "guix"))
1564 (geiser (assoc-ref %build-inputs "geiser"))
1565 (dash (assoc-ref %build-inputs "dash"))
1566 (bui (assoc-ref %build-inputs "bui"))
1567 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1568 (site-lisp "/share/emacs/site-lisp"))
1569 (list (string-append "--with-guix-site-dir="
1570 (car (find-files (string-append guix
1571 "/share/guile/site")
1572 (lambda (file stat)
1573 (string-prefix?
1574 "2."
1575 (basename file)))
1576 #:directories? #t)))
1577 (string-append "--with-guix-site-ccache-dir="
1578 (car (find-files (string-append guix "/lib/guile")
1579 (lambda (file stat)
1580 (string-prefix?
1581 "2." (basename file)))
1582 #:directories? #t))
1583 "/site-ccache")
1584 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1585 (string-append "--with-dash-lispdir="
1586 dash site-lisp "/guix.d/dash-"
1587 ,(package-version emacs-dash))
1588 (string-append "--with-bui-lispdir="
1589 bui site-lisp "/guix.d/bui-"
1590 ,(package-version emacs-bui))
1591 (string-append "--with-popup-lispdir="
1592 magit-popup site-lisp "/guix.d/magit-popup-"
1593 ,(package-version emacs-magit-popup))))))
1594 (native-inputs
1595 `(("pkg-config" ,pkg-config)
1596 ("emacs" ,emacs-minimal)))
1597 (inputs
1598 `(("guile" ,guile-2.2)
1599 ("guix" ,guix)))
1600 (propagated-inputs
1601 `(("geiser" ,geiser)
1602 ("dash" ,emacs-dash)
1603 ("bui" ,emacs-bui)
1604 ("magit-popup" ,emacs-magit-popup)))
1605 (home-page "https://alezost.github.io/guix.el/")
1606 (synopsis "Emacs interface for GNU Guix")
1607 (description
1608 "Emacs-Guix provides a visual interface, tools and features for the GNU
1609 Guix package manager. Particularly, it allows you to do various package
1610 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1611 @code{M-x guix-help} command.")
1612 (license license:gpl3+)))
1613
1614 (define-public emacs-d-mode
1615 (package
1616 (name "emacs-d-mode")
1617 (version "2.0.8")
1618 (source (origin
1619 (method url-fetch)
1620 (uri (string-append
1621 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1622 "archive/" version ".tar.gz"))
1623 (sha256
1624 (base32
1625 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0"))))
1626 (build-system emacs-build-system)
1627 (propagated-inputs
1628 `(("emacs-undercover" ,emacs-undercover)))
1629 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1630 (synopsis "Emacs major mode for editing D code")
1631 (description "This package provides an Emacs major mode for highlighting
1632 code written in the D programming language. This mode is currently known to
1633 work with Emacs 24 and 25.")
1634 (license license:gpl2+)))
1635
1636 (define-public emacs-keyfreq
1637 (package
1638 (name "emacs-keyfreq")
1639 (version "20160516.716")
1640 (source
1641 (origin
1642 (method url-fetch)
1643 (uri (string-append "http://melpa.org/packages/keyfreq-"
1644 version ".el"))
1645 (sha256
1646 (base32
1647 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1648 (build-system emacs-build-system)
1649 (home-page "https://github.com/dacap/keyfreq")
1650 (synopsis "Track Emacs command frequencies")
1651 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1652 a command.")
1653 (license license:gpl3+)))
1654
1655 (define-public emacs-olivetti
1656 (package
1657 (name "emacs-olivetti")
1658 (version "1.5.7")
1659 (source (origin
1660 (method url-fetch)
1661 (uri (string-append
1662 "https://stable.melpa.org/packages/olivetti-"
1663 version ".el"))
1664 (sha256
1665 (base32
1666 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1667 (build-system emacs-build-system)
1668 (home-page "https://github.com/rnkn/olivetti")
1669 (synopsis "Emacs minor mode for a nice writing environment")
1670 (description "This package provides an Emacs minor mode that puts writing
1671 in the center.")
1672 (license license:gpl3+)))
1673
1674 (define-public emacs-undo-tree
1675 (package
1676 (name "emacs-undo-tree")
1677 (version "0.6.6")
1678 (source (origin
1679 (method git-fetch)
1680 (uri (git-reference
1681 (url "http://dr-qubit.org/git/undo-tree.git")
1682 (commit (string-append "release/" version))))
1683 (file-name (string-append name "-" version "-checkout"))
1684 (sha256
1685 (base32
1686 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1687 (build-system emacs-build-system)
1688 (home-page "http://www.dr-qubit.org/emacs.php")
1689 (synopsis "Treat undo history as a tree")
1690 (description "Tree-like interface to Emacs undo system, providing
1691 graphical tree presentation of all previous states of buffer that
1692 allows easily move between them.")
1693 (license license:gpl3+)))
1694
1695 (define-public emacs-s
1696 (package
1697 (name "emacs-s")
1698 (version "1.12.0")
1699 (source (origin
1700 (method url-fetch)
1701 (uri (string-append
1702 "https://github.com/magnars/s.el/archive/"
1703 version ".tar.gz"))
1704 (file-name (string-append name "-" version ".tar.gz"))
1705 (sha256
1706 (base32
1707 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1708 (build-system emacs-build-system)
1709 (arguments
1710 `(#:phases
1711 (modify-phases %standard-phases
1712 (add-before 'install 'check
1713 (lambda _
1714 (zero? (system* "./run-tests.sh")))))))
1715 (home-page "https://github.com/magnars/s.el")
1716 (synopsis "Emacs string manipulation library")
1717 (description "This package provides an Emacs library for manipulating
1718 strings.")
1719 (license license:gpl3+)))
1720
1721 (define-public emacs-symon
1722 (package
1723 (name "emacs-symon")
1724 (version "20160630")
1725 (source
1726 (origin
1727 (method url-fetch)
1728 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1729 version ".tar.gz"))
1730 (file-name (string-append name "-" version ".tar.gz"))
1731 (sha256
1732 (base32
1733 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1734 (build-system emacs-build-system)
1735 (home-page "https://github.com/zk-phi/symon")
1736 (synopsis "Tiny graphical system monitor")
1737 (description
1738 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1739 (license license:gpl2+)))
1740
1741 (define-public emacs-sx
1742 (package
1743 (name "emacs-sx")
1744 (version "0.4")
1745 (source (origin
1746 (method url-fetch)
1747 (uri (string-append "https://github.com/vermiculus/sx.el/"
1748 "archive/v" version ".tar.gz"))
1749 (file-name (string-append name "-" version ".tar.gz"))
1750 (sha256
1751 (base32
1752 "1w0xghfljqg31axcnv8gzlrd8pw25nji6idnrhflq0af9qh1dw03"))))
1753 (build-system emacs-build-system)
1754 (propagated-inputs
1755 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1756 (home-page "https://github.com/vermiculus/sx.el/")
1757 (synopsis "Emacs StackExchange client")
1758 (description
1759 "Emacs StackExchange client. Ask and answer questions on
1760 Stack Overflow, Super User, and other StackExchange sites.")
1761 (license license:gpl3+)))
1762
1763 (define-public emacs-f
1764 (package
1765 (name "emacs-f")
1766 (version "0.19.0")
1767 (source (origin
1768 (method url-fetch)
1769 (uri (string-append
1770 "https://github.com/rejeep/f.el/archive/v"
1771 version ".tar.gz"))
1772 (file-name (string-append name "-" version ".tar.gz"))
1773 (sha256
1774 (base32
1775 "05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs"))))
1776 (build-system emacs-build-system)
1777 (propagated-inputs
1778 `(("emacs-s" ,emacs-s)
1779 ("emacs-dash" ,emacs-dash)))
1780 (home-page "https://github.com/rejeep/f.el")
1781 (synopsis "Emacs API for working with files and directories")
1782 (description "This package provides an Emacs library for working with
1783 files and directories.")
1784 (license license:gpl3+)))
1785
1786 (define-public emacs-git-gutter
1787 (package
1788 (name "emacs-git-gutter")
1789 (version "0.90")
1790 (source (origin
1791 (method url-fetch)
1792 (uri (string-append
1793 "https://github.com/syohex/" name "/archive/"
1794 version ".tar.gz"))
1795 (file-name (string-append name "-" version ".tar.gz"))
1796 (sha256
1797 (base32
1798 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1799 (build-system emacs-build-system)
1800 (home-page "https://github.com/syohex/emacs-git-gutter")
1801 (synopsis "See and manage hunks of text in a version control system")
1802 (description
1803 "This package is an Emacs minor mode for displaying and interacting with
1804 hunks of text managed in a version control system. Added modified and deleted
1805 areas can be indicated with symbols on the edge of the buffer, and commands
1806 can be used to move between and perform actions on these hunks.
1807
1808 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1809 display and behaviour is easily customisable.")
1810 (license license:gpl3+)))
1811
1812 (define-public emacs-git-timemachine
1813 (package
1814 (name "emacs-git-timemachine")
1815 (version "3.0")
1816 (source
1817 (origin
1818 (method url-fetch)
1819 (uri (string-append "https://github.com/pidu/git-timemachine/"
1820 "archive/" version ".tar.gz"))
1821 (file-name (string-append name "-" version ".tar.gz"))
1822 (sha256
1823 (base32
1824 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa"))))
1825 (build-system emacs-build-system)
1826 (home-page "https://github.com/pidu/git-timemachine")
1827 (synopsis "Step through historic versions of Git-controlled files")
1828 (description "This package enables you to step through historic versions
1829 of files under Git version control from within Emacs.")
1830 (license license:gpl3+)))
1831
1832 (define-public emacs-minitest
1833 (package
1834 (name "emacs-minitest")
1835 (version "0.8.0")
1836 (source (origin
1837 (method url-fetch)
1838 (uri (string-append
1839 "https://github.com/arthurnn/minitest-emacs/archive/v"
1840 version ".tar.gz"))
1841 (file-name (string-append name "-" version ".tar.gz"))
1842 (sha256
1843 (base32
1844 "1dsb7kzvs1x6g4sgqmq73jqacb7wzm0wfkiq5m9dqdzq8mppgiqs"))))
1845 (build-system emacs-build-system)
1846 (arguments
1847 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1848 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1849 (propagated-inputs
1850 `(("emacs-dash" ,emacs-dash)
1851 ("emacs-f" ,emacs-f)))
1852 (home-page "https://github.com/arthurnn/minitest-emacs")
1853 (synopsis "Emacs minitest mode")
1854 (description
1855 "The minitest mode provides commands to run the tests for the current
1856 file or line, as well as rerunning the previous tests, or all the tests for a
1857 project.
1858
1859 This package also includes relevant snippets for yasnippet.")
1860 (license license:expat)))
1861
1862 (define-public emacs-el-mock
1863 (package
1864 (name "emacs-el-mock")
1865 (version "1.25.1")
1866 (source
1867 (origin
1868 (method url-fetch)
1869 (uri (string-append "https://github.com/rejeep/el-mock.el/"
1870 "archive/v" version ".tar.gz"))
1871 (file-name (string-append name "-" version ".tar.gz"))
1872 (sha256
1873 (base32
1874 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
1875 (build-system emacs-build-system)
1876 (home-page "https://github.com/rejeep/el-mock.el")
1877 (synopsis "Tiny mock and stub framework in Emacs Lisp")
1878 (description
1879 "Emacs Lisp Mock is a library for mocking and stubbing using readable
1880 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
1881 Expectations, but it can be used in other contexts.")
1882 (license license:gpl3+)))
1883
1884 (define-public emacs-espuds
1885 (package
1886 (name "emacs-espuds")
1887 (version "0.3.3")
1888 (source
1889 (origin
1890 (method url-fetch)
1891 (uri (string-append "https://github.com/ecukes/espuds/"
1892 "archive/v" version ".tar.gz"))
1893 (file-name (string-append name "-" version ".tar.gz"))
1894 (sha256
1895 (base32
1896 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
1897 (build-system emacs-build-system)
1898 (propagated-inputs
1899 `(("emacs-s" ,emacs-s)
1900 ("emacs-dash" ,emacs-dash)
1901 ("emacs-f" ,emacs-f)))
1902 (home-page "https://github.com/ecukes/espuds")
1903 (synopsis "Common step definitions for Ecukes")
1904 (description "Espuds is a collection of the most commonly used step
1905 definitions for testing with the Ecukes framework.")
1906 (license license:gpl3+)))
1907
1908 (define-public emacs-es-mode
1909 (package
1910 (name "emacs-es-mode")
1911 (version "4.2.0")
1912 (source (origin
1913 (method url-fetch)
1914 (uri (string-append
1915 "https://github.com/dakrone/es-mode/archive/"
1916 version ".tar.gz"))
1917 (file-name (string-append name "-" version ".tar.gz"))
1918 (sha256
1919 (base32
1920 "02as82clm553yss7jfjac888308zr1h2229cch4z1yij70j25c8y"))))
1921 (build-system emacs-build-system)
1922 (propagated-inputs
1923 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
1924 ;; to be rendered incorrectly
1925 `(("emacs-org" ,emacs-org)))
1926 (home-page "https://github.com/dakrone/es-mode")
1927 (synopsis "Major mode for editing Elasticsearch queries")
1928 (description "@code{es-mode} includes highlighting, completion and
1929 indentation support for Elasticsearch queries. Also supported are
1930 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
1931 be processed through @code{jq}, or in the case of aggregations, can be
1932 rendered in to a table. In addition, there is an @code{es-command-center}
1933 mode, which displays information about Elasticsearch clusters.")
1934 (license license:gpl3+)))
1935
1936 (define-public emacs-expand-region
1937 (package
1938 (name "emacs-expand-region")
1939 (version "0.11.0")
1940 (source
1941 (origin
1942 (method url-fetch)
1943 (uri (string-append "https://github.com/magnars/expand-region.el"
1944 "/archive/" version ".tar.gz"))
1945 (file-name (string-append name "-" version ".tar.gz"))
1946 (sha256
1947 (base32
1948 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
1949 (build-system emacs-build-system)
1950 (home-page "https://github.com/magnars/expand-region.el")
1951 (synopsis "Increase selected region by semantic units")
1952 (description
1953 "Expand region increases the selected region by semantic units. Just
1954 keep pressing the key until it selects what you want. There's also
1955 @code{er/contract-region} if you expand too far.")
1956 (license license:gpl3+)))
1957
1958 (define-public emacs-fill-column-indicator
1959 (package
1960 (name "emacs-fill-column-indicator")
1961 (version "1.81")
1962 (source
1963 (origin
1964 (method url-fetch)
1965 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
1966 "/archive/v" version ".tar.gz"))
1967 (file-name (string-append name "-" version ".tar.gz"))
1968 (sha256
1969 (base32
1970 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
1971 (build-system emacs-build-system)
1972 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
1973 (synopsis "Graphically indicate the fill column")
1974 (description
1975 "Fill-column-indicator graphically indicates the location of the fill
1976 column by drawing a thin line down the length of the editing window.")
1977 (license license:gpl3+)))
1978
1979 (define-public emacs-grep-a-lot
1980 (package
1981 (name "emacs-grep-a-lot")
1982 (version "1.0.7")
1983 (source (origin
1984 (method git-fetch)
1985 (uri (git-reference
1986 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
1987 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
1988 (file-name (string-append name "-" version "-checkout"))
1989 (sha256
1990 (base32
1991 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
1992 (build-system emacs-build-system)
1993 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
1994 (synopsis "Enables multiple grep buffers in Emacs")
1995 (description
1996 "This Emacs package allows managing multiple grep buffers.")
1997 (license license:gpl3+)))
1998
1999 (define-public emacs-inf-ruby
2000 (package
2001 (name "emacs-inf-ruby")
2002 (version "2.5.1")
2003 (source
2004 (origin
2005 (method url-fetch)
2006 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2007 "archive/" version ".tar.gz"))
2008 (file-name (string-append name "-" version ".tar.gz"))
2009 (sha256
2010 (base32
2011 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2012 (build-system emacs-build-system)
2013 (home-page "https://github.com/nonsequitur/inf-ruby")
2014 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2015 (description
2016 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2017 for easy interaction with a ruby subprocess. Features include support for
2018 detecting specific uses of Ruby, e.g. when using rails, and using a
2019 appropriate console.")
2020 (license license:gpl3+)))
2021
2022 (define-public emacs-znc
2023 (package
2024 (name "emacs-znc")
2025 (version "0.0.2")
2026 (source
2027 (origin
2028 (method url-fetch)
2029 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2030 version ".el"))
2031 (sha256
2032 (base32
2033 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2034 (build-system emacs-build-system)
2035 (home-page "https://github.com/sshirokov/ZNC.el")
2036 (synopsis "Make ERC and ZNC get along better")
2037 (description
2038 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2039 IRC bouncer with ERC.")
2040 (license license:expat)))
2041
2042 (define-public emacs-shut-up
2043 (package
2044 (name "emacs-shut-up")
2045 (version "0.3.2")
2046 (source
2047 (origin
2048 (method url-fetch)
2049 (uri (string-append "https://github.com/cask/shut-up/"
2050 "archive/v" version ".tar.gz"))
2051 (file-name (string-append name "-" version ".tar.gz"))
2052 (sha256
2053 (base32
2054 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2055 (build-system emacs-build-system)
2056 (home-page "https://github.com/cask/shut-up")
2057 (synopsis "Silence Emacs")
2058 (description "This package silences most output of Emacs when running an
2059 Emacs shell script.")
2060 (license license:expat)))
2061
2062 (define-public emacs-undercover
2063 (package
2064 (name "emacs-undercover")
2065 (version "0.6.0")
2066 (source
2067 (origin
2068 (method url-fetch)
2069 (uri (string-append "https://github.com/sviridov/undercover.el/"
2070 "archive/v" version ".tar.gz"))
2071 (file-name (string-append name "-" version ".tar.gz"))
2072 (sha256
2073 (base32
2074 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2075 (build-system emacs-build-system)
2076 (propagated-inputs
2077 `(("emacs-dash" ,emacs-dash)
2078 ("emacs-shut-up" ,emacs-shut-up)))
2079 (home-page "https://github.com/sviridov/undercover.el")
2080 (synopsis "Test coverage library for Emacs Lisp")
2081 (description
2082 "Undercover is a test coverage library for software written in Emacs
2083 Lisp.")
2084 (license license:expat)))
2085
2086 (define-public emacs-paren-face
2087 (package
2088 (name "emacs-paren-face")
2089 (version "1.0.0")
2090 (source
2091 (origin
2092 (method url-fetch)
2093 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2094 version ".tar.gz"))
2095 (file-name (string-append name "-" version ".tar.gz"))
2096 (sha256
2097 (base32
2098 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2099 (build-system emacs-build-system)
2100 (home-page "https://github.com/tarsius/paren-face")
2101 (synopsis "Face for parentheses in lisp modes")
2102 (description
2103 "This library defines a face named @code{parenthesis} used just for
2104 parentheses. The intended purpose of this face is to make parentheses less
2105 visible in Lisp code by dimming them. Lispers probably don't need to be
2106 constantly made aware of the existence of the parentheses. Dimming them might
2107 be even more useful for people new to lisp who have not yet learned to
2108 subconsciously blend out the parentheses.")
2109 (license license:gpl3+)))
2110
2111 (define-public emacs-page-break-lines
2112 (package
2113 (name "emacs-page-break-lines")
2114 (version "0.11")
2115 (source
2116 (origin
2117 (method url-fetch)
2118 (uri (string-append "https://github.com/purcell/page-break-lines/"
2119 "archive/" version ".tar.gz"))
2120 (file-name (string-append name "-" version ".tar.gz"))
2121 (sha256
2122 (base32
2123 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2124 (build-system emacs-build-system)
2125 (home-page "https://github.com/purcell/page-break-lines")
2126 (synopsis "Display page breaks as tidy horizontal lines")
2127 (description
2128 "This library provides a global mode which displays form feed characters
2129 as horizontal rules.")
2130 (license license:gpl3+)))
2131
2132 (define-public emacs-simple-httpd
2133 (package
2134 (name "emacs-simple-httpd")
2135 (version "1.4.6")
2136 (source
2137 (origin
2138 (method url-fetch)
2139 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2140 "archive/" version ".tar.gz"))
2141 (file-name (string-append name "-" version ".tar.gz"))
2142 (sha256
2143 (base32
2144 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2145 (build-system emacs-build-system)
2146 (home-page "https://github.com/skeeto/emacs-http-server")
2147 (synopsis "HTTP server in pure Emacs Lisp")
2148 (description
2149 "This package provides a simple HTTP server written in Emacs Lisp to
2150 serve files and directory listings.")
2151 (license license:unlicense)))
2152
2153 (define-public emacs-skewer-mode
2154 (package
2155 (name "emacs-skewer-mode")
2156 (version "1.6.2")
2157 (source
2158 (origin
2159 (method url-fetch)
2160 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2161 version ".tar.gz"))
2162 (file-name (string-append name "-" version ".tar.gz"))
2163 (sha256
2164 (base32
2165 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2166 (build-system emacs-build-system)
2167 (propagated-inputs
2168 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2169 ("emacs-js2-mode" ,emacs-js2-mode)))
2170 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2171 (home-page "https://github.com/skeeto/skewer-mode")
2172 (synopsis "Live web development in Emacs")
2173 (description
2174 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2175 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2176 evaluated in the browser, just like Emacs does with an inferior Lisp process
2177 in Lisp modes.")
2178 (license license:unlicense)))
2179
2180 (define-public emacs-string-inflection
2181 (package
2182 (name "emacs-string-inflection")
2183 (version "1.0.6")
2184 (source (origin
2185 (method git-fetch)
2186 (uri (git-reference
2187 (url "https://github.com/akicho8/string-inflection")
2188 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2189 (file-name (string-append name "-" version "-checkout"))
2190 (sha256
2191 (base32
2192 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2193 (build-system emacs-build-system)
2194 (native-inputs
2195 `(("ert-runner" ,ert-runner)))
2196 (arguments
2197 `(#:phases
2198 (modify-phases %standard-phases
2199 (add-before 'install 'check
2200 (lambda _
2201 (zero? (system* "ert-runner")))))))
2202 (home-page "https://github.com/akicho8/string-inflection")
2203 (synopsis "Convert symbol names between different naming conventions")
2204 (description
2205 "This Emacs package provides convenient methods for manipulating the
2206 naming style of a symbol. It supports different naming conventions such as:
2207
2208 @enumerate
2209 @item camel case
2210 @item Pascal case
2211 @item all upper case
2212 @item lower case separated by underscore
2213 @item etc...
2214 @end enumerate\n")
2215 (license license:gpl2+)))
2216
2217 (define-public emacs-stripe-buffer
2218 (package
2219 (name "emacs-stripe-buffer")
2220 (version "0.2.5")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2225 "archive/" version ".tar.gz"))
2226 (file-name (string-append name "-" version ".tar.gz"))
2227 (sha256
2228 (base32
2229 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2230 (build-system emacs-build-system)
2231 (home-page "https://github.com/sabof/stripe-buffer/")
2232 (synopsis "Add stripes to list buffers")
2233 (description
2234 "This Emacs package adds faces to add stripes to list buffers and org
2235 tables.")
2236 (license license:gpl2+)))
2237
2238 (define-public emacs-rich-minority
2239 (package
2240 (name "emacs-rich-minority")
2241 (version "1.0.1")
2242 (source
2243 (origin
2244 (method url-fetch)
2245 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2246 "archive/" version ".tar.gz"))
2247 (file-name (string-append name "-" version ".tar.gz"))
2248 (sha256
2249 (base32
2250 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2251 (build-system emacs-build-system)
2252 (home-page "https://github.com/Malabarba/rich-minority")
2253 (synopsis "Clean-up and beautify the list of minor modes")
2254 (description
2255 "This Emacs package hides and/or highlights minor modes in the
2256 mode-line.")
2257 (license license:gpl2+)))
2258
2259 (define-public emacs-robe
2260 (package
2261 (name "emacs-robe")
2262 (version "0.8.1")
2263 (source
2264 (origin
2265 (method url-fetch)
2266 (uri (string-append "https://github.com/dgutov/robe/"
2267 "archive/" version ".tar.gz"))
2268 (file-name (string-append name "-" version ".tar.gz"))
2269 (sha256
2270 (base32
2271 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2272 (build-system emacs-build-system)
2273 (propagated-inputs
2274 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2275 (home-page "https://github.com/dgutov/robe")
2276 (synopsis "Ruby code assistance tool for Emacs")
2277 (description
2278 "Robe can provide information on loaded classes and modules in Ruby code,
2279 as well as where methods are defined. This allows the user to jump to method
2280 definitions, modules and classes, display method documentation and provide
2281 method and constant name completion.")
2282 (license license:gpl3+)))
2283
2284 (define-public emacs-rspec
2285 (package
2286 (name "emacs-rspec")
2287 (version "1.11")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "https://github.com/pezra/rspec-mode/"
2292 "archive/v" version ".tar.gz"))
2293 (file-name (string-append name "-" version ".tar.gz"))
2294 (sha256
2295 (base32
2296 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2297 (build-system emacs-build-system)
2298 (home-page "https://github.com/pezra/rspec-mode")
2299 (synopsis "Provides a rspec mode for working with RSpec")
2300 (description
2301 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2302 verify the spec associated with the current buffer, or entire project, as well
2303 as moving between the spec files, and coresponding code files.
2304
2305 Also included are keybindings for spec files and Dired buffers, as well as
2306 snippets for yasnippet.")
2307 (license license:gpl3+)))
2308
2309 (define-public emacs-smart-mode-line
2310 (package
2311 (name "emacs-smart-mode-line")
2312 (version "2.10.1")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2317 "archive/" version ".tar.gz"))
2318 (file-name (string-append name "-" version ".tar.gz"))
2319 (sha256
2320 (base32
2321 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
2322 (build-system emacs-build-system)
2323 (propagated-inputs
2324 `(("emacs-rich-minority" ,emacs-rich-minority)))
2325 (home-page "https://github.com/Malabarba/smart-mode-line")
2326 (synopsis "Color-coded smart mode-line")
2327 (description
2328 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2329 read from small to large monitors by using colors, a prefix feature, and smart
2330 truncation.")
2331 (license license:gpl2+)))
2332
2333 (define-public emacs-sr-speedbar
2334 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2335 (revision "0"))
2336 (package
2337 (name "emacs-sr-speedbar")
2338 (version (git-version "20161025" revision commit))
2339 (source
2340 (origin
2341 (method git-fetch)
2342 (uri (git-reference
2343 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2344 (commit commit)))
2345 (file-name (git-file-name name version))
2346 (sha256
2347 (base32
2348 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2349 (build-system emacs-build-system)
2350 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2351 (synopsis "Same frame Emacs @code{speedbar}")
2352 (description
2353 "This Emacs package allows you to show @code{M-x speedbar} in the
2354 same frame (in an extra window). You can customize the initial width of
2355 the speedbar window.")
2356 (license license:gpl3+))))
2357
2358 (define-public emacs-shell-switcher
2359 (package
2360 (name "emacs-shell-switcher")
2361 (version "1.0.1")
2362 (source
2363 (origin
2364 (method url-fetch)
2365 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2366 "/archive/v" version ".tar.gz"))
2367 (file-name (string-append name "-" version ".tar.gz"))
2368 (sha256
2369 (base32
2370 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2371 (build-system emacs-build-system)
2372 (home-page "https://github.com/DamienCassou/shell-switcher")
2373 (synopsis "Provide fast switching between shell buffers")
2374 (description
2375 "This package provides commands to quickly switch between shell buffers.")
2376 (license license:gpl3+)))
2377
2378 (define-public emacs-ob-ipython
2379 (package
2380 (name "emacs-ob-ipython")
2381 (version "20150704.8807064693")
2382 (source (origin
2383 (method git-fetch)
2384 (uri (git-reference
2385 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2386 (url "https://github.com/gregsexton/ob-ipython.git")))
2387 (sha256
2388 (base32
2389 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2390 (build-system emacs-build-system)
2391 (propagated-inputs
2392 `(("emacs-f" ,emacs-f)))
2393 (home-page "http://www.gregsexton.org")
2394 (synopsis "Org-Babel functions for IPython evaluation")
2395 (description "This package adds support to Org-Babel for evaluating Python
2396 source code using IPython.")
2397 (license license:gpl3+)))
2398
2399 (define-public emacs-debbugs
2400 (package
2401 (name "emacs-debbugs")
2402 (version "0.15")
2403 (source (origin
2404 (method url-fetch)
2405 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2406 version ".tar"))
2407 (sha256
2408 (base32
2409 "1x7jw2ldgkknyxg7x9fhnqkary691icnysmi3xw0g2fjrvllzhqw"))))
2410 (build-system emacs-build-system)
2411 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2412 (propagated-inputs
2413 `(("emacs-async" ,emacs-async)))
2414 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2415 (synopsis "Access the Debbugs bug tracker in Emacs")
2416 (description
2417 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2418 Tracker} from within Emacs.
2419
2420 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2421 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2422 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2423 @code{M-x debbugs-org} and related commands.
2424
2425 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2426 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2427 (license license:gpl3+)))
2428
2429 (define-public emacs-deferred
2430 (package
2431 (name "emacs-deferred")
2432 (version "0.3.2")
2433 (home-page "https://github.com/kiwanami/emacs-deferred")
2434 (source (origin
2435 (method git-fetch)
2436 (uri (git-reference
2437 (url home-page)
2438 (commit (string-append "v" version))))
2439 (sha256
2440 (base32
2441 "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr"))
2442 (file-name (string-append name "-" version))))
2443 (build-system emacs-build-system)
2444 ;; FIXME: Would need 'el-expectations' to actually run tests.
2445 (synopsis "Simple asynchronous functions for Emacs Lisp")
2446 (description
2447 "The @code{deferred.el} library provides support for asynchronous tasks.
2448 The API is almost the same as that of
2449 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2450 for asynchronous tasks.")
2451 (license license:gpl3+)))
2452
2453 (define-public butler
2454 (package
2455 (name "emacs-butler")
2456 (version "0.2.4")
2457 (home-page "https://github.com/AshtonKem/Butler")
2458 (source (origin
2459 (method git-fetch)
2460 (uri (git-reference
2461 (url home-page)
2462 (commit version)))
2463 (sha256
2464 (base32
2465 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2466 (file-name (string-append name "-" version))))
2467 (build-system emacs-build-system)
2468 (propagated-inputs
2469 `(("emacs-deferred" ,emacs-deferred)))
2470 (synopsis "Emacs client for Jenkins")
2471 (description
2472 "Butler provides an interface to connect to Jenkins continuous
2473 integration servers. Users can specify a list of server in the
2474 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2475 view the build status of those servers' build jobs, and possibly to trigger
2476 build jobs.")
2477 (license license:gpl3+)))
2478
2479 (define-public emacs-company
2480 (package
2481 (name "emacs-company")
2482 (version "0.9.3")
2483 (source
2484 (origin
2485 (method url-fetch)
2486 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2487 version ".tar.gz"))
2488 (file-name (string-append name "-" version ".tar.gz"))
2489 (sha256
2490 (base32
2491 "1fyrpchpdmvszssy1qmsw41aqpv6q5rybvs1bw00nv9xdhiaq4vh"))))
2492 (build-system emacs-build-system)
2493 (arguments
2494 `(#:phases
2495 (modify-phases %standard-phases
2496 (add-before 'install 'check
2497 (lambda _
2498 ;; The company-files-candidates-normal-root test looks
2499 ;; for the /bin directory, but the build environment has
2500 ;; no /bin directory. Modify the test to look for the
2501 ;; /tmp directory.
2502 (substitute* "test/files-tests.el"
2503 (("/bin/") "/tmp/"))
2504 (zero? (system* "make" "test-batch")))))))
2505 (home-page "http://company-mode.github.io/")
2506 (synopsis "Modular text completion framework")
2507 (description
2508 "Company is a modular completion mechanism. Modules for retrieving
2509 completion candidates are called back-ends, modules for displaying them are
2510 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2511 These are distributed in separate files and can be used individually.")
2512 (license license:gpl3+)))
2513
2514 (define-public emacs-company-quickhelp
2515 (package
2516 (name "emacs-company-quickhelp")
2517 (version "2.3.0")
2518 (source
2519 (origin
2520 (method url-fetch)
2521 (uri (string-append
2522 "https://github.com/expez/company-quickhelp/archive/"
2523 version ".tar.gz"))
2524 (file-name (string-append name "-" version ".tar.gz"))
2525 (sha256
2526 (base32
2527 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2528 (build-system emacs-build-system)
2529 (propagated-inputs
2530 `(("emacs-pos-tip" ,emacs-pos-tip)
2531 ("emacs-company" ,emacs-company)))
2532 (home-page "https://github.com/expez/company-quickhelp")
2533 (synopsis "Popup documentation for completion candidates")
2534 (description "@code{company-quickhelp} shows documentation for the
2535 completion candidate when using the Company text completion framework.")
2536 (license license:gpl3+)))
2537
2538 (define-public emacs-multiple-cursors
2539 (package
2540 (name "emacs-multiple-cursors")
2541 (version "1.4.0")
2542 (source
2543 (origin
2544 (method url-fetch)
2545 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2546 "archive/" version ".tar.gz"))
2547 (file-name (string-append name "-" version ".tar.gz"))
2548 (sha256
2549 (base32
2550 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2551 (build-system emacs-build-system)
2552 (home-page "https://github.com/magnars/multiple-cursors.el")
2553 (synopsis "Multiple cursors for Emacs")
2554 (description
2555 "This package adds support to Emacs for editing text with multiple
2556 simultaneous cursors.")
2557 (license license:gpl3+)))
2558
2559 (define-public typo
2560 (package
2561 (name "emacs-typo")
2562 (version "1.1")
2563 (home-page "https://github.com/jorgenschaefer/typoel")
2564 (source (origin
2565 (method git-fetch)
2566 (uri (git-reference
2567 (url home-page)
2568 (commit (string-append "v" version))))
2569 (sha256
2570 (base32
2571 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2572 (file-name (string-append name "-" version))))
2573 (build-system emacs-build-system)
2574 (synopsis "Minor mode for typographic editing")
2575 (description
2576 "This package provides two Emacs modes, @code{typo-mode} and
2577 @code{typo-global-mode}. These modes automatically insert Unicode characters
2578 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2579 automatically inserts a Unicode opening or closing quotation mark, depending
2580 on context.")
2581 (license license:gpl3+)))
2582
2583 (define-public emacs-scheme-complete
2584 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2585 (package
2586 (name "emacs-scheme-complete")
2587 (version (string-append "20151223." (string-take commit 8)))
2588 (source
2589 (origin
2590 (file-name (string-append name "-" version))
2591 (method git-fetch)
2592 (uri (git-reference
2593 (url "https://github.com/ashinn/scheme-complete.git")
2594 (commit commit)))
2595 (sha256
2596 (base32
2597 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2598 (patches
2599 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2600 (build-system emacs-build-system)
2601 (home-page "https://github.com/ashinn/scheme-complete")
2602 (synopsis "Smart tab completion for Scheme in Emacs")
2603 (description
2604 "This file provides a single function, @code{scheme-smart-complete},
2605 which you can use for intelligent, context-sensitive completion for any Scheme
2606 implementation in Emacs. To use it just load this file and bind that function
2607 to a key in your preferred mode.")
2608 (license license:public-domain))))
2609
2610 (define-public emacs-mit-scheme-doc
2611 (package
2612 (name "emacs-mit-scheme-doc")
2613 (version "20140203")
2614 (source
2615 (origin
2616 (modules '((guix build utils)))
2617 (snippet
2618 ;; keep only file of interest
2619 '(begin
2620 (for-each delete-file '("dot-emacs.el" "Makefile"))
2621 (install-file "6.945-config/mit-scheme-doc.el" ".")
2622 (delete-file-recursively "6.945-config")))
2623 (file-name (string-append name "-" version ".tar.bz2"))
2624 (method url-fetch)
2625 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2626 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2627 (sha256
2628 (base32
2629 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2630 (build-system emacs-build-system)
2631 (inputs `(("mit-scheme" ,mit-scheme)))
2632 (arguments
2633 `(#:phases
2634 (modify-phases %standard-phases
2635 (add-after 'unpack 'configure-doc
2636 (lambda* (#:key inputs #:allow-other-keys)
2637 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2638 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2639 "mit-scheme-"
2640 ,(package-version mit-scheme))))
2641 (substitute* "mit-scheme-doc.el"
2642 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2643 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2644 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2645 (synopsis "MIT-Scheme documentation lookup for Emacs")
2646 (description
2647 "This package provides a set of Emacs functions to search definitions of
2648 identifiers in the MIT-Scheme documentation.")
2649 (license license:gpl2+)))
2650
2651 (define-public emacs-constants
2652 (package
2653 (name "emacs-constants")
2654 (version "2.6")
2655 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
2656 (source
2657 (origin
2658 (file-name (string-append name "-" version ".tar.gz"))
2659 (method url-fetch)
2660 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2661 "/archive/v" version ".tar.gz"))
2662 (sha256
2663 (base32
2664 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
2665 (build-system emacs-build-system)
2666 (synopsis "Enter definition of constants into an Emacs buffer")
2667 (description
2668 "This package provides functions for inserting the definition of natural
2669 constants and units into an Emacs buffer.")
2670 (license license:gpl2+)))
2671
2672 (define-public emacs-tagedit
2673 (package
2674 (name "emacs-tagedit")
2675 (version "1.4.0")
2676 (source
2677 (origin
2678 (method url-fetch)
2679 (uri (string-append "https://github.com/magnars/tagedit/"
2680 "archive/" version ".tar.gz"))
2681 (file-name (string-append name "-" version ".tar.gz"))
2682 (sha256
2683 (base32
2684 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2685 (build-system emacs-build-system)
2686 (propagated-inputs
2687 `(("emacs-s" ,emacs-s)
2688 ("emacs-dash" ,emacs-dash)))
2689 (home-page "https://github.com/magnars/tagedit")
2690 (synopsis "Some paredit-like features for html-mode")
2691 (description
2692 "This package provides a collection of paredit-like functions for editing
2693 in @code{html-mode}.")
2694 (license license:gpl3+)))
2695
2696 (define-public emacs-slime
2697 (package
2698 (name "emacs-slime")
2699 (version "2.20")
2700 (source
2701 (origin
2702 (file-name (string-append name "-" version ".tar.gz"))
2703 (method url-fetch)
2704 (uri (string-append
2705 "https://github.com/slime/slime/archive/v"
2706 version ".tar.gz"))
2707 (sha256
2708 (base32
2709 "086lq5y4pvj9wihy0si02xxvyzpzz8mcg3hz1cvy9zxlyjwzr1gk"))))
2710 (build-system emacs-build-system)
2711 (native-inputs
2712 `(("texinfo" ,texinfo)))
2713 (arguments
2714 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
2715 #:exclude '("^slime-tests.el" "^contrib/test/"
2716 "^contrib/Makefile$" "^contrib/README.md$")
2717 #:phases
2718 (modify-phases %standard-phases
2719 (add-before 'install 'configure
2720 (lambda* _
2721 (emacs-substitute-variables "slime.el"
2722 ("inferior-lisp-program" "sbcl"))
2723 #t))
2724 (add-before 'install 'install-doc
2725 (lambda* (#:key outputs #:allow-other-keys)
2726 (let* ((out (assoc-ref outputs "out"))
2727 (info-dir (string-append out "/share/info"))
2728 (doc-dir (string-append out "/share/doc/"
2729 ,name "-" ,version))
2730 (doc-files '("doc/slime-refcard.pdf"
2731 "README.md" "NEWS" "PROBLEMS"
2732 "CONTRIBUTING.md")))
2733 (with-directory-excursion "doc"
2734 (substitute* "Makefile"
2735 (("infodir=/usr/local/info")
2736 (string-append "infodir=" info-dir)))
2737 (system* "make" "html/index.html")
2738 (system* "make" "slime.info")
2739 (install-file "slime.info" info-dir)
2740 (copy-recursively "html" (string-append doc-dir "/html")))
2741 (for-each (lambda (f)
2742 (install-file f doc-dir)
2743 (delete-file f))
2744 doc-files)
2745 (delete-file-recursively "doc")
2746 #t))))))
2747 (home-page "https://github.com/slime/slime")
2748 (synopsis "Superior Lisp Interaction Mode for Emacs")
2749 (description
2750 "SLIME extends Emacs with support for interactive programming in
2751 Common Lisp. The features are centered around @command{slime-mode},
2752 an Emacs minor mode that complements the standard @command{lisp-mode}.
2753 While lisp-mode supports editing Lisp source files, @command{slime-mode}
2754 adds support for interacting with a running Common Lisp process
2755 for compilation, debugging, documentation lookup, and so on.")
2756 (license license:gpl2+)))
2757
2758 (define-public emacs-popup
2759 (package
2760 (name "emacs-popup")
2761 (version "0.5.3")
2762 (source (origin
2763 (method url-fetch)
2764 (uri (string-append
2765 "https://github.com/auto-complete/popup-el/archive/v"
2766 version ".tar.gz"))
2767 (file-name (string-append name "-" version ".tar.gz"))
2768 (sha256
2769 (base32
2770 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
2771 (build-system emacs-build-system)
2772 (home-page "https://github.com/auto-complete/popup-el")
2773 (synopsis "Visual Popup User Interface for Emacs")
2774 (description
2775 "Popup.el is a visual popup user interface library for Emacs.
2776 This provides a basic API and common UI widgets such as popup tooltips
2777 and popup menus.")
2778 (license license:gpl3+)))
2779
2780 (define-public emacs-god-mode
2781 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
2782 (revision "1"))
2783 (package
2784 (name "emacs-god-mode")
2785 (version (string-append "20151005.925."
2786 revision "-" (string-take commit 9)))
2787 (source
2788 (origin
2789 (method git-fetch)
2790 (uri (git-reference
2791 (url "https://github.com/chrisdone/god-mode.git")
2792 (commit commit)))
2793 (file-name (string-append name "-" version "-checkout"))
2794 (sha256
2795 (base32
2796 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
2797 (build-system emacs-build-system)
2798 (home-page "https://github.com/chrisdone/god-mode")
2799 (synopsis "Minor mode for entering commands without modifier keys")
2800 (description
2801 "This package provides a global minor mode for entering Emacs commands
2802 without modifier keys. It's similar to Vim's separation of commands and
2803 insertion mode. When enabled all keys are implicitly prefixed with
2804 @samp{C-} (among other helpful shortcuts).")
2805 (license license:gpl3+))))
2806
2807 (define-public emacs-jinja2-mode
2808 (package
2809 (name "emacs-jinja2-mode")
2810 (version "0.2")
2811 (source
2812 (origin
2813 (method url-fetch)
2814 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
2815 "archive/v" version ".tar.gz"))
2816 (file-name (string-append name "-" version ".tar.gz"))
2817 (sha256
2818 (base32
2819 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
2820 (build-system emacs-build-system)
2821 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
2822 (synopsis "Major mode for jinja2")
2823 (description
2824 "Emacs major mode for jinja2 with: syntax highlighting,
2825 sgml/html integration, and indentation (working with sgml).")
2826 (license license:gpl3+)))
2827
2828 (define-public emacs-rfcview
2829 (package
2830 (name "emacs-rfcview")
2831 (version "0.13")
2832 (home-page "http://www.loveshack.ukfsn.org/emacs")
2833 (source (origin
2834 (method url-fetch)
2835 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
2836 (sha256
2837 (base32
2838 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
2839 (build-system emacs-build-system)
2840 (synopsis "Prettify Request for Comments (RFC) documents")
2841 (description "The Internet Engineering Task Force (IETF) and the Internet
2842 Society (ISOC) publish various Internet-related protocols and specifications
2843 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
2844 documents. RFCs and STDs are published in a simple text form. This package
2845 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
2846 read these documents in Emacs. It prettifies the text and adds
2847 hyperlinks/menus for easier navigation. It also provides functions for
2848 browsing the index of RFC documents and fetching them from remote servers or
2849 local directories.")
2850 (license license:gpl3+)))
2851
2852 (define-public emacs-ffap-rfc-space
2853 (package
2854 (name "emacs-ffap-rfc-space")
2855 (version "12")
2856 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
2857 (source (origin
2858 (method url-fetch)
2859 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
2860 (sha256
2861 (base32
2862 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
2863 (build-system emacs-build-system)
2864 (synopsis "Make ffap recognize an RFC with a space before its number")
2865 (description "The Internet Engineering Task Force (IETF) and the
2866 Internet Society (ISOC) publish various Internet-related protocols and
2867 specifications as \"Request for Comments\" (RFC) documents. The
2868 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
2869 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
2870 and load the appropriate RFC from a remote server. However, it fails
2871 to recognize a name like \"RFC 1234\". This package enhances ffap so
2872 that it correctly finds RFCs even when a space appears before the
2873 number.")
2874 (license license:gpl3+)))
2875
2876 (define-public emacs-org-bullets
2877 (package
2878 (name "emacs-org-bullets")
2879 (version "0.2.4")
2880 (source
2881 (origin
2882 (method url-fetch)
2883 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
2884 version ".tar.gz"))
2885 (file-name (string-append name "-" version ".tar.gz"))
2886 (sha256
2887 (base32
2888 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
2889 (build-system emacs-build-system)
2890 (home-page "https://github.com/sabof/org-bullets")
2891 (synopsis "Show bullets in org-mode as UTF-8 characters")
2892 (description
2893 "This package provides an Emacs minor mode causing bullets in
2894 @code{org-mode} to be rendered as UTF-8 characters.")
2895 (license license:gpl3+)))
2896
2897 (define-public emacs-org-pomodoro
2898 (package
2899 (name "emacs-org-pomodoro")
2900 (version "2.1.0")
2901 (source
2902 (origin
2903 (method url-fetch)
2904 (uri (string-append
2905 "https://github.com/lolownia/org-pomodoro/archive/"
2906 version ".tar.gz"))
2907 (file-name (string-append name "-" version ".tar.gz"))
2908 (sha256
2909 (base32
2910 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
2911 (build-system emacs-build-system)
2912 (propagated-inputs
2913 `(("emacs-alert" ,emacs-alert)))
2914 (home-page "https://github.com/lolownia/org-pomodoro")
2915 (synopsis "Pomodoro technique for org-mode")
2916 (description "@code{emacs-org-pomodoro} adds very basic support for
2917 Pomodoro technique in Emacs org-mode.
2918
2919 Run @code{M-x org-pomodoro} for the task at point or select one of the
2920 last tasks that you clocked time for. Each clocked-in pomodoro starts
2921 a timer of 25 minutes and after each pomodoro a break timer of 5
2922 minutes is started automatically. Every 4 breaks a long break is
2923 started with 20 minutes. All values are customizable.")
2924 (license license:gpl3+)))
2925
2926 (define-public emacs-org-trello
2927 (package
2928 (name "emacs-org-trello")
2929 (version "0.7.9")
2930 (source (origin
2931 (method url-fetch)
2932 (uri (string-append
2933 "https://github.com/org-trello/org-trello/archive/"
2934 version ".tar.gz"))
2935 (file-name (string-append name "-" version ".tar.gz"))
2936 (sha256
2937 (base32
2938 "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf"))))
2939 (build-system emacs-build-system)
2940 (propagated-inputs
2941 `(("emacs-deferred" ,emacs-deferred)
2942 ("emacs-request" ,emacs-request)
2943 ("emacs-dash" ,emacs-dash)
2944 ("emacs-s" ,emacs-s)))
2945 (home-page "https://org-trello.github.io")
2946 (synopsis "Emacs minor mode for interacting with Trello")
2947 (description "This package provides an Emacs minor mode to extend
2948 @code{org-mode} with Trello abilities. Trello is an online project
2949 organizer.")
2950 (license license:gpl3+)))
2951
2952 (define-public emacs-zenburn-theme
2953 (package
2954 (name "emacs-zenburn-theme")
2955 (version "2.5")
2956 (source (origin
2957 (method url-fetch)
2958 (uri (string-append
2959 "https://github.com/bbatsov/zenburn-emacs/archive/v"
2960 version ".tar.gz"))
2961 (file-name (string-append name "-" version ".tar.gz"))
2962 (sha256
2963 (base32
2964 "03kfhzgbbbl8ivpzzky6qxw4j9mmp452m1sk7wikxmcalfnix0gn"))))
2965 (build-system emacs-build-system)
2966 (home-page "https://github.com/bbatsov/zenburn-emacs")
2967 (synopsis "Low contrast color theme for Emacs")
2968 (description
2969 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
2970 It is built on top of the custom theme support in Emacs 24 or later.")
2971 (license license:gpl3+)))
2972
2973 (define-public emacs-solarized-theme
2974 (package
2975 (name "emacs-solarized-theme")
2976 (version "1.2.2")
2977 (source (origin
2978 (method url-fetch)
2979 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
2980 "archive/v" version ".tar.gz"))
2981 (file-name (string-append name "-" version ".tar.gz"))
2982 (sha256
2983 (base32
2984 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
2985 (build-system emacs-build-system)
2986 (propagated-inputs
2987 `(("emacs-dash" ,emacs-dash)))
2988 (home-page "https://github.com/bbatsov/solarized-emacs")
2989 (synopsis "Port of the Solarized theme for Emacs")
2990 (description
2991 "Solarized for Emacs is a port of the Solarized theme for Vim. This
2992 package provides a light and a dark variant.")
2993 (license license:gpl3+)))
2994
2995 (define-public emacs-ahungry-theme
2996 (package
2997 (name "emacs-ahungry-theme")
2998 (version "1.8.0")
2999 (source
3000 (origin (method url-fetch)
3001 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3002 version ".tar"))
3003 (sha256
3004 (base32
3005 "14dhnrlbjzrxk5ligf0z2im5bgnxpjqqzqcrmqg5355xrgpbpb7v"))))
3006 (build-system emacs-build-system)
3007 (home-page "https://github.com/ahungry/color-theme-ahungry")
3008 (synopsis "Ahungry color theme for Emacs")
3009 (description "Ahungry theme for Emacs provides bright and bold colors.
3010 If you load it from a terminal, you will be able to make use of the
3011 transparent background. If you load it from a GUI, it will default to a
3012 dark background.")
3013 (license license:gpl3+)))
3014
3015 (define-public emacs-2048-game
3016 (package
3017 (name "emacs-2048-game")
3018 (version "20151026.1233")
3019 (source
3020 (origin
3021 (method url-fetch)
3022 (uri (string-append "https://melpa.org/packages/2048-game-"
3023 version ".el"))
3024 (sha256
3025 (base32
3026 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3027 (build-system emacs-build-system)
3028 (home-page "https://bitbucket.org/zck/2048.el")
3029 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3030 (description
3031 "This program is an implementation of 2048 for Emacs.
3032 The goal of this game is to create a tile with value 2048. The size of the
3033 board and goal value can be customized.")
3034 (license license:gpl3+)))
3035
3036 (define-public emacs-base16-theme
3037 (package
3038 (name "emacs-base16-theme")
3039 (version "2.1")
3040 (source
3041 (origin
3042 (method url-fetch)
3043 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3044 version ".tar"))
3045 (sha256
3046 (base32
3047 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3048 (build-system emacs-build-system)
3049 (home-page "https://github.com/belak/base16-emacs")
3050 (synopsis "Base16 color themes for Emacs")
3051 (description
3052 "Base16 provides carefully chosen syntax highlighting and a default set
3053 of sixteen colors suitable for a wide range of applications. Base16 is not a
3054 single theme but a set of guidelines with numerous implementations.")
3055 (license license:expat)))
3056
3057 (define-public emacs-smartparens
3058 (package
3059 (name "emacs-smartparens")
3060 (version "1.11.0")
3061 (source (origin
3062 (method url-fetch)
3063 (uri (string-append
3064 "https://github.com/Fuco1/smartparens/archive/"
3065 version ".tar.gz"))
3066 (file-name (string-append name "-" version ".tar.gz"))
3067 (sha256
3068 (base32
3069 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3070 (build-system emacs-build-system)
3071 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
3072 (home-page "https://github.com/Fuco1/smartparens")
3073 (synopsis "Paredit-like insertion, wrapping and navigation with user
3074 defined pairs")
3075 (description
3076 "Smartparens is a minor mode for Emacs that deals with parens pairs
3077 and tries to be smart about it. It started as a unification effort to
3078 combine functionality of several existing packages in a single,
3079 compatible and extensible way to deal with parentheses, delimiters, tags
3080 and the like. Some of these packages include autopair, textmate,
3081 wrap-region, electric-pair-mode, paredit and others. With the basic
3082 features found in other packages it also brings many improvements as
3083 well as completely new features.")
3084 (license license:gpl3+)))
3085
3086 (define-public emacs-highlight-symbol
3087 (package
3088 (name "emacs-highlight-symbol")
3089 (version "1.3")
3090 (source (origin
3091 (method url-fetch)
3092 (uri (string-append
3093 "https://github.com/nschum/highlight-symbol.el/archive/"
3094 version ".tar.gz"))
3095 (file-name (string-append name "-" version ".tar.gz"))
3096 (sha256
3097 (base32
3098 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3099 (build-system emacs-build-system)
3100 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3101 (synopsis "Automatic and manual symbol highlighting for Emacs")
3102 (description
3103 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3104 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3105 the symbol at point highlighted.
3106
3107 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3108 @code{highlight-symbol-next-in-defun} and
3109 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3110 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3111 bindings @code{M-p} and @code{M-p} for navigation. When
3112 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3113 regardless of @code{highlight-symbol-idle-delay}.
3114
3115 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3116 (license license:gpl2+)))
3117
3118 (define-public emacs-hl-todo
3119 (package
3120 (name "emacs-hl-todo")
3121 (version "1.8.0")
3122 (source (origin
3123 (method url-fetch)
3124 (uri (string-append
3125 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3126 version "/hl-todo.el"))
3127 (file-name (string-append "hl-todo-" version ".el"))
3128 (sha256
3129 (base32
3130 "0g0h9v4572p7mcird8wsj1c41haf60krslm6mlpi4mdbh248kv6z"))))
3131 (build-system emacs-build-system)
3132 (home-page "https://github.com/tarsius/hl-todo")
3133 (synopsis "Emacs mode to highlight TODO and similar keywords")
3134 (description
3135 "This package provides an Emacs mode to highlight TODO and similar
3136 keywords in comments and strings. This package also provides commands for
3137 moving to the next or previous keyword and to invoke @code{occur} with a
3138 regexp that matches all known keywords.")
3139 (license license:gpl3+)))
3140
3141 (define-public emacs-perspective
3142 (package
3143 (name "emacs-perspective")
3144 (version "1.12")
3145 (source
3146 (origin
3147 (method url-fetch)
3148 (uri (string-append "https://github.com/nex3/perspective-el/"
3149 "archive/" version ".tar.gz"))
3150 (file-name (string-append name "-" version ".tar.gz"))
3151 (sha256
3152 (base32
3153 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3154 (build-system emacs-build-system)
3155 (home-page "https://github.com/nex3/perspective-el")
3156 (synopsis "Switch between named \"perspectives\"")
3157 (description
3158 "This package provides tagged workspaces in Emacs, similar to workspaces in
3159 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3160 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3161 perspective is composed of a window configuration and a set of buffers.
3162 Switching to a perspective activates its window configuration, and when in a
3163 perspective only its buffers are available by default.")
3164 ;; This package is released under the same license as Emacs (GPLv3+) or
3165 ;; the Expat license.
3166 (license license:gpl3+)))
3167
3168 (define-public emacs-request
3169 (package
3170 (name "emacs-request")
3171 (version "0.3.0")
3172 (source (origin
3173 (method git-fetch)
3174 (uri (git-reference
3175 (url "https://github.com/tkf/emacs-request.git")
3176 (commit (string-append "v" version))))
3177 (file-name (string-append name "-" version "-checkout"))
3178 (sha256
3179 (base32
3180 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3181 (build-system emacs-build-system)
3182 (home-page "https://github.com/tkf/emacs-request")
3183 (synopsis "Package for speaking HTTP in Emacs Lisp")
3184 (description "This package provides a HTTP request library with multiple
3185 backends. It supports url.el which is shipped with Emacs and the curl command
3186 line program.")
3187 (license license:gpl3+)))
3188
3189 (define-public emacs-rudel
3190 (package
3191 (name "emacs-rudel")
3192 (version "0.3.1")
3193 (source
3194 (origin
3195 (method url-fetch)
3196 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3197 version ".tar"))
3198 (sha256
3199 (base32
3200 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3201 (build-system emacs-build-system)
3202 (home-page "http://rudel.sourceforge.net/")
3203 (synopsis "Collaborative editing framework")
3204 (description
3205 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3206 is to share buffers with other users in order to edit the contents of those
3207 buffers collaboratively. Rudel supports multiple backends to enable
3208 communication with other collaborative editors using different protocols,
3209 though currently Obby (for use with the Gobby editor) is the only
3210 fully-functional one.")
3211 (license license:gpl3+)))
3212
3213 (define-public emacs-hydra
3214 (package
3215 (name "emacs-hydra")
3216 (version "0.14.0")
3217 (source
3218 (origin
3219 (method url-fetch)
3220 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
3221 version ".tar.gz"))
3222 (file-name (string-append name "-" version ".tar.gz"))
3223 (sha256
3224 (base32
3225 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8"))))
3226 (build-system emacs-build-system)
3227 (home-page "https://github.com/abo-abo/hydra")
3228 (synopsis "Make Emacs bindings that stick around")
3229 (description
3230 "This package can be used to tie related commands into a family of short
3231 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3232 the prefixed binding), all the heads can be called in succession with only a
3233 short extension. Any binding that isn't the Hydra's head vanquishes the
3234 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3235 serve its original purpose, calling the command assigned to it. This makes
3236 the Hydra very seamless; it's like a minor mode that disables itself
3237 automatically.")
3238 (license license:gpl3+)))
3239
3240 (define-public emacs-ivy
3241 (package
3242 (name "emacs-ivy")
3243 (version "0.10.0")
3244 (source
3245 (origin
3246 (method git-fetch)
3247 (uri (git-reference
3248 (url "https://github.com/abo-abo/swiper.git")
3249 (commit version)))
3250 (file-name (string-append name "-" version "-checkout"))
3251 (sha256
3252 (base32
3253 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
3254 (build-system emacs-build-system)
3255 (arguments
3256 `(#:phases
3257 (modify-phases %standard-phases
3258 (add-after 'install 'install-doc
3259 (lambda* (#:key outputs #:allow-other-keys)
3260 (let* ((out (assoc-ref outputs "out"))
3261 (info (string-append out "/share/info")))
3262 (with-directory-excursion "doc"
3263 (unless (zero? (system* "makeinfo" "ivy.texi"))
3264 (error "makeinfo failed"))
3265 (install-file "ivy.info" info))))))))
3266 (propagated-inputs
3267 `(("emacs-hydra" ,emacs-hydra)))
3268 (native-inputs
3269 `(("texinfo" ,texinfo)))
3270 (home-page "http://oremacs.com/swiper/")
3271 (synopsis "Incremental vertical completion for Emacs")
3272 (description
3273 "This package provides @code{ivy-read} as an alternative to
3274 @code{completing-read} and similar functions. No attempt is made to determine
3275 the best candidate. Instead, the user can navigate candidates with
3276 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3277 splitting the input text by spaces and re-building it into a regular
3278 expression.")
3279 (license license:gpl3+)))
3280
3281 (define-public emacs-avy
3282 (package
3283 (name "emacs-avy")
3284 (version "0.4.0")
3285 (source
3286 (origin
3287 (method url-fetch)
3288 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3289 version ".tar.gz"))
3290 (file-name (string-append name "-" version ".tar.gz"))
3291 (sha256
3292 (base32
3293 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3294 (build-system emacs-build-system)
3295 (home-page "https://github.com/abo-abo/avy")
3296 (synopsis "Tree-based completion for Emacs")
3297 (description
3298 "This package provides a generic completion method based on building a
3299 balanced decision tree with each candidate being a leaf. To traverse the tree
3300 from the root to a desired leaf, typically a sequence of @code{read-key} can
3301 be used.
3302
3303 In order for @code{read-key} to make sense, the tree needs to be visualized
3304 appropriately, with a character at each branch node. So this completion
3305 method works only for things that you can see on your screen, all at once,
3306 such as the positions of characters, words, line beginnings, links, or
3307 windows.")
3308 (license license:gpl3+)))
3309
3310 (define-public emacs-ace-window
3311 (package
3312 (name "emacs-ace-window")
3313 (version "0.9.0")
3314 (source
3315 (origin
3316 (method url-fetch)
3317 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3318 version ".tar.gz"))
3319 (file-name (string-append name "-" version ".tar.gz"))
3320 (sha256
3321 (base32
3322 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3323 (build-system emacs-build-system)
3324 (propagated-inputs
3325 `(("emacs-avy" ,emacs-avy)))
3326 (home-page "https://github.com/abo-abo/ace-window")
3327 (synopsis "Quickly switch windows in Emacs")
3328 (description
3329 "@code{ace-window} is meant to replace @code{other-window}.
3330 In fact, when there are only two windows present, @code{other-window} is
3331 called. If there are more, each window will have its first character
3332 highlighted. Pressing that character will switch to that window.")
3333 (license license:gpl3+)))
3334
3335 (define-public emacs-iedit
3336 (package
3337 (name "emacs-iedit")
3338 (version "0.9.9.9")
3339 (source
3340 (origin
3341 (method url-fetch)
3342 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3343 version ".tar.gz"))
3344 (file-name (string-append name "-" version ".tar.gz"))
3345 (sha256
3346 (base32
3347 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3348 (build-system emacs-build-system)
3349 (home-page "http://www.emacswiki.org/emacs/Iedit")
3350 (synopsis "Edit multiple regions in the same way simultaneously")
3351 (description
3352 "This package is an Emacs minor mode and allows you to edit one
3353 occurrence of some text in a buffer (possibly narrowed) or region, and
3354 simultaneously have other occurrences edited in the same way.
3355
3356 You can also use Iedit mode as a quick way to temporarily show only the buffer
3357 lines that match the current text being edited. This gives you the effect of
3358 a temporary @code{keep-lines} or @code{occur}.")
3359 (license license:gpl3+)))
3360
3361 (define-public emacs-lispy
3362 (package
3363 (name "emacs-lispy")
3364 (version "0.26.0")
3365 (source
3366 (origin
3367 (method url-fetch)
3368 (uri (string-append "https://github.com/abo-abo/lispy/archive/"
3369 version ".tar.gz"))
3370 (file-name (string-append name "-" version ".tar.gz"))
3371 (sha256
3372 (base32
3373 "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl"))))
3374 (build-system emacs-build-system)
3375 (propagated-inputs
3376 `(("emacs-ace-window" ,emacs-ace-window)
3377 ("emacs-iedit" ,emacs-iedit)
3378 ("emacs-ivy" ,emacs-ivy)
3379 ("emacs-hydra" ,emacs-hydra)))
3380 (home-page "https://github.com/abo-abo/lispy")
3381 (synopsis "Modal S-expression editing")
3382 (description
3383 "Due to the structure of Lisp syntax it's very rare for the programmer to
3384 want to insert characters right before \"(\" or right after \")\". Thus
3385 unprefixed printable characters can be used to call commands when the point is
3386 at one of these special locations. Lispy provides unprefixed keybindings for
3387 S-expression editing when point is at the beginning or end of an
3388 S-expression.")
3389 (license license:gpl3+)))
3390
3391 (define-public emacs-clojure-mode
3392 (package
3393 (name "emacs-clojure-mode")
3394 (version "5.4.0")
3395 (source (origin
3396 (method url-fetch)
3397 (uri (string-append
3398 "https://github.com/clojure-emacs/clojure-mode/archive/"
3399 version ".tar.gz"))
3400 (file-name (string-append name "-" version ".tar.gz"))
3401 (sha256
3402 (base32
3403 "117mvjqh4nm8mvmwmmvy4qmkdg23ldlzk08y91g8b8ac8kxwqg81"))))
3404 (build-system emacs-build-system)
3405 (native-inputs
3406 `(("emacs-dash" ,emacs-dash)
3407 ("emacs-s" ,emacs-s)
3408 ("ert-runner" ,ert-runner)))
3409 (arguments
3410 `(#:phases
3411 (modify-phases %standard-phases
3412 (add-after 'install 'check
3413 (lambda _
3414 (zero? (system* "ert-runner")))))))
3415 (home-page "https://github.com/clojure-emacs/clojure-mode")
3416 (synopsis "Major mode for Clojure code")
3417 (description
3418 "This Emacs package provides font-lock, indentation, navigation and basic
3419 refactoring for the @uref{http://clojure.org, Clojure programming language}.
3420 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
3421 (license license:gpl3+)))
3422
3423 (define-public emacs-epl
3424 (package
3425 (name "emacs-epl")
3426 (version "0.8")
3427 (source (origin
3428 (method url-fetch)
3429 (uri (string-append
3430 "https://github.com/cask/epl/archive/"
3431 version ".tar.gz"))
3432 (sha256
3433 (base32
3434 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
3435 (build-system emacs-build-system)
3436 (home-page "https://github.com/cask/epl")
3437 (synopsis "Emacs Package Library")
3438 (description
3439 "A package management library for Emacs, based on @code{package.el}.
3440
3441 The purpose of this library is to wrap all the quirks and hassle of
3442 @code{package.el} into a sane API.")
3443 (license license:gpl3+)))
3444
3445 (define-public emacs-queue
3446 (package
3447 (name "emacs-queue")
3448 (version "0.2")
3449 (source (origin
3450 (method url-fetch)
3451 (uri (string-append "https://elpa.gnu.org/packages/queue-"
3452 version ".el"))
3453 (sha256
3454 (base32
3455 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
3456 (build-system emacs-build-system)
3457 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
3458 (synopsis "Queue data structure for Emacs")
3459 (description
3460 "This Emacs library provides queue data structure. These queues can be
3461 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
3462 stack, i.e. elements can be added to the front or back of the queue, and can
3463 be removed from the front. This type of data structure is sometimes called an
3464 \"output-restricted deque\".")
3465 (license license:gpl3+)))
3466
3467 (define-public emacs-pkg-info
3468 (package
3469 (name "emacs-pkg-info")
3470 (version "0.6")
3471 (source (origin
3472 (method url-fetch)
3473 (uri (string-append
3474 "https://github.com/lunaryorn/pkg-info.el/archive/"
3475 version ".tar.gz"))
3476 (file-name (string-append name "-" version ".tar.gz"))
3477 (sha256
3478 (base32
3479 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
3480 (build-system emacs-build-system)
3481 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
3482 (home-page "https://github.com/lunaryorn/pkg-info.el")
3483 (synopsis "Information about Emacs packages")
3484 (description
3485 "This library extracts information from the installed Emacs packages.")
3486 (license license:gpl3+)))
3487
3488 (define-public emacs-spinner
3489 (package
3490 (name "emacs-spinner")
3491 (version "1.7.3")
3492 (source (origin
3493 (method url-fetch)
3494 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
3495 version ".el"))
3496 (sha256
3497 (base32
3498 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
3499 (build-system emacs-build-system)
3500 (home-page "https://github.com/Malabarba/spinner.el")
3501 (synopsis "Emacs mode-line spinner for operations in progress")
3502 (description
3503 "This Emacs package adds spinners and progress-bars to the mode-line for
3504 ongoing operations.")
3505 (license license:gpl3+)))
3506
3507 (define-public emacs-sparql-mode
3508 (package
3509 (name "emacs-sparql-mode")
3510 (version "2.0.1")
3511 (source (origin
3512 (method url-fetch)
3513 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
3514 "v" version ".tar.gz"))
3515 (file-name (string-append name "-" version ".tar.gz"))
3516 (sha256
3517 (base32
3518 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
3519 (build-system emacs-build-system)
3520 (home-page "https://github.com/ljos/sparql-mode")
3521 (synopsis "SPARQL mode for Emacs")
3522 (description "This package provides a major mode for Emacs that provides
3523 syntax highlighting for SPARQL. It also provides a way to execute queries
3524 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
3525 possible to query other endpoints like DBPedia.")
3526 (license license:gpl3+)))
3527
3528 (define-public emacs-better-defaults
3529 (package
3530 (name "emacs-better-defaults")
3531 (version "0.1.3")
3532 (source
3533 (origin
3534 (method url-fetch)
3535 (uri (string-append "https://github.com/technomancy/better-defaults"
3536 "/archive/" version ".tar.gz"))
3537 (file-name (string-append name "-" version ".tar.gz"))
3538 (sha256
3539 (base32
3540 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
3541 (build-system emacs-build-system)
3542 (home-page "https://github.com/technomancy/better-defaults")
3543 (synopsis "Better defaults for Emacs")
3544 (description
3545 "Better defaults attempts to address the most obvious deficiencies of the
3546 Emacs default configuration in uncontroversial ways that nearly everyone can
3547 agree upon.")
3548 (license license:gpl3+)))
3549
3550 (define-public emacs-eprime
3551 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
3552 (package
3553 (name "emacs-eprime")
3554 (version (string-append "20140513-" (string-take commit 7)))
3555 (source (origin
3556 (method url-fetch)
3557 (uri (string-append "https://raw.githubusercontent.com"
3558 "/AndrewHynes/eprime-mode/"
3559 commit "/eprime-mode.el"))
3560 (file-name (string-append "eprime-" version ".el"))
3561 (sha256
3562 (base32
3563 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
3564 (build-system emacs-build-system)
3565 (home-page "https://github.com/AndrewHynes/eprime-mode")
3566 (synopsis "E-prime checking mode for Emacs")
3567 (description "This package provides an E-prime checking mode for Emacs
3568 that highlights non-conforming text. The subset of the English language called
3569 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
3570 (license license:gpl3+))))
3571
3572 (define-public emacs-julia-mode
3573 ;; XXX: Upstream version remained stuck at 0.3. See
3574 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
3575 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
3576 (revision "1"))
3577 (package
3578 (name "emacs-julia-mode")
3579 (version (string-append "0.3-" revision "." (string-take commit 8)))
3580 (source
3581 (origin
3582 (method git-fetch)
3583 (uri (git-reference
3584 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
3585 (commit commit)))
3586 (file-name (string-append name "-" version "-checkout"))
3587 (sha256
3588 (base32
3589 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
3590 (build-system emacs-build-system)
3591 (arguments
3592 `(#:phases
3593 (modify-phases %standard-phases
3594 (add-before 'install 'check
3595 (lambda _
3596 (zero? (system* "emacs" "-batch"
3597 "-l" "julia-mode.el"
3598 "-l" "julia-mode-tests.el"
3599 "-f" "ert-run-tests-batch-and-exit")))))))
3600 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
3601 (synopsis "Major mode for Julia")
3602 (description "This Emacs package provides a mode for the Julia
3603 programming language.")
3604 (license license:expat))))
3605
3606 (define-public emacs-ess
3607 (package
3608 (name "emacs-ess")
3609 (version "16.10")
3610 (source (origin
3611 (method url-fetch)
3612 (uri (string-append "http://ess.r-project.org/downloads/ess/ess-"
3613 version ".tgz"))
3614 (sha256
3615 (base32
3616 "04m8lwp3ylh2vl7k2bjjs7mxbm64j4sdckqpvnm9k0qhaqf02pjk"))
3617 (modules '((guix build utils)))
3618 (snippet
3619 '(begin
3620 ;; Stop ESS from trying to bundle an external julia-mode.el.
3621 (substitute* "lisp/Makefile"
3622 (("^\tjulia-mode.elc\\\\\n") "")
3623 (("^all: \\$\\(ELC\\) ess-custom.el julia-mode.el")
3624 "all: $(ELC) ess-custom.el"))))))
3625 (build-system gnu-build-system)
3626 (arguments
3627 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
3628 `(#:make-flags (list (string-append "PREFIX=" %output)
3629 (string-append "ETCDIR=" %output "/"
3630 ,base-directory "/etc")
3631 (string-append "LISPDIR=" %output "/"
3632 ,base-directory))
3633 #:phases
3634 (modify-phases %standard-phases
3635 (delete 'configure)
3636 (add-before 'build 'more-shebang-patching
3637 (lambda* (#:key inputs #:allow-other-keys)
3638 (substitute* "Makeconf"
3639 (("SHELL = /bin/sh")
3640 (string-append "SHELL = " (which "sh"))))))
3641 ;; FIXME: the texlive-union insists on regenerating fonts. It stores
3642 ;; them in HOME, so it needs to be writeable.
3643 (add-before 'build 'set-HOME
3644 (lambda _ (setenv "HOME" "/tmp") #t))
3645 (replace 'check
3646 (lambda _
3647 (zero? (system* "make" "test"))))))))
3648 (inputs
3649 `(("emacs" ,emacs-minimal)
3650 ("r-minimal" ,r-minimal)))
3651 (native-inputs
3652 `(("perl" ,perl)
3653 ("texinfo" ,texinfo)
3654 ("texlive" ,(texlive-union (list texlive-latex-natbib
3655 texlive-latex-seminar
3656 texlive-latex-hyperref
3657 texlive-tex-texinfo)))))
3658 (home-page "http://ess.r-project.org/")
3659 (synopsis "Emacs mode for statistical analysis programs")
3660 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
3661 Emacs. It is designed to support editing of scripts and interaction with
3662 various statistical analysis programs such as R and OpenBUGS.")
3663 (license license:gpl2+)))
3664
3665 (define-public emacs-smex
3666 (package
3667 (name "emacs-smex")
3668 (version "3.0")
3669 (source (origin
3670 (method url-fetch)
3671 (uri (string-append "https://raw.githubusercontent.com"
3672 "/nonsequitur/smex/" version "/smex.el"))
3673 (file-name (string-append "smex-" version ".el"))
3674 (sha256
3675 (base32
3676 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
3677 (build-system emacs-build-system)
3678 (home-page "https://github.com/nonsequitur/smex/")
3679 (synopsis "M-x interface with Ido-style fuzzy matching")
3680 (description
3681 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
3682 convenient interface to your recently and most frequently used commands. And
3683 to all the other commands, too.")
3684 (license license:gpl3+)))
3685
3686 (define-public emacs-js2-mode
3687 (package
3688 (name "emacs-js2-mode")
3689 (version "20150909")
3690 (source (origin
3691 (method url-fetch)
3692 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
3693 version ".tar.gz"))
3694 (file-name (string-append name "-" version ".tar.gz"))
3695 (sha256
3696 (base32
3697 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
3698 (build-system emacs-build-system)
3699 (home-page "https://github.com/mooz/js2-mode/")
3700 (synopsis "Improved JavaScript editing mode for Emacs")
3701 (description
3702 "Js2-mode provides a JavaScript major mode for Emacs that is more
3703 advanced than the built-in javascript-mode. Features include accurate syntax
3704 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
3705 errors and strict-mode warnings, smart line-wrapping within comments and
3706 strings, and code folding.")
3707 (license license:gpl3+)))
3708
3709 (define-public emacs-markdown-mode
3710 (package
3711 (name "emacs-markdown-mode")
3712 (version "2.3")
3713 (source (origin
3714 (method url-fetch)
3715 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
3716 "/markdown-mode/v" version
3717 "/markdown-mode.el"))
3718 (file-name (string-append "markdown-mode-" version ".el"))
3719 (sha256
3720 (base32
3721 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
3722 (build-system emacs-build-system)
3723 (home-page "http://jblevins.org/projects/markdown-mode/")
3724 (synopsis "Emacs Major mode for Markdown files")
3725 (description
3726 "Markdown-mode is a major mode for editing Markdown-formatted text files
3727 in Emacs.")
3728 (license license:gpl3+)))
3729
3730 (define-public emacs-projectile
3731 (package
3732 (name "emacs-projectile")
3733 (version "0.14.0")
3734 (source (origin
3735 (method url-fetch)
3736 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
3737 "/projectile/v" version "/projectile.el"))
3738 (file-name (string-append "projectile-" version ".el"))
3739 (sha256
3740 (base32
3741 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
3742 (build-system emacs-build-system)
3743 (propagated-inputs
3744 `(("emacs-dash" ,emacs-dash)
3745 ("emacs-pkg-info" ,emacs-pkg-info)))
3746 (home-page "https://github.com/bbatsov/projectile")
3747 (synopsis "Manage and navigate projects in Emacs easily")
3748 (description
3749 "This library provides easy project management and navigation. The
3750 concept of a project is pretty basic - just a folder containing special file.
3751 Currently git, mercurial and bazaar repos are considered projects by default.
3752 If you want to mark a folder manually as a project just create an empty
3753 .projectile file in it.")
3754 (license license:gpl3+)))
3755
3756 (define-public emacs-elfeed
3757 (package
3758 (name "emacs-elfeed")
3759 (version "2.2.0")
3760 (source (origin
3761 (method url-fetch)
3762 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
3763 version ".tar.gz"))
3764 (file-name (string-append name "-" version ".tar.gz"))
3765 (sha256
3766 (base32
3767 "0d7i93l3b0ck3iad9ddqp7sqa8w16hnamrby8bwvl316rqk4lzlf"))))
3768 (build-system emacs-build-system)
3769 (arguments
3770 `(#:phases
3771 (modify-phases %standard-phases
3772 (add-before 'install 'check
3773 (lambda _
3774 (zero? (system* "make" "test")))))))
3775 (home-page "https://github.com/skeeto/elfeed")
3776 (synopsis "Atom/RSS feed reader for Emacs")
3777 (description
3778 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
3779 and RSS, with a user interface inspired by notmuch.")
3780 (license license:gpl3+)))
3781
3782 (define-public emacs-rainbow-delimiters
3783 (package
3784 (name "emacs-rainbow-delimiters")
3785 (version "2.1.3")
3786 (source (origin
3787 (method url-fetch)
3788 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3789 "/rainbow-delimiters/" version
3790 "/rainbow-delimiters.el"))
3791 (file-name (string-append "rainbow-delimiters-" version ".el"))
3792 (sha256
3793 (base32
3794 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
3795 (build-system emacs-build-system)
3796 (home-page "https://github.com/Fanael/rainbow-delimiters")
3797 (synopsis "Highlight brackets according to their depth")
3798 (description
3799 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
3800 highlights parentheses, brackets, and braces according to their depth. Each
3801 successive level is highlighted in a different color, making it easy to spot
3802 matching delimiters, orient yourself in the code, and tell which statements
3803 are at a given level.")
3804 (license license:gpl3+)))
3805
3806 (define-public emacs-rainbow-identifiers
3807 (package
3808 (name "emacs-rainbow-identifiers")
3809 (version "0.2.2")
3810 (source (origin
3811 (method url-fetch)
3812 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3813 "/rainbow-identifiers/" version
3814 "/rainbow-identifiers.el"))
3815 (file-name (string-append "rainbow-identifiers-" version ".el"))
3816 (sha256
3817 (base32
3818 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
3819 (build-system emacs-build-system)
3820 (home-page "https://github.com/Fanael/rainbow-identifiers")
3821 (synopsis "Highlight identifiers in source code")
3822 (description
3823 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
3824 identifiers based on their names. Each identifier gets a color based on a hash
3825 of its name.")
3826 (license license:bsd-2)))
3827
3828 (define-public emacs-rainbow-mode
3829 (package
3830 (name "emacs-rainbow-mode")
3831 (version "0.13")
3832 (source (origin
3833 (method url-fetch)
3834 (uri (string-append
3835 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
3836 (sha256
3837 (base32
3838 "1d3aamx6qgqqpqijwsr02ggwrh67gfink1bir0692alfkm3zdddl"))))
3839 (build-system emacs-build-system)
3840 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
3841 (synopsis "Colorize color names in buffers")
3842 (description
3843 "This minor mode sets background color to strings that match color
3844 names, e.g. #0000ff is displayed in white with a blue background.")
3845 (license license:gpl3+)))
3846
3847 (define-public emacs-visual-fill-column
3848 (package
3849 (name "emacs-visual-fill-column")
3850 (version "1.11")
3851 (source (origin
3852 (method url-fetch)
3853 (uri (string-append "https://codeload.github.com/joostkremers/"
3854 "visual-fill-column/tar.gz/" version))
3855 (file-name (string-append name "-" version ".tar.gz"))
3856 (sha256
3857 (base32
3858 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
3859 (build-system emacs-build-system)
3860 (home-page "https://github.com/joostkremers/visual-fill-column")
3861 (synopsis "Fill-column for visual-line-mode")
3862 (description
3863 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
3864 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
3865 wrapping lines at the window edge, which is the standard behaviour of
3866 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
3867 @code{fill-column} is too large for the window, the text is wrapped at the
3868 window edge.")
3869 (license license:gpl3+)))
3870
3871 (define-public emacs-writeroom
3872 (package
3873 (name "emacs-writeroom")
3874 (version "3.7")
3875 (source (origin
3876 (method url-fetch)
3877 (uri (string-append
3878 "https://github.com/joostkremers/writeroom-mode/archive/"
3879 version ".tar.gz"))
3880 (file-name (string-append name "-" version ".tar.gz"))
3881 (sha256
3882 (base32
3883 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
3884 (build-system emacs-build-system)
3885 (propagated-inputs
3886 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
3887 (home-page "https://github.com/joostkremers/writeroom-mode")
3888 (synopsis "Distraction-free writing for Emacs")
3889 (description
3890 "This package defines a minor mode for distraction-free writing. Some of
3891 the default effects include entering fullscreen, deleting other windows of the
3892 current frame, disabling the mode line, and adding margins to the buffer that
3893 restrict the text width to 80 characters.")
3894 (license license:bsd-3)))
3895
3896 (define-public emacs-ido-completing-read+
3897 (package
3898 (name "emacs-ido-completing-read+")
3899 (version "3.12")
3900 (source (origin
3901 (method url-fetch)
3902 (uri (string-append "https://raw.githubusercontent.com"
3903 "/DarwinAwardWinner/ido-ubiquitous/v"
3904 version "/ido-completing-read+.el"))
3905 (file-name (string-append "ido-completing-read+-" version ".el"))
3906 (sha256
3907 (base32
3908 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
3909 (build-system emacs-build-system)
3910 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3911 (synopsis "Replacement for completing-read using ido")
3912 (description
3913 "The ido-completing-read+ function is a wrapper for ido-completing-read.
3914 Importantly, it detects edge cases that ordinary ido cannot handle and either
3915 adjusts them so ido can handle them, or else simply falls back to the standard
3916 Emacs completion function instead.")
3917 (license license:gpl3+)))
3918
3919 (define-public emacs-ido-ubiquitous
3920 (package
3921 (name "emacs-ido-ubiquitous")
3922 (version "3.12")
3923 (source (origin
3924 (method url-fetch)
3925 (uri (string-append "https://raw.githubusercontent.com"
3926 "/DarwinAwardWinner/ido-ubiquitous/v"
3927 version "/ido-ubiquitous.el"))
3928 (file-name (string-append "ido-ubiquitous-" version ".el"))
3929 (sha256
3930 (base32
3931 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
3932 (build-system emacs-build-system)
3933 (propagated-inputs
3934 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
3935 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3936 (synopsis "Use ido (nearly) everywhere")
3937 (description
3938 "Ido-ubiquitous enables ido-style completion for almost every function
3939 that uses the standard completion function completing-read.")
3940 (license license:gpl3+)))
3941
3942 (define-public emacs-yaml-mode
3943 (package
3944 (name "emacs-yaml-mode")
3945 (version "0.0.13")
3946 (source (origin
3947 (method url-fetch)
3948 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
3949 "/yaml-mode/v" version "/yaml-mode.el"))
3950 (file-name (string-append "yaml-mode-" version ".el"))
3951 (sha256
3952 (base32
3953 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
3954 (build-system emacs-build-system)
3955 (home-page "https://github.com/yoshiki/yaml-mode")
3956 (synopsis "Major mode for editing YAML files")
3957 (description
3958 "Yaml-mode is an Emacs major mode for editing files in the YAML data
3959 serialization format. It was initially developed by Yoshiki Kurihara and many
3960 features were added by Marshall Vandegrift. As YAML and Python share the fact
3961 that indentation determines structure, this mode provides indentation and
3962 indentation command behavior very similar to that of python-mode.")
3963 (license license:gpl3+)))
3964
3965 (define-public emacs-web-mode
3966 (package
3967 (name "emacs-web-mode")
3968 (version "14")
3969 (source (origin
3970 (method url-fetch)
3971 (uri (string-append "https://raw.githubusercontent.com/fxbois"
3972 "/web-mode/v" version "/web-mode.el"))
3973 (file-name (string-append "web-mode-" version ".el"))
3974 (sha256
3975 (base32
3976 "086hik5fmxg3kx74qmransx9cz961qd22d4m6ah2dw6cwaj1s3s5"))))
3977 (build-system emacs-build-system)
3978 (synopsis "Major mode for editing web templates")
3979 (description "Web-mode is an Emacs major mode for editing web templates
3980 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
3981 client/server side engines). Web-mode is compatible with many template
3982 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
3983 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
3984 Dust.js, React/JSX, Angularjs, ejs, etc.")
3985 (home-page "http://web-mode.org/")
3986 (license license:gpl3+)))
3987
3988 (define-public emacs-wgrep
3989 (package
3990 (name "emacs-wgrep")
3991 (version "2.1.10")
3992 (source (origin
3993 (method url-fetch)
3994 (uri (string-append
3995 "https://github.com/mhayashi1120/Emacs-wgrep/archive/"
3996 version ".tar.gz"))
3997 (file-name (string-append name "-" version ".tar.gz"))
3998 (sha256
3999 (base32
4000 "1r2bpypar70xg6dsx12x1k74f39ww930rday7rgqpyknzsx1k4l1"))))
4001 (build-system emacs-build-system)
4002 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4003 (synopsis "Edit a grep buffer and apply those changes to the files")
4004 (description
4005 "Emacs wgrep allows you to edit a grep buffer and apply those changes to
4006 the file buffer.")
4007 (license license:gpl3+)))
4008
4009 (define-public emacs-helm
4010 (package
4011 (name "emacs-helm")
4012 (version "2.8.5")
4013 (source (origin
4014 (method url-fetch)
4015 (uri (string-append
4016 "https://github.com/" name "/helm/archive/v"
4017 version ".tar.gz"))
4018 (file-name (string-append name "-" version ".tar.gz"))
4019 (sha256
4020 (base32
4021 "15xlnjm9rsbn0xq7xc09y52h2kn41zwn7ldryammf6i46wl02kq3"))))
4022 (build-system emacs-build-system)
4023 (propagated-inputs
4024 `(("emacs-async" ,emacs-async)
4025 ("emacs-popup" ,emacs-popup)))
4026 (home-page "https://emacs-helm.github.io/helm/")
4027 (synopsis "Incremental completion and selection narrowing
4028 framework for Emacs")
4029 (description "Helm is incremental completion and selection narrowing
4030 framework for Emacs. It will help steer you in the right direction when
4031 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4032 of @code{anything.el} originally written by Tamas Patrovic and can be
4033 considered to be its successor. Helm sets out to clean up the legacy code in
4034 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4035 not tied in the trap of backward compatibility.")
4036 (license license:gpl3+)))
4037
4038 (define-public emacs-helm-swoop
4039 (package
4040 (name "emacs-helm-swoop")
4041 (version "1.7.2")
4042 (source (origin
4043 (method url-fetch)
4044 (uri (string-append
4045 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4046 version
4047 ".tar.gz"))
4048 (file-name (string-append name "-" version ".tar.gz"))
4049 (sha256
4050 (base32
4051 "1z34pfi0gsk054pxr906ilaalaw0xz3s536163gf9ykkwmc2356d"))))
4052 (build-system emacs-build-system)
4053 (propagated-inputs
4054 `(("emacs-helm" ,emacs-helm)))
4055 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4056 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4057 (description
4058 "This package builds on the Helm interface to provide several commands
4059 for search-based navigation of buffers.")
4060 (license license:gpl2+)))
4061
4062 (define-public emacs-helm-projectile
4063 (package
4064 (name "emacs-helm-projectile")
4065 (version "0.14.0")
4066 (source (origin
4067 (method url-fetch)
4068 (uri (string-append
4069 "https://github.com/bbatsov/helm-projectile/archive/v"
4070 version
4071 ".tar.gz"))
4072 (file-name (string-append name "-" version ".tar.gz"))
4073 (sha256
4074 (base32
4075 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
4076 (build-system emacs-build-system)
4077 (propagated-inputs
4078 `(("emacs-dash" ,emacs-dash)
4079 ("emacs-helm" ,emacs-helm)
4080 ("emacs-projectile" ,emacs-projectile)))
4081 (home-page "https://github.com/bbatsov/helm-projectile")
4082 (synopsis "Helm integration for Projectile")
4083 (description
4084 "This Emacs library provides a Helm interface for Projectile.")
4085 (license license:gpl3+)))
4086
4087 (define-public emacs-helm-make
4088 (let ((commit "21c1bfa01b16b0d656f2b8a0dbb5bc8d47a7641b")
4089 (revision "1"))
4090 (package
4091 (name "emacs-helm-make")
4092 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
4093 (source
4094 (origin
4095 (method git-fetch)
4096 (uri (git-reference
4097 (url "https://github.com/abo-abo/helm-make.git")
4098 (commit commit)))
4099 (file-name (string-append name "-" version "-checkout"))
4100 (sha256
4101 (base32
4102 "11vzrp63zdc67fg4d0y1alk8z9019sqslh2bd7ispk37s86dlbfw"))))
4103 (build-system emacs-build-system)
4104 (propagated-inputs
4105 `(("emacs-helm" ,emacs-helm)
4106 ("emacs-projectile" ,emacs-projectile)))
4107 (home-page "https://github.com/abo-abo/helm-make")
4108 (synopsis "Select a Makefile target with helm")
4109 (description "@code{helm-make} or @code{helm-make-projectile} will give
4110 you a @code{helm} selection of directory Makefile's targets. Selecting a
4111 target will call @code{compile} on it.")
4112 (license license:gpl3+))))
4113
4114 (define-public emacs-cider
4115 (package
4116 (name "emacs-cider")
4117 (version "0.15.1")
4118 (source (origin
4119 (method url-fetch)
4120 (uri (string-append
4121 "https://github.com/clojure-emacs/cider/archive/v"
4122 version ".tar.gz"))
4123 (file-name (string-append name "-" version ".tar.gz"))
4124 (sha256
4125 (base32
4126 "1j5hlmi14ypszv1f9nvq0jjlz7i742flg0ny3055l7i4x089xx6g"))))
4127 (build-system emacs-build-system)
4128 (arguments
4129 '(#:exclude ; Don't exclude 'cider-test.el'.
4130 '("^\\.dir-locals\\.el$" "^test/")))
4131 (propagated-inputs
4132 `(("emacs-clojure-mode" ,emacs-clojure-mode)
4133 ("emacs-spinner" ,emacs-spinner)
4134 ("emacs-pkg-info" ,emacs-pkg-info)
4135 ("emacs-queue" ,emacs-queue)))
4136 (home-page "https://cider.readthedocs.org/")
4137 (synopsis "Clojure development environment for Emacs")
4138 (description
4139 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
4140 provide an interactive development experience similar to the one you'd get
4141 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
4142 Geiser) and Smalltalk.
4143
4144 CIDER is the successor to the now deprecated combination of using SLIME +
4145 swank-clojure for Clojure development.
4146
4147 There are plenty of differences between CIDER and SLIME, but the core ideas
4148 are pretty much the same (and SLIME served as the principle inspiration for
4149 CIDER).")
4150 (license license:gpl3+)))
4151
4152 (define-public emacs-lua-mode
4153 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
4154 (revision "1"))
4155 (package
4156 (name "emacs-lua-mode")
4157 (version (string-append "20151025." revision "-" (string-take commit 9)))
4158 (home-page "https://github.com/immerrr/lua-mode/")
4159 (source (origin
4160 (method git-fetch)
4161 (uri (git-reference
4162 (url home-page)
4163 (commit commit)))
4164 (file-name (string-append name "-" version ".checkout"))
4165 (sha256
4166 (base32
4167 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
4168 (build-system emacs-build-system)
4169 (synopsis "Major mode for lua")
4170 (description
4171 "This Emacs package provides a mode for @uref{https://www.lua.org/,
4172 Lua programing language}.")
4173 (license license:gpl2+))))
4174
4175 (define-public emacs-ebuild-mode
4176 (package
4177 (name "emacs-ebuild-mode")
4178 (version "1.37")
4179 (source (origin
4180 (method url-fetch)
4181 (uri (string-append
4182 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
4183 "-" version ".tar.xz"))
4184 (file-name (string-append name "-" version ".tar.xz"))
4185 (sha256
4186 (base32
4187 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
4188 (build-system emacs-build-system)
4189 (home-page "https://devmanual.gentoo.org")
4190 (synopsis "Major modes for Gentoo package files")
4191 (description
4192 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
4193 news items, openrc and runscripts.")
4194 (license license:gpl2+)))
4195
4196 (define-public emacs-evil
4197 (package
4198 (name "emacs-evil")
4199 (version "1.2.13")
4200 (source
4201 (origin
4202 (method url-fetch)
4203 (uri (string-append "https://github.com/emacs-evil/evil/archive/"
4204 version ".tar.gz"))
4205 (file-name (string-append name "-" version ".tar.gz"))
4206 (sha256
4207 (base32
4208 "1z63zsxmsc6mh74wv6065carwqmgs7b7lz5044s12xvgsjfbwi8h"))))
4209 (build-system emacs-build-system)
4210 (propagated-inputs
4211 `(("emacs-undo-tree" ,emacs-undo-tree)
4212 ("emacs-goto-chg" ,emacs-goto-chg)))
4213 (home-page "https://github.com/emacs-evil/evil")
4214 (synopsis "Extensible Vi layer for Emacs")
4215 (description
4216 "Evil is an extensible vi layer for Emacs. It emulates the
4217 main features of Vim, and provides facilities for writing custom
4218 extensions.")
4219 (license license:gpl3+)))
4220
4221 (define-public emacs-goto-chg
4222 (package
4223 (name "emacs-goto-chg")
4224 (version "1.6")
4225 (source
4226 (origin
4227 (method url-fetch)
4228 ;; There is no versioned source.
4229 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
4230 (file-name (string-append "goto-chg-" version ".el"))
4231 (sha256
4232 (base32
4233 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
4234 (build-system emacs-build-system)
4235 ;; There is no other home page.
4236 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
4237 (synopsis "Go to the last change in the Emacs buffer")
4238 (description
4239 "This package provides @code{M-x goto-last-change} command that goes to
4240 the point of the most recent edit in the current Emacs buffer. When repeated,
4241 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
4242 used for reverse direction.")
4243 (license license:gpl2+)))
4244
4245 (define-public emacs-monroe
4246 (package
4247 (name "emacs-monroe")
4248 (version "0.3.1")
4249 (source
4250 (origin
4251 (method url-fetch)
4252 (uri (string-append "https://github.com/sanel/monroe/archive/"
4253 version ".tar.gz"))
4254 (file-name (string-append name "-" version ".tar.gz"))
4255 (sha256
4256 (base32
4257 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
4258 (build-system emacs-build-system)
4259 (home-page "https://github.com/sanel/monroe")
4260 (synopsis "Clojure nREPL client for Emacs")
4261 (description
4262 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
4263 distribution, primarily targeting Clojure users")
4264 (license license:gpl3+)))
4265
4266 (define-public emacs-writegood-mode
4267 (package
4268 (name "emacs-writegood-mode")
4269 (version "2.0.2")
4270 (home-page "https://github.com/bnbeckwith/writegood-mode")
4271 (source (origin
4272 (method git-fetch)
4273 (uri (git-reference
4274 (url home-page)
4275 (commit (string-append "v" version))))
4276 (sha256
4277 (base32
4278 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
4279 (file-name (string-append name "-checkout"))))
4280 (build-system emacs-build-system)
4281 (synopsis "Polish up poor writing on the fly")
4282 (description
4283 "This minor mode tries to find and highlight problems with your writing
4284 in English as you type. It primarily detects \"weasel words\" and abuse of
4285 passive voice.")
4286 (license license:gpl3+)))
4287
4288 (define-public emacs-neotree
4289 (package
4290 (name "emacs-neotree")
4291 (version "0.5.2")
4292 (home-page "https://github.com/jaypei/emacs-neotree")
4293 (source (origin
4294 (method url-fetch)
4295 (uri (string-append
4296 "https://github.com/jaypei/" name
4297 "/archive/" version ".tar.gz"))
4298 (sha256
4299 (base32
4300 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
4301 (file-name (string-append name "-" version ".tar.gz"))))
4302 (build-system emacs-build-system)
4303 (synopsis "Folder tree view for Emacs")
4304 (description "This Emacs package provides a folder tree view.")
4305 (license license:gpl3+)))
4306
4307 (define-public emacs-org
4308 (package
4309 (name "emacs-org")
4310 ;; emacs-org-contrib inherits from this package. Please update its sha256
4311 ;; checksum as well.
4312 (version "20180103")
4313 (source (origin
4314 (method url-fetch)
4315 (uri (string-append "https://orgmode.org/elpa/org-"
4316 version ".tar"))
4317 (sha256
4318 (base32
4319 "1hyw9sigcv9wn37y2icmhf1czf0s3dgvsmn36355l95zsw7hnvgj"))))
4320 (build-system emacs-build-system)
4321 (home-page "https://orgmode.org/")
4322 (synopsis "Outline-based notes management and organizer")
4323 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4324 lists, and project planning with a fast and effective plain-text system. It
4325 also is an authoring system with unique support for literate programming and
4326 reproducible research.")
4327 (license license:gpl3+)))
4328
4329 (define-public emacs-org-contrib
4330 (package
4331 (inherit emacs-org)
4332 (name "emacs-org-contrib")
4333 (source (origin
4334 (method url-fetch)
4335 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
4336 (package-version emacs-org) ".tar"))
4337 (sha256
4338 (base32
4339 "164i2asqh34p1g3iqsn7rziyxbi1ys8fwdmn7nsw5xph8qszv9zj"))))
4340 (arguments
4341 `(#:modules ((guix build emacs-build-system)
4342 (guix build utils)
4343 (guix build emacs-utils)
4344 (ice-9 ftw)
4345 (srfi srfi-1))
4346 #:phases
4347 (modify-phases %standard-phases
4348 (add-after 'install 'delete-org-files
4349 (lambda* (#:key inputs outputs #:allow-other-keys)
4350 (let* ((out (assoc-ref outputs "out"))
4351 (org (assoc-ref inputs "emacs-org"))
4352 (contrib-files
4353 (map basename (find-files out)))
4354 (org+contrib-files
4355 (map basename (find-files org)))
4356 (duplicates (lset-intersection
4357 string=? contrib-files org+contrib-files)))
4358 (with-directory-excursion
4359 (string-append
4360 out "/share/emacs/site-lisp/guix.d/org-contrib-"
4361 ,(package-version emacs-org))
4362 (for-each delete-file duplicates))
4363 #t))))))
4364 (propagated-inputs
4365 `(("emacs-org" ,emacs-org)))
4366 (synopsis "Contributed packages to Org mode")
4367 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4368 lists, and project planning with a fast and effective plain-text system.
4369
4370 This package is equivalent to org-plus-contrib, but only includes additional
4371 files that you would find in @file{contrib/} from the git repository.")))
4372
4373 (define-public emacs-flx
4374 (package
4375 (name "emacs-flx")
4376 (version "0.6.1")
4377 (source
4378 (origin
4379 (method url-fetch)
4380 (uri (string-append "https://github.com/lewang/"
4381 "flx/archive/v" version ".tar.gz"))
4382 (sha256
4383 (base32
4384 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
4385 (file-name (string-append name "-" version ".tar.gz"))))
4386 (build-system emacs-build-system)
4387 (home-page "https://github.com/lewang/flx")
4388 (synopsis "Fuzzy matching for Emacs")
4389 (description
4390 "Flx provides fuzzy matching for emacs a la sublime text.
4391 The sorting algorithm is a balance between word beginnings (abbreviation)
4392 and contiguous matches (substring). The longer the substring match,
4393 the higher it scores. This maps well to how we think about matching.
4394 Flx has support for ido (interactively do things) through flx-ido.")
4395 (license license:gpl3+)))
4396
4397 (define-public emacs-cyberpunk-theme
4398 (package
4399 (name "emacs-cyberpunk-theme")
4400 (version "1.19")
4401 (source
4402 (origin
4403 (method url-fetch)
4404 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
4405 "archive/" version ".tar.gz"))
4406 (sha256
4407 (base32
4408 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
4409 (file-name (string-append name "-" version ".tar.gz"))))
4410 (build-system emacs-build-system)
4411 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
4412 (synopsis "Cyberpunk theme for emacs built-in color theme support")
4413 (description
4414 "Cyberpunk color theme for the emacs 24+ built-in color theme support
4415 known loosely as deftheme. Many mode-specific customizations are included.")
4416 (license license:gpl3+)))
4417
4418 (define-public emacs-danneskjold-theme
4419 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
4420 (revision "1"))
4421 (package
4422 (name "emacs-danneskjold-theme")
4423 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4424 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
4425 (source
4426 (origin
4427 (method git-fetch)
4428 (uri (git-reference
4429 (url home-page)
4430 (commit commit)))
4431 (file-name (string-append name "-" version "-checkout"))
4432 (sha256
4433 (base32
4434 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
4435 (build-system emacs-build-system)
4436 (arguments
4437 `(#:phases
4438 (modify-phases %standard-phases
4439 (add-after 'unpack 'delete-screenshots
4440 (lambda _
4441 (delete-file-recursively "screenshots") #t)))))
4442 (synopsis "High-contrast Emacs theme")
4443 (description
4444 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
4445 (license license:gpl3+))))
4446
4447 (define-public emacs-dream-theme
4448 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
4449 (revision "1"))
4450 (package
4451 (name "emacs-dream-theme")
4452 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4453 (source
4454 (origin
4455 (method git-fetch)
4456 (uri (git-reference
4457 (url "https://github.com/djcb/dream-theme")
4458 (commit commit)))
4459 (file-name (string-append name "-" version "-checkout"))
4460 (sha256
4461 (base32
4462 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
4463 (build-system emacs-build-system)
4464 (home-page "https://github.com/djcb/dream-theme")
4465 (synopsis "High-contrast Emacs theme")
4466 (description
4467 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
4468 by zenburn, sinburn and similar themes, but slowly diverging from them.")
4469 (license license:gpl3+))))
4470
4471 (define-public emacs-auto-complete
4472 (package
4473 (name "emacs-auto-complete")
4474 (version "1.5.1")
4475 (source
4476 (origin
4477 (method url-fetch)
4478 (uri (string-append "https://github.com/auto-complete/"
4479 "auto-complete/archive/v" version ".tar.gz"))
4480 (sha256
4481 (base32
4482 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
4483 (file-name (string-append name "-" version ".tar.gz"))))
4484 (build-system emacs-build-system)
4485 (propagated-inputs
4486 `(("emacs-popup" ,emacs-popup)))
4487 (home-page "https://github.com/auto-complete/auto-complete")
4488 (synopsis "Intelligent auto-completion extension for Emacs")
4489 (description
4490 "Auto-Complete is an intelligent auto-completion extension for Emacs.
4491 It extends the standard Emacs completion interface and provides an environment
4492 that allows users to concentrate more on their own work. Its features are:
4493 a visual interface, reduce overhead of completion by using statistic method,
4494 extensibility.")
4495 (license license:gpl3+)))
4496
4497 (define-public m17n-db
4498 (package
4499 (name "m17n-db")
4500 (version "1.7.0")
4501 (source
4502 (origin
4503 (method url-fetch)
4504 (uri (string-append "mirror://savannah/m17n/m17n-db-"
4505 version ".tar.gz"))
4506 (sha256
4507 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
4508 (build-system gnu-build-system)
4509 (inputs
4510 `(("gettext" ,gettext-minimal)))
4511 (arguments
4512 `(#:configure-flags
4513 (list (string-append "--with-charmaps="
4514 (assoc-ref %build-inputs "libc")
4515 "/share/i18n/charmaps"))))
4516 ;; With `guix lint' the home-page URI returns a small page saying
4517 ;; that your browser does not handle frames. This triggers the "URI
4518 ;; returns suspiciously small file" warning.
4519 (home-page "http://www.nongnu.org/m17n/")
4520 (synopsis "Multilingual text processing library (database)")
4521 (description "The m17n library realizes multilingualization of
4522 many aspects of applications. The m17n library represents
4523 multilingual text as an object named M-text. M-text is a string with
4524 attributes called text properties, and designed to substitute for
4525 string in C. Text properties carry any information required to input,
4526 display and edit the text.
4527
4528 This package contains the library database.")
4529 (license license:lgpl2.1+)))
4530
4531 (define-public m17n-lib
4532 (package
4533 (name "m17n-lib")
4534 (version "1.7.0")
4535 (source
4536 (origin
4537 (method url-fetch)
4538 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
4539 version ".tar.gz"))
4540 (sha256
4541 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
4542 (build-system gnu-build-system)
4543 (inputs
4544 `(("fribidi" ,fribidi)
4545 ("gd" ,gd)
4546 ("libotf" ,libotf)
4547 ("libxft" ,libxft)
4548 ("libxml2" ,libxml2)
4549 ("m17n-db" ,m17n-db)))
4550 (arguments
4551 `(#:parallel-build? #f))
4552 ;; With `guix lint' the home-page URI returns a small page saying
4553 ;; that your browser does not handle frames. This triggers the "URI
4554 ;; returns suspiciously small file" warning.
4555 (home-page "http://www.nongnu.org/m17n/")
4556 (synopsis "Multilingual text processing library (runtime)")
4557 (description "The m17n library realizes multilingualization of
4558 many aspects of applications. The m17n library represents
4559 multilingual text as an object named M-text. M-text is a string with
4560 attributes called text properties, and designed to substitute for
4561 string in C. Text properties carry any information required to input,
4562 display and edit the text.
4563
4564 This package contains the library runtime.")
4565 (license license:lgpl2.1+)))
4566
4567 (define-public emacs-nginx-mode
4568 (package
4569 (name "emacs-nginx-mode")
4570 (version "1.1.4")
4571 (source
4572 (origin
4573 (method url-fetch)
4574 (uri (string-append
4575 "https://github.com/ajc/nginx-mode/archive/v"
4576 version ".tar.gz"))
4577 (file-name (string-append name "-" version ".tar.gz"))
4578 (sha256
4579 (base32
4580 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
4581 (build-system emacs-build-system)
4582 (home-page "https://github.com/ajc/nginx-mode")
4583 (synopsis "Emacs major mode for editing nginx config files")
4584 (description "This package provides an Emacs major mode for
4585 editing nginx config files.")
4586 (license license:gpl2+)))
4587
4588 (define-public emacs-stream
4589 (package
4590 (name "emacs-stream")
4591 (version "2.2.0")
4592 (home-page "https://github.com/NicolasPetton/stream")
4593 (source
4594 (origin
4595 (method url-fetch)
4596 (file-name (string-append name "-" version ".tar.gz"))
4597 (uri (string-append home-page "/archive/"version ".tar.gz"))
4598 (sha256
4599 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
4600 (build-system emacs-build-system)
4601 (synopsis "Implementation of streams for Emacs")
4602 (description "This library provides an implementation of streams for Emacs.
4603 Streams are implemented as delayed evaluation of cons cells.")
4604 (license license:gpl3+)))
4605
4606 (define-public emacs-el-search
4607 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
4608 (revision "1"))
4609 (package
4610 (name "emacs-el-search")
4611 ;; No ufficial release.
4612 (version (string-append "0.0-" revision "." (string-take commit 7)))
4613 (home-page "https://github.com/emacsmirror/el-search")
4614 (source
4615 (origin
4616 (method git-fetch)
4617 (file-name (string-append name "-" version ".tar.gz"))
4618 (uri (git-reference
4619 (commit commit)
4620 (url (string-append home-page ".git"))))
4621 (sha256
4622 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
4623 (build-system emacs-build-system)
4624 (inputs `(("emacs-stream" ,emacs-stream)))
4625 (synopsis "Expression based interactive search for emacs-lisp-mode")
4626 (description "This package provides expression based interactive search
4627 procedures for emacs-lisp-mode.")
4628 (license license:gpl3+))))
4629
4630 (define-public emacs-ht
4631 (package
4632 (name "emacs-ht")
4633 (version "2.1")
4634 (source
4635 (origin
4636 (method url-fetch)
4637 (uri (string-append
4638 "https://github.com/Wilfred/ht.el/archive/"
4639 version ".tar.gz"))
4640 (file-name (string-append name "-" version ".tar.gz"))
4641 (sha256
4642 (base32
4643 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
4644 (build-system emacs-build-system)
4645 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
4646 (home-page "https://github.com/Wilfred/ht.el")
4647 (synopsis "Hash table library for Emacs")
4648 (description
4649 "This package simplifies the use of hash tables in elisp. It also
4650 provides functions to convert hash tables from and to alists and plists.")
4651 (license license:gpl3+)))
4652
4653 (define-public emacs-log4e
4654 (package
4655 (name "emacs-log4e")
4656 (version "0.3.0")
4657 (source
4658 (origin
4659 (method url-fetch)
4660 (uri (string-append
4661 "https://github.com/aki2o/log4e/archive/v"
4662 version ".tar.gz"))
4663 (file-name (string-append name "-" version ".tar.gz"))
4664 (sha256
4665 (base32
4666 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
4667 (build-system emacs-build-system)
4668 (arguments
4669 `(#:phases
4670 (modify-phases %standard-phases
4671 (add-after 'unpack 'remove-tests
4672 ;; Guile builder complains about null characters in some
4673 ;; strings of test files. Remove "test" directory (it is not
4674 ;; needed anyway).
4675 (lambda _
4676 (delete-file-recursively "test"))))))
4677 (home-page "https://github.com/aki2o/log4e")
4678 (synopsis "Logging framework for elisp")
4679 (description
4680 "This package provides a logging framework for elisp. It allows
4681 you to deal with multiple log levels.")
4682 (license license:gpl3+)))
4683
4684 (define-public emacs-gntp
4685 (package
4686 (name "emacs-gntp")
4687 (version "0.1")
4688 (source
4689 (origin
4690 (method url-fetch)
4691 (uri (string-append
4692 "https://github.com/tekai/gntp.el/archive/v"
4693 version ".tar.gz"))
4694 (file-name (string-append name "-" version ".tar.gz"))
4695 (sha256
4696 (base32
4697 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
4698 (build-system emacs-build-system)
4699 (home-page "https://github.com/tekai/gntp.el")
4700 (synopsis "Growl Notification Protocol for Emacs")
4701 (description
4702 "This package implements the Growl Notification Protocol GNTP
4703 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
4704 It is incomplete as it only lets you send but not receive
4705 notifications.")
4706 (license license:bsd-3)))
4707
4708 (define-public emacs-alert
4709 (package
4710 (name "emacs-alert")
4711 (version "1.2")
4712 (source
4713 (origin
4714 (method url-fetch)
4715 (uri (string-append
4716 "https://github.com/jwiegley/alert/archive/v"
4717 version ".tar.gz"))
4718 (file-name (string-append name "-" version ".tar.gz"))
4719 (sha256
4720 (base32
4721 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
4722 (build-system emacs-build-system)
4723 (propagated-inputs
4724 `(("emacs-gntp" ,emacs-gntp)
4725 ("emacs-log4e" ,emacs-log4e)))
4726 (home-page "https://github.com/jwiegley/alert")
4727 (synopsis "Growl-style notification system for Emacs")
4728 (description
4729 "Alert is a Growl-workalike for Emacs which uses a common notification
4730 interface and multiple, selectable \"styles\", whose use is fully
4731 customizable by the user.")
4732 (license license:gpl2+)))
4733
4734 (define-public emacs-mu4e-alert
4735 (package
4736 (name "emacs-mu4e-alert")
4737 (version "1.0")
4738 (source
4739 (origin
4740 (method url-fetch)
4741 (uri (string-append
4742 "https://github.com/iqbalansari/mu4e-alert/archive/v"
4743 version ".tar.gz"))
4744 (file-name (string-append name "-" version ".tar.gz"))
4745 (sha256
4746 (base32
4747 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
4748 (build-system emacs-build-system)
4749 (propagated-inputs
4750 `(("emacs-alert" ,emacs-alert)
4751 ("emacs-s" ,emacs-s)
4752 ("emacs-ht" ,emacs-ht)))
4753 (home-page "https://github.com/iqbalansari/mu4e-alert")
4754 (synopsis "Desktop notification for mu4e")
4755 (description
4756 "This package provides desktop notifications for mu4e.
4757 Additionally it can display the number of unread emails in the
4758 mode-line.")
4759 (license license:gpl3+)))
4760
4761 (define-public emacs-pretty-mode
4762 (package
4763 (name "emacs-pretty-mode")
4764 (version "2.0.3")
4765 (source
4766 (origin
4767 (method url-fetch)
4768 (uri (string-append "https://github.com/akatov/pretty-mode/"
4769 "archive/" version ".tar.gz"))
4770 (file-name (string-append name "-" version ".tar.gz"))
4771 (sha256
4772 (base32
4773 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
4774 (build-system emacs-build-system)
4775 (home-page "https://github.com/akatov/pretty-mode")
4776 (synopsis "Redisplay parts of the buffer as Unicode symbols")
4777 (description
4778 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
4779 (license license:gpl3+)))
4780
4781 (define-public emacs-yasnippet
4782 (package
4783 (name "emacs-yasnippet")
4784 (version "0.12.2")
4785 (source (origin
4786 (method url-fetch)
4787 (uri (string-append "https://github.com/joaotavora/yasnippet/"
4788 "archive/" version ".tar.gz"))
4789 (file-name (string-append name "-" version ".tar.gz"))
4790 (sha256
4791 (base32
4792 "01jabaz0g67bsziayrxgv74px55fx4nlrcl0csl8f1by2102pwc5"))
4793 (modules '((guix build utils)))
4794 (snippet
4795 '(begin
4796 ;; YASnippet expects a "snippets" subdirectory in the same
4797 ;; directory as yasnippet.el, but we don't install it
4798 ;; because it's a git submodule pointing to an external
4799 ;; repository. Adjust `yas-snippet-dirs' to prevent
4800 ;; warnings about a missing directory.
4801 (substitute* "yasnippet.el"
4802 (("^ +'yas-installed-snippets-dir\\)\\)\n")
4803 "))\n"))))))
4804 (build-system emacs-build-system)
4805 (home-page "https://github.com/joaotavora/yasnippet")
4806 (synopsis "Yet another snippet extension for Emacs")
4807 (description
4808 "YASnippet is a template system for Emacs. It allows you to type an
4809 abbreviation and automatically expand it into function templates.")
4810 (license license:gpl3+)))
4811
4812 (define-public emacs-yasnippet-snippets
4813 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
4814 (revision "1"))
4815 (package
4816 (name "emacs-yasnippet-snippets")
4817 (version (string-append "1-" revision "." (string-take commit 8)))
4818 (source
4819 (origin
4820 (method git-fetch)
4821 (uri (git-reference
4822 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
4823 (commit commit)))
4824 (file-name (string-append name "-" version "-checkout"))
4825 (sha256
4826 (base32
4827 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
4828 (build-system trivial-build-system)
4829 (arguments
4830 `(#:modules ((ice-9 ftw)
4831 (ice-9 regex)
4832 (guix build utils))
4833 #:builder
4834 (begin
4835 (use-modules (ice-9 ftw)
4836 (ice-9 regex)
4837 (guix build utils))
4838 (with-directory-excursion (assoc-ref %build-inputs "source")
4839 (for-each (lambda (dir)
4840 (copy-recursively
4841 dir
4842 (string-append %output
4843 "/share/emacs/yasnippet-snippets/"
4844 dir)))
4845 (scandir "." (lambda (fname)
4846 (and (string-match "-mode$" fname)
4847 (directory-exists? fname)))))))))
4848 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
4849 (synopsis "Collection of YASnippet snippets for many languages")
4850 (description
4851 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
4852 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
4853 To make YASnippet aware of these snippets, add the above directory to
4854 @code{yas-snippet-dirs}.")
4855 (license license:expat))))
4856
4857 (define-public emacs-memoize
4858 (package
4859 (name "emacs-memoize")
4860 (version "20130421.b55eab0")
4861 (source
4862 (origin
4863 (method git-fetch)
4864 (uri (git-reference
4865 (url "https://github.com/skeeto/emacs-memoize")
4866 (commit "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75")))
4867 (file-name (string-append name "-" version ".tar.gz"))
4868 (sha256
4869 (base32
4870 "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"))))
4871 (build-system emacs-build-system)
4872 (arguments
4873 `(#:phases
4874 (modify-phases %standard-phases
4875 (add-before 'install 'check
4876 (lambda _
4877 (zero? (system* "emacs" "-batch" "-l" "memoize.el"
4878 "-l" "memoize-test.el"
4879 "-f" "ert-run-tests-batch-and-exit")))))))
4880 (home-page "https://github.com/skeeto/emacs-memoize")
4881 (synopsis "Emacs lisp memoization library")
4882 (description "@code{emacs-memoize} is an Emacs library for
4883 memoizing functions.")
4884 (license license:unlicense)))
4885
4886 (define-public emacs-linum-relative
4887 (package
4888 (name "emacs-linum-relative")
4889 (version "0.5")
4890 (source
4891 (origin
4892 (method url-fetch)
4893 (uri (string-append
4894 "https://github.com/coldnew/linum-relative/archive/"
4895 version ".tar.gz"))
4896 (file-name (string-append name "-" version ".tar.gz"))
4897 (sha256
4898 (base32
4899 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
4900 (build-system emacs-build-system)
4901 (home-page "https://github.com/coldnew/linum-relative")
4902 (synopsis "Relative line numbering for Emacs")
4903 (description "@code{emacs-linum-relative} displays the relative line
4904 number on the left margin in Emacs.")
4905 (license license:gpl2+)))
4906
4907 (define-public emacs-idle-highlight
4908 (package
4909 (name "emacs-idle-highlight")
4910 (version "1.1.3")
4911 (source
4912 (origin
4913 (method url-fetch)
4914 (uri (string-append
4915 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
4916 version ".tar.gz"))
4917 (file-name (string-append name "-" version ".tar.gz"))
4918 (sha256
4919 (base32
4920 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
4921 (build-system emacs-build-system)
4922 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
4923 (synopsis "Highlights all occurrences of the word the point is on")
4924 (description
4925 "This Emacs package provides @code{idle-highlight-mode} that sets
4926 an idle timer to highlight all occurrences in the buffer of the word under
4927 the point.")
4928 (license license:gpl3+)))
4929
4930 (define-public emacs-ox-twbs
4931 (package
4932 (name "emacs-ox-twbs")
4933 (version "1.1.1")
4934 (source
4935 (origin
4936 (method url-fetch)
4937 (uri (string-append
4938 "https://github.com/marsmining/ox-twbs/archive/v"
4939 version ".tar.gz"))
4940 (file-name (string-append name "-" version ".tar.gz"))
4941 (sha256
4942 (base32
4943 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
4944 (build-system emacs-build-system)
4945 (home-page "https://github.com/marsmining/ox-twbs")
4946 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
4947 (description
4948 "This Emacs package outputs your org-mode docs with a simple, clean and
4949 modern look. It implements a new HTML back-end for exporting org-mode docs as
4950 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
4951 jQuery and Bootstrap resources included via osscdn.")
4952 (license license:gpl3+)))
4953
4954 (define-public emacs-highlight-sexp
4955 (package
4956 (name "emacs-highlight-sexp")
4957 (version "1.0")
4958 (source
4959 (origin
4960 (method url-fetch)
4961 (uri (string-append
4962 "https://github.com/daimrod/highlight-sexp/archive/v"
4963 version ".tar.gz"))
4964 (file-name (string-append name "-" version ".tar.gz"))
4965 (sha256
4966 (base32
4967 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
4968 (build-system emacs-build-system)
4969 (home-page "https://github.com/daimrod/highlight-sexp")
4970 (synopsis "Minor mode that highlights the s-exp at the current position")
4971 (description
4972 "This Emacs package highlights the s-exp at the current position.")
4973 (license license:gpl3+)))
4974
4975 (define-public emacs-highlight-stages
4976 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
4977 (revision "1"))
4978 (package
4979 (name "emacs-highlight-stages")
4980 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
4981 (source
4982 (origin
4983 (method git-fetch)
4984 (uri (git-reference
4985 (url "https://github.com/zk-phi/highlight-stages.git")
4986 (commit commit)))
4987 (file-name (string-append name "-" version "-checkout"))
4988 (sha256
4989 (base32
4990 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
4991 (patches
4992 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
4993 (build-system emacs-build-system)
4994 (home-page "https://github.com/wigust/highlight-stages")
4995 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
4996 (description "@code{highlight-stages} provides an Emacs minor mode that
4997 highlights quasi-quoted expressions.")
4998 (license license:gpl3+))))
4999
5000 (define-public emacspeak
5001 (package
5002 (name "emacspeak")
5003 (version "47.0")
5004 (source
5005 (origin
5006 (method url-fetch)
5007 (uri (string-append
5008 "https://github.com/tvraman/emacspeak/releases/download/"
5009 version "/emacspeak-" version ".tar.bz2"))
5010 (sha256
5011 (base32
5012 "0xbcc266x752y68s3g096m161irzvsqym3axzqn8rb276a8x55n7"))))
5013 (build-system gnu-build-system)
5014 (arguments
5015 '(#:make-flags (list (string-append "prefix="
5016 (assoc-ref %outputs "out")))
5017 #:phases
5018 (modify-phases %standard-phases
5019 (replace 'configure
5020 (lambda _
5021 ;; Configure Emacspeak according to etc/install.org.
5022 (setenv "SHELL" (which "sh"))
5023 (zero? (system* "make" "config"))))
5024 (add-after 'build 'build-espeak
5025 (lambda _
5026 (zero? (system* "make" "espeak"))))
5027 (replace 'install
5028 (lambda* (#:key outputs #:allow-other-keys)
5029 (let* ((out (assoc-ref outputs "out"))
5030 (bin (string-append out "/bin"))
5031 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
5032 (info (string-append out "/share/info")))
5033 ;; According to etc/install.org, the Emacspeak directory should
5034 ;; be copied to its installation destination.
5035 (for-each
5036 (lambda (file)
5037 (copy-recursively file (string-append lisp "/" file)))
5038 '("etc" "info" "lisp" "media" "servers" "sounds" "stumpwm"
5039 "xsl"))
5040 ;; Make sure emacspeak is loaded from the correct directory.
5041 (substitute* "etc/emacspeak.sh"
5042 (("exec emacs.*$")
5043 (string-append "exec emacs -l " lisp
5044 "/lisp/emacspeak-setup.el $CL_ALL")))
5045 ;; Install the convenient startup script.
5046 (mkdir-p bin)
5047 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
5048 #t))
5049 (add-after 'install 'wrap-program
5050 (lambda* (#:key inputs outputs #:allow-other-keys)
5051 (let* ((out (assoc-ref outputs "out"))
5052 (emacspeak (string-append out "/bin/emacspeak"))
5053 (espeak (string-append (assoc-ref inputs "espeak")
5054 "/bin/espeak")))
5055 ;; The environment variable DTK_PROGRAM tells emacspeak what
5056 ;; program to use for speech.
5057 (wrap-program emacspeak
5058 `("DTK_PROGRAM" ":" prefix (,espeak)))
5059 #t))))
5060 #:tests? #f)) ; no check target
5061 (inputs
5062 `(("espeak" ,espeak)
5063 ("tcl" ,tcl)
5064 ("tclx" ,tclx)))
5065 (native-inputs `(("emacs" ,emacs-minimal)))
5066 (home-page "http://emacspeak.sourceforge.net")
5067 (synopsis "Audio desktop interface for Emacs")
5068 (description
5069 "Emacspeak is a speech interface that allows visually impaired users to
5070 interact independently and efficiently with the computer. Audio formatting
5071 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
5072 allows Emacspeak to produce rich aural presentations of electronic information.
5073 By seamlessly blending all aspects of the Internet such as Web-surfing and
5074 messaging, Emacspeak speech-enables local and remote information via a
5075 consistent and well-integrated user interface.")
5076 (license license:gpl2+)))
5077
5078 (define-public emacs-adaptive-wrap
5079 (package
5080 (name "emacs-adaptive-wrap")
5081 (version "0.5.1")
5082 (source (origin
5083 (method url-fetch)
5084 (uri (string-append
5085 "http://elpa.gnu.org/packages/adaptive-wrap-"
5086 version ".el"))
5087 (sha256
5088 (base32
5089 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
5090 (build-system emacs-build-system)
5091 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
5092 (synopsis "Smart line-wrapping with wrap-prefix")
5093 (description
5094 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
5095 minor mode which sets the wrap-prefix property on the fly so that
5096 single-long-line paragraphs get word-wrapped in a way similar to what
5097 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
5098 actually changing the buffer's text.")
5099 (license license:gpl3+)))
5100
5101 (define-public emacs-diff-hl
5102 (package
5103 (name "emacs-diff-hl")
5104 (version "1.8.4")
5105 (source
5106 (origin
5107 (method url-fetch)
5108 (uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
5109 version ".tar"))
5110 (sha256
5111 (base32
5112 "0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
5113 (build-system emacs-build-system)
5114 (home-page "https://github.com/dgutov/diff-hl")
5115 (synopsis
5116 "Highlight uncommitted changes using VC")
5117 (description
5118 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
5119 window (using the fringe, by default), allows you to jump between
5120 the hunks and revert them selectively.")
5121 (license license:gpl3+)))
5122
5123 (define-public emacs-diminish
5124 (package
5125 (name "emacs-diminish")
5126 (version "0.45")
5127 (source
5128 (origin
5129 (method url-fetch)
5130 (uri (string-append
5131 "https://github.com/myrjola/diminish.el/archive/v"
5132 version ".tar.gz"))
5133 (file-name (string-append name "-" version ".tar.gz"))
5134 (sha256
5135 (base32
5136 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
5137 (build-system emacs-build-system)
5138 (home-page "https://github.com/myrjola/diminish.el")
5139 (synopsis "Diminish minor modes with no modeline display")
5140 (description "@code{emacs-diminish} implements hiding or
5141 abbreviation of the mode line displays (lighters) of minor modes.")
5142 (license license:gpl2+)))
5143
5144 (define-public emacs-use-package
5145 (package
5146 (name "emacs-use-package")
5147 (version "2.3")
5148 (source
5149 (origin
5150 (method url-fetch)
5151 (uri (string-append
5152 "https://github.com/jwiegley/use-package/archive/"
5153 version ".tar.gz"))
5154 (file-name (string-append name "-" version ".tar.gz"))
5155 (sha256
5156 (base32
5157 "0x4h136jb3imyli6zsh7dyzjrra6pv0v6b0yk94jdng3rdfcmsf5"))))
5158 (build-system emacs-build-system)
5159 (propagated-inputs
5160 `(("emacs-diminish" ,emacs-diminish)))
5161 (arguments
5162 `(#:phases
5163 (modify-phases %standard-phases
5164 (add-before 'install 'check
5165 (lambda _
5166 (zero? (system* "emacs" "--batch" "-L" "."
5167 "-l" "use-package-tests.el"
5168 "-f" "ert-run-tests-batch-and-exit"))
5169 ;; Tests fail in this release, but have been fixed in
5170 ;; upstream commit 7956d40eed57d6c06bef36ebc174cf57d934e30d
5171 #t)))))
5172 (home-page "https://github.com/jwiegley/use-package")
5173 (synopsis "Declaration for simplifying your .emacs")
5174 (description "The use-package macro allows you to isolate package
5175 configuration in your @file{.emacs} file in a way that is both
5176 performance-oriented and tidy.")
5177 (license license:gpl2+)))
5178
5179 (define-public emacs-strace-mode
5180 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
5181 (revision "1"))
5182 (package
5183 (name "emacs-strace-mode")
5184 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
5185 (source (origin
5186 (method git-fetch)
5187 (uri (git-reference
5188 (url "https://github.com/pkmoore/strace-mode")
5189 (commit commit)))
5190 (file-name (string-append name "-" version "-checkout"))
5191 (sha256
5192 (base32
5193 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
5194 (build-system emacs-build-system)
5195 (home-page "https://github.com/pkmoore/strace-mode")
5196 (synopsis "Emacs major mode to highlight strace outputs")
5197 (description "@code{emacs-strace-mode} provides an Emacs major mode
5198 highlighting strace outputs.")
5199 (license license:gpl3+))))
5200
5201 (define-public emacs-default-encrypt
5202 (package
5203 (name "emacs-default-encrypt")
5204 (version "4.3")
5205 (source
5206 (origin
5207 (method url-fetch)
5208 (uri (string-append
5209 "https://www.informationelle-selbstbestimmung-im-internet.de"
5210 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
5211 (file-name (string-append "jl-encrypt-" version ".el"))
5212 (sha256
5213 (base32
5214 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
5215 (build-system emacs-build-system)
5216 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
5217 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
5218 (description
5219 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
5220 automatically encrypts messages that you send (e.g., email) when public keys
5221 for all recipients are available, and it protects you from accidentally
5222 sending un-encrypted messages. It can also be configured to automatically
5223 sign messages that you send. For details and instructions on how to use
5224 DefaultEncrypt, please refer to the home page or read the comments in the
5225 source file, @file{jl-encrypt.el}.")
5226 (license license:gpl3+)))
5227
5228 (define-public emacs-htmlize
5229 (package
5230 (name "emacs-htmlize")
5231 (version "1.51")
5232 (source
5233 (origin
5234 (method url-fetch)
5235 (uri (string-append
5236 "https://github.com/hniksic/emacs-htmlize/archive/release/"
5237 version ".tar.gz"))
5238 (file-name (string-append name "-" version ".tar.gz"))
5239 (sha256
5240 (base32
5241 "1fy1lybzrxl8a8r88f6p19nz8ygmvcxhxbnymkxh7jqaz25viwld"))))
5242 (build-system emacs-build-system)
5243 (home-page "https://github.com/hniksic/emacs-htmlize")
5244 (synopsis "Convert buffer text and decorations to HTML")
5245 (description "@code{emacs-htmlize} converts the buffer text and
5246 the associated decorations to HTML. Output to CSS, inline CSS and
5247 fonts is supported.")
5248 (license license:gpl2+)))
5249
5250 (define-public emacs-xmlgen
5251 (package
5252 (name "emacs-xmlgen")
5253 (version "0.5")
5254 (source
5255 (origin
5256 (method url-fetch)
5257 (uri (string-append
5258 "https://github.com/philjackson/xmlgen/archive/"
5259 version ".tar.gz"))
5260 (file-name (string-append name "-" version ".tar.gz"))
5261 (sha256
5262 (base32
5263 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
5264 (build-system emacs-build-system)
5265 (arguments
5266 `(#:phases
5267 (modify-phases %standard-phases
5268 (add-before 'install 'check
5269 (lambda _
5270 (zero? (system* "emacs" "--batch" "-L" "."
5271 "-l" "xmlgen-test.el"
5272 "-f" "ert-run-tests-batch-and-exit")))))))
5273 (home-page "https://github.com/philjackson/xmlgen")
5274 (synopsis "S-expression to XML domain specific language (DSL) in
5275 Emacs Lisp")
5276 (description "@code{emacs-xmlgen} provides S-expression to XML
5277 conversion for Emacs Lisp.")
5278 (license license:gpl2+)))
5279
5280 (define-public emacs-cdlatex
5281 (package
5282 (name "emacs-cdlatex")
5283 (version "4.7")
5284 (source
5285 (origin
5286 (method url-fetch)
5287 (uri (string-append
5288 "https://github.com/cdominik/cdlatex/archive/"
5289 version ".tar.gz"))
5290 (file-name (string-append name "-" version ".tar.gz"))
5291 (sha256
5292 (base32
5293 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
5294 (build-system emacs-build-system)
5295 (home-page "https://github.com/cdominik/cdlatex")
5296 (synopsis "Fast Emacs input methods for LaTeX environments and
5297 math")
5298 (description "CDLaTeX is an Emacs minor mode supporting fast
5299 insertion of environment templates and math in LaTeX. Similar
5300 commands are also offered as part of the AUCTeX package, but it is not
5301 the same - CDLaTeX focuses on speediness for inserting LaTeX
5302 constructs.")
5303 (license license:gpl3+)))
5304
5305 (define-public emacs-cnfonts
5306 (package
5307 (name "emacs-cnfonts")
5308 (version "0.9.1")
5309 (source (origin
5310 (method url-fetch)
5311 (uri (string-append
5312 "https://github.com/tumashu/cnfonts/archive/v"
5313 version ".tar.gz"))
5314 (file-name (string-append name "-" version ".tar.gz"))
5315 (sha256
5316 (base32
5317 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
5318 (build-system emacs-build-system)
5319 (home-page "https://github.com/tumashu/cnfonts")
5320 (synopsis "Emacs Chinese fonts setup tool")
5321 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
5322 configuration of Chinese fonts.")
5323 (license license:gpl2+)))
5324
5325 (define-public emacs-php-mode
5326 (package
5327 (name "emacs-php-mode")
5328 (version "20171225.342")
5329 (source (origin
5330 (method url-fetch)
5331 (uri (string-append
5332 "https://melpa.org/packages/php-mode-"
5333 version ".tar"))
5334 (sha256
5335 (base32
5336 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
5337 (build-system emacs-build-system)
5338 (home-page "https://github.com/ejmr/php-mode")
5339 (synopsis "Major mode for editing PHP code")
5340 (description "@code{php-mode} is a major mode for editing PHP source
5341 code. It's an extension of C mode; thus it inherits all C mode's navigation
5342 functionality. But it colors according to the PHP grammar and indents
5343 according to the PEAR coding guidelines. It also includes a couple handy
5344 IDE-type features such as documentation search and a source and class
5345 browser.")
5346 (license license:gpl3+)))
5347
5348 (define-public emacs-pos-tip
5349 (package
5350 (name "emacs-pos-tip")
5351 (version "0.4.6")
5352 (source (origin
5353 (method url-fetch)
5354 (uri (string-append
5355 "https://github.com/pitkali/pos-tip/archive/"
5356 version ".tar.gz"))
5357 (file-name (string-append name "-" version ".tar.gz"))
5358 (sha256
5359 (base32
5360 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
5361 (build-system emacs-build-system)
5362 ;; The following functions and variables needed by emacs-pos-tip are
5363 ;; not included in emacs-minimal:
5364 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
5365 (arguments `(#:emacs ,emacs))
5366 (home-page "https://github.com/pitkali/pos-tip")
5367 (synopsis "Show tooltip at point")
5368 (description "The standard library tooltip.el provides a function for
5369 displaying a tooltip at the mouse position. However, locating a tooltip at an
5370 arbitrary buffer position in a window is not easy. Pos-tip provides such a
5371 function to be used by other frontend programs.")
5372 (license license:gpl2+)))
5373
5374 (define-public emacs-pyim-basedict
5375 (package
5376 (name "emacs-pyim-basedict")
5377 (version "0.3.1")
5378 (source (origin
5379 (method url-fetch)
5380 (uri (string-append
5381 "https://github.com/tumashu/pyim-basedict/archive/v"
5382 version ".tar.gz"))
5383 (file-name (string-append name "-" version ".tar.gz"))
5384 (sha256
5385 (base32
5386 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
5387 (build-system emacs-build-system)
5388 (home-page "https://github.com/tumashu/pyim-basedict")
5389 (synopsis "Input method dictionary of pyim")
5390 (description "Pyim-basedict is the default pinyin input method dictionary,
5391 containing words from the rime project.")
5392 (license license:gpl2+)))
5393
5394 (define-public emacs-pyim
5395 (package
5396 (name "emacs-pyim")
5397 (version "1.6.4")
5398 (source (origin
5399 (method url-fetch)
5400 (uri (string-append
5401 "https://github.com/tumashu/pyim/archive/v"
5402 version ".tar.gz"))
5403 (file-name (string-append name "-" version ".tar.gz"))
5404 (sha256
5405 (base32
5406 "0hfg8q9hcjifvnlghw2g94dfxfirms2psq2ghqb28fhkf0lks13r"))))
5407 (build-system emacs-build-system)
5408 (propagated-inputs
5409 `(("emacs-async" ,emacs-async)
5410 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
5411 ("emacs-popup" ,emacs-popup)
5412 ("emacs-pos-tip" ,emacs-pos-tip)))
5413 (home-page "https://github.com/tumashu/pyim")
5414 (synopsis "Chinese input method")
5415 (description "Chinese input method which supports quanpin, shuangpin, wubi
5416 and cangjie.")
5417 (license license:gpl2+)))
5418
5419 (define-public emacs-el2org
5420 (package
5421 (name "emacs-el2org")
5422 (version "0.6.0")
5423 (source (origin
5424 (method url-fetch)
5425 (uri (string-append
5426 "https://github.com/tumashu/el2org/archive/v"
5427 version ".tar.gz"))
5428 (file-name (string-append name "-" version ".tar.gz"))
5429 (sha256
5430 (base32
5431 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
5432 (build-system emacs-build-system)
5433 (home-page "https://github.com/tumashu/el2org")
5434 (synopsis "Convert Emacs-lisp file to org file")
5435 (description "El2org is a simple tool, which can convert Emacs-lisp file
5436 to org file, you can use this tool to write orgify commentary.")
5437 (license license:gpl2+)))
5438
5439 (define-public emacs-mustache
5440 (package
5441 (name "emacs-mustache")
5442 (version "0.23")
5443 (source (origin
5444 (method url-fetch)
5445 (uri (string-append
5446 "https://github.com/Wilfred/mustache.el/archive/"
5447 version ".tar.gz"))
5448 (file-name (string-append name "-" version ".tar.gz"))
5449 (sha256
5450 (base32
5451 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
5452 (build-system emacs-build-system)
5453 (propagated-inputs
5454 `(("emacs-dash" ,emacs-dash)
5455 ("emacs-ht" ,emacs-ht)
5456 ("emacs-s" ,emacs-s)))
5457 (home-page "https://github.com/Wilfred/mustache.el")
5458 (synopsis "Mustache templating library for Emacs")
5459 (description "Mustache templating library for Emacs, mustache is
5460 a simple web template system, which is described as a logic-less system
5461 because it lacks any explicit control flow statements, both looping and
5462 conditional evaluation can be achieved using section tags processing lists
5463 and lambdas.")
5464 (license license:gpl3+)))
5465
5466 (define-public emacs-org2web
5467 (package
5468 (name "emacs-org2web")
5469 (version "0.9.1")
5470 (source (origin
5471 (method url-fetch)
5472 (uri (string-append
5473 "https://github.com/tumashu/org2web/archive/v"
5474 version ".tar.gz"))
5475 (file-name (string-append name "-" version ".tar.gz"))
5476 (sha256
5477 (base32
5478 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
5479 (build-system emacs-build-system)
5480 (propagated-inputs
5481 `(("emacs-dash" ,emacs-dash)
5482 ("emacs-el2org" ,emacs-el2org)
5483 ("emacs-ht" ,emacs-ht)
5484 ("emacs-mustache" ,emacs-mustache)
5485 ("emacs-simple-httpd" ,emacs-simple-httpd)))
5486 (home-page "https://github.com/tumashu/org2web")
5487 (synopsis "Static site generator based on org-mode ")
5488 (description "Org2web is a static site generator based on org-mode,
5489 which code derived from Kelvin H's org-page.")
5490 (license license:gpl2+)))
5491
5492 (define-public emacs-xelb
5493 (package
5494 (name "emacs-xelb")
5495 (version "0.12")
5496 (source (origin
5497 (method url-fetch)
5498 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
5499 version ".tar"))
5500 (sha256
5501 (base32
5502 "0i9n0f3ibj4a5pwcsvwrah9m0fz32m0x6a9wsmjn3li20v8pcb81"))))
5503 (build-system emacs-build-system)
5504 ;; The following functions and variables needed by emacs-xelb are
5505 ;; not included in emacs-minimal:
5506 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
5507 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
5508 ;; x-display-pixel-width, x-display-pixel-height
5509 (arguments
5510 `(#:emacs ,emacs
5511 #:phases
5512 (modify-phases %standard-phases
5513 (add-after 'unpack 'regenerate-el-files
5514 (lambda* (#:key inputs #:allow-other-keys)
5515 (zero? (system* "make"
5516 (string-append "PROTO_PATH="
5517 (assoc-ref inputs "xcb-proto")
5518 "/share/xcb")
5519 (string-append "EMACS_BIN="
5520 (assoc-ref inputs "emacs")
5521 "/bin/emacs -Q"))))))))
5522 (native-inputs `(("xcb-proto" ,xcb-proto)))
5523 (home-page "https://github.com/ch11ng/xelb")
5524 (synopsis "X protocol Emacs Lisp binding")
5525 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
5526 X11 protocol based on the XML description files from the XCB project. It
5527 features an object-oriented API and permits a certain degree of concurrency.
5528 It should enable you to implement low-level X11 applications.")
5529 (license license:gpl3+)))
5530
5531 (define-public emacs-exwm
5532 (package
5533 (name "emacs-exwm")
5534 (version "0.16")
5535 (synopsis "Emacs X window manager")
5536 (source (origin
5537 (method url-fetch)
5538 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
5539 version ".tar"))
5540 (sha256
5541 (base32
5542 "0c4w5k9lzqj8yzhdqipdb4fs7ld2qklc6s137104jnfdvmrwcv2i"))))
5543 (build-system emacs-build-system)
5544 (propagated-inputs
5545 `(("emacs-xelb" ,emacs-xelb)))
5546 (inputs
5547 `(("xhost" ,xhost)
5548 ("dbus" ,dbus)))
5549 ;; The following functions and variables needed by emacs-exwm are
5550 ;; not included in emacs-minimal:
5551 ;; scroll-bar-mode, fringe-mode
5552 ;; x-display-pixel-width, x-display-pixel-height
5553 (arguments
5554 `(#:emacs ,emacs
5555 #:phases
5556 (modify-phases %standard-phases
5557 (add-after 'build 'install-xsession
5558 (lambda* (#:key inputs outputs #:allow-other-keys)
5559 (let* ((out (assoc-ref outputs "out"))
5560 (xsessions (string-append out "/share/xsessions"))
5561 (bin (string-append out "/bin"))
5562 (exwm-executable (string-append bin "/exwm")))
5563 ;; Add a .desktop file to xsessions
5564 (mkdir-p xsessions)
5565 (mkdir-p bin)
5566 (with-output-to-file
5567 (string-append xsessions "/exwm.desktop")
5568 (lambda _
5569 (format #t "[Desktop Entry]~@
5570 Name=~a~@
5571 Comment=~a~@
5572 Exec=~a~@
5573 TryExec=~@*~a~@
5574 Type=Application~%" ,name ,synopsis exwm-executable)))
5575 ;; Add a shell wrapper to bin
5576 (with-output-to-file exwm-executable
5577 (lambda _
5578 (format #t "#!~a ~@
5579 ~a +SI:localuser:$USER ~@
5580 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
5581 (string-append (assoc-ref inputs "bash") "/bin/sh")
5582 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
5583 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
5584 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
5585 '(cond
5586 ((file-exists-p "~/.exwm")
5587 (load-file "~/.exwm"))
5588 ((not (featurep 'exwm))
5589 (require 'exwm)
5590 (require 'exwm-config)
5591 (exwm-config-default)
5592 (message (concat "exwm configuration not found. "
5593 "Falling back to default configuration...")))))))
5594 (chmod exwm-executable #o555)
5595 #t))))))
5596 (home-page "https://github.com/ch11ng/exwm")
5597 (description "EXWM is a full-featured tiling X window manager for Emacs
5598 built on top of XELB.")
5599 (license license:gpl3+)))
5600
5601 (define-public emacs-switch-window
5602 (package
5603 (name "emacs-switch-window")
5604 (version "1.5.1")
5605 (source (origin
5606 (method url-fetch)
5607 (uri (string-append
5608 "https://github.com/dimitri/switch-window/archive/v"
5609 version ".tar.gz"))
5610 (file-name (string-append name "-" version ".tar.gz"))
5611 (sha256
5612 (base32
5613 "07f99apxscwvsp2bjxsbi462c433kcglrjh6xl0gyafs1nvvvnd8"))))
5614 (build-system emacs-build-system)
5615 (home-page "https://github.com/dimitri/switch-window")
5616 (synopsis "Emacs window switch tool")
5617 (description "Switch-window is an emacs window switch tool, which
5618 offer a visual way to choose a window to switch to, delete, split or
5619 other operations.")
5620 (license license:wtfpl2)))
5621
5622 (define-public emacs-exwm-x
5623 (package
5624 (name "emacs-exwm-x")
5625 (version "1.7.2")
5626 (synopsis "Derivative window manager based on EXWM")
5627 (source (origin
5628 (method url-fetch)
5629 (uri (string-append
5630 "https://github.com/tumashu/exwm-x/archive/v"
5631 version ".tar.gz"))
5632 (file-name (string-append name "-" version ".tar.gz"))
5633 (sha256
5634 (base32
5635 "1ny13i82fb72917jgl0ndwjg1x6l9f8gfhcx7cwlwhh5saq23mvy"))))
5636 (build-system emacs-build-system)
5637 (propagated-inputs
5638 `(("emacs-exwm" ,emacs-exwm)
5639 ("emacs-switch-window" ,emacs-switch-window)
5640 ("emacs-ivy" ,emacs-ivy)
5641 ("emacs-use-package" ,emacs-use-package)))
5642 (inputs
5643 `(("xhost" ,xhost)
5644 ("dbus" ,dbus)))
5645 ;; Need emacs instead of emacs-minimal,
5646 ;; for emacs's bin path will be inserted into bin/exwm-x file.
5647 (arguments
5648 `(#:emacs ,emacs
5649 #:phases
5650 (modify-phases %standard-phases
5651 (add-after 'build 'install-xsession
5652 (lambda* (#:key inputs outputs #:allow-other-keys)
5653 (let* ((out (assoc-ref outputs "out"))
5654 (xsessions (string-append out "/share/xsessions"))
5655 (bin (string-append out "/bin"))
5656 (exwm-executable (string-append bin "/exwm-x")))
5657 ;; Add a .desktop file to xsessions
5658 (mkdir-p xsessions)
5659 (mkdir-p bin)
5660 (with-output-to-file
5661 (string-append xsessions "/exwm-x.desktop")
5662 (lambda _
5663 (format #t "[Desktop Entry]~@
5664 Name=~a~@
5665 Comment=~a~@
5666 Exec=~a~@
5667 TryExec=~@*~a~@
5668 Type=Application~%" ,name ,synopsis exwm-executable)))
5669 ;; Add a shell wrapper to bin
5670 (with-output-to-file exwm-executable
5671 (lambda _
5672 (format #t "#!~a ~@
5673 ~a +SI:localuser:$USER ~@
5674 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
5675 (string-append (assoc-ref inputs "bash") "/bin/sh")
5676 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
5677 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
5678 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
5679 '(require 'exwmx-loader))))
5680 (chmod exwm-executable #o555)
5681 #t))))))
5682 (home-page "https://github.com/tumashu/exwm-x")
5683 (description "EXWM-X is a derivative window manager based on EXWM, with focus
5684 on mouse-control.")
5685 (license license:gpl3+)))
5686
5687 (define-public emacs-gnuplot
5688 (package
5689 (name "emacs-gnuplot")
5690 (version "0.7.0")
5691 (source
5692 (origin
5693 (method url-fetch)
5694 (uri (string-append
5695 "https://github.com/bruceravel/gnuplot-mode/archive/"
5696 version ".tar.gz"))
5697 (file-name (string-append name "-" version ".tar.gz"))
5698 (sha256
5699 (base32
5700 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
5701 (build-system gnu-build-system)
5702 (native-inputs `(("emacs" ,emacs-minimal)))
5703 (arguments
5704 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
5705 "/gnuplot-" version)))
5706 `(#:modules ((guix build gnu-build-system)
5707 (guix build utils)
5708 (guix build emacs-utils))
5709 #:imported-modules (,@%gnu-build-system-modules
5710 (guix build emacs-utils))
5711 #:configure-flags
5712 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
5713 "/bin/emacs")
5714 (string-append "--with-lispdir=" %output ,elisp-dir))
5715 #:phases
5716 (modify-phases %standard-phases
5717 (add-after 'install 'generate-autoloads
5718 (lambda* (#:key outputs #:allow-other-keys)
5719 (emacs-generate-autoloads
5720 "gnuplot"
5721 (string-append (assoc-ref outputs "out") ,elisp-dir))
5722 #t))))))
5723 (home-page "https://github.com/bruceravel/gnuplot-mode")
5724 (synopsis "Emacs major mode for interacting with gnuplot")
5725 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
5726 with gnuplot.")
5727 (license license:gpl2+)))
5728
5729 (define-public emacs-transpose-frame
5730 (package
5731 (name "emacs-transpose-frame")
5732 (version "0.1.0")
5733 (source
5734 (origin
5735 (method url-fetch)
5736 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
5737 (file-name (string-append "transpose-frame-" version ".el"))
5738 (sha256
5739 (base32
5740 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
5741 (build-system emacs-build-system)
5742 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
5743 (synopsis "Transpose window arrangement in current frame")
5744 (description "@code{emacs-transpose-frame} provides some interactive
5745 functions which allows users to transpose windows arrangement in currently
5746 selected frame.")
5747 (license license:bsd-2)))
5748
5749 (define-public emacs-key-chord
5750 (package
5751 (name "emacs-key-chord")
5752 (version "0.6")
5753 (source
5754 (origin
5755 (method url-fetch)
5756 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
5757 (file-name (string-append "key-chord-" version ".el"))
5758 (sha256
5759 (base32
5760 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
5761 (build-system emacs-build-system)
5762 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
5763 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
5764 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
5765 mode for binding key chords to commands. A key chord is defined as two keys
5766 pressed simultaneously or a single key quickly pressed twice.")
5767 (license license:gpl2+)))
5768
5769 (define-public emacs-evil-surround
5770 (package
5771 (name "emacs-evil-surround")
5772 (version "1.0.0")
5773 (source
5774 (origin
5775 (method url-fetch)
5776 (uri (string-append
5777 "https://github.com/timcharper/evil-surround/archive/v"
5778 version ".tar.gz"))
5779 (file-name (string-append name "-" version ".tar.gz"))
5780 (sha256
5781 (base32
5782 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
5783 (build-system emacs-build-system)
5784 (propagated-inputs
5785 `(("emacs-evil" ,emacs-evil)))
5786 (home-page "https://github.com/timcharper/evil-surround")
5787 (synopsis "Easily modify surrounding parantheses and quotes")
5788 (description "@code{emacs-evil-surround} allows easy deletion, change and
5789 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
5790 (license license:gpl3+)))
5791
5792 (define-public emacs-evil-commentary
5793 (package
5794 (name "emacs-evil-commentary")
5795 (version "2.1.1")
5796 (source
5797 (origin
5798 (method url-fetch)
5799 (uri (string-append
5800 "https://github.com/linktohack/evil-commentary/archive/v"
5801 version ".tar.gz"))
5802 (file-name (string-append name "-" version ".tar.gz"))
5803 (sha256
5804 (base32
5805 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
5806 (build-system emacs-build-system)
5807 (propagated-inputs
5808 `(("emacs-evil" ,emacs-evil)))
5809 (home-page "https://github.com/linktohack/evil-commentary")
5810 (synopsis "Comment out code in evil mode")
5811 (description "@code{emacs-evil-commentary} adds keybindings to easily
5812 comment out lines of code in evil mode. It provides @code{gcc} to comment out
5813 lines, and @code{gc} to comment out the target of a motion.")
5814 (license license:gpl3+)))
5815
5816 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
5817 ;; therefore cannot be run
5818 (define-public emacs-ansi
5819 (package
5820 (name "emacs-ansi")
5821 (version "0.4.1")
5822 (source
5823 (origin
5824 (method url-fetch)
5825 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
5826 version ".tar.gz"))
5827 (file-name (string-append name "-" version ".tar.gz"))
5828 (sha256
5829 (base32
5830 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
5831 (build-system emacs-build-system)
5832 (propagated-inputs
5833 `(("emacs-dash" ,emacs-dash)
5834 ("emacs-s" ,emacs-s)))
5835 (home-page "https://github.com/rejeep/ansi.el")
5836 (synopsis "Convert strings to ANSI")
5837 (description "@code{emacs-ansi} defines functions that turns simple
5838 strings to ANSI strings. Turning a string into an ANSI string can be to add
5839 color to a text, add color in the background of a text or adding a style, such
5840 as bold, underscore or italic.")
5841 (license license:gpl3+)))
5842
5843 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
5844 ;; therefore cannot be run
5845 (define-public emacs-commander
5846 (package
5847 (name "emacs-commander")
5848 (version "0.7.0")
5849 (source
5850 (origin
5851 (method url-fetch)
5852 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
5853 version ".tar.gz"))
5854 (file-name (string-append name "-" version ".tar.gz"))
5855 (sha256
5856 (base32
5857 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
5858 (build-system emacs-build-system)
5859 (propagated-inputs
5860 `(("emacs-dash" ,emacs-dash)
5861 ("emacs-f" ,emacs-f)
5862 ("emacs-s" ,emacs-s)))
5863 (home-page "https://github.com/rejeep/commander.el")
5864 (synopsis "Emacs command line parser")
5865 (description "@code{emacs-commander} provides command line parsing for
5866 Emacs.")
5867 (license license:gpl3+)))
5868
5869 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
5870 ;; cannot be run
5871 (define-public ert-runner
5872 (let ((dependencies
5873 `(("emacs-ansi" ,emacs-ansi)
5874 ("emacs-commander" ,emacs-commander)
5875 ("emacs-dash" ,emacs-dash)
5876 ("emacs-f" ,emacs-f)
5877 ("emacs-s" ,emacs-s)
5878 ("emacs-shut-up" ,emacs-shut-up))))
5879 (package
5880 (name "ert-runner")
5881 (version "0.7.0")
5882 (source
5883 (origin
5884 (method url-fetch)
5885 (uri (string-append "https://github.com/rejeep/ert-runner.el/archive/v"
5886 version ".tar.gz"))
5887 (file-name (string-append name "-" version ".tar.gz"))
5888 (sha256
5889 (base32
5890 "1657nck9i96a4xgl8crfqq0s8gflzp21pkkzwg6m3z5npjxklgwp"))))
5891 (build-system emacs-build-system)
5892 (inputs dependencies)
5893 (arguments
5894 `(#:phases
5895 (modify-phases %standard-phases
5896 (add-after 'install 'install-executable
5897 (lambda* (#:key inputs outputs #:allow-other-keys)
5898 (let ((out (assoc-ref outputs "out")))
5899 (substitute* "bin/ert-runner"
5900 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
5901 (string-append "ERT_RUNNER=\"" out
5902 "/share/emacs/site-lisp/guix.d/"
5903 ,name "-" ,version)))
5904 (install-file "bin/ert-runner" (string-append out "/bin"))
5905 (wrap-program (string-append out "/bin/ert-runner")
5906 (list "EMACSLOADPATH" ":" '=
5907 (append
5908 ,(match dependencies
5909 (((labels packages) ...)
5910 `(map (lambda (label package version)
5911 (string-append (assoc-ref inputs label)
5912 "/share/emacs/site-lisp/guix.d/"
5913 (string-drop package 6)
5914 "-" version))
5915 ',labels
5916 ',(map package-name packages)
5917 ',(map package-version packages))))
5918 ;; empty element to include the default load path as
5919 ;; determined by emacs' standard initialization
5920 ;; procedure
5921 (list ""))))
5922 #t))))
5923 #:include (cons* "^reporters/.*\\.el$" %default-include)))
5924 (home-page "https://github.com/rejeep/ert-runner.el")
5925 (synopsis "Opinionated Ert testing workflow")
5926 (description "@code{ert-runner} is a tool for Emacs projects tested
5927 using ERT. It assumes a certain test structure setup and can therefore make
5928 running tests easier.")
5929 (license license:gpl3+))))
5930
5931 (define-public emacs-disable-mouse
5932 (package
5933 (name "emacs-disable-mouse")
5934 (version "0.2")
5935 (source
5936 (origin
5937 (method url-fetch)
5938 (uri (string-append
5939 "https://github.com/purcell/disable-mouse/archive/"
5940 version ".tar.gz"))
5941 (file-name (string-append name "-" version ".tar.gz"))
5942 (sha256
5943 (base32
5944 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
5945 (build-system emacs-build-system)
5946 (home-page "https://github.com/purcell/disable-mouse")
5947 (synopsis "Disable mouse commands globally")
5948 (description
5949 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
5950 pair of minor modes which suppress all mouse events by intercepting them and
5951 running a customisable handler command (@code{ignore} by default). ")
5952 (license license:gpl3+)))
5953
5954 (define-public emacs-json-reformat
5955 (package
5956 (name "emacs-json-reformat")
5957 (version "0.0.6")
5958 (source
5959 (origin
5960 (method url-fetch)
5961 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
5962 version ".tar.gz"))
5963 (file-name (string-append name "-" version ".tar.gz"))
5964 (sha256
5965 (base32
5966 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
5967 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
5968 (build-system emacs-build-system)
5969 (propagated-inputs `(("emacs-undercover" ,emacs-undercover)))
5970 (inputs
5971 `(("emacs-dash" ,emacs-dash) ; for tests
5972 ("emacs-shut-up" ,emacs-shut-up))) ; for tests
5973 (arguments
5974 `(#:phases
5975 (modify-phases %standard-phases
5976 (add-before 'install 'check
5977 (lambda* (#:key inputs #:allow-other-keys)
5978 (zero? (system* "emacs" "--batch" "-L" "."
5979 "-L" (string-append
5980 (assoc-ref inputs "emacs-undercover")
5981 "/share/emacs/site-lisp/guix.d/undercover-"
5982 ,(package-version emacs-undercover))
5983 "-L" (string-append
5984 (assoc-ref inputs "emacs-dash")
5985 "/share/emacs/site-lisp/guix.d/dash-"
5986 ,(package-version emacs-dash))
5987 "-L" (string-append
5988 (assoc-ref inputs "emacs-shut-up")
5989 "/share/emacs/site-lisp/guix.d/shut-up-"
5990 ,(package-version emacs-shut-up))
5991 "-l" "test/test-helper.el"
5992 "-l" "test/json-reformat-test.el"
5993 "-f" "ert-run-tests-batch-and-exit"))
5994 #t)))))
5995 (home-page "https://github.com/gongo/json-reformat")
5996 (synopsis "Reformatting tool for JSON")
5997 (description "@code{json-reformat} provides a reformatting tool for
5998 @url{http://json.org/, JSON}.")
5999 (license license:gpl3+)))
6000
6001 (define-public emacs-json-snatcher
6002 (package
6003 (name "emacs-json-snatcher")
6004 (version "1.0.0")
6005 (source
6006 (origin
6007 (method url-fetch)
6008 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
6009 version ".tar.gz"))
6010 (file-name (string-append name "-" version ".tar.gz"))
6011 (sha256
6012 (base32
6013 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
6014 (build-system emacs-build-system)
6015 (home-page "https://github.com/sterlingg/json-snatcher")
6016 (synopsis "Grabs the path to JSON values in a JSON file")
6017 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
6018 a @url{http://json.org/, JSON} file.")
6019 (license license:gpl3+)))
6020
6021 (define-public emacs-json-mode
6022 (package
6023 (name "emacs-json-mode")
6024 (version "1.7.0")
6025 (source
6026 (origin
6027 (method url-fetch)
6028 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
6029 "v" version ".tar.gz"))
6030 (file-name (string-append name "-" version ".tar.gz"))
6031 (sha256
6032 (base32
6033 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
6034 (build-system emacs-build-system)
6035 (propagated-inputs
6036 `(("emacs-json-reformat" ,emacs-json-reformat)
6037 ("emacs-json-snatcher" ,emacs-json-snatcher)))
6038 (home-page "https://github.com/joshwnj/json-mode")
6039 (synopsis "Major mode for editing JSON files")
6040 (description "@code{json-mode} extends the builtin js-mode syntax
6041 highlighting.")
6042 (license license:gpl3+)))
6043
6044 (define-public emacs-restclient
6045 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
6046 (revision "1")) ;Guix package revision,
6047 ;upstream doesn't have official releases
6048 (package
6049 (name "emacs-restclient")
6050 (version (string-append revision "."
6051 (string-take commit 7)))
6052 (source (origin
6053 (method git-fetch)
6054 (uri (git-reference
6055 (url "https://github.com/pashky/restclient.el.git")
6056 (commit commit)))
6057 (sha256
6058 (base32
6059 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
6060 (file-name (git-file-name name version))))
6061 (build-system emacs-build-system)
6062 (propagated-inputs
6063 `(("emacs-helm" ,emacs-helm)))
6064 (home-page "https://github.com/pashky/restclient.el")
6065 (synopsis "Explore and test HTTP REST webservices")
6066 (description
6067 "This tool allows for testing and exploration of HTTP REST Web services
6068 from within Emacs. Restclient runs queries from a plan-text query sheet,
6069 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
6070 (license license:public-domain))))
6071
6072 (define-public emacs-dired-hacks
6073 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
6074 (revision "1"))
6075 (package
6076 (name "emacs-dired-hacks")
6077 (version (string-append "0.0.1-" revision "."
6078 (string-take commit 7)))
6079 (source (origin
6080 (method git-fetch)
6081 (uri (git-reference
6082 (url "https://github.com/Fuco1/dired-hacks.git")
6083 (commit commit)))
6084 (file-name (string-append name "-" version "-checkout"))
6085 (sha256
6086 (base32
6087 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
6088 (build-system emacs-build-system)
6089 (propagated-inputs
6090 `(("emacs-dash" ,emacs-dash)
6091 ("emacs-f" ,emacs-f)
6092 ("emacs-s" ,emacs-s)))
6093 (home-page "https://github.com/Fuco1/dired-hacks")
6094 (synopsis
6095 "Collection of useful dired additions")
6096 (description
6097 "Collection of Emacs dired mode additions:
6098 @itemize
6099 @item dired-avfs
6100 @item dired-columns
6101 @item dired-filter
6102 @item dired-hacks-utils
6103 @item dired-images
6104 @item dired-list
6105 @item dired-narrow
6106 @item dired-open
6107 @item dired-rainbow
6108 @item dired-ranger
6109 @item dired-subtree
6110 @item dired-tagsistant
6111 @end itemize\n")
6112 (license license:gpl3+))))
6113
6114 (define-public emacs-which-key
6115 (package
6116 (name "emacs-which-key")
6117 (version "3.0.2")
6118 (source
6119 (origin
6120 (method url-fetch)
6121 (uri (string-append
6122 "https://github.com/justbur/emacs-which-key/archive/v"
6123 version ".tar.gz"))
6124 (sha256
6125 (base32
6126 "1xvd70cwq9n31f28viyjxmr3nn8l153gsy6scpszvgvjxkiikv24"))
6127 (file-name (string-append name "-" version ".tar.gz"))))
6128 (build-system emacs-build-system)
6129 (arguments
6130 `(#:phases
6131 (modify-phases %standard-phases
6132 (add-before 'install 'check
6133 (lambda _
6134 (zero? (system* "emacs" "--batch" "-L" "."
6135 "-l" "which-key-tests.el"
6136 "-f" "ert-run-tests-batch-and-exit")))))))
6137 (home-page "https://github.com/justbur/emacs-which-key")
6138 (synopsis "Display available key bindings in popup")
6139 (description
6140 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
6141 bindings following your currently entered incomplete command (a prefix) in a
6142 popup. For example, after enabling the minor mode if you enter C-x and wait
6143 for the default of 1 second, the minibuffer will expand with all of the
6144 available key bindings that follow C-x (or as many as space allows given your
6145 settings).")
6146 (license license:gpl3+)))
6147
6148 (define-public emacs-ws-butler
6149 (package
6150 (name "emacs-ws-butler")
6151 (version "0.6")
6152 (source (origin
6153 (method git-fetch)
6154 (uri (git-reference
6155 (url "https://github.com/lewang/ws-butler.git")
6156 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
6157 (file-name (string-append name "-" version "-checkout"))
6158 (sha256
6159 (base32
6160 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
6161 (build-system emacs-build-system)
6162 (native-inputs
6163 `(("ert-runner" ,ert-runner)))
6164 (arguments
6165 `(#:phases
6166 (modify-phases %standard-phases
6167 (add-before 'install 'check
6168 (lambda _
6169 (zero? (system* "ert-runner" "tests")))))))
6170 (home-page "https://github.com/lewang/ws-butler")
6171 (synopsis "Trim spaces from end of lines")
6172 (description
6173 "This Emacs package automatically and unobtrusively trims whitespace
6174 characters from end of lines.")
6175 (license license:gpl3+)))
6176
6177 (define-public emacs-org-edit-latex
6178 (package
6179 (name "emacs-org-edit-latex")
6180 (version "0.8.0")
6181 (source
6182 (origin
6183 (method url-fetch)
6184 (uri (string-append
6185 "https://github.com/et2010/org-edit-latex/archive/v"
6186 version ".tar.gz"))
6187 (file-name (string-append name "-" version ".tar.gz"))
6188 (sha256
6189 (base32
6190 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
6191 (build-system emacs-build-system)
6192 (propagated-inputs
6193 `(("emacs-auctex" ,emacs-auctex)
6194 ;; The version of org in Emacs 25.2 is not sufficient, because the
6195 ;; `org-latex-make-preamble' function is required.
6196 ("emacs-org" ,emacs-org)))
6197 (home-page "https://github.com/et2010/org-edit-latex")
6198 (synopsis "Edit a latex fragment just like editing a src block")
6199 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
6200 It lets you edit a latex fragment in a dedicated buffer just like editing a
6201 src block.")
6202 (license license:gpl3+)))
6203
6204 (define-public emacs-emamux
6205 (package
6206 (name "emacs-emamux")
6207 (version "0.14")
6208 (source (origin
6209 (method url-fetch)
6210 (uri (string-append
6211 "https://github.com/syohex/emacs-emamux/archive/"
6212 version ".tar.gz"))
6213 (file-name (string-append name "-" version ".tar.gz"))
6214 (sha256
6215 (base32
6216 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
6217 (build-system emacs-build-system)
6218 (home-page "https://github.com/syohex/emacs-emamux")
6219 (synopsis "Manipulate Tmux from Emacs")
6220 (description
6221 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
6222 multiplexer.")
6223 (license license:gpl3+)))
6224
6225 (define-public emacs-rpm-spec-mode
6226 (package
6227 (name "emacs-rpm-spec-mode")
6228 (version "0.16")
6229 (source
6230 (origin
6231 (method url-fetch)
6232 ;; URI has the Fedora release number instead of the version
6233 ;; number. This will have to updated manually every new release.
6234 (uri (string-append
6235 "https://src.fedoraproject.org/cgit/rpms"
6236 "/emacs-rpm-spec-mode.git/snapshot"
6237 "/emacs-rpm-spec-mode-f26.tar.gz"))
6238 (sha256
6239 (base32
6240 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
6241 (build-system emacs-build-system)
6242 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
6243 (synopsis "Emacs major mode for editing RPM spec files")
6244 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
6245 editing RPM spec files.")
6246 (license license:gpl2+)))
6247
6248 (define-public emacs-git-messenger
6249 (package
6250 (name "emacs-git-messenger")
6251 (version "0.18")
6252 (source
6253 (origin
6254 (method url-fetch)
6255 (uri (string-append
6256 "https://github.com/syohex/emacs-git-messenger/archive/"
6257 version ".tar.gz"))
6258 (file-name (string-append name "-" version ".tar.gz"))
6259 (sha256
6260 (base32
6261 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
6262 (build-system emacs-build-system)
6263 (propagated-inputs
6264 `(("emacs-popup" ,emacs-popup)))
6265 (arguments
6266 `(#:phases
6267 (modify-phases %standard-phases
6268 (add-before 'install 'check
6269 (lambda* (#:key inputs #:allow-other-keys)
6270 (zero? (system* "emacs" "--batch" "-L" "."
6271 "-L" (string-append
6272 (assoc-ref inputs "emacs-popup")
6273 "/share/emacs/site-lisp/guix.d/popup-"
6274 ,(package-version emacs-popup))
6275 "-l" "test/test.el"
6276 "-f" "ert-run-tests-batch-and-exit")))))))
6277 (home-page "https://github.com/syohex/emacs-git-messenger")
6278 (synopsis "Popup commit message at current line")
6279 (description "@code{emacs-git-messenger} provides
6280 @code{git-messenger:popup-message}, a function that when called, will popup
6281 the last git commit message for the current line. This uses git-blame
6282 internally.")
6283 (license license:gpl3+)))
6284
6285 (define-public emacs-gitpatch
6286 (package
6287 (name "emacs-gitpatch")
6288 (version "0.5.0")
6289 (source
6290 (origin
6291 (method url-fetch)
6292 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
6293 "v" version ".tar.gz"))
6294 (file-name (string-append name "-" version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
6298 (build-system emacs-build-system)
6299 (home-page "https://github.com/tumashu/gitpatch")
6300 (synopsis "Mail git patch from Emacs")
6301 (description "@code{emacs-gitpatch} lets users easily send git patches,
6302 created by @code{git format-patch}, from @code{magit}, @code{dired} and
6303 @code{ibuffer} buffers.")
6304 (license license:gpl3+)))
6305
6306 (define-public emacs-erc-hl-nicks
6307 (package
6308 (name "emacs-erc-hl-nicks")
6309 (version "1.3.2")
6310 (source
6311 (origin
6312 (method url-fetch)
6313 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
6314 "/archive/" version ".tar.gz"))
6315 (file-name (string-append name "-" version ".tar.gz"))
6316 (sha256
6317 (base32
6318 "01svpl9bps5kx4y1wnymakxya2cznqmlynvqv2r500wpnbxczrbs"))))
6319 (build-system emacs-build-system)
6320 (synopsis "Nickname highlighting for Emacs ERC")
6321 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
6322 client for Emacs. The main features are:
6323 @itemize
6324 @item Auto-colorizes nicknames without having to specify colors
6325 @item Ignores certain characters that IRC clients add to nicknames to avoid
6326 duplicates (nickname, nickname’, nickname\", etc.)
6327 @item Attempts to produce colors with a sufficient amount of contrast between
6328 the nick color and the background color
6329 @end itemize\n")
6330 (home-page "https://github.com/leathekd/erc-hl-nicks")
6331 (license license:gpl3+)))
6332
6333 (define-public emacs-engine-mode
6334 (package
6335 (name "emacs-engine-mode")
6336 (version "2.0.0")
6337 (source
6338 (origin
6339 (method url-fetch)
6340 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
6341 "v" version ".tar.gz"))
6342 (file-name (string-append name "-" version ".tar.gz"))
6343 (sha256
6344 (base32
6345 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
6346 (build-system emacs-build-system)
6347 (synopsis "Minor mode for defining and querying search engines")
6348 (description "@code{engine-mode} is a global minor mode for Emacs. It
6349 enables you to easily define search engines, bind them to keybindings, and
6350 query them from the comfort of your editor.")
6351 (home-page "https://github.com/hrs/engine-mode")
6352 (license license:gpl3+)))
6353
6354 (define-public emacs-prop-menu
6355 (package
6356 (name "emacs-prop-menu")
6357 (version "0.1.2")
6358 (source
6359 (origin
6360 (method url-fetch)
6361 (uri (string-append
6362 "http://stable.melpa.org/packages/prop-menu-"
6363 version ".el"))
6364 (sha256
6365 (base32
6366 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
6367 (build-system emacs-build-system)
6368 (home-page
6369 "https://github.com/david-christiansen/prop-menu-el")
6370 (synopsis
6371 "Create and display a context menu based on text and overlay properties")
6372 (description
6373 "This is a library for computing context menus based on text
6374 properties and overlays. The intended use is to have tools that
6375 annotate source code and others that use these annotations, without
6376 requiring a direct coupling between them, but maintaining
6377 discoverability.
6378
6379 Major modes that wish to use this library should first define an
6380 appropriate value for @code{prop-menu-item-functions}. Then, they should
6381 bind @code{prop-menu-by-completing-read} to an appropriate
6382 key. Optionally, a mouse pop-up can be added by binding
6383 @code{prop-menu-show-menu} to a mouse event.")
6384 (license license:gpl3+)))
6385
6386 (define-public emacs-idris-mode
6387 (package
6388 (name "emacs-idris-mode")
6389 (version "0.9.19")
6390 (source
6391 (origin
6392 (method url-fetch)
6393 (uri (string-append
6394 "http://stable.melpa.org/packages/idris-mode-"
6395 version ".tar"))
6396 (sha256
6397 (base32
6398 "0ld4kfwnyyhlsnj5f6cbn4is4mpxdqalk2aifkw02r00mbr9n294"))))
6399 (build-system emacs-build-system)
6400 (propagated-inputs
6401 `(("emacs-prop-menu" ,emacs-prop-menu)))
6402 (home-page
6403 "https://github.com/idris-hackers/idris-mode")
6404 (synopsis "Major mode for editing Idris code")
6405 (description
6406 "This is an Emacs mode for editing Idris code. It requires the latest
6407 version of Idris, and some features may rely on the latest Git version of
6408 Idris.")
6409 (license license:gpl3+)))
6410
6411 (define-public emacs-browse-at-remote
6412 (let ((commit "b5cff7971ca8bbb966e3acd9b7e5c4c007f94215")
6413 (revision "1"))
6414 (package
6415 (name "emacs-browse-at-remote")
6416 (version (string-append "0.9.0-" revision "."
6417 (string-take commit 7)))
6418 (source (origin
6419 (method git-fetch)
6420 (uri (git-reference
6421 (url "https://github.com/rmuslimov/browse-at-remote.git")
6422 (commit commit)))
6423 (file-name (string-append name "-" version "-checkout"))
6424 (sha256
6425 (base32
6426 "16ms9703m15dfxg6ap4mdw7msf8z5rzsdhba51dwivfpjxg7n52c"))))
6427 (build-system emacs-build-system)
6428 (propagated-inputs
6429 `(("emacs-f" ,emacs-f)
6430 ("emacs-s" ,emacs-s)))
6431 (native-inputs
6432 `(("ert-runner" ,ert-runner)))
6433 (arguments
6434 `(#:phases
6435 (modify-phases %standard-phases
6436 (add-before 'install 'check
6437 (lambda _
6438 (zero? (system* "ert-runner")))))))
6439 (home-page "https://github.com/rmuslimov/browse-at-remote")
6440 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
6441 (description
6442 "This Emacs package allows you to open a target page on
6443 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
6444 It supports dired buffers and opens them in tree mode at destination.")
6445 (license license:gpl3+))))
6446
6447 (define-public emacs-tiny
6448 (package
6449 (name "emacs-tiny")
6450 (version "0.2.1")
6451 (source
6452 (origin
6453 (method url-fetch)
6454 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
6455 (sha256
6456 (base32
6457 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
6458 (build-system emacs-build-system)
6459 (home-page "https://github.com/abo-abo/tiny")
6460 (synopsis "Quickly generate linear ranges in Emacs")
6461 (description
6462 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
6463 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
6464 proficiency is an advantage, since you can transform your numeric range with
6465 an elisp expression.")
6466 (license license:gpl3+)))
6467
6468 (define-public emacs-emojify
6469 (package
6470 (name "emacs-emojify")
6471 (version "0.4")
6472 (source
6473 (origin
6474 (method url-fetch)
6475 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
6476 "releases/download/v" version "/emojify-"
6477 version ".tar"))
6478 (sha256
6479 (base32
6480 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
6481 (build-system emacs-build-system)
6482 (arguments
6483 `(#:phases
6484 (modify-phases %standard-phases
6485 (add-after 'install 'install-data
6486 (lambda* (#:key outputs #:allow-other-keys)
6487 (copy-recursively "data"
6488 (string-append (assoc-ref outputs "out")
6489 "/share/emacs/site-lisp/guix.d/"
6490 "emojify-" ,version "/data"))
6491 #t)))))
6492 (propagated-inputs
6493 `(("emacs-ht" ,emacs-ht)))
6494 (home-page "https://github.com/iqbalansari/emacs-emojify")
6495 (synopsis "Display emojis in Emacs")
6496 (description "This package displays emojis in Emacs similar to how Github,
6497 Slack, and other websites do. It can display plain ASCII like @code{:)} as
6498 well as Github-style emojis like @code{:smile:}. It provides a minor mode
6499 @code{emojify-mode} to enable the display of emojis in a buffer.")
6500 (license license:gpl3+)))
6501
6502 (define-public emacs-bash-completion
6503 (package
6504 (name "emacs-bash-completion")
6505 (version "2.0.0")
6506 (source
6507 (origin
6508 (method url-fetch)
6509 (uri (string-append
6510 "https://github.com/szermatt/emacs-bash-completion/archive/v"
6511 version ".tar.gz"))
6512 (file-name (string-append name "-" version ".tar.gz"))
6513 (sha256
6514 (base32
6515 "0mkci4a1fy8z4cmry8mx5vsx4f16a8r454slnh7lqzidnhfi63hj"))))
6516 (inputs `(("bash" ,bash)))
6517 (build-system emacs-build-system)
6518 (arguments
6519 `(#:phases
6520 (modify-phases %standard-phases
6521 (add-before 'install 'configure
6522 (lambda* (#:key inputs #:allow-other-keys)
6523 (let ((bash (assoc-ref inputs "bash")))
6524 (emacs-substitute-variables "bash-completion.el"
6525 ("bash-completion-prog" (string-append bash "/bin/bash"))))
6526 #t)))))
6527 (home-page "https://github.com/szermatt/emacs-bash-completion")
6528 (synopsis "BASH completion for the shell buffer")
6529 (description
6530 "@code{bash-completion} defines dynamic completion hooks for shell-mode
6531 and shell-command prompts that are based on bash completion.")
6532 (license license:gpl2+)))
6533
6534 (define-public emacs-easy-kill
6535 (package
6536 (name "emacs-easy-kill")
6537 (version "0.9.3")
6538 (source (origin
6539 (method url-fetch)
6540 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
6541 version ".tar"))
6542 (sha256
6543 (base32
6544 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
6545 (build-system emacs-build-system)
6546 (home-page "https://github.com/leoliu/easy-kill")
6547 (synopsis "Kill and mark things easily in Emacs")
6548 (description
6549 "This package provides commands @code{easy-kill} and @code{easy-mark} to
6550 let users kill or mark things easily.")
6551 (license license:gpl3+)))
6552
6553 (define-public emacs-csv-mode
6554 (package
6555 (name "emacs-csv-mode")
6556 (version "1.7")
6557 (source
6558 (origin
6559 (method url-fetch)
6560 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
6561 version ".el"))
6562 (sha256
6563 (base32
6564 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
6565 (build-system emacs-build-system)
6566 (home-page
6567 "http://elpa.gnu.org/packages/csv-mode.html")
6568 (synopsis
6569 "Major mode for editing comma/char separated values")
6570 (description
6571 "This Emacs package implements CSV mode, a major mode for editing records
6572 in a generalized CSV (character-separated values) format.")
6573 (license license:gpl3+)))
6574
6575 (define-public emacs-transmission
6576 (package
6577 (name "emacs-transmission")
6578 (version "0.12")
6579 (source (origin
6580 (method url-fetch)
6581 (uri (string-append
6582 "https://github.com/holomorph/transmission/archive/"
6583 version ".tar.gz"))
6584 (file-name (string-append name "-" version ".tar.gz"))
6585 (sha256
6586 (base32
6587 "1y0bpsy16pycp6m9aqvfjh2x1yswfb305ib7m2slcjpb6njgxfi6"))))
6588 (build-system emacs-build-system)
6589 (home-page "https://github.com/holomorph/transmission")
6590 (synopsis "Emacs interface to a Transmission session")
6591 (description "This package provides an Emacs interface to interact with a
6592 running session of the Transmission Bittorrent client.
6593
6594 Features:
6595
6596 @itemize
6597 @item List, add, start/stop, verify, remove torrents.
6598 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
6599 @item Navigate to the corresponding file list, torrent info, peer info
6600 contexts.
6601 @item Toggle downloading and set priorities for individual files.
6602 @end itemize\n")
6603 (license license:gpl3+)))
6604
6605 (define-public eless
6606 (package
6607 (name "eless")
6608 (version "0.3")
6609 (source (origin
6610 (method url-fetch)
6611 (uri (string-append
6612 "https://github.com/kaushalmodi/eless/archive/"
6613 "v" version ".tar.gz"))
6614 (file-name (string-append name "-" version ".tar.gz"))
6615 (sha256
6616 (base32
6617 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
6618 (build-system trivial-build-system)
6619 (inputs
6620 `(("bash" ,bash)))
6621 (native-inputs
6622 `(("tar" ,tar)
6623 ("gzip" ,gzip)))
6624 (arguments
6625 `(#:modules ((guix build utils))
6626 #:builder
6627 (begin
6628 (use-modules (guix build utils))
6629 (setenv "PATH" (string-append
6630 (assoc-ref %build-inputs "tar") "/bin" ":"
6631 (assoc-ref %build-inputs "gzip") "/bin"))
6632 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
6633 (chdir (string-append "eless" "-" ,version))
6634 (substitute* "eless" (("/usr/bin/env bash")
6635 (string-append (assoc-ref %build-inputs "bash")
6636 "/bin/bash")))
6637 (install-file "eless" (string-append %output "/bin"))
6638 (install-file "doc/eless.info" (string-append %output "/share/info"))
6639 #t)))
6640 (home-page "https://github.com/kaushalmodi/eless")
6641 (synopsis "Use Emacs as a paginator")
6642 (description "@code{eless} provides a combination of Bash script
6643 and a minimal Emacs view-mode.
6644
6645 Feautures:
6646
6647 @itemize
6648 @item Independent of a user’s Emacs config.
6649 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
6650 @item Not require an Emacs server to be already running.
6651 @item Syntax highlighting.
6652 @item Org-mode file rendering.
6653 @item @code{man} page viewer.
6654 @item Info viewer.
6655 @item Dired, wdired, (batch edit symbolic links).
6656 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
6657 @item Filter log files lines matching a regexp.
6658 @item Auto-revert log files similar to @code{tail -f}.
6659 @item Quickly change frame and font sizes.
6660 @end itemize\n")
6661 (license license:expat)))
6662
6663 (define-public emacs-evil-matchit
6664 (package
6665 (name "emacs-evil-matchit")
6666 (version "2.2.5")
6667 (source
6668 (origin
6669 (method url-fetch)
6670 (uri (string-append
6671 "https://github.com/redguardtoo/evil-matchit/archive/"
6672 version ".tar.gz"))
6673 (file-name (string-append name "-" version ".tar.gz"))
6674 (sha256
6675 (base32
6676 "1hm0k53m7d8zv2pk4p93k5mmilsv1mz7y2z6dqf7r6f0zmncs31a"))))
6677 (build-system emacs-build-system)
6678 (home-page "https://github.com/redguardtoo/evil-matchit")
6679 (synopsis "Vim matchit ported into Emacs")
6680 (description
6681 "@code{evil-matchit} is a minor mode for jumping between matching tags in
6682 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
6683 (license license:gpl3+)))
6684
6685 (define-public emacs-evil-smartparens
6686 (package
6687 (name "emacs-evil-smartparens")
6688 (version "0.4.0")
6689 (source
6690 (origin
6691 (method url-fetch)
6692 (uri (string-append
6693 "https://github.com/expez/evil-smartparens/archive/"
6694 version ".tar.gz"))
6695 (file-name (string-append name "-" version ".tar.gz"))
6696 (sha256
6697 (base32
6698 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
6699 (build-system emacs-build-system)
6700 (propagated-inputs
6701 `(("emacs-evil" ,emacs-evil)
6702 ("emacs-smartparens" ,emacs-smartparens)))
6703 (home-page "https://github.com/expez/evil-smartparens")
6704 (synopsis "Emacs Evil integration for Smartparens")
6705 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
6706 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
6707 emulates Vim features and provides Vim-like key bindings.")
6708 (license license:gpl3+)))
6709
6710 (define-public emacs-evil-quickscope
6711 (package
6712 (name "emacs-evil-quickscope")
6713 (version "0.1.4")
6714 (source
6715 (origin
6716 (method url-fetch)
6717 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
6718 version ".tar.gz"))
6719 (file-name (string-append name "-" version ".tar.gz"))
6720 (sha256
6721 (base32
6722 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
6723 (build-system emacs-build-system)
6724 (propagated-inputs
6725 `(("emacs-evil" ,emacs-evil)))
6726 (arguments
6727 `(#:phases
6728 (modify-phases %standard-phases
6729 (add-before 'install 'check
6730 (lambda* (#:key inputs #:allow-other-keys)
6731 (invoke "emacs" "--batch" "-L"
6732 (string-append (assoc-ref inputs "emacs-evil")
6733 "/share/emacs/site-lisp/guix.d/evil-"
6734 ,(package-version emacs-evil))
6735 "-l" "evil-quickscope-tests.el"
6736 "-f" "ert-run-tests-batch-and-exit"))))))
6737 (home-page "https://github.com/blorbx/evil-quickscope")
6738 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
6739 (description "@code{emacs-evil-quickscope} highlights targets for Evil
6740 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
6741 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
6742 features and provides Vim-like key bindings.")
6743 (license license:gpl3+)))
6744
6745 (define-public emacs-bongo
6746 (package
6747 (name "emacs-bongo")
6748 (version "1.0")
6749 (source
6750 (origin
6751 (method url-fetch)
6752 (uri (string-append
6753 "https://github.com/dbrock/bongo/archive/"
6754 version ".tar.gz"))
6755 (file-name (string-append name "-" version ".tar.gz"))
6756 (sha256
6757 (base32
6758 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
6759 (build-system emacs-build-system)
6760 (home-page "https://github.com/dbrock/bongo")
6761 (synopsis "Media player for Emacs")
6762 (description
6763 "This package provides a flexible media player for Emacs. @code{Bongo}
6764 supports multiple backends such as @code{vlc}, @code{mpg123},
6765 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
6766 @code{afplay}.")
6767 (license license:gpl2+)))