gnu: emacs-es-mode: Update to 4.3.0.
[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, 2018 Ludovic Courtès <ludo@gnu.org>
4 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 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, 2018 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 Nils Gillmann <ng0@n0.is>
16 ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
17 ;;; Copyright © 2016, 2017, 2018 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, 2018 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, 2018 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 ;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com>
36 ;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
37 ;;;
38 ;;; This file is part of GNU Guix.
39 ;;;
40 ;;; GNU Guix is free software; you can redistribute it and/or modify it
41 ;;; under the terms of the GNU General Public License as published by
42 ;;; the Free Software Foundation; either version 3 of the License, or (at
43 ;;; your option) any later version.
44 ;;;
45 ;;; GNU Guix is distributed in the hope that it will be useful, but
46 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
47 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
48 ;;; GNU General Public License for more details.
49 ;;;
50 ;;; You should have received a copy of the GNU General Public License
51 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
52
53 (define-module (gnu packages emacs)
54 #:use-module ((guix licenses) #:prefix license:)
55 #:use-module (guix packages)
56 #:use-module (guix download)
57 #:use-module (guix git-download)
58 #:use-module (guix gexp)
59 #:use-module (guix monads)
60 #:use-module (guix store)
61 #:use-module (guix build-system gnu)
62 #:use-module (guix build-system emacs)
63 #:use-module (guix build-system glib-or-gtk)
64 #:use-module (guix build-system trivial)
65 #:use-module (gnu packages)
66 #:use-module (gnu packages audio)
67 #:use-module (gnu packages bash)
68 #:use-module (gnu packages code)
69 #:use-module (gnu packages guile)
70 #:use-module (gnu packages gtk)
71 #:use-module (gnu packages gnome)
72 #:use-module (gnu packages ncurses)
73 #:use-module (gnu packages python)
74 #:use-module (gnu packages tex)
75 #:use-module (gnu packages texinfo)
76 #:use-module (gnu packages tcl)
77 #:use-module (gnu packages tls)
78 #:use-module (gnu packages pkg-config)
79 #:use-module (gnu packages xorg)
80 #:use-module (gnu packages lesstif)
81 #:use-module (gnu packages image)
82 #:use-module (gnu packages linux)
83 #:use-module (gnu packages version-control)
84 #:use-module (gnu packages imagemagick)
85 #:use-module (gnu packages w3m)
86 #:use-module (gnu packages wget)
87 #:use-module (gnu packages autotools)
88 #:use-module (gnu packages base)
89 #:use-module (gnu packages compression)
90 #:use-module (gnu packages xml)
91 #:use-module (gnu packages glib)
92 #:use-module (gnu packages acl)
93 #:use-module (gnu packages package-management)
94 #:use-module (gnu packages perl)
95 #:use-module (gnu packages pdf)
96 #:use-module (gnu packages scheme)
97 #:use-module (gnu packages statistics)
98 #:use-module (gnu packages xiph)
99 #:use-module (gnu packages mp3)
100 #:use-module (gnu packages gettext)
101 #:use-module (gnu packages fribidi)
102 #:use-module (gnu packages gd)
103 #:use-module (gnu packages fontutils)
104 #:use-module (gnu packages password-utils)
105 #:use-module (guix utils)
106 #:use-module (srfi srfi-1)
107 #:use-module (ice-9 match))
108
109 (define-public emacs
110 (package
111 (name "emacs")
112 (version "25.3")
113 (source (origin
114 (method url-fetch)
115 (uri (string-append "mirror://gnu/emacs/emacs-"
116 version ".tar.xz"))
117 (sha256
118 (base32
119 "02y00y9q42g1iqgz5qhmsja75hwxd88yrn9zp14lanay0zkwafi5"))
120 (patches (search-patches "emacs-exec-path.patch"
121 "emacs-fix-scheme-indent-function.patch"
122 "emacs-source-date-epoch.patch"))
123 (modules '((guix build utils)))
124 (snippet
125 ;; Delete the bundled byte-compiled elisp files and
126 ;; generated autoloads.
127 '(with-directory-excursion "lisp"
128 (for-each delete-file
129 (append (find-files "." "\\.elc$")
130 (find-files "." "loaddefs\\.el$")
131 ;; This is the only "autoloads" file that
132 ;; does not have "*loaddefs.el" name.
133 '("eshell/esh-groups.el")))
134
135 ;; Make sure Tramp looks for binaries in the right places on
136 ;; remote GuixSD machines, where 'getconf PATH' returns
137 ;; something bogus.
138 (substitute* "net/tramp-sh.el"
139 ;; Patch the line after "(defcustom tramp-remote-path".
140 (("\\(tramp-default-remote-path")
141 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
142 "~/.guix-profile/bin" "~/.guix-profile/sbin"
143 "/run/current-system/profile/bin"
144 "/run/current-system/profile/sbin")))
145
146 ;; Make sure Man looks for C header files in the right
147 ;; places.
148 (substitute* "man.el"
149 (("\"/usr/local/include\"" line)
150 (string-join
151 (list line
152 "\"~/.guix-profile/include\""
153 "\"/var/guix/profiles/system/profile/include\"")
154 " ")))))))
155 (build-system glib-or-gtk-build-system)
156 (arguments
157 `(#:phases
158 (modify-phases %standard-phases
159 (add-before 'configure 'fix-/bin/pwd
160 (lambda _
161 ;; Use `pwd', not `/bin/pwd'.
162 (substitute* (find-files "." "^Makefile\\.in$")
163 (("/bin/pwd")
164 "pwd"))))
165 (add-after 'install 'install-site-start
166 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
167 ;; provided by Guix and installed in
168 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
169 ;; automatically found.
170 (lambda* (#:key inputs outputs #:allow-other-keys)
171 (let* ((out (assoc-ref outputs "out"))
172 (lisp-dir (string-append out "/share/emacs/site-lisp")))
173 (copy-file (assoc-ref inputs "guix-emacs.el")
174 (string-append lisp-dir "/guix-emacs.el"))
175 (with-output-to-file (string-append lisp-dir "/site-start.el")
176 (lambda ()
177 (display
178 (string-append "(when (require 'guix-emacs nil t)\n"
179 " (guix-emacs-autoload-packages))\n"))))
180 #t))))))
181 (inputs
182 `(("gnutls" ,gnutls)
183 ("ncurses" ,ncurses)
184
185 ;; TODO: Add the optional dependencies.
186 ("libx11" ,libx11)
187 ("gtk+" ,gtk+)
188 ("libxft" ,libxft)
189 ("libtiff" ,libtiff)
190 ("giflib" ,giflib)
191 ("libjpeg" ,libjpeg-8)
192 ("imagemagick" ,imagemagick)
193 ("acl" ,acl)
194
195 ;; When looking for libpng `configure' links with `-lpng -lz', so we
196 ;; must also provide zlib as an input.
197 ("libpng" ,libpng)
198 ("zlib" ,zlib)
199
200 ("librsvg" ,librsvg)
201 ("libxpm" ,libxpm)
202 ("libxml2" ,libxml2)
203 ("libice" ,libice)
204 ("libsm" ,libsm)
205 ("alsa-lib" ,alsa-lib)
206 ("dbus" ,dbus)
207
208 ;; multilingualization support
209 ("libotf" ,libotf)
210 ("m17n-lib" ,m17n-lib)))
211 (native-inputs
212 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
213 ("pkg-config" ,pkg-config)
214 ("texinfo" ,texinfo)))
215
216 (native-search-paths
217 (list (search-path-specification
218 (variable "INFOPATH")
219 (files '("share/info")))))
220
221 (home-page "https://www.gnu.org/software/emacs/")
222 (synopsis "The extensible, customizable, self-documenting text editor")
223 (description
224 "GNU Emacs is an extensible and highly customizable text editor. It is
225 based on an Emacs Lisp interpreter with extensions for text editing. Emacs
226 has been extended in essentially all areas of computing, giving rise to a
227 vast array of packages supporting, e.g., email, IRC and XMPP messaging,
228 spreadsheets, remote server editing, and much more. Emacs includes extensive
229 documentation on all aspects of the system, from basic editing to writing
230 large Lisp programs. It has full Unicode support for nearly all human
231 languages.")
232 (license license:gpl3+)))
233
234 (define-public emacs-minimal
235 ;; This is the version that you should use as an input to packages that just
236 ;; need to byte-compile .el files.
237 (package (inherit emacs)
238 (name "emacs-minimal")
239 (synopsis "The extensible text editor (used only for byte-compilation)")
240 (build-system gnu-build-system)
241 (arguments
242 (substitute-keyword-arguments (package-arguments emacs)
243 ((#:phases phases)
244 `(modify-phases ,phases
245 (delete 'install-site-start)))))
246 (inputs
247 `(("ncurses" ,ncurses)))
248 (native-inputs
249 `(("pkg-config" ,pkg-config)))))
250
251 (define-public emacs-no-x
252 (package (inherit emacs)
253 (name "emacs-no-x")
254 (synopsis "The extensible, customizable, self-documenting text
255 editor (console only)")
256 (build-system gnu-build-system)
257 (inputs (fold alist-delete
258 (package-inputs emacs)
259 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
260 "imagemagick" "libpng" "librsvg" "libxpm" "libice"
261 "libsm"
262
263 ;; These depend on libx11, so remove them as well.
264 "libotf" "m17n-lib" "dbus")))))
265
266 (define-public emacs-no-x-toolkit
267 (package (inherit emacs)
268 (name "emacs-no-x-toolkit")
269 (synopsis "The extensible, customizable, self-documenting text
270 editor (without an X toolkit)" )
271 (build-system gnu-build-system)
272 (inputs (append `(("inotify-tools" ,inotify-tools))
273 (alist-delete "gtk+" (package-inputs emacs))))
274 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
275 (package-arguments emacs)))))
276
277 (define-public guile-emacs
278 (package (inherit emacs)
279 (name "guile-emacs")
280 (version "20150512.41120e0")
281 (source (origin
282 (method git-fetch)
283 (uri (git-reference
284 (url "git://git.hcoop.net/git/bpt/emacs.git")
285 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
286 (file-name (string-append name "-" version "-checkout"))
287 (patches (search-patches "guile-emacs-fix-configure.patch"))
288 (sha256
289 (base32
290 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
291 (native-inputs
292 `(("autoconf" ,autoconf)
293 ("automake" ,automake)
294 ("guile" ,guile-for-guile-emacs)
295 ,@(package-native-inputs emacs)))
296 (arguments
297 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
298 #:parallel-build? #f
299 ;; Tests aren't passing for now.
300 #:tests? #f
301 ,@(package-arguments emacs))
302 ((#:phases phases)
303 `(modify-phases ,phases
304 (add-after 'unpack 'autogen
305 (lambda _
306 (zero? (system* "sh" "autogen.sh"))))
307 ;; Build sometimes fails: deps/dispnew.d: No such file or directory
308 (add-before 'build 'make-deps-dir
309 (lambda _
310 (zero? (system* "mkdir" "-p" "src/deps"))))))))))
311
312 \f
313 ;;;
314 ;;; Emacs hacking.
315 ;;;
316
317 (define-public geiser
318 (package
319 (name "geiser")
320 (version "0.9")
321 (source (origin
322 (method url-fetch)
323 (uri (string-append "mirror://savannah/geiser/" version
324 "/geiser-" version ".tar.gz"))
325 (sha256
326 (base32
327 "0phz9d8wjk4p13vqannv0003fwh8qqrp0gfzcs2hgq1mrmv1srss"))))
328 (build-system gnu-build-system)
329 (arguments
330 '(#:phases
331 (modify-phases %standard-phases
332 (add-after 'install 'post-install
333 (lambda* (#:key outputs #:allow-other-keys)
334 (symlink "geiser-install.el"
335 (string-append (assoc-ref outputs "out")
336 "/share/emacs/site-lisp/"
337 "geiser-autoloads.el"))
338 #t)))))
339 (inputs `(("guile" ,guile-2.0)))
340 (native-inputs `(("emacs" ,emacs-minimal)))
341 (home-page "https://nongnu.org/geiser/")
342 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
343 (description
344 "Geiser is a collection of Emacs major and minor modes that conspire with
345 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
346 continuously running Scheme interpreter takes the center of the stage in
347 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
348 implementation, Emacs and, ultimately, the schemer, giving them access to live
349 metadata.")
350 (license license:bsd-3)))
351
352 (define-public geiser-next
353 ;; This has become "geiser".
354 (deprecated-package "geiser-next" geiser))
355
356 (define-public paredit
357 (package
358 (name "emacs-paredit")
359 (version "24")
360 (source (origin
361 (method url-fetch)
362 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
363 version ".el"))
364 (sha256
365 (base32
366 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
367 (build-system emacs-build-system)
368 (home-page "http://mumble.net/~campbell/emacs/paredit/")
369 (synopsis "Emacs minor mode for editing parentheses")
370 (description
371 "ParEdit (paredit.el) is a minor mode for performing structured editing
372 of S-expression data. The typical example of this would be Lisp or Scheme
373 source code.
374
375 ParEdit helps **keep parentheses balanced** and adds many keys for moving
376 S-expressions and moving around in S-expressions. Its behavior can be jarring
377 for those who may want transient periods of unbalanced parentheses, such as
378 when typing parentheses directly or commenting out code line by line.")
379 (license license:gpl3+)))
380
381 (define-public paredit/old-name
382 (deprecated-package "paredit" paredit))
383
384 (define-public git-modes
385 (package
386 (name "emacs-git-modes")
387 (version "1.2.7")
388 (source (origin
389 (method url-fetch)
390 (uri (string-append
391 "https://github.com/magit/git-modes/archive/"
392 version ".tar.gz"))
393 (file-name (string-append name "-" version ".tar.gz"))
394 (sha256
395 (base32
396 "1mzl70s0xyysnjq1j10mc5vn9i022n5vd82kxsgp4xxqq7gc4qnx"))))
397 (build-system emacs-build-system)
398 (home-page "https://github.com/magit/git-modes")
399 (synopsis "Emacs major modes for Git configuration files")
400 (description
401 "This package provides Emacs major modes for editing various Git
402 configuration files, such as .gitattributes, .gitignore, and .git/config.")
403 (license license:gpl3+)))
404
405 (define-public git-modes/old-name
406 (deprecated-package "git-modes" git-modes))
407
408 (define-public emacs-with-editor
409 (package
410 (name "emacs-with-editor")
411 (version "2.7.0")
412 (source (origin
413 (method url-fetch)
414 (uri (string-append
415 "https://github.com/magit/with-editor/archive/v"
416 version ".tar.gz"))
417 (file-name (string-append name "-" version ".tar.gz"))
418 (sha256
419 (base32
420 "0kah7pv211zx9fsb5g4hd51bqcq2bxd1chdykd488ihvfz1l5y14"))))
421 (build-system emacs-build-system)
422 (propagated-inputs
423 `(("emacs-dash" ,emacs-dash)))
424 (home-page "https://github.com/magit/with-editor")
425 (synopsis "Emacs library for using Emacsclient as EDITOR")
426 (description
427 "This package provides an Emacs library to use the Emacsclient as
428 @code{$EDITOR} of child processes, making sure they know how to call home.
429 For remote processes a substitute is provided, which communicates with Emacs
430 on stdout instead of using a socket as the Emacsclient does.")
431 (license license:gpl3+)))
432
433 (define-public magit
434 (package
435 (name "magit")
436 (version "2.11.0")
437 (source (origin
438 (method url-fetch)
439 (uri (string-append
440 "https://github.com/magit/magit/releases/download/"
441 version "/" name "-" version ".tar.gz"))
442 (sha256
443 (base32
444 "11xly5bma9jc1jhs8fqbqrci8kz1y26yfq7dqjkqfy956wvfg6hz"))))
445 (build-system gnu-build-system)
446 (native-inputs `(("texinfo" ,texinfo)
447 ("emacs" ,emacs-minimal)))
448 (inputs
449 `(("git" ,git)
450 ("perl" ,perl)))
451 (propagated-inputs
452 `(("dash" ,emacs-dash)
453 ;; XXX Add 'magit-popup' dependency for the next release (after 2.11.0).
454 ("with-editor" ,emacs-with-editor)))
455 (arguments
456 `(#:test-target "test"
457 #:tests? #f ; tests are not included in the release
458
459 #:make-flags
460 (list (string-append "PREFIX=" %output)
461 ;; Don't put .el files in a sub-directory.
462 (string-append "lispdir=" %output "/share/emacs/site-lisp")
463 (string-append "DASH_DIR="
464 (assoc-ref %build-inputs "dash")
465 "/share/emacs/site-lisp/guix.d/dash-"
466 ,(package-version emacs-dash))
467 (string-append "WITH_EDITOR_DIR="
468 (assoc-ref %build-inputs "with-editor")
469 "/share/emacs/site-lisp/guix.d/with-editor-"
470 ,(package-version emacs-with-editor)))
471
472 #:phases
473 (modify-phases %standard-phases
474 (delete 'configure)
475 (add-before
476 'build 'patch-exec-paths
477 (lambda* (#:key inputs #:allow-other-keys)
478 (let ((perl (assoc-ref inputs "perl")))
479 (substitute* "lisp/magit-sequence.el"
480 (("perl") (string-append perl "/bin/perl")))
481 #t))))))
482 (home-page "http://magit.github.io/")
483 (synopsis "Emacs interface for the Git version control system")
484 (description
485 "With Magit, you can inspect and modify your Git repositories with Emacs.
486 You can review and commit the changes you have made to the tracked files, for
487 example, and you can browse the history of past changes. There is support for
488 cherry picking, reverting, merging, rebasing, and other common Git
489 operations.")
490 (license license:gpl3+)))
491
492 (define-public magit-svn
493 (package
494 (name "magit-svn")
495 (version "2.2.0")
496 (source (origin
497 (method url-fetch)
498 (uri (string-append
499 "https://github.com/magit/magit-svn/archive/"
500 version ".tar.gz"))
501 (file-name (string-append name "-" version ".tar.gz"))
502 (sha256
503 (base32
504 "1c3n377v436zaxamlsz04y1ahdhp96x1vd43zaryv4y10m02ba47"))))
505 (build-system trivial-build-system)
506 (native-inputs `(("emacs" ,emacs-minimal)
507 ("tar" ,tar)
508 ("gzip" ,gzip)))
509 (propagated-inputs `(("dash" ,emacs-dash)
510 ("with-editor" ,emacs-with-editor)
511 ("magit" ,magit)))
512 (arguments
513 `(#:modules ((guix build utils)
514 (guix build emacs-utils))
515
516 #:builder
517 (begin
518 (use-modules (guix build utils)
519 (guix build emacs-utils))
520
521 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
522 "/bin/tar"))
523 (PATH (string-append (assoc-ref %build-inputs "gzip")
524 "/bin"))
525 (emacs (string-append (assoc-ref %build-inputs "emacs")
526 "/bin/emacs"))
527 (magit (string-append (assoc-ref %build-inputs "magit")
528 "/share/emacs/site-lisp"))
529 (dash (string-append (assoc-ref %build-inputs "dash")
530 "/share/emacs/site-lisp/guix.d/dash-"
531 ,(package-version emacs-dash)))
532 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
533 "/share/emacs/site-lisp/guix.d/with-editor-"
534 ,(package-version emacs-with-editor)))
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 ":" with-editor))
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 "\\.el$")
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 "31")
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 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))))
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.13")
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 "01i0bz7wdqzcnv5r63m9xgl07yf1nmn86dwy00rcfsn5za46y3r3"))))
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 "https://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.5")
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 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
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 (file-name (string-append name "-" version ".tar.gz"))
1624 (sha256
1625 (base32
1626 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0"))))
1627 (build-system emacs-build-system)
1628 (propagated-inputs
1629 `(("emacs-undercover" ,emacs-undercover)))
1630 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1631 (synopsis "Emacs major mode for editing D code")
1632 (description "This package provides an Emacs major mode for highlighting
1633 code written in the D programming language. This mode is currently known to
1634 work with Emacs 24 and 25.")
1635 (license license:gpl2+)))
1636
1637 (define-public emacs-keyfreq
1638 (package
1639 (name "emacs-keyfreq")
1640 (version "20160516.716")
1641 (source
1642 (origin
1643 (method url-fetch)
1644 (uri (string-append "http://melpa.org/packages/keyfreq-"
1645 version ".el"))
1646 (sha256
1647 (base32
1648 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1649 (build-system emacs-build-system)
1650 (home-page "https://github.com/dacap/keyfreq")
1651 (synopsis "Track Emacs command frequencies")
1652 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1653 a command.")
1654 (license license:gpl3+)))
1655
1656 (define-public emacs-olivetti
1657 (package
1658 (name "emacs-olivetti")
1659 (version "1.5.7")
1660 (source (origin
1661 (method url-fetch)
1662 (uri (string-append
1663 "https://stable.melpa.org/packages/olivetti-"
1664 version ".el"))
1665 (sha256
1666 (base32
1667 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1668 (build-system emacs-build-system)
1669 (home-page "https://github.com/rnkn/olivetti")
1670 (synopsis "Emacs minor mode for a nice writing environment")
1671 (description "This package provides an Emacs minor mode that puts writing
1672 in the center.")
1673 (license license:gpl3+)))
1674
1675 (define-public emacs-undo-tree
1676 (package
1677 (name "emacs-undo-tree")
1678 (version "0.6.6")
1679 (source (origin
1680 (method git-fetch)
1681 (uri (git-reference
1682 (url "http://dr-qubit.org/git/undo-tree.git")
1683 (commit (string-append "release/" version))))
1684 (file-name (string-append name "-" version "-checkout"))
1685 (sha256
1686 (base32
1687 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1688 (build-system emacs-build-system)
1689 (home-page "http://www.dr-qubit.org/emacs.php")
1690 (synopsis "Treat undo history as a tree")
1691 (description "Tree-like interface to Emacs undo system, providing
1692 graphical tree presentation of all previous states of buffer that
1693 allows easily move between them.")
1694 (license license:gpl3+)))
1695
1696 (define-public emacs-s
1697 (package
1698 (name "emacs-s")
1699 (version "1.12.0")
1700 (source (origin
1701 (method url-fetch)
1702 (uri (string-append
1703 "https://github.com/magnars/s.el/archive/"
1704 version ".tar.gz"))
1705 (file-name (string-append name "-" version ".tar.gz"))
1706 (sha256
1707 (base32
1708 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1709 (build-system emacs-build-system)
1710 (arguments
1711 `(#:phases
1712 (modify-phases %standard-phases
1713 (add-before 'install 'check
1714 (lambda _
1715 (zero? (system* "./run-tests.sh")))))))
1716 (home-page "https://github.com/magnars/s.el")
1717 (synopsis "Emacs string manipulation library")
1718 (description "This package provides an Emacs library for manipulating
1719 strings.")
1720 (license license:gpl3+)))
1721
1722 (define-public emacs-symon
1723 (package
1724 (name "emacs-symon")
1725 (version "20160630")
1726 (source
1727 (origin
1728 (method url-fetch)
1729 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1730 version ".tar.gz"))
1731 (file-name (string-append name "-" version ".tar.gz"))
1732 (sha256
1733 (base32
1734 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1735 (build-system emacs-build-system)
1736 (home-page "https://github.com/zk-phi/symon")
1737 (synopsis "Tiny graphical system monitor")
1738 (description
1739 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1740 (license license:gpl2+)))
1741
1742 (define-public emacs-sx
1743 (package
1744 (name "emacs-sx")
1745 (version "0.4")
1746 (source (origin
1747 (method url-fetch)
1748 (uri (string-append "https://github.com/vermiculus/sx.el/"
1749 "archive/v" version ".tar.gz"))
1750 (file-name (string-append name "-" version ".tar.gz"))
1751 (sha256
1752 (base32
1753 "1w0xghfljqg31axcnv8gzlrd8pw25nji6idnrhflq0af9qh1dw03"))))
1754 (build-system emacs-build-system)
1755 (propagated-inputs
1756 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1757 (home-page "https://github.com/vermiculus/sx.el/")
1758 (synopsis "Emacs StackExchange client")
1759 (description
1760 "Emacs StackExchange client. Ask and answer questions on
1761 Stack Overflow, Super User, and other StackExchange sites.")
1762 (license license:gpl3+)))
1763
1764 (define-public emacs-f
1765 (package
1766 (name "emacs-f")
1767 (version "0.19.0")
1768 (source (origin
1769 (method url-fetch)
1770 (uri (string-append
1771 "https://github.com/rejeep/f.el/archive/v"
1772 version ".tar.gz"))
1773 (file-name (string-append name "-" version ".tar.gz"))
1774 (sha256
1775 (base32
1776 "05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs"))))
1777 (build-system emacs-build-system)
1778 (propagated-inputs
1779 `(("emacs-s" ,emacs-s)
1780 ("emacs-dash" ,emacs-dash)))
1781 (home-page "https://github.com/rejeep/f.el")
1782 (synopsis "Emacs API for working with files and directories")
1783 (description "This package provides an Emacs library for working with
1784 files and directories.")
1785 (license license:gpl3+)))
1786
1787 (define-public emacs-git-gutter
1788 (package
1789 (name "emacs-git-gutter")
1790 (version "0.90")
1791 (source (origin
1792 (method url-fetch)
1793 (uri (string-append
1794 "https://github.com/syohex/" name "/archive/"
1795 version ".tar.gz"))
1796 (file-name (string-append name "-" version ".tar.gz"))
1797 (sha256
1798 (base32
1799 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1800 (build-system emacs-build-system)
1801 (home-page "https://github.com/syohex/emacs-git-gutter")
1802 (synopsis "See and manage hunks of text in a version control system")
1803 (description
1804 "This package is an Emacs minor mode for displaying and interacting with
1805 hunks of text managed in a version control system. Added modified and deleted
1806 areas can be indicated with symbols on the edge of the buffer, and commands
1807 can be used to move between and perform actions on these hunks.
1808
1809 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1810 display and behaviour is easily customisable.")
1811 (license license:gpl3+)))
1812
1813 (define-public emacs-git-timemachine
1814 (package
1815 (name "emacs-git-timemachine")
1816 (version "3.0")
1817 (source
1818 (origin
1819 (method url-fetch)
1820 (uri (string-append "https://github.com/pidu/git-timemachine/"
1821 "archive/" version ".tar.gz"))
1822 (file-name (string-append name "-" version ".tar.gz"))
1823 (sha256
1824 (base32
1825 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa"))))
1826 (build-system emacs-build-system)
1827 (home-page "https://github.com/pidu/git-timemachine")
1828 (synopsis "Step through historic versions of Git-controlled files")
1829 (description "This package enables you to step through historic versions
1830 of files under Git version control from within Emacs.")
1831 (license license:gpl3+)))
1832
1833 (define-public emacs-minitest
1834 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1835 (revision "1"))
1836 (package
1837 (name "emacs-minitest")
1838 (version (git-version "0.8.0" revision commit))
1839 (source (origin
1840 (method git-fetch)
1841 (uri (git-reference
1842 (url "https://github.com/arthurnn/minitest-emacs")
1843 (commit commit)))
1844 (file-name (git-file-name name commit))
1845 (sha256
1846 (base32
1847 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1848 (build-system emacs-build-system)
1849 (arguments
1850 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1851 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1852 (propagated-inputs
1853 `(("emacs-dash" ,emacs-dash)
1854 ("emacs-f" ,emacs-f)))
1855 (home-page "https://github.com/arthurnn/minitest-emacs")
1856 (synopsis "Emacs minitest mode")
1857 (description
1858 "The minitest mode provides commands to run the tests for the current
1859 file or line, as well as rerunning the previous tests, or all the tests for a
1860 project.
1861
1862 This package also includes relevant snippets for yasnippet.")
1863 (license license:expat))))
1864
1865 (define-public emacs-el-mock
1866 (package
1867 (name "emacs-el-mock")
1868 (version "1.25.1")
1869 (source
1870 (origin
1871 (method url-fetch)
1872 (uri (string-append "https://github.com/rejeep/el-mock.el/"
1873 "archive/v" version ".tar.gz"))
1874 (file-name (string-append name "-" version ".tar.gz"))
1875 (sha256
1876 (base32
1877 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
1878 (build-system emacs-build-system)
1879 (home-page "https://github.com/rejeep/el-mock.el")
1880 (synopsis "Tiny mock and stub framework in Emacs Lisp")
1881 (description
1882 "Emacs Lisp Mock is a library for mocking and stubbing using readable
1883 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
1884 Expectations, but it can be used in other contexts.")
1885 (license license:gpl3+)))
1886
1887 (define-public emacs-espuds
1888 (package
1889 (name "emacs-espuds")
1890 (version "0.3.3")
1891 (source
1892 (origin
1893 (method url-fetch)
1894 (uri (string-append "https://github.com/ecukes/espuds/"
1895 "archive/v" version ".tar.gz"))
1896 (file-name (string-append name "-" version ".tar.gz"))
1897 (sha256
1898 (base32
1899 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
1900 (build-system emacs-build-system)
1901 (propagated-inputs
1902 `(("emacs-s" ,emacs-s)
1903 ("emacs-dash" ,emacs-dash)
1904 ("emacs-f" ,emacs-f)))
1905 (home-page "https://github.com/ecukes/espuds")
1906 (synopsis "Common step definitions for Ecukes")
1907 (description "Espuds is a collection of the most commonly used step
1908 definitions for testing with the Ecukes framework.")
1909 (license license:gpl3+)))
1910
1911 (define-public emacs-spark
1912 (let ((version "20160503") ; no proper tag, use date of commit
1913 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
1914 (revision "1"))
1915 (package
1916 (name "emacs-spark")
1917 (version (git-version version revision commit))
1918 (source
1919 (origin
1920 (method git-fetch)
1921 (uri (git-reference
1922 (url "https://github.com/alvinfrancis/spark.git")
1923 (commit commit)))
1924 (file-name (git-file-name name version))
1925 (sha256
1926 (base32
1927 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
1928 (build-system emacs-build-system)
1929 (home-page "https://github.com/alvinfrancis/spark")
1930 (synopsis "Sparkline generation library for Emacs Lisp")
1931 (description "@code{emacs-spark} is a sparkline generation library for
1932 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
1933 port of @code{cl-spark} to Emacs Lisp.")
1934 (license license:expat))))
1935
1936 (define-public emacs-es-mode
1937 (package
1938 (name "emacs-es-mode")
1939 (version "4.3.0")
1940 (source (origin
1941 (method url-fetch)
1942 (uri (string-append
1943 "https://github.com/dakrone/es-mode/archive/"
1944 version ".tar.gz"))
1945 (file-name (string-append name "-" version ".tar.gz"))
1946 (sha256
1947 (base32
1948 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
1949 (build-system emacs-build-system)
1950 (propagated-inputs
1951 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
1952 ;; to be rendered incorrectly
1953 `(("emacs-dash" ,emacs-dash)
1954 ("emacs-org" ,emacs-org)
1955 ("emacs-spark" ,emacs-spark)))
1956 (home-page "https://github.com/dakrone/es-mode")
1957 (synopsis "Major mode for editing Elasticsearch queries")
1958 (description "@code{es-mode} includes highlighting, completion and
1959 indentation support for Elasticsearch queries. Also supported are
1960 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
1961 be processed through @code{jq}, or in the case of aggregations, can be
1962 rendered in to a table. In addition, there is an @code{es-command-center}
1963 mode, which displays information about Elasticsearch clusters.")
1964 (license license:gpl3+)))
1965
1966 (define-public emacs-expand-region
1967 (package
1968 (name "emacs-expand-region")
1969 (version "0.11.0")
1970 (source
1971 (origin
1972 (method url-fetch)
1973 (uri (string-append "https://github.com/magnars/expand-region.el"
1974 "/archive/" version ".tar.gz"))
1975 (file-name (string-append name "-" version ".tar.gz"))
1976 (sha256
1977 (base32
1978 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
1979 (build-system emacs-build-system)
1980 (home-page "https://github.com/magnars/expand-region.el")
1981 (synopsis "Increase selected region by semantic units")
1982 (description
1983 "Expand region increases the selected region by semantic units. Just
1984 keep pressing the key until it selects what you want. There's also
1985 @code{er/contract-region} if you expand too far.")
1986 (license license:gpl3+)))
1987
1988 (define-public emacs-fill-column-indicator
1989 (package
1990 (name "emacs-fill-column-indicator")
1991 (version "1.81")
1992 (source
1993 (origin
1994 (method url-fetch)
1995 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
1996 "/archive/v" version ".tar.gz"))
1997 (file-name (string-append name "-" version ".tar.gz"))
1998 (sha256
1999 (base32
2000 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
2001 (build-system emacs-build-system)
2002 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2003 (synopsis "Graphically indicate the fill column")
2004 (description
2005 "Fill-column-indicator graphically indicates the location of the fill
2006 column by drawing a thin line down the length of the editing window.")
2007 (license license:gpl3+)))
2008
2009 (define-public emacs-grep-a-lot
2010 (package
2011 (name "emacs-grep-a-lot")
2012 (version "1.0.7")
2013 (source (origin
2014 (method git-fetch)
2015 (uri (git-reference
2016 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2017 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2018 (file-name (string-append name "-" version "-checkout"))
2019 (sha256
2020 (base32
2021 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2022 (build-system emacs-build-system)
2023 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2024 (synopsis "Enables multiple grep buffers in Emacs")
2025 (description
2026 "This Emacs package allows managing multiple grep buffers.")
2027 (license license:gpl3+)))
2028
2029 (define-public emacs-inf-ruby
2030 (package
2031 (name "emacs-inf-ruby")
2032 (version "2.5.1")
2033 (source
2034 (origin
2035 (method url-fetch)
2036 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2037 "archive/" version ".tar.gz"))
2038 (file-name (string-append name "-" version ".tar.gz"))
2039 (sha256
2040 (base32
2041 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2042 (build-system emacs-build-system)
2043 (home-page "https://github.com/nonsequitur/inf-ruby")
2044 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2045 (description
2046 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2047 for easy interaction with a ruby subprocess. Features include support for
2048 detecting specific uses of Ruby, e.g. when using rails, and using a
2049 appropriate console.")
2050 (license license:gpl3+)))
2051
2052 (define-public emacs-znc
2053 (package
2054 (name "emacs-znc")
2055 (version "0.0.2")
2056 (source
2057 (origin
2058 (method url-fetch)
2059 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2060 version ".el"))
2061 (sha256
2062 (base32
2063 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2064 (build-system emacs-build-system)
2065 (home-page "https://github.com/sshirokov/ZNC.el")
2066 (synopsis "Make ERC and ZNC get along better")
2067 (description
2068 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2069 IRC bouncer with ERC.")
2070 (license license:expat)))
2071
2072 (define-public emacs-shut-up
2073 (package
2074 (name "emacs-shut-up")
2075 (version "0.3.2")
2076 (source
2077 (origin
2078 (method url-fetch)
2079 (uri (string-append "https://github.com/cask/shut-up/"
2080 "archive/v" version ".tar.gz"))
2081 (file-name (string-append name "-" version ".tar.gz"))
2082 (sha256
2083 (base32
2084 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2085 (build-system emacs-build-system)
2086 (home-page "https://github.com/cask/shut-up")
2087 (synopsis "Silence Emacs")
2088 (description "This package silences most output of Emacs when running an
2089 Emacs shell script.")
2090 (license license:expat)))
2091
2092 (define-public emacs-undercover
2093 (package
2094 (name "emacs-undercover")
2095 (version "0.6.0")
2096 (source
2097 (origin
2098 (method url-fetch)
2099 (uri (string-append "https://github.com/sviridov/undercover.el/"
2100 "archive/v" version ".tar.gz"))
2101 (file-name (string-append name "-" version ".tar.gz"))
2102 (sha256
2103 (base32
2104 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2105 (build-system emacs-build-system)
2106 (propagated-inputs
2107 `(("emacs-dash" ,emacs-dash)
2108 ("emacs-shut-up" ,emacs-shut-up)))
2109 (home-page "https://github.com/sviridov/undercover.el")
2110 (synopsis "Test coverage library for Emacs Lisp")
2111 (description
2112 "Undercover is a test coverage library for software written in Emacs
2113 Lisp.")
2114 (license license:expat)))
2115
2116 (define-public emacs-paren-face
2117 (package
2118 (name "emacs-paren-face")
2119 (version "1.0.0")
2120 (source
2121 (origin
2122 (method url-fetch)
2123 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2124 version ".tar.gz"))
2125 (file-name (string-append name "-" version ".tar.gz"))
2126 (sha256
2127 (base32
2128 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2129 (build-system emacs-build-system)
2130 (home-page "https://github.com/tarsius/paren-face")
2131 (synopsis "Face for parentheses in lisp modes")
2132 (description
2133 "This library defines a face named @code{parenthesis} used just for
2134 parentheses. The intended purpose of this face is to make parentheses less
2135 visible in Lisp code by dimming them. Lispers probably don't need to be
2136 constantly made aware of the existence of the parentheses. Dimming them might
2137 be even more useful for people new to lisp who have not yet learned to
2138 subconsciously blend out the parentheses.")
2139 (license license:gpl3+)))
2140
2141 (define-public emacs-page-break-lines
2142 (package
2143 (name "emacs-page-break-lines")
2144 (version "0.11")
2145 (source
2146 (origin
2147 (method url-fetch)
2148 (uri (string-append "https://github.com/purcell/page-break-lines/"
2149 "archive/" version ".tar.gz"))
2150 (file-name (string-append name "-" version ".tar.gz"))
2151 (sha256
2152 (base32
2153 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2154 (build-system emacs-build-system)
2155 (home-page "https://github.com/purcell/page-break-lines")
2156 (synopsis "Display page breaks as tidy horizontal lines")
2157 (description
2158 "This library provides a global mode which displays form feed characters
2159 as horizontal rules.")
2160 (license license:gpl3+)))
2161
2162 (define-public emacs-simple-httpd
2163 (package
2164 (name "emacs-simple-httpd")
2165 (version "1.4.6")
2166 (source
2167 (origin
2168 (method url-fetch)
2169 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2170 "archive/" version ".tar.gz"))
2171 (file-name (string-append name "-" version ".tar.gz"))
2172 (sha256
2173 (base32
2174 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2175 (build-system emacs-build-system)
2176 (home-page "https://github.com/skeeto/emacs-http-server")
2177 (synopsis "HTTP server in pure Emacs Lisp")
2178 (description
2179 "This package provides a simple HTTP server written in Emacs Lisp to
2180 serve files and directory listings.")
2181 (license license:unlicense)))
2182
2183 (define-public emacs-skewer-mode
2184 (package
2185 (name "emacs-skewer-mode")
2186 (version "1.6.2")
2187 (source
2188 (origin
2189 (method url-fetch)
2190 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2191 version ".tar.gz"))
2192 (file-name (string-append name "-" version ".tar.gz"))
2193 (sha256
2194 (base32
2195 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2196 (build-system emacs-build-system)
2197 (propagated-inputs
2198 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2199 ("emacs-js2-mode" ,emacs-js2-mode)))
2200 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2201 (home-page "https://github.com/skeeto/skewer-mode")
2202 (synopsis "Live web development in Emacs")
2203 (description
2204 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2205 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2206 evaluated in the browser, just like Emacs does with an inferior Lisp process
2207 in Lisp modes.")
2208 (license license:unlicense)))
2209
2210 (define-public emacs-string-inflection
2211 (package
2212 (name "emacs-string-inflection")
2213 (version "1.0.6")
2214 (source (origin
2215 (method git-fetch)
2216 (uri (git-reference
2217 (url "https://github.com/akicho8/string-inflection")
2218 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2219 (file-name (string-append name "-" version "-checkout"))
2220 (sha256
2221 (base32
2222 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2223 (build-system emacs-build-system)
2224 (native-inputs
2225 `(("ert-runner" ,ert-runner)))
2226 (arguments
2227 `(#:phases
2228 (modify-phases %standard-phases
2229 (add-before 'install 'check
2230 (lambda _
2231 (zero? (system* "ert-runner")))))))
2232 (home-page "https://github.com/akicho8/string-inflection")
2233 (synopsis "Convert symbol names between different naming conventions")
2234 (description
2235 "This Emacs package provides convenient methods for manipulating the
2236 naming style of a symbol. It supports different naming conventions such as:
2237
2238 @enumerate
2239 @item camel case
2240 @item Pascal case
2241 @item all upper case
2242 @item lower case separated by underscore
2243 @item etc...
2244 @end enumerate\n")
2245 (license license:gpl2+)))
2246
2247 (define-public emacs-stripe-buffer
2248 (package
2249 (name "emacs-stripe-buffer")
2250 (version "0.2.5")
2251 (source
2252 (origin
2253 (method url-fetch)
2254 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2255 "archive/" version ".tar.gz"))
2256 (file-name (string-append name "-" version ".tar.gz"))
2257 (sha256
2258 (base32
2259 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2260 (build-system emacs-build-system)
2261 (home-page "https://github.com/sabof/stripe-buffer/")
2262 (synopsis "Add stripes to list buffers")
2263 (description
2264 "This Emacs package adds faces to add stripes to list buffers and org
2265 tables.")
2266 (license license:gpl2+)))
2267
2268 (define-public emacs-rich-minority
2269 (package
2270 (name "emacs-rich-minority")
2271 (version "1.0.1")
2272 (source
2273 (origin
2274 (method url-fetch)
2275 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2276 "archive/" version ".tar.gz"))
2277 (file-name (string-append name "-" version ".tar.gz"))
2278 (sha256
2279 (base32
2280 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2281 (build-system emacs-build-system)
2282 (home-page "https://github.com/Malabarba/rich-minority")
2283 (synopsis "Clean-up and beautify the list of minor modes")
2284 (description
2285 "This Emacs package hides and/or highlights minor modes in the
2286 mode-line.")
2287 (license license:gpl2+)))
2288
2289 (define-public emacs-robe
2290 (package
2291 (name "emacs-robe")
2292 (version "0.8.1")
2293 (source
2294 (origin
2295 (method url-fetch)
2296 (uri (string-append "https://github.com/dgutov/robe/"
2297 "archive/" version ".tar.gz"))
2298 (file-name (string-append name "-" version ".tar.gz"))
2299 (sha256
2300 (base32
2301 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2302 (build-system emacs-build-system)
2303 (arguments
2304 '(#:include (cons "^lib\\/" %default-include)))
2305 (propagated-inputs
2306 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2307 (home-page "https://github.com/dgutov/robe")
2308 (synopsis "Ruby code assistance tool for Emacs")
2309 (description
2310 "Robe can provide information on loaded classes and modules in Ruby code,
2311 as well as where methods are defined. This allows the user to jump to method
2312 definitions, modules and classes, display method documentation and provide
2313 method and constant name completion.")
2314 (license license:gpl3+)))
2315
2316 (define-public emacs-rspec
2317 (package
2318 (name "emacs-rspec")
2319 (version "1.11")
2320 (source
2321 (origin
2322 (method url-fetch)
2323 (uri (string-append "https://github.com/pezra/rspec-mode/"
2324 "archive/v" version ".tar.gz"))
2325 (file-name (string-append name "-" version ".tar.gz"))
2326 (sha256
2327 (base32
2328 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2329 (build-system emacs-build-system)
2330 (home-page "https://github.com/pezra/rspec-mode")
2331 (synopsis "Provides a rspec mode for working with RSpec")
2332 (description
2333 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2334 verify the spec associated with the current buffer, or entire project, as well
2335 as moving between the spec files, and coresponding code files.
2336
2337 Also included are keybindings for spec files and Dired buffers, as well as
2338 snippets for yasnippet.")
2339 (license license:gpl3+)))
2340
2341 (define-public emacs-smart-mode-line
2342 (package
2343 (name "emacs-smart-mode-line")
2344 (version "2.10.1")
2345 (source
2346 (origin
2347 (method url-fetch)
2348 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2349 "archive/" version ".tar.gz"))
2350 (file-name (string-append name "-" version ".tar.gz"))
2351 (sha256
2352 (base32
2353 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
2354 (build-system emacs-build-system)
2355 (propagated-inputs
2356 `(("emacs-rich-minority" ,emacs-rich-minority)))
2357 (home-page "https://github.com/Malabarba/smart-mode-line")
2358 (synopsis "Color-coded smart mode-line")
2359 (description
2360 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2361 read from small to large monitors by using colors, a prefix feature, and smart
2362 truncation.")
2363 (license license:gpl2+)))
2364
2365 (define-public emacs-sr-speedbar
2366 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2367 (revision "0"))
2368 (package
2369 (name "emacs-sr-speedbar")
2370 (version (git-version "20161025" revision commit))
2371 (source
2372 (origin
2373 (method git-fetch)
2374 (uri (git-reference
2375 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2376 (commit commit)))
2377 (file-name (git-file-name name version))
2378 (sha256
2379 (base32
2380 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2381 (build-system emacs-build-system)
2382 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2383 (synopsis "Same frame Emacs @code{speedbar}")
2384 (description
2385 "This Emacs package allows you to show @code{M-x speedbar} in the
2386 same frame (in an extra window). You can customize the initial width of
2387 the speedbar window.")
2388 (license license:gpl3+))))
2389
2390 (define-public emacs-shell-switcher
2391 (package
2392 (name "emacs-shell-switcher")
2393 (version "1.0.1")
2394 (source
2395 (origin
2396 (method url-fetch)
2397 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2398 "/archive/v" version ".tar.gz"))
2399 (file-name (string-append name "-" version ".tar.gz"))
2400 (sha256
2401 (base32
2402 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2403 (build-system emacs-build-system)
2404 (home-page "https://github.com/DamienCassou/shell-switcher")
2405 (synopsis "Provide fast switching between shell buffers")
2406 (description
2407 "This package provides commands to quickly switch between shell buffers.")
2408 (license license:gpl3+)))
2409
2410 (define-public emacs-ob-ipython
2411 (package
2412 (name "emacs-ob-ipython")
2413 (version "20150704.8807064693")
2414 (source (origin
2415 (method git-fetch)
2416 (uri (git-reference
2417 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2418 (url "https://github.com/gregsexton/ob-ipython.git")))
2419 (file-name (string-append name "-" version "-checkout"))
2420 (sha256
2421 (base32
2422 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2423 (build-system emacs-build-system)
2424 (propagated-inputs
2425 `(("emacs-f" ,emacs-f)))
2426 (home-page "http://www.gregsexton.org")
2427 (synopsis "Org-Babel functions for IPython evaluation")
2428 (description "This package adds support to Org-Babel for evaluating Python
2429 source code using IPython.")
2430 (license license:gpl3+)))
2431
2432 (define-public emacs-debbugs
2433 (package
2434 (name "emacs-debbugs")
2435 (version "0.15")
2436 (source (origin
2437 (method url-fetch)
2438 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2439 version ".tar"))
2440 (sha256
2441 (base32
2442 "1x7jw2ldgkknyxg7x9fhnqkary691icnysmi3xw0g2fjrvllzhqw"))))
2443 (build-system emacs-build-system)
2444 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2445 (propagated-inputs
2446 `(("emacs-async" ,emacs-async)))
2447 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2448 (synopsis "Access the Debbugs bug tracker in Emacs")
2449 (description
2450 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2451 Tracker} from within Emacs.
2452
2453 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2454 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2455 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2456 @code{M-x debbugs-org} and related commands.
2457
2458 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2459 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2460 (license license:gpl3+)))
2461
2462 (define-public emacs-deferred
2463 (package
2464 (name "emacs-deferred")
2465 (version "0.5.1")
2466 (home-page "https://github.com/kiwanami/emacs-deferred")
2467 (source (origin
2468 (method git-fetch)
2469 (uri (git-reference
2470 (url home-page)
2471 (commit (string-append "v" version))))
2472 (sha256
2473 (base32
2474 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2475 (file-name (string-append name "-" version))))
2476 (build-system emacs-build-system)
2477 ;; FIXME: Would need 'el-expectations' to actually run tests.
2478 (synopsis "Simple asynchronous functions for Emacs Lisp")
2479 (description
2480 "The @code{deferred.el} library provides support for asynchronous tasks.
2481 The API is almost the same as that of
2482 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2483 for asynchronous tasks.")
2484 (license license:gpl3+)))
2485
2486 (define-public butler
2487 (package
2488 (name "emacs-butler")
2489 (version "0.2.4")
2490 (home-page "https://github.com/AshtonKem/Butler")
2491 (source (origin
2492 (method git-fetch)
2493 (uri (git-reference
2494 (url home-page)
2495 (commit version)))
2496 (sha256
2497 (base32
2498 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2499 (file-name (string-append name "-" version))))
2500 (build-system emacs-build-system)
2501 (propagated-inputs
2502 `(("emacs-deferred" ,emacs-deferred)))
2503 (synopsis "Emacs client for Jenkins")
2504 (description
2505 "Butler provides an interface to connect to Jenkins continuous
2506 integration servers. Users can specify a list of server in the
2507 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2508 view the build status of those servers' build jobs, and possibly to trigger
2509 build jobs.")
2510 (license license:gpl3+)))
2511
2512 (define-public emacs-company
2513 (package
2514 (name "emacs-company")
2515 (version "0.9.3")
2516 (source
2517 (origin
2518 (method url-fetch)
2519 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2520 version ".tar.gz"))
2521 (file-name (string-append name "-" version ".tar.gz"))
2522 (sha256
2523 (base32
2524 "1fyrpchpdmvszssy1qmsw41aqpv6q5rybvs1bw00nv9xdhiaq4vh"))))
2525 (build-system emacs-build-system)
2526 (arguments
2527 `(#:phases
2528 (modify-phases %standard-phases
2529 (add-before 'install 'check
2530 (lambda _
2531 ;; The company-files-candidates-normal-root test looks
2532 ;; for the /bin directory, but the build environment has
2533 ;; no /bin directory. Modify the test to look for the
2534 ;; /tmp directory.
2535 (substitute* "test/files-tests.el"
2536 (("/bin/") "/tmp/"))
2537 (zero? (system* "make" "test-batch")))))))
2538 (home-page "http://company-mode.github.io/")
2539 (synopsis "Modular text completion framework")
2540 (description
2541 "Company is a modular completion mechanism. Modules for retrieving
2542 completion candidates are called back-ends, modules for displaying them are
2543 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2544 These are distributed in separate files and can be used individually.")
2545 (license license:gpl3+)))
2546
2547 (define-public emacs-company-quickhelp
2548 (package
2549 (name "emacs-company-quickhelp")
2550 (version "2.3.0")
2551 (source
2552 (origin
2553 (method url-fetch)
2554 (uri (string-append
2555 "https://github.com/expez/company-quickhelp/archive/"
2556 version ".tar.gz"))
2557 (file-name (string-append name "-" version ".tar.gz"))
2558 (sha256
2559 (base32
2560 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2561 (build-system emacs-build-system)
2562 (propagated-inputs
2563 `(("emacs-pos-tip" ,emacs-pos-tip)
2564 ("emacs-company" ,emacs-company)))
2565 (home-page "https://github.com/expez/company-quickhelp")
2566 (synopsis "Popup documentation for completion candidates")
2567 (description "@code{company-quickhelp} shows documentation for the
2568 completion candidate when using the Company text completion framework.")
2569 (license license:gpl3+)))
2570
2571 (define-public emacs-multiple-cursors
2572 (package
2573 (name "emacs-multiple-cursors")
2574 (version "1.4.0")
2575 (source
2576 (origin
2577 (method url-fetch)
2578 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2579 "archive/" version ".tar.gz"))
2580 (file-name (string-append name "-" version ".tar.gz"))
2581 (sha256
2582 (base32
2583 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2584 (build-system emacs-build-system)
2585 (home-page "https://github.com/magnars/multiple-cursors.el")
2586 (synopsis "Multiple cursors for Emacs")
2587 (description
2588 "This package adds support to Emacs for editing text with multiple
2589 simultaneous cursors.")
2590 (license license:gpl3+)))
2591
2592 (define-public typo
2593 (package
2594 (name "emacs-typo")
2595 (version "1.1")
2596 (home-page "https://github.com/jorgenschaefer/typoel")
2597 (source (origin
2598 (method git-fetch)
2599 (uri (git-reference
2600 (url home-page)
2601 (commit (string-append "v" version))))
2602 (sha256
2603 (base32
2604 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2605 (file-name (string-append name "-" version))))
2606 (build-system emacs-build-system)
2607 (synopsis "Minor mode for typographic editing")
2608 (description
2609 "This package provides two Emacs modes, @code{typo-mode} and
2610 @code{typo-global-mode}. These modes automatically insert Unicode characters
2611 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2612 automatically inserts a Unicode opening or closing quotation mark, depending
2613 on context.")
2614 (license license:gpl3+)))
2615
2616 (define-public emacs-scheme-complete
2617 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2618 (package
2619 (name "emacs-scheme-complete")
2620 (version (string-append "20151223." (string-take commit 8)))
2621 (source
2622 (origin
2623 (file-name (string-append name "-" version))
2624 (method git-fetch)
2625 (uri (git-reference
2626 (url "https://github.com/ashinn/scheme-complete.git")
2627 (commit commit)))
2628 (sha256
2629 (base32
2630 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2631 (patches
2632 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2633 (build-system emacs-build-system)
2634 (home-page "https://github.com/ashinn/scheme-complete")
2635 (synopsis "Smart tab completion for Scheme in Emacs")
2636 (description
2637 "This file provides a single function, @code{scheme-smart-complete},
2638 which you can use for intelligent, context-sensitive completion for any Scheme
2639 implementation in Emacs. To use it just load this file and bind that function
2640 to a key in your preferred mode.")
2641 (license license:public-domain))))
2642
2643 (define-public emacs-mit-scheme-doc
2644 (package
2645 (name "emacs-mit-scheme-doc")
2646 (version "20140203")
2647 (source
2648 (origin
2649 (modules '((guix build utils)))
2650 (snippet
2651 ;; keep only file of interest
2652 '(begin
2653 (for-each delete-file '("dot-emacs.el" "Makefile"))
2654 (install-file "6.945-config/mit-scheme-doc.el" ".")
2655 (delete-file-recursively "6.945-config")))
2656 (file-name (string-append name "-" version ".tar.bz2"))
2657 (method url-fetch)
2658 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2659 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2660 (sha256
2661 (base32
2662 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2663 (build-system emacs-build-system)
2664 (inputs `(("mit-scheme" ,mit-scheme)))
2665 (arguments
2666 `(#:phases
2667 (modify-phases %standard-phases
2668 (add-after 'unpack 'configure-doc
2669 (lambda* (#:key inputs #:allow-other-keys)
2670 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2671 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2672 "mit-scheme-"
2673 ,(package-version mit-scheme))))
2674 (substitute* "mit-scheme-doc.el"
2675 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2676 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2677 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2678 (synopsis "MIT-Scheme documentation lookup for Emacs")
2679 (description
2680 "This package provides a set of Emacs functions to search definitions of
2681 identifiers in the MIT-Scheme documentation.")
2682 (license license:gpl2+)))
2683
2684 (define-public emacs-constants
2685 (package
2686 (name "emacs-constants")
2687 (version "2.6")
2688 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
2689 (source
2690 (origin
2691 (file-name (string-append name "-" version ".tar.gz"))
2692 (method url-fetch)
2693 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2694 "/archive/v" version ".tar.gz"))
2695 (sha256
2696 (base32
2697 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
2698 (build-system emacs-build-system)
2699 (synopsis "Enter definition of constants into an Emacs buffer")
2700 (description
2701 "This package provides functions for inserting the definition of natural
2702 constants and units into an Emacs buffer.")
2703 (license license:gpl2+)))
2704
2705 (define-public emacs-tagedit
2706 (package
2707 (name "emacs-tagedit")
2708 (version "1.4.0")
2709 (source
2710 (origin
2711 (method url-fetch)
2712 (uri (string-append "https://github.com/magnars/tagedit/"
2713 "archive/" version ".tar.gz"))
2714 (file-name (string-append name "-" version ".tar.gz"))
2715 (sha256
2716 (base32
2717 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2718 (build-system emacs-build-system)
2719 (propagated-inputs
2720 `(("emacs-s" ,emacs-s)
2721 ("emacs-dash" ,emacs-dash)))
2722 (home-page "https://github.com/magnars/tagedit")
2723 (synopsis "Some paredit-like features for html-mode")
2724 (description
2725 "This package provides a collection of paredit-like functions for editing
2726 in @code{html-mode}.")
2727 (license license:gpl3+)))
2728
2729 (define-public emacs-slime
2730 (package
2731 (name "emacs-slime")
2732 (version "2.20")
2733 (source
2734 (origin
2735 (file-name (string-append name "-" version ".tar.gz"))
2736 (method url-fetch)
2737 (uri (string-append
2738 "https://github.com/slime/slime/archive/v"
2739 version ".tar.gz"))
2740 (sha256
2741 (base32
2742 "086lq5y4pvj9wihy0si02xxvyzpzz8mcg3hz1cvy9zxlyjwzr1gk"))))
2743 (build-system emacs-build-system)
2744 (native-inputs
2745 `(("texinfo" ,texinfo)))
2746 (arguments
2747 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
2748 #:exclude '("^slime-tests.el" "^contrib/test/"
2749 "^contrib/Makefile$" "^contrib/README.md$")
2750 #:phases
2751 (modify-phases %standard-phases
2752 (add-before 'install 'configure
2753 (lambda* _
2754 (emacs-substitute-variables "slime.el"
2755 ("inferior-lisp-program" "sbcl"))
2756 #t))
2757 (add-before 'install 'install-doc
2758 (lambda* (#:key outputs #:allow-other-keys)
2759 (let* ((out (assoc-ref outputs "out"))
2760 (info-dir (string-append out "/share/info"))
2761 (doc-dir (string-append out "/share/doc/"
2762 ,name "-" ,version))
2763 (doc-files '("doc/slime-refcard.pdf"
2764 "README.md" "NEWS" "PROBLEMS"
2765 "CONTRIBUTING.md")))
2766 (with-directory-excursion "doc"
2767 (substitute* "Makefile"
2768 (("infodir=/usr/local/info")
2769 (string-append "infodir=" info-dir)))
2770 (system* "make" "html/index.html")
2771 (system* "make" "slime.info")
2772 (install-file "slime.info" info-dir)
2773 (copy-recursively "html" (string-append doc-dir "/html")))
2774 (for-each (lambda (f)
2775 (install-file f doc-dir)
2776 (delete-file f))
2777 doc-files)
2778 (delete-file-recursively "doc")
2779 #t))))))
2780 (home-page "https://github.com/slime/slime")
2781 (synopsis "Superior Lisp Interaction Mode for Emacs")
2782 (description
2783 "SLIME extends Emacs with support for interactive programming in
2784 Common Lisp. The features are centered around @command{slime-mode},
2785 an Emacs minor mode that complements the standard @command{lisp-mode}.
2786 While lisp-mode supports editing Lisp source files, @command{slime-mode}
2787 adds support for interacting with a running Common Lisp process
2788 for compilation, debugging, documentation lookup, and so on.")
2789 (license license:gpl2+)))
2790
2791 (define-public emacs-popup
2792 (package
2793 (name "emacs-popup")
2794 (version "0.5.3")
2795 (source (origin
2796 (method url-fetch)
2797 (uri (string-append
2798 "https://github.com/auto-complete/popup-el/archive/v"
2799 version ".tar.gz"))
2800 (file-name (string-append name "-" version ".tar.gz"))
2801 (sha256
2802 (base32
2803 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
2804 (build-system emacs-build-system)
2805 (home-page "https://github.com/auto-complete/popup-el")
2806 (synopsis "Visual Popup User Interface for Emacs")
2807 (description
2808 "Popup.el is a visual popup user interface library for Emacs.
2809 This provides a basic API and common UI widgets such as popup tooltips
2810 and popup menus.")
2811 (license license:gpl3+)))
2812
2813 (define-public emacs-god-mode
2814 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
2815 (revision "1"))
2816 (package
2817 (name "emacs-god-mode")
2818 (version (string-append "20151005.925."
2819 revision "-" (string-take commit 9)))
2820 (source
2821 (origin
2822 (method git-fetch)
2823 (uri (git-reference
2824 (url "https://github.com/chrisdone/god-mode.git")
2825 (commit commit)))
2826 (file-name (string-append name "-" version "-checkout"))
2827 (sha256
2828 (base32
2829 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
2830 (build-system emacs-build-system)
2831 (home-page "https://github.com/chrisdone/god-mode")
2832 (synopsis "Minor mode for entering commands without modifier keys")
2833 (description
2834 "This package provides a global minor mode for entering Emacs commands
2835 without modifier keys. It's similar to Vim's separation of commands and
2836 insertion mode. When enabled all keys are implicitly prefixed with
2837 @samp{C-} (among other helpful shortcuts).")
2838 (license license:gpl3+))))
2839
2840 (define-public emacs-jinja2-mode
2841 (package
2842 (name "emacs-jinja2-mode")
2843 (version "0.2")
2844 (source
2845 (origin
2846 (method url-fetch)
2847 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
2848 "archive/v" version ".tar.gz"))
2849 (file-name (string-append name "-" version ".tar.gz"))
2850 (sha256
2851 (base32
2852 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
2853 (build-system emacs-build-system)
2854 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
2855 (synopsis "Major mode for jinja2")
2856 (description
2857 "Emacs major mode for jinja2 with: syntax highlighting,
2858 sgml/html integration, and indentation (working with sgml).")
2859 (license license:gpl3+)))
2860
2861 (define-public emacs-rfcview
2862 (package
2863 (name "emacs-rfcview")
2864 (version "0.13")
2865 (home-page "http://www.loveshack.ukfsn.org/emacs")
2866 (source (origin
2867 (method url-fetch)
2868 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
2869 (sha256
2870 (base32
2871 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
2872 (build-system emacs-build-system)
2873 (synopsis "Prettify Request for Comments (RFC) documents")
2874 (description "The Internet Engineering Task Force (IETF) and the Internet
2875 Society (ISOC) publish various Internet-related protocols and specifications
2876 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
2877 documents. RFCs and STDs are published in a simple text form. This package
2878 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
2879 read these documents in Emacs. It prettifies the text and adds
2880 hyperlinks/menus for easier navigation. It also provides functions for
2881 browsing the index of RFC documents and fetching them from remote servers or
2882 local directories.")
2883 (license license:gpl3+)))
2884
2885 (define-public emacs-ffap-rfc-space
2886 (package
2887 (name "emacs-ffap-rfc-space")
2888 (version "12")
2889 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
2890 (source (origin
2891 (method url-fetch)
2892 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
2893 (sha256
2894 (base32
2895 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
2896 (build-system emacs-build-system)
2897 (synopsis "Make ffap recognize an RFC with a space before its number")
2898 (description "The Internet Engineering Task Force (IETF) and the
2899 Internet Society (ISOC) publish various Internet-related protocols and
2900 specifications as \"Request for Comments\" (RFC) documents. The
2901 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
2902 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
2903 and load the appropriate RFC from a remote server. However, it fails
2904 to recognize a name like \"RFC 1234\". This package enhances ffap so
2905 that it correctly finds RFCs even when a space appears before the
2906 number.")
2907 (license license:gpl3+)))
2908
2909 (define-public emacs-org-bullets
2910 (package
2911 (name "emacs-org-bullets")
2912 (version "0.2.4")
2913 (source
2914 (origin
2915 (method url-fetch)
2916 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
2917 version ".tar.gz"))
2918 (file-name (string-append name "-" version ".tar.gz"))
2919 (sha256
2920 (base32
2921 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
2922 (build-system emacs-build-system)
2923 (home-page "https://github.com/sabof/org-bullets")
2924 (synopsis "Show bullets in org-mode as UTF-8 characters")
2925 (description
2926 "This package provides an Emacs minor mode causing bullets in
2927 @code{org-mode} to be rendered as UTF-8 characters.")
2928 (license license:gpl3+)))
2929
2930 (define-public emacs-org-pomodoro
2931 (package
2932 (name "emacs-org-pomodoro")
2933 (version "2.1.0")
2934 (source
2935 (origin
2936 (method url-fetch)
2937 (uri (string-append
2938 "https://github.com/lolownia/org-pomodoro/archive/"
2939 version ".tar.gz"))
2940 (file-name (string-append name "-" version ".tar.gz"))
2941 (sha256
2942 (base32
2943 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
2944 (build-system emacs-build-system)
2945 (propagated-inputs
2946 `(("emacs-alert" ,emacs-alert)))
2947 (home-page "https://github.com/lolownia/org-pomodoro")
2948 (synopsis "Pomodoro technique for org-mode")
2949 (description "@code{emacs-org-pomodoro} adds very basic support for
2950 Pomodoro technique in Emacs org-mode.
2951
2952 Run @code{M-x org-pomodoro} for the task at point or select one of the
2953 last tasks that you clocked time for. Each clocked-in pomodoro starts
2954 a timer of 25 minutes and after each pomodoro a break timer of 5
2955 minutes is started automatically. Every 4 breaks a long break is
2956 started with 20 minutes. All values are customizable.")
2957 (license license:gpl3+)))
2958
2959 (define-public emacs-org-trello
2960 (package
2961 (name "emacs-org-trello")
2962 (version "0.7.9")
2963 (source (origin
2964 (method url-fetch)
2965 (uri (string-append
2966 "https://github.com/org-trello/org-trello/archive/"
2967 version ".tar.gz"))
2968 (file-name (string-append name "-" version ".tar.gz"))
2969 (sha256
2970 (base32
2971 "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf"))))
2972 (build-system emacs-build-system)
2973 (propagated-inputs
2974 `(("emacs-deferred" ,emacs-deferred)
2975 ("emacs-request" ,emacs-request)
2976 ("emacs-dash" ,emacs-dash)
2977 ("emacs-s" ,emacs-s)))
2978 (home-page "https://org-trello.github.io")
2979 (synopsis "Emacs minor mode for interacting with Trello")
2980 (description "This package provides an Emacs minor mode to extend
2981 @code{org-mode} with Trello abilities. Trello is an online project
2982 organizer.")
2983 (license license:gpl3+)))
2984
2985 (define-public emacs-zenburn-theme
2986 (package
2987 (name "emacs-zenburn-theme")
2988 (version "2.5")
2989 (source (origin
2990 (method url-fetch)
2991 (uri (string-append
2992 "https://github.com/bbatsov/zenburn-emacs/archive/v"
2993 version ".tar.gz"))
2994 (file-name (string-append name "-" version ".tar.gz"))
2995 (sha256
2996 (base32
2997 "03kfhzgbbbl8ivpzzky6qxw4j9mmp452m1sk7wikxmcalfnix0gn"))))
2998 (build-system emacs-build-system)
2999 (home-page "https://github.com/bbatsov/zenburn-emacs")
3000 (synopsis "Low contrast color theme for Emacs")
3001 (description
3002 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3003 It is built on top of the custom theme support in Emacs 24 or later.")
3004 (license license:gpl3+)))
3005
3006 (define-public emacs-solarized-theme
3007 (package
3008 (name "emacs-solarized-theme")
3009 (version "1.2.2")
3010 (source (origin
3011 (method url-fetch)
3012 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3013 "archive/v" version ".tar.gz"))
3014 (file-name (string-append name "-" version ".tar.gz"))
3015 (sha256
3016 (base32
3017 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3018 (build-system emacs-build-system)
3019 (propagated-inputs
3020 `(("emacs-dash" ,emacs-dash)))
3021 (home-page "https://github.com/bbatsov/solarized-emacs")
3022 (synopsis "Port of the Solarized theme for Emacs")
3023 (description
3024 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3025 package provides a light and a dark variant.")
3026 (license license:gpl3+)))
3027
3028 (define-public emacs-ahungry-theme
3029 (package
3030 (name "emacs-ahungry-theme")
3031 (version "1.10.0")
3032 (source
3033 (origin (method url-fetch)
3034 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3035 version ".tar"))
3036 (sha256
3037 (base32
3038 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3039 (build-system emacs-build-system)
3040 (home-page "https://github.com/ahungry/color-theme-ahungry")
3041 (synopsis "Ahungry color theme for Emacs")
3042 (description "Ahungry theme for Emacs provides bright and bold colors.
3043 If you load it from a terminal, you will be able to make use of the
3044 transparent background. If you load it from a GUI, it will default to a
3045 dark background.")
3046 (license license:gpl3+)))
3047
3048 (define-public emacs-2048-game
3049 (package
3050 (name "emacs-2048-game")
3051 (version "20151026.1233")
3052 (source
3053 (origin
3054 (method url-fetch)
3055 (uri (string-append "https://melpa.org/packages/2048-game-"
3056 version ".el"))
3057 (sha256
3058 (base32
3059 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3060 (build-system emacs-build-system)
3061 (home-page "https://bitbucket.org/zck/2048.el")
3062 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3063 (description
3064 "This program is an implementation of 2048 for Emacs.
3065 The goal of this game is to create a tile with value 2048. The size of the
3066 board and goal value can be customized.")
3067 (license license:gpl3+)))
3068
3069 (define-public emacs-base16-theme
3070 (package
3071 (name "emacs-base16-theme")
3072 (version "2.1")
3073 (source
3074 (origin
3075 (method url-fetch)
3076 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3077 version ".tar"))
3078 (sha256
3079 (base32
3080 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3081 (build-system emacs-build-system)
3082 (home-page "https://github.com/belak/base16-emacs")
3083 (synopsis "Base16 color themes for Emacs")
3084 (description
3085 "Base16 provides carefully chosen syntax highlighting and a default set
3086 of sixteen colors suitable for a wide range of applications. Base16 is not a
3087 single theme but a set of guidelines with numerous implementations.")
3088 (license license:expat)))
3089
3090 (define-public emacs-smartparens
3091 (package
3092 (name "emacs-smartparens")
3093 (version "1.11.0")
3094 (source (origin
3095 (method url-fetch)
3096 (uri (string-append
3097 "https://github.com/Fuco1/smartparens/archive/"
3098 version ".tar.gz"))
3099 (file-name (string-append name "-" version ".tar.gz"))
3100 (sha256
3101 (base32
3102 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3103 (build-system emacs-build-system)
3104 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
3105 (home-page "https://github.com/Fuco1/smartparens")
3106 (synopsis "Paredit-like insertion, wrapping and navigation with user
3107 defined pairs")
3108 (description
3109 "Smartparens is a minor mode for Emacs that deals with parens pairs
3110 and tries to be smart about it. It started as a unification effort to
3111 combine functionality of several existing packages in a single,
3112 compatible and extensible way to deal with parentheses, delimiters, tags
3113 and the like. Some of these packages include autopair, textmate,
3114 wrap-region, electric-pair-mode, paredit and others. With the basic
3115 features found in other packages it also brings many improvements as
3116 well as completely new features.")
3117 (license license:gpl3+)))
3118
3119 (define-public emacs-highlight-symbol
3120 (package
3121 (name "emacs-highlight-symbol")
3122 (version "1.3")
3123 (source (origin
3124 (method url-fetch)
3125 (uri (string-append
3126 "https://github.com/nschum/highlight-symbol.el/archive/"
3127 version ".tar.gz"))
3128 (file-name (string-append name "-" version ".tar.gz"))
3129 (sha256
3130 (base32
3131 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3132 (build-system emacs-build-system)
3133 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3134 (synopsis "Automatic and manual symbol highlighting for Emacs")
3135 (description
3136 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3137 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3138 the symbol at point highlighted.
3139
3140 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3141 @code{highlight-symbol-next-in-defun} and
3142 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3143 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3144 bindings @code{M-p} and @code{M-p} for navigation. When
3145 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3146 regardless of @code{highlight-symbol-idle-delay}.
3147
3148 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3149 (license license:gpl2+)))
3150
3151 (define-public emacs-hl-todo
3152 (package
3153 (name "emacs-hl-todo")
3154 (version "1.8.0")
3155 (source (origin
3156 (method url-fetch)
3157 (uri (string-append
3158 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3159 version "/hl-todo.el"))
3160 (file-name (string-append "hl-todo-" version ".el"))
3161 (sha256
3162 (base32
3163 "0g0h9v4572p7mcird8wsj1c41haf60krslm6mlpi4mdbh248kv6z"))))
3164 (build-system emacs-build-system)
3165 (home-page "https://github.com/tarsius/hl-todo")
3166 (synopsis "Emacs mode to highlight TODO and similar keywords")
3167 (description
3168 "This package provides an Emacs mode to highlight TODO and similar
3169 keywords in comments and strings. This package also provides commands for
3170 moving to the next or previous keyword and to invoke @code{occur} with a
3171 regexp that matches all known keywords.")
3172 (license license:gpl3+)))
3173
3174 (define-public emacs-perspective
3175 (package
3176 (name "emacs-perspective")
3177 (version "1.12")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (string-append "https://github.com/nex3/perspective-el/"
3182 "archive/" version ".tar.gz"))
3183 (file-name (string-append name "-" version ".tar.gz"))
3184 (sha256
3185 (base32
3186 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3187 (build-system emacs-build-system)
3188 (home-page "https://github.com/nex3/perspective-el")
3189 (synopsis "Switch between named \"perspectives\"")
3190 (description
3191 "This package provides tagged workspaces in Emacs, similar to workspaces in
3192 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3193 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3194 perspective is composed of a window configuration and a set of buffers.
3195 Switching to a perspective activates its window configuration, and when in a
3196 perspective only its buffers are available by default.")
3197 ;; This package is released under the same license as Emacs (GPLv3+) or
3198 ;; the Expat license.
3199 (license license:gpl3+)))
3200
3201 (define-public emacs-test-simple
3202 (package
3203 (name "emacs-test-simple")
3204 (version "1.3.0")
3205 (source
3206 (origin
3207 (method url-fetch)
3208 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3209 version ".el"))
3210 (sha256
3211 (base32
3212 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3213 (build-system emacs-build-system)
3214 (home-page "https://github.com/rocky/emacs-test-simple")
3215 (synopsis "Simple unit test framework for Emacs Lisp")
3216 (description
3217 "Test Simple is a simple unit test framework for Emacs Lisp. It
3218 alleviates the need for context macros, enclosing specifications or required
3219 test tags. It supports both interactive and non-interactive use.")
3220 (license license:gpl3+)))
3221
3222 (define-public emacs-load-relative
3223 (package
3224 (name "emacs-load-relative")
3225 (version "1.3")
3226 (source
3227 (origin
3228 (method url-fetch)
3229 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3230 version ".el"))
3231 (sha256
3232 (base32
3233 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3234 (build-system emacs-build-system)
3235 (home-page "http://github.com/rocky/emacs-load-relative")
3236 (synopsis "Emacs Lisp relative file loading related functions")
3237 (description
3238 "Provides functions which facilitate writing multi-file Emacs packages
3239 and running from the source tree without having to \"install\" code or fiddle
3240 with @{load-path}.
3241
3242 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3243 another (presumably currently running) Emacs Lisp file.")
3244 (license license:gpl3+)))
3245
3246 (define-public emacs-loc-changes
3247 (package
3248 (name "emacs-loc-changes")
3249 (version "1.2")
3250 (source
3251 (origin
3252 (method url-fetch)
3253 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3254 version ".el"))
3255 (sha256
3256 (base32
3257 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3258 (build-system emacs-build-system)
3259 (home-page "https://github.com/rocky/emacs-loc-changes")
3260 (synopsis "Keeps track of positions even after buffer changes")
3261 (description
3262 "This Emacs package provides a mean to track important buffer positions
3263 after buffer changes.")
3264 (license license:gpl3+)))
3265
3266 (define-public emacs-realgud
3267 (package
3268 (name "emacs-realgud")
3269 (version "1.4.4")
3270 (source
3271 (origin
3272 (method url-fetch)
3273 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3274 version ".tar"))
3275 (sha256
3276 (base32
3277 "1nc8km339ip90h1j55ahfga03v7x7rh4iycmw6yrxyzir68vwn7c"))))
3278 (build-system emacs-build-system)
3279 (arguments
3280 `(#:tests? #t
3281 #:phases
3282 (modify-phases %standard-phases
3283 (add-after 'unpack 'fix-autogen-script
3284 (lambda _
3285 (substitute* "autogen.sh"
3286 (("./configure") "sh configure"))))
3287 (add-after 'fix-autogen-script 'autogen
3288 (lambda _
3289 (setenv "CONFIG_SHELL" "sh")
3290 (invoke "sh" "autogen.sh")))
3291 (add-after 'fix-autogen-script 'set-home
3292 (lambda _
3293 (setenv "HOME" (getenv "TMPDIR"))))
3294 (add-before 'patch-el-files 'remove-realgud-pkg.el
3295 (lambda _
3296 ;; XXX: This file is auto-generated at some point and causes
3297 ;; substitute* to crash during the `patch-el-files' phase with:
3298 ;; ERROR: In procedure stat: No such file or directory:
3299 ;; "./realgud-pkg.el"
3300 (delete-file "./realgud-pkg.el")
3301 ;; FIXME: `patch-el-files' crashes on this file with error:
3302 ;; unable to locate "bashdb".
3303 (delete-file "./test/test-regexp-bashdb.el"))))
3304 #:include (cons* ".*\\.el$" %default-include)))
3305 (native-inputs
3306 `(("autoconf" ,autoconf)
3307 ("automake" ,automake)
3308 ("emacs-test-simple" ,emacs-test-simple)))
3309 (propagated-inputs
3310 `(("emacs-load-relative" ,emacs-load-relative)
3311 ("emacs-loc-changes" ,emacs-loc-changes)))
3312 (home-page "https://github.com/realgud/realgud/")
3313 (synopsis
3314 "Modular front-end for interacting with external debuggers")
3315 (description
3316 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3317 with external debuggers. It integrates various debuggers such as gdb, pdb,
3318 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3319 sources. Unlike GUD, it also supports running multiple debug sessions in
3320 parallel.")
3321 (license license:gpl3+)))
3322
3323 (define-public emacs-request
3324 (package
3325 (name "emacs-request")
3326 (version "0.3.0")
3327 (source (origin
3328 (method git-fetch)
3329 (uri (git-reference
3330 (url "https://github.com/tkf/emacs-request.git")
3331 (commit (string-append "v" version))))
3332 (file-name (string-append name "-" version "-checkout"))
3333 (sha256
3334 (base32
3335 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3336 (build-system emacs-build-system)
3337 (home-page "https://github.com/tkf/emacs-request")
3338 (synopsis "Package for speaking HTTP in Emacs Lisp")
3339 (description "This package provides a HTTP request library with multiple
3340 backends. It supports url.el which is shipped with Emacs and the curl command
3341 line program.")
3342 (license license:gpl3+)))
3343
3344 (define-public emacs-rudel
3345 (package
3346 (name "emacs-rudel")
3347 (version "0.3.1")
3348 (source
3349 (origin
3350 (method url-fetch)
3351 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3352 version ".tar"))
3353 (sha256
3354 (base32
3355 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3356 (build-system emacs-build-system)
3357 (home-page "http://rudel.sourceforge.net/")
3358 (synopsis "Collaborative editing framework")
3359 (description
3360 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3361 is to share buffers with other users in order to edit the contents of those
3362 buffers collaboratively. Rudel supports multiple backends to enable
3363 communication with other collaborative editors using different protocols,
3364 though currently Obby (for use with the Gobby editor) is the only
3365 fully-functional one.")
3366 (license license:gpl3+)))
3367
3368 (define-public emacs-hydra
3369 (package
3370 (name "emacs-hydra")
3371 (version "0.14.0")
3372 (source
3373 (origin
3374 (method url-fetch)
3375 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
3376 version ".tar.gz"))
3377 (file-name (string-append name "-" version ".tar.gz"))
3378 (sha256
3379 (base32
3380 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8"))))
3381 (build-system emacs-build-system)
3382 (home-page "https://github.com/abo-abo/hydra")
3383 (synopsis "Make Emacs bindings that stick around")
3384 (description
3385 "This package can be used to tie related commands into a family of short
3386 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3387 the prefixed binding), all the heads can be called in succession with only a
3388 short extension. Any binding that isn't the Hydra's head vanquishes the
3389 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3390 serve its original purpose, calling the command assigned to it. This makes
3391 the Hydra very seamless; it's like a minor mode that disables itself
3392 automatically.")
3393 (license license:gpl3+)))
3394
3395 (define-public emacs-ivy
3396 (package
3397 (name "emacs-ivy")
3398 (version "0.10.0")
3399 (source
3400 (origin
3401 (method git-fetch)
3402 (uri (git-reference
3403 (url "https://github.com/abo-abo/swiper.git")
3404 (commit version)))
3405 (file-name (string-append name "-" version "-checkout"))
3406 (sha256
3407 (base32
3408 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
3409 (build-system emacs-build-system)
3410 (arguments
3411 `(#:phases
3412 (modify-phases %standard-phases
3413 (add-after 'install 'install-doc
3414 (lambda* (#:key outputs #:allow-other-keys)
3415 (let* ((out (assoc-ref outputs "out"))
3416 (info (string-append out "/share/info")))
3417 (with-directory-excursion "doc"
3418 (unless (zero? (system* "makeinfo" "ivy.texi"))
3419 (error "makeinfo failed"))
3420 (install-file "ivy.info" info))))))))
3421 (propagated-inputs
3422 `(("emacs-hydra" ,emacs-hydra)))
3423 (native-inputs
3424 `(("texinfo" ,texinfo)))
3425 (home-page "http://oremacs.com/swiper/")
3426 (synopsis "Incremental vertical completion for Emacs")
3427 (description
3428 "This package provides @code{ivy-read} as an alternative to
3429 @code{completing-read} and similar functions. No attempt is made to determine
3430 the best candidate. Instead, the user can navigate candidates with
3431 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3432 splitting the input text by spaces and re-building it into a regular
3433 expression.")
3434 (license license:gpl3+)))
3435
3436 (define-public emacs-avy
3437 (package
3438 (name "emacs-avy")
3439 (version "0.4.0")
3440 (source
3441 (origin
3442 (method url-fetch)
3443 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3444 version ".tar.gz"))
3445 (file-name (string-append name "-" version ".tar.gz"))
3446 (sha256
3447 (base32
3448 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3449 (build-system emacs-build-system)
3450 (home-page "https://github.com/abo-abo/avy")
3451 (synopsis "Tree-based completion for Emacs")
3452 (description
3453 "This package provides a generic completion method based on building a
3454 balanced decision tree with each candidate being a leaf. To traverse the tree
3455 from the root to a desired leaf, typically a sequence of @code{read-key} can
3456 be used.
3457
3458 In order for @code{read-key} to make sense, the tree needs to be visualized
3459 appropriately, with a character at each branch node. So this completion
3460 method works only for things that you can see on your screen, all at once,
3461 such as the positions of characters, words, line beginnings, links, or
3462 windows.")
3463 (license license:gpl3+)))
3464
3465 (define-public emacs-ace-window
3466 (package
3467 (name "emacs-ace-window")
3468 (version "0.9.0")
3469 (source
3470 (origin
3471 (method url-fetch)
3472 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3473 version ".tar.gz"))
3474 (file-name (string-append name "-" version ".tar.gz"))
3475 (sha256
3476 (base32
3477 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3478 (build-system emacs-build-system)
3479 (propagated-inputs
3480 `(("emacs-avy" ,emacs-avy)))
3481 (home-page "https://github.com/abo-abo/ace-window")
3482 (synopsis "Quickly switch windows in Emacs")
3483 (description
3484 "@code{ace-window} is meant to replace @code{other-window}.
3485 In fact, when there are only two windows present, @code{other-window} is
3486 called. If there are more, each window will have its first character
3487 highlighted. Pressing that character will switch to that window.")
3488 (license license:gpl3+)))
3489
3490 (define-public emacs-iedit
3491 (package
3492 (name "emacs-iedit")
3493 (version "0.9.9.9")
3494 (source
3495 (origin
3496 (method url-fetch)
3497 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3498 version ".tar.gz"))
3499 (file-name (string-append name "-" version ".tar.gz"))
3500 (sha256
3501 (base32
3502 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3503 (build-system emacs-build-system)
3504 (home-page "http://www.emacswiki.org/emacs/Iedit")
3505 (synopsis "Edit multiple regions in the same way simultaneously")
3506 (description
3507 "This package is an Emacs minor mode and allows you to edit one
3508 occurrence of some text in a buffer (possibly narrowed) or region, and
3509 simultaneously have other occurrences edited in the same way.
3510
3511 You can also use Iedit mode as a quick way to temporarily show only the buffer
3512 lines that match the current text being edited. This gives you the effect of
3513 a temporary @code{keep-lines} or @code{occur}.")
3514 (license license:gpl3+)))
3515
3516 (define-public emacs-lispy
3517 (package
3518 (name "emacs-lispy")
3519 (version "0.26.0")
3520 (source
3521 (origin
3522 (method url-fetch)
3523 (uri (string-append "https://github.com/abo-abo/lispy/archive/"
3524 version ".tar.gz"))
3525 (file-name (string-append name "-" version ".tar.gz"))
3526 (sha256
3527 (base32
3528 "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl"))))
3529 (build-system emacs-build-system)
3530 (propagated-inputs
3531 `(("emacs-ace-window" ,emacs-ace-window)
3532 ("emacs-iedit" ,emacs-iedit)
3533 ("emacs-ivy" ,emacs-ivy)
3534 ("emacs-hydra" ,emacs-hydra)))
3535 (home-page "https://github.com/abo-abo/lispy")
3536 (synopsis "Modal S-expression editing")
3537 (description
3538 "Due to the structure of Lisp syntax it's very rare for the programmer to
3539 want to insert characters right before \"(\" or right after \")\". Thus
3540 unprefixed printable characters can be used to call commands when the point is
3541 at one of these special locations. Lispy provides unprefixed keybindings for
3542 S-expression editing when point is at the beginning or end of an
3543 S-expression.")
3544 (license license:gpl3+)))
3545
3546 (define-public emacs-clojure-mode
3547 (package
3548 (name "emacs-clojure-mode")
3549 (version "5.6.1")
3550 (source (origin
3551 (method url-fetch)
3552 (uri (string-append
3553 "https://github.com/clojure-emacs/clojure-mode/archive/"
3554 version ".tar.gz"))
3555 (file-name (string-append name "-" version ".tar.gz"))
3556 (sha256
3557 (base32
3558 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
3559 (build-system emacs-build-system)
3560 (native-inputs
3561 `(("emacs-dash" ,emacs-dash)
3562 ("emacs-s" ,emacs-s)
3563 ("ert-runner" ,ert-runner)))
3564 (arguments
3565 `(#:phases
3566 (modify-phases %standard-phases
3567 (add-after 'install 'check
3568 (lambda _
3569 (zero? (system* "ert-runner")))))))
3570 (home-page "https://github.com/clojure-emacs/clojure-mode")
3571 (synopsis "Major mode for Clojure code")
3572 (description
3573 "This Emacs package provides font-lock, indentation, navigation and basic
3574 refactoring for the @uref{http://clojure.org, Clojure programming language}.
3575 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
3576 (license license:gpl3+)))
3577
3578 (define-public emacs-epl
3579 (package
3580 (name "emacs-epl")
3581 (version "0.8")
3582 (source (origin
3583 (method url-fetch)
3584 (uri (string-append
3585 "https://github.com/cask/epl/archive/"
3586 version ".tar.gz"))
3587 (file-name (string-append name "-" version ".tar.gz"))
3588 (sha256
3589 (base32
3590 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
3591 (build-system emacs-build-system)
3592 (home-page "https://github.com/cask/epl")
3593 (synopsis "Emacs Package Library")
3594 (description
3595 "A package management library for Emacs, based on @code{package.el}.
3596
3597 The purpose of this library is to wrap all the quirks and hassle of
3598 @code{package.el} into a sane API.")
3599 (license license:gpl3+)))
3600
3601 (define-public emacs-queue
3602 (package
3603 (name "emacs-queue")
3604 (version "0.2")
3605 (source (origin
3606 (method url-fetch)
3607 (uri (string-append "https://elpa.gnu.org/packages/queue-"
3608 version ".el"))
3609 (sha256
3610 (base32
3611 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
3612 (build-system emacs-build-system)
3613 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
3614 (synopsis "Queue data structure for Emacs")
3615 (description
3616 "This Emacs library provides queue data structure. These queues can be
3617 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
3618 stack, i.e. elements can be added to the front or back of the queue, and can
3619 be removed from the front. This type of data structure is sometimes called an
3620 \"output-restricted deque\".")
3621 (license license:gpl3+)))
3622
3623 (define-public emacs-pkg-info
3624 (package
3625 (name "emacs-pkg-info")
3626 (version "0.6")
3627 (source (origin
3628 (method url-fetch)
3629 (uri (string-append
3630 "https://github.com/lunaryorn/pkg-info.el/archive/"
3631 version ".tar.gz"))
3632 (file-name (string-append name "-" version ".tar.gz"))
3633 (sha256
3634 (base32
3635 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
3636 (build-system emacs-build-system)
3637 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
3638 (home-page "https://github.com/lunaryorn/pkg-info.el")
3639 (synopsis "Information about Emacs packages")
3640 (description
3641 "This library extracts information from the installed Emacs packages.")
3642 (license license:gpl3+)))
3643
3644 (define-public emacs-spinner
3645 (package
3646 (name "emacs-spinner")
3647 (version "1.7.3")
3648 (source (origin
3649 (method url-fetch)
3650 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
3651 version ".el"))
3652 (sha256
3653 (base32
3654 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
3655 (build-system emacs-build-system)
3656 (home-page "https://github.com/Malabarba/spinner.el")
3657 (synopsis "Emacs mode-line spinner for operations in progress")
3658 (description
3659 "This Emacs package adds spinners and progress-bars to the mode-line for
3660 ongoing operations.")
3661 (license license:gpl3+)))
3662
3663 (define-public emacs-sparql-mode
3664 (package
3665 (name "emacs-sparql-mode")
3666 (version "2.0.1")
3667 (source (origin
3668 (method url-fetch)
3669 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
3670 "v" version ".tar.gz"))
3671 (file-name (string-append name "-" version ".tar.gz"))
3672 (sha256
3673 (base32
3674 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
3675 (build-system emacs-build-system)
3676 (home-page "https://github.com/ljos/sparql-mode")
3677 (synopsis "SPARQL mode for Emacs")
3678 (description "This package provides a major mode for Emacs that provides
3679 syntax highlighting for SPARQL. It also provides a way to execute queries
3680 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
3681 possible to query other endpoints like DBPedia.")
3682 (license license:gpl3+)))
3683
3684 (define-public emacs-better-defaults
3685 (package
3686 (name "emacs-better-defaults")
3687 (version "0.1.3")
3688 (source
3689 (origin
3690 (method url-fetch)
3691 (uri (string-append "https://github.com/technomancy/better-defaults"
3692 "/archive/" version ".tar.gz"))
3693 (file-name (string-append name "-" version ".tar.gz"))
3694 (sha256
3695 (base32
3696 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
3697 (build-system emacs-build-system)
3698 (home-page "https://github.com/technomancy/better-defaults")
3699 (synopsis "Better defaults for Emacs")
3700 (description
3701 "Better defaults attempts to address the most obvious deficiencies of the
3702 Emacs default configuration in uncontroversial ways that nearly everyone can
3703 agree upon.")
3704 (license license:gpl3+)))
3705
3706 (define-public emacs-eprime
3707 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
3708 (package
3709 (name "emacs-eprime")
3710 (version (string-append "20140513-" (string-take commit 7)))
3711 (source (origin
3712 (method url-fetch)
3713 (uri (string-append "https://raw.githubusercontent.com"
3714 "/AndrewHynes/eprime-mode/"
3715 commit "/eprime-mode.el"))
3716 (file-name (string-append "eprime-" version ".el"))
3717 (sha256
3718 (base32
3719 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
3720 (build-system emacs-build-system)
3721 (home-page "https://github.com/AndrewHynes/eprime-mode")
3722 (synopsis "E-prime checking mode for Emacs")
3723 (description "This package provides an E-prime checking mode for Emacs
3724 that highlights non-conforming text. The subset of the English language called
3725 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
3726 (license license:gpl3+))))
3727
3728 (define-public emacs-julia-mode
3729 ;; XXX: Upstream version remained stuck at 0.3. See
3730 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
3731 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
3732 (revision "1"))
3733 (package
3734 (name "emacs-julia-mode")
3735 (version (string-append "0.3-" revision "." (string-take commit 8)))
3736 (source
3737 (origin
3738 (method git-fetch)
3739 (uri (git-reference
3740 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
3741 (commit commit)))
3742 (file-name (string-append name "-" version "-checkout"))
3743 (sha256
3744 (base32
3745 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
3746 (build-system emacs-build-system)
3747 (arguments
3748 `(#:phases
3749 (modify-phases %standard-phases
3750 (add-before 'install 'check
3751 (lambda _
3752 (zero? (system* "emacs" "-batch"
3753 "-l" "julia-mode.el"
3754 "-l" "julia-mode-tests.el"
3755 "-f" "ert-run-tests-batch-and-exit")))))))
3756 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
3757 (synopsis "Major mode for Julia")
3758 (description "This Emacs package provides a mode for the Julia
3759 programming language.")
3760 (license license:expat))))
3761
3762 (define-public emacs-ess
3763 (package
3764 (name "emacs-ess")
3765 (version "16.10")
3766 (source (origin
3767 (method url-fetch)
3768 (uri (string-append "http://ess.r-project.org/downloads/ess/ess-"
3769 version ".tgz"))
3770 (sha256
3771 (base32
3772 "04m8lwp3ylh2vl7k2bjjs7mxbm64j4sdckqpvnm9k0qhaqf02pjk"))
3773 (modules '((guix build utils)))
3774 (snippet
3775 '(begin
3776 ;; Stop ESS from trying to bundle an external julia-mode.el.
3777 (substitute* "lisp/Makefile"
3778 (("^\tjulia-mode.elc\\\\\n") "")
3779 (("^all: \\$\\(ELC\\) ess-custom.el julia-mode.el")
3780 "all: $(ELC) ess-custom.el"))))))
3781 (build-system gnu-build-system)
3782 (arguments
3783 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
3784 `(#:make-flags (list (string-append "PREFIX=" %output)
3785 (string-append "ETCDIR=" %output "/"
3786 ,base-directory "/etc")
3787 (string-append "LISPDIR=" %output "/"
3788 ,base-directory))
3789 #:phases
3790 (modify-phases %standard-phases
3791 (delete 'configure)
3792 (add-before 'build 'more-shebang-patching
3793 (lambda* (#:key inputs #:allow-other-keys)
3794 (substitute* "Makeconf"
3795 (("SHELL = /bin/sh")
3796 (string-append "SHELL = " (which "sh"))))))
3797 ;; FIXME: the texlive-union insists on regenerating fonts. It stores
3798 ;; them in HOME, so it needs to be writeable.
3799 (add-before 'build 'set-HOME
3800 (lambda _ (setenv "HOME" "/tmp") #t))
3801 (replace 'check
3802 (lambda _
3803 (zero? (system* "make" "test"))))))))
3804 (inputs
3805 `(("emacs" ,emacs-minimal)
3806 ("r-minimal" ,r-minimal)))
3807 (native-inputs
3808 `(("perl" ,perl)
3809 ("texinfo" ,texinfo)
3810 ("texlive" ,(texlive-union (list texlive-latex-natbib
3811 texlive-latex-seminar
3812 texlive-latex-hyperref
3813 texlive-tex-texinfo)))))
3814 (home-page "https://ess.r-project.org/")
3815 (synopsis "Emacs mode for statistical analysis programs")
3816 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
3817 Emacs. It is designed to support editing of scripts and interaction with
3818 various statistical analysis programs such as R and OpenBUGS.")
3819 (license license:gpl2+)))
3820
3821 (define-public emacs-smex
3822 (package
3823 (name "emacs-smex")
3824 (version "3.0")
3825 (source (origin
3826 (method url-fetch)
3827 (uri (string-append "https://raw.githubusercontent.com"
3828 "/nonsequitur/smex/" version "/smex.el"))
3829 (file-name (string-append "smex-" version ".el"))
3830 (sha256
3831 (base32
3832 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
3833 (build-system emacs-build-system)
3834 (home-page "https://github.com/nonsequitur/smex/")
3835 (synopsis "M-x interface with Ido-style fuzzy matching")
3836 (description
3837 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
3838 convenient interface to your recently and most frequently used commands. And
3839 to all the other commands, too.")
3840 (license license:gpl3+)))
3841
3842 (define-public emacs-js2-mode
3843 (package
3844 (name "emacs-js2-mode")
3845 (version "20150909")
3846 (source (origin
3847 (method url-fetch)
3848 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
3849 version ".tar.gz"))
3850 (file-name (string-append name "-" version ".tar.gz"))
3851 (sha256
3852 (base32
3853 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
3854 (build-system emacs-build-system)
3855 (home-page "https://github.com/mooz/js2-mode/")
3856 (synopsis "Improved JavaScript editing mode for Emacs")
3857 (description
3858 "Js2-mode provides a JavaScript major mode for Emacs that is more
3859 advanced than the built-in javascript-mode. Features include accurate syntax
3860 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
3861 errors and strict-mode warnings, smart line-wrapping within comments and
3862 strings, and code folding.")
3863 (license license:gpl3+)))
3864
3865 (define-public emacs-markdown-mode
3866 (package
3867 (name "emacs-markdown-mode")
3868 (version "2.3")
3869 (source (origin
3870 (method url-fetch)
3871 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
3872 "/markdown-mode/v" version
3873 "/markdown-mode.el"))
3874 (file-name (string-append "markdown-mode-" version ".el"))
3875 (sha256
3876 (base32
3877 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
3878 (build-system emacs-build-system)
3879 (home-page "http://jblevins.org/projects/markdown-mode/")
3880 (synopsis "Emacs Major mode for Markdown files")
3881 (description
3882 "Markdown-mode is a major mode for editing Markdown-formatted text files
3883 in Emacs.")
3884 (license license:gpl3+)))
3885
3886 (define-public emacs-edit-indirect
3887 (package
3888 (name "emacs-edit-indirect")
3889 (version "0.1.4")
3890 (source
3891 (origin
3892 (method url-fetch)
3893 (uri (string-append "https://github.com/Fanael/edit-indirect/archive/"
3894 version ".tar.gz"))
3895 (file-name (string-append name "-" version ".tar.gz"))
3896 (sha256
3897 (base32
3898 "07kr58rd1p5j764wminsssazr73hy51yw8iqcsv5z2dwgj7msv71"))))
3899 (build-system emacs-build-system)
3900 (home-page "https://github.com/Fanael/edit-indirect")
3901 (synopsis "Edit regions in separate buffers")
3902 (description "This package allows you to edit regions in separate buffers,
3903 like @code{org-edit-src-code} but for arbitrary regions.")
3904 (license license:gpl3+)))
3905
3906 (define-public emacs-projectile
3907 (package
3908 (name "emacs-projectile")
3909 (version "0.14.0")
3910 (source (origin
3911 (method url-fetch)
3912 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
3913 "/projectile/v" version "/projectile.el"))
3914 (file-name (string-append "projectile-" version ".el"))
3915 (sha256
3916 (base32
3917 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
3918 (build-system emacs-build-system)
3919 (propagated-inputs
3920 `(("emacs-dash" ,emacs-dash)
3921 ("emacs-pkg-info" ,emacs-pkg-info)))
3922 (home-page "https://github.com/bbatsov/projectile")
3923 (synopsis "Manage and navigate projects in Emacs easily")
3924 (description
3925 "This library provides easy project management and navigation. The
3926 concept of a project is pretty basic - just a folder containing special file.
3927 Currently git, mercurial and bazaar repos are considered projects by default.
3928 If you want to mark a folder manually as a project just create an empty
3929 .projectile file in it.")
3930 (license license:gpl3+)))
3931
3932 (define-public emacs-elfeed
3933 (package
3934 (name "emacs-elfeed")
3935 (version "2.3.0")
3936 (source (origin
3937 (method url-fetch)
3938 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
3939 version ".tar.gz"))
3940 (file-name (string-append name "-" version ".tar.gz"))
3941 (sha256
3942 (base32
3943 "1fd1mx0q1qb9vgdzls5ppxfriyid48blg8smgjspiazp7kxakzxv"))))
3944 (build-system emacs-build-system)
3945 (arguments
3946 `(#:phases
3947 (modify-phases %standard-phases
3948 (add-before 'install 'check
3949 (lambda _
3950 (zero? (system* "make" "test")))))))
3951 (home-page "https://github.com/skeeto/elfeed")
3952 (synopsis "Atom/RSS feed reader for Emacs")
3953 (description
3954 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
3955 and RSS, with a user interface inspired by notmuch.")
3956 (license license:gpl3+)))
3957
3958 (define-public emacs-rainbow-delimiters
3959 (package
3960 (name "emacs-rainbow-delimiters")
3961 (version "2.1.3")
3962 (source (origin
3963 (method url-fetch)
3964 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3965 "/rainbow-delimiters/" version
3966 "/rainbow-delimiters.el"))
3967 (file-name (string-append "rainbow-delimiters-" version ".el"))
3968 (sha256
3969 (base32
3970 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
3971 (build-system emacs-build-system)
3972 (home-page "https://github.com/Fanael/rainbow-delimiters")
3973 (synopsis "Highlight brackets according to their depth")
3974 (description
3975 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
3976 highlights parentheses, brackets, and braces according to their depth. Each
3977 successive level is highlighted in a different color, making it easy to spot
3978 matching delimiters, orient yourself in the code, and tell which statements
3979 are at a given level.")
3980 (license license:gpl3+)))
3981
3982 (define-public emacs-rainbow-identifiers
3983 (package
3984 (name "emacs-rainbow-identifiers")
3985 (version "0.2.2")
3986 (source (origin
3987 (method url-fetch)
3988 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3989 "/rainbow-identifiers/" version
3990 "/rainbow-identifiers.el"))
3991 (file-name (string-append "rainbow-identifiers-" version ".el"))
3992 (sha256
3993 (base32
3994 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
3995 (build-system emacs-build-system)
3996 (home-page "https://github.com/Fanael/rainbow-identifiers")
3997 (synopsis "Highlight identifiers in source code")
3998 (description
3999 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4000 identifiers based on their names. Each identifier gets a color based on a hash
4001 of its name.")
4002 (license license:bsd-2)))
4003
4004 (define-public emacs-rainbow-mode
4005 (package
4006 (name "emacs-rainbow-mode")
4007 (version "0.13")
4008 (source (origin
4009 (method url-fetch)
4010 (uri (string-append
4011 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4012 (sha256
4013 (base32
4014 "1d3aamx6qgqqpqijwsr02ggwrh67gfink1bir0692alfkm3zdddl"))))
4015 (build-system emacs-build-system)
4016 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4017 (synopsis "Colorize color names in buffers")
4018 (description
4019 "This minor mode sets background color to strings that match color
4020 names, e.g. #0000ff is displayed in white with a blue background.")
4021 (license license:gpl3+)))
4022
4023 (define-public emacs-visual-fill-column
4024 (package
4025 (name "emacs-visual-fill-column")
4026 (version "1.11")
4027 (source (origin
4028 (method url-fetch)
4029 (uri (string-append "https://codeload.github.com/joostkremers/"
4030 "visual-fill-column/tar.gz/" version))
4031 (file-name (string-append name "-" version ".tar.gz"))
4032 (sha256
4033 (base32
4034 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4035 (build-system emacs-build-system)
4036 (home-page "https://github.com/joostkremers/visual-fill-column")
4037 (synopsis "Fill-column for visual-line-mode")
4038 (description
4039 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4040 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4041 wrapping lines at the window edge, which is the standard behaviour of
4042 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4043 @code{fill-column} is too large for the window, the text is wrapped at the
4044 window edge.")
4045 (license license:gpl3+)))
4046
4047 (define-public emacs-writeroom
4048 (package
4049 (name "emacs-writeroom")
4050 (version "3.7")
4051 (source (origin
4052 (method url-fetch)
4053 (uri (string-append
4054 "https://github.com/joostkremers/writeroom-mode/archive/"
4055 version ".tar.gz"))
4056 (file-name (string-append name "-" version ".tar.gz"))
4057 (sha256
4058 (base32
4059 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4060 (build-system emacs-build-system)
4061 (propagated-inputs
4062 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4063 (home-page "https://github.com/joostkremers/writeroom-mode")
4064 (synopsis "Distraction-free writing for Emacs")
4065 (description
4066 "This package defines a minor mode for distraction-free writing. Some of
4067 the default effects include entering fullscreen, deleting other windows of the
4068 current frame, disabling the mode line, and adding margins to the buffer that
4069 restrict the text width to 80 characters.")
4070 (license license:bsd-3)))
4071
4072 (define-public emacs-ido-completing-read+
4073 (package
4074 (name "emacs-ido-completing-read+")
4075 (version "3.12")
4076 (source (origin
4077 (method url-fetch)
4078 (uri (string-append "https://raw.githubusercontent.com"
4079 "/DarwinAwardWinner/ido-ubiquitous/v"
4080 version "/ido-completing-read+.el"))
4081 (file-name (string-append "ido-completing-read+-" version ".el"))
4082 (sha256
4083 (base32
4084 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4085 (build-system emacs-build-system)
4086 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4087 (synopsis "Replacement for completing-read using ido")
4088 (description
4089 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4090 Importantly, it detects edge cases that ordinary ido cannot handle and either
4091 adjusts them so ido can handle them, or else simply falls back to the standard
4092 Emacs completion function instead.")
4093 (license license:gpl3+)))
4094
4095 (define-public emacs-ido-ubiquitous
4096 (package
4097 (name "emacs-ido-ubiquitous")
4098 (version "3.12")
4099 (source (origin
4100 (method url-fetch)
4101 (uri (string-append "https://raw.githubusercontent.com"
4102 "/DarwinAwardWinner/ido-ubiquitous/v"
4103 version "/ido-ubiquitous.el"))
4104 (file-name (string-append "ido-ubiquitous-" version ".el"))
4105 (sha256
4106 (base32
4107 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4108 (build-system emacs-build-system)
4109 (propagated-inputs
4110 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4111 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4112 (synopsis "Use ido (nearly) everywhere")
4113 (description
4114 "Ido-ubiquitous enables ido-style completion for almost every function
4115 that uses the standard completion function completing-read.")
4116 (license license:gpl3+)))
4117
4118 (define-public emacs-yaml-mode
4119 (package
4120 (name "emacs-yaml-mode")
4121 (version "0.0.13")
4122 (source (origin
4123 (method url-fetch)
4124 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4125 "/yaml-mode/v" version "/yaml-mode.el"))
4126 (file-name (string-append "yaml-mode-" version ".el"))
4127 (sha256
4128 (base32
4129 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4130 (build-system emacs-build-system)
4131 (home-page "https://github.com/yoshiki/yaml-mode")
4132 (synopsis "Major mode for editing YAML files")
4133 (description
4134 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4135 serialization format. It was initially developed by Yoshiki Kurihara and many
4136 features were added by Marshall Vandegrift. As YAML and Python share the fact
4137 that indentation determines structure, this mode provides indentation and
4138 indentation command behavior very similar to that of python-mode.")
4139 (license license:gpl3+)))
4140
4141 (define-public emacs-web-mode
4142 (package
4143 (name "emacs-web-mode")
4144 (version "14")
4145 (source (origin
4146 (method url-fetch)
4147 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4148 "/web-mode/v" version "/web-mode.el"))
4149 (file-name (string-append "web-mode-" version ".el"))
4150 (sha256
4151 (base32
4152 "086hik5fmxg3kx74qmransx9cz961qd22d4m6ah2dw6cwaj1s3s5"))))
4153 (build-system emacs-build-system)
4154 (synopsis "Major mode for editing web templates")
4155 (description "Web-mode is an Emacs major mode for editing web templates
4156 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4157 client/server side engines). Web-mode is compatible with many template
4158 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4159 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4160 Dust.js, React/JSX, Angularjs, ejs, etc.")
4161 (home-page "http://web-mode.org/")
4162 (license license:gpl3+)))
4163
4164 (define-public emacs-wgrep
4165 (package
4166 (name "emacs-wgrep")
4167 (version "2.1.10")
4168 (source (origin
4169 (method url-fetch)
4170 (uri (string-append
4171 "https://github.com/mhayashi1120/Emacs-wgrep/archive/"
4172 version ".tar.gz"))
4173 (file-name (string-append name "-" version ".tar.gz"))
4174 (sha256
4175 (base32
4176 "1r2bpypar70xg6dsx12x1k74f39ww930rday7rgqpyknzsx1k4l1"))))
4177 (build-system emacs-build-system)
4178 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4179 (synopsis "Edit a grep buffer and apply those changes to the files")
4180 (description
4181 "Emacs wgrep allows you to edit a grep buffer and apply those changes to
4182 the file buffer.")
4183 (license license:gpl3+)))
4184
4185 (define-public emacs-helm
4186 (package
4187 (name "emacs-helm")
4188 (version "2.9.0")
4189 (source (origin
4190 (method url-fetch)
4191 (uri (string-append
4192 "https://github.com/" name "/helm/archive/v"
4193 version ".tar.gz"))
4194 (file-name (string-append name "-" version ".tar.gz"))
4195 (sha256
4196 (base32
4197 "1798gn0za11cxdbi436javfczv4abniccxcl0jppl463r8lzb8is"))))
4198 (build-system emacs-build-system)
4199 (propagated-inputs
4200 `(("emacs-async" ,emacs-async)
4201 ("emacs-popup" ,emacs-popup)))
4202 (home-page "https://emacs-helm.github.io/helm/")
4203 (synopsis "Incremental completion and selection narrowing
4204 framework for Emacs")
4205 (description "Helm is incremental completion and selection narrowing
4206 framework for Emacs. It will help steer you in the right direction when
4207 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4208 of @code{anything.el} originally written by Tamas Patrovic and can be
4209 considered to be its successor. Helm sets out to clean up the legacy code in
4210 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4211 not tied in the trap of backward compatibility.")
4212 (license license:gpl3+)))
4213
4214 (define-public emacs-helm-swoop
4215 (package
4216 (name "emacs-helm-swoop")
4217 (version "1.7.4")
4218 (source (origin
4219 (method url-fetch)
4220 (uri (string-append
4221 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4222 version
4223 ".tar.gz"))
4224 (file-name (string-append name "-" version ".tar.gz"))
4225 (sha256
4226 (base32
4227 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4228 (build-system emacs-build-system)
4229 (propagated-inputs
4230 `(("emacs-helm" ,emacs-helm)))
4231 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4232 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4233 (description
4234 "This package builds on the Helm interface to provide several commands
4235 for search-based navigation of buffers.")
4236 (license license:gpl2+)))
4237
4238 (define-public emacs-helm-projectile
4239 (package
4240 (name "emacs-helm-projectile")
4241 (version "0.14.0")
4242 (source (origin
4243 (method url-fetch)
4244 (uri (string-append
4245 "https://github.com/bbatsov/helm-projectile/archive/v"
4246 version
4247 ".tar.gz"))
4248 (file-name (string-append name "-" version ".tar.gz"))
4249 (sha256
4250 (base32
4251 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
4252 (build-system emacs-build-system)
4253 (propagated-inputs
4254 `(("emacs-dash" ,emacs-dash)
4255 ("emacs-helm" ,emacs-helm)
4256 ("emacs-projectile" ,emacs-projectile)))
4257 (home-page "https://github.com/bbatsov/helm-projectile")
4258 (synopsis "Helm integration for Projectile")
4259 (description
4260 "This Emacs library provides a Helm interface for Projectile.")
4261 (license license:gpl3+)))
4262
4263 (define-public emacs-helm-make
4264 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
4265 (revision "1"))
4266 (package
4267 (name "emacs-helm-make")
4268 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
4269 (source
4270 (origin
4271 (method git-fetch)
4272 (uri (git-reference
4273 (url "https://github.com/abo-abo/helm-make.git")
4274 (commit commit)))
4275 (file-name (string-append name "-" version "-checkout"))
4276 (sha256
4277 (base32
4278 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
4279 (build-system emacs-build-system)
4280 (propagated-inputs
4281 `(("emacs-helm" ,emacs-helm)
4282 ("emacs-projectile" ,emacs-projectile)))
4283 (home-page "https://github.com/abo-abo/helm-make")
4284 (synopsis "Select a Makefile target with helm")
4285 (description "@code{helm-make} or @code{helm-make-projectile} will give
4286 you a @code{helm} selection of directory Makefile's targets. Selecting a
4287 target will call @code{compile} on it.")
4288 (license license:gpl3+))))
4289
4290 (define-public emacs-cider
4291 (package
4292 (name "emacs-cider")
4293 (version "0.15.1")
4294 (source (origin
4295 (method url-fetch)
4296 (uri (string-append
4297 "https://github.com/clojure-emacs/cider/archive/v"
4298 version ".tar.gz"))
4299 (file-name (string-append name "-" version ".tar.gz"))
4300 (sha256
4301 (base32
4302 "1j5hlmi14ypszv1f9nvq0jjlz7i742flg0ny3055l7i4x089xx6g"))))
4303 (build-system emacs-build-system)
4304 (arguments
4305 '(#:exclude ; Don't exclude 'cider-test.el'.
4306 '("^\\.dir-locals\\.el$" "^test/")))
4307 (propagated-inputs
4308 `(("emacs-clojure-mode" ,emacs-clojure-mode)
4309 ("emacs-spinner" ,emacs-spinner)
4310 ("emacs-pkg-info" ,emacs-pkg-info)
4311 ("emacs-queue" ,emacs-queue)))
4312 (home-page "https://cider.readthedocs.org/")
4313 (synopsis "Clojure development environment for Emacs")
4314 (description
4315 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
4316 provide an interactive development experience similar to the one you'd get
4317 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
4318 Geiser) and Smalltalk.
4319
4320 CIDER is the successor to the now deprecated combination of using SLIME +
4321 swank-clojure for Clojure development.
4322
4323 There are plenty of differences between CIDER and SLIME, but the core ideas
4324 are pretty much the same (and SLIME served as the principle inspiration for
4325 CIDER).")
4326 (license license:gpl3+)))
4327
4328 ;; There hasn't been a tag or release since 2015, so we take the latest
4329 ;; commit.
4330 (define-public emacs-sly
4331 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
4332 (revision "1"))
4333 (package
4334 (name "emacs-sly")
4335 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
4336 (source
4337 (origin
4338 (method git-fetch)
4339 (uri (git-reference
4340 (url "https://github.com/joaotavora/sly.git")
4341 (commit commit)))
4342 (file-name (git-file-name name version))
4343 (sha256
4344 (base32
4345 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
4346 (build-system emacs-build-system)
4347 (arguments
4348 `(#:include (cons "^lib\\/" %default-include)
4349 #:phases
4350 ;; The package provides autoloads.
4351 (modify-phases %standard-phases
4352 (delete 'make-autoloads))))
4353 (home-page "https://github.com/joaotavora/sly")
4354 (synopsis "Sylvester the Cat's Common Lisp IDE")
4355 (description
4356 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
4357 contains the following improvements over it:
4358
4359 @enumerate
4360 @item Completely redesigned REPL based on Emacs's own full-featured
4361 @code{comint.el}
4362 @item Live code annotations via a new @code{sly-stickers} contrib
4363 @item Consistent interactive button interface. Everything can be copied to
4364 the REPL.
4365 @item Multiple inspectors with independent history
4366 @item Regexp-capable @code{M-x sly-apropos}
4367 @item Contribs are first class SLY citizens and enabled by default
4368 @item Use ASDF to loads contribs on demand.
4369 @end enumerate
4370
4371 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
4372 xref, etc...) are still available, but with better integration.")
4373 (license license:gpl3+))))
4374
4375 (define-public emacs-lua-mode
4376 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
4377 (revision "1"))
4378 (package
4379 (name "emacs-lua-mode")
4380 (version (string-append "20151025." revision "-" (string-take commit 9)))
4381 (home-page "https://github.com/immerrr/lua-mode/")
4382 (source (origin
4383 (method git-fetch)
4384 (uri (git-reference
4385 (url home-page)
4386 (commit commit)))
4387 (file-name (string-append name "-" version ".checkout"))
4388 (sha256
4389 (base32
4390 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
4391 (build-system emacs-build-system)
4392 (synopsis "Major mode for lua")
4393 (description
4394 "This Emacs package provides a mode for @uref{https://www.lua.org/,
4395 Lua programing language}.")
4396 (license license:gpl2+))))
4397
4398 (define-public emacs-ebuild-mode
4399 (package
4400 (name "emacs-ebuild-mode")
4401 (version "1.37")
4402 (source (origin
4403 (method url-fetch)
4404 (uri (string-append
4405 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
4406 "-" version ".tar.xz"))
4407 (file-name (string-append name "-" version ".tar.xz"))
4408 (sha256
4409 (base32
4410 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
4411 (build-system emacs-build-system)
4412 (home-page "https://devmanual.gentoo.org")
4413 (synopsis "Major modes for Gentoo package files")
4414 (description
4415 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
4416 news items, openrc and runscripts.")
4417 (license license:gpl2+)))
4418
4419 (define-public emacs-evil
4420 (package
4421 (name "emacs-evil")
4422 (version "1.2.13")
4423 (source
4424 (origin
4425 (method url-fetch)
4426 (uri (string-append "https://github.com/emacs-evil/evil/archive/"
4427 version ".tar.gz"))
4428 (file-name (string-append name "-" version ".tar.gz"))
4429 (sha256
4430 (base32
4431 "1z63zsxmsc6mh74wv6065carwqmgs7b7lz5044s12xvgsjfbwi8h"))))
4432 (build-system emacs-build-system)
4433 (propagated-inputs
4434 `(("emacs-undo-tree" ,emacs-undo-tree)
4435 ("emacs-goto-chg" ,emacs-goto-chg)))
4436 (home-page "https://github.com/emacs-evil/evil")
4437 (synopsis "Extensible Vi layer for Emacs")
4438 (description
4439 "Evil is an extensible vi layer for Emacs. It emulates the
4440 main features of Vim, and provides facilities for writing custom
4441 extensions.")
4442 (license license:gpl3+)))
4443
4444 (define-public emacs-goto-chg
4445 (package
4446 (name "emacs-goto-chg")
4447 (version "1.6")
4448 (source
4449 (origin
4450 (method url-fetch)
4451 ;; There is no versioned source.
4452 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
4453 (file-name (string-append "goto-chg-" version ".el"))
4454 (sha256
4455 (base32
4456 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
4457 (build-system emacs-build-system)
4458 ;; There is no other home page.
4459 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
4460 (synopsis "Go to the last change in the Emacs buffer")
4461 (description
4462 "This package provides @code{M-x goto-last-change} command that goes to
4463 the point of the most recent edit in the current Emacs buffer. When repeated,
4464 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
4465 used for reverse direction.")
4466 (license license:gpl2+)))
4467
4468 (define-public emacs-monroe
4469 (package
4470 (name "emacs-monroe")
4471 (version "0.3.1")
4472 (source
4473 (origin
4474 (method url-fetch)
4475 (uri (string-append "https://github.com/sanel/monroe/archive/"
4476 version ".tar.gz"))
4477 (file-name (string-append name "-" version ".tar.gz"))
4478 (sha256
4479 (base32
4480 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
4481 (build-system emacs-build-system)
4482 (home-page "https://github.com/sanel/monroe")
4483 (synopsis "Clojure nREPL client for Emacs")
4484 (description
4485 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
4486 distribution, primarily targeting Clojure users")
4487 (license license:gpl3+)))
4488
4489 (define-public emacs-writegood-mode
4490 (package
4491 (name "emacs-writegood-mode")
4492 (version "2.0.2")
4493 (home-page "https://github.com/bnbeckwith/writegood-mode")
4494 (source (origin
4495 (method git-fetch)
4496 (uri (git-reference
4497 (url home-page)
4498 (commit (string-append "v" version))))
4499 (sha256
4500 (base32
4501 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
4502 (file-name (string-append name "-checkout"))))
4503 (build-system emacs-build-system)
4504 (synopsis "Polish up poor writing on the fly")
4505 (description
4506 "This minor mode tries to find and highlight problems with your writing
4507 in English as you type. It primarily detects \"weasel words\" and abuse of
4508 passive voice.")
4509 (license license:gpl3+)))
4510
4511 (define-public emacs-neotree
4512 (package
4513 (name "emacs-neotree")
4514 (version "0.5.2")
4515 (home-page "https://github.com/jaypei/emacs-neotree")
4516 (source (origin
4517 (method url-fetch)
4518 (uri (string-append
4519 "https://github.com/jaypei/" name
4520 "/archive/" version ".tar.gz"))
4521 (sha256
4522 (base32
4523 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
4524 (file-name (string-append name "-" version ".tar.gz"))))
4525 (build-system emacs-build-system)
4526 (synopsis "Folder tree view for Emacs")
4527 (description "This Emacs package provides a folder tree view.")
4528 (license license:gpl3+)))
4529
4530 (define-public emacs-org
4531 (package
4532 (name "emacs-org")
4533 ;; emacs-org-contrib inherits from this package. Please update its sha256
4534 ;; checksum as well.
4535 (version "9.1.9")
4536 (source (origin
4537 (method url-fetch)
4538 (uri (string-append "http://elpa.gnu.org/packages/org-"
4539 version ".tar"))
4540 (sha256
4541 (base32
4542 "16yr0srfzsrzv2b1f2wjk8gb2pyhsgj2hxbscixirkxqz674c5cl"))))
4543 (build-system emacs-build-system)
4544 (home-page "https://orgmode.org/")
4545 (synopsis "Outline-based notes management and organizer")
4546 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4547 lists, and project planning with a fast and effective plain-text system. It
4548 also is an authoring system with unique support for literate programming and
4549 reproducible research.")
4550 (license license:gpl3+)))
4551
4552 (define-public emacs-org-contrib
4553 (package
4554 (inherit emacs-org)
4555 (name "emacs-org-contrib")
4556 (version "20180327")
4557 (source (origin
4558 (method url-fetch)
4559 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
4560 version ".tar"))
4561 (sha256
4562 (base32
4563 "1y1nn0bxnh9y4a3zrqng8n639j5da5387q2314sr3a8ggy1nb93s"))))
4564 (arguments
4565 `(#:modules ((guix build emacs-build-system)
4566 (guix build utils)
4567 (guix build emacs-utils)
4568 (ice-9 ftw)
4569 (srfi srfi-1))
4570 #:phases
4571 (modify-phases %standard-phases
4572 (add-after 'install 'delete-org-files
4573 (lambda* (#:key inputs outputs #:allow-other-keys)
4574 (let* ((out (assoc-ref outputs "out"))
4575 (org (assoc-ref inputs "emacs-org"))
4576 (contrib-files
4577 (map basename (find-files out)))
4578 (org+contrib-files
4579 (map basename (find-files org)))
4580 (duplicates (lset-intersection
4581 string=? contrib-files org+contrib-files)))
4582 (with-directory-excursion
4583 (string-append
4584 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
4585 (for-each delete-file duplicates))
4586 #t))))))
4587 (propagated-inputs
4588 `(("emacs-org" ,emacs-org)))
4589 (synopsis "Contributed packages to Org mode")
4590 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4591 lists, and project planning with a fast and effective plain-text system.
4592
4593 This package is equivalent to org-plus-contrib, but only includes additional
4594 files that you would find in @file{contrib/} from the git repository.")))
4595
4596 (define-public emacs-flx
4597 (package
4598 (name "emacs-flx")
4599 (version "0.6.1")
4600 (source
4601 (origin
4602 (method url-fetch)
4603 (uri (string-append "https://github.com/lewang/"
4604 "flx/archive/v" version ".tar.gz"))
4605 (sha256
4606 (base32
4607 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
4608 (file-name (string-append name "-" version ".tar.gz"))))
4609 (build-system emacs-build-system)
4610 (home-page "https://github.com/lewang/flx")
4611 (synopsis "Fuzzy matching for Emacs")
4612 (description
4613 "Flx provides fuzzy matching for emacs a la sublime text.
4614 The sorting algorithm is a balance between word beginnings (abbreviation)
4615 and contiguous matches (substring). The longer the substring match,
4616 the higher it scores. This maps well to how we think about matching.
4617 Flx has support for ido (interactively do things) through flx-ido.")
4618 (license license:gpl3+)))
4619
4620 (define-public emacs-cyberpunk-theme
4621 (package
4622 (name "emacs-cyberpunk-theme")
4623 (version "1.19")
4624 (source
4625 (origin
4626 (method url-fetch)
4627 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
4628 "archive/" version ".tar.gz"))
4629 (sha256
4630 (base32
4631 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
4632 (file-name (string-append name "-" version ".tar.gz"))))
4633 (build-system emacs-build-system)
4634 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
4635 (synopsis "Cyberpunk theme for emacs built-in color theme support")
4636 (description
4637 "Cyberpunk color theme for the emacs 24+ built-in color theme support
4638 known loosely as deftheme. Many mode-specific customizations are included.")
4639 (license license:gpl3+)))
4640
4641 (define-public emacs-danneskjold-theme
4642 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
4643 (revision "1"))
4644 (package
4645 (name "emacs-danneskjold-theme")
4646 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4647 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
4648 (source
4649 (origin
4650 (method git-fetch)
4651 (uri (git-reference
4652 (url home-page)
4653 (commit commit)))
4654 (file-name (string-append name "-" version "-checkout"))
4655 (sha256
4656 (base32
4657 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
4658 (build-system emacs-build-system)
4659 (arguments
4660 `(#:phases
4661 (modify-phases %standard-phases
4662 (add-after 'unpack 'delete-screenshots
4663 (lambda _
4664 (delete-file-recursively "screenshots") #t)))))
4665 (synopsis "High-contrast Emacs theme")
4666 (description
4667 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
4668 (license license:gpl3+))))
4669
4670 (define-public emacs-dream-theme
4671 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
4672 (revision "1"))
4673 (package
4674 (name "emacs-dream-theme")
4675 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4676 (source
4677 (origin
4678 (method git-fetch)
4679 (uri (git-reference
4680 (url "https://github.com/djcb/dream-theme")
4681 (commit commit)))
4682 (file-name (string-append name "-" version "-checkout"))
4683 (sha256
4684 (base32
4685 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
4686 (build-system emacs-build-system)
4687 (home-page "https://github.com/djcb/dream-theme")
4688 (synopsis "High-contrast Emacs theme")
4689 (description
4690 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
4691 by zenburn, sinburn and similar themes, but slowly diverging from them.")
4692 (license license:gpl3+))))
4693
4694 (define-public emacs-auto-complete
4695 (package
4696 (name "emacs-auto-complete")
4697 (version "1.5.1")
4698 (source
4699 (origin
4700 (method url-fetch)
4701 (uri (string-append "https://github.com/auto-complete/"
4702 "auto-complete/archive/v" version ".tar.gz"))
4703 (sha256
4704 (base32
4705 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
4706 (file-name (string-append name "-" version ".tar.gz"))))
4707 (build-system emacs-build-system)
4708 (propagated-inputs
4709 `(("emacs-popup" ,emacs-popup)))
4710 (home-page "https://github.com/auto-complete/auto-complete")
4711 (synopsis "Intelligent auto-completion extension for Emacs")
4712 (description
4713 "Auto-Complete is an intelligent auto-completion extension for Emacs.
4714 It extends the standard Emacs completion interface and provides an environment
4715 that allows users to concentrate more on their own work. Its features are:
4716 a visual interface, reduce overhead of completion by using statistic method,
4717 extensibility.")
4718 (license license:gpl3+)))
4719
4720 (define-public m17n-db
4721 (package
4722 (name "m17n-db")
4723 (version "1.7.0")
4724 (source
4725 (origin
4726 (method url-fetch)
4727 (uri (string-append "mirror://savannah/m17n/m17n-db-"
4728 version ".tar.gz"))
4729 (sha256
4730 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
4731 (build-system gnu-build-system)
4732 (inputs
4733 `(("gettext" ,gettext-minimal)))
4734 (arguments
4735 `(#:configure-flags
4736 (list (string-append "--with-charmaps="
4737 (assoc-ref %build-inputs "libc")
4738 "/share/i18n/charmaps"))))
4739 ;; With `guix lint' the home-page URI returns a small page saying
4740 ;; that your browser does not handle frames. This triggers the "URI
4741 ;; returns suspiciously small file" warning.
4742 (home-page "https://www.nongnu.org/m17n/")
4743 (synopsis "Multilingual text processing library (database)")
4744 (description "The m17n library realizes multilingualization of
4745 many aspects of applications. The m17n library represents
4746 multilingual text as an object named M-text. M-text is a string with
4747 attributes called text properties, and designed to substitute for
4748 string in C. Text properties carry any information required to input,
4749 display and edit the text.
4750
4751 This package contains the library database.")
4752 (license license:lgpl2.1+)))
4753
4754 (define-public m17n-lib
4755 (package
4756 (name "m17n-lib")
4757 (version "1.7.0")
4758 (source
4759 (origin
4760 (method url-fetch)
4761 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
4762 version ".tar.gz"))
4763 (sha256
4764 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
4765 (build-system gnu-build-system)
4766 (inputs
4767 `(("fribidi" ,fribidi)
4768 ("gd" ,gd)
4769 ("libotf" ,libotf)
4770 ("libxft" ,libxft)
4771 ("libxml2" ,libxml2)
4772 ("m17n-db" ,m17n-db)))
4773 (arguments
4774 `(#:parallel-build? #f))
4775 ;; With `guix lint' the home-page URI returns a small page saying
4776 ;; that your browser does not handle frames. This triggers the "URI
4777 ;; returns suspiciously small file" warning.
4778 (home-page "https://www.nongnu.org/m17n/")
4779 (synopsis "Multilingual text processing library (runtime)")
4780 (description "The m17n library realizes multilingualization of
4781 many aspects of applications. The m17n library represents
4782 multilingual text as an object named M-text. M-text is a string with
4783 attributes called text properties, and designed to substitute for
4784 string in C. Text properties carry any information required to input,
4785 display and edit the text.
4786
4787 This package contains the library runtime.")
4788 (license license:lgpl2.1+)))
4789
4790 (define-public emacs-nginx-mode
4791 (package
4792 (name "emacs-nginx-mode")
4793 (version "1.1.4")
4794 (source
4795 (origin
4796 (method url-fetch)
4797 (uri (string-append
4798 "https://github.com/ajc/nginx-mode/archive/v"
4799 version ".tar.gz"))
4800 (file-name (string-append name "-" version ".tar.gz"))
4801 (sha256
4802 (base32
4803 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
4804 (build-system emacs-build-system)
4805 (home-page "https://github.com/ajc/nginx-mode")
4806 (synopsis "Emacs major mode for editing nginx config files")
4807 (description "This package provides an Emacs major mode for
4808 editing nginx config files.")
4809 (license license:gpl2+)))
4810
4811 (define-public emacs-stream
4812 (package
4813 (name "emacs-stream")
4814 (version "2.2.0")
4815 (home-page "https://github.com/NicolasPetton/stream")
4816 (source
4817 (origin
4818 (method url-fetch)
4819 (file-name (string-append name "-" version ".tar.gz"))
4820 (uri (string-append home-page "/archive/"version ".tar.gz"))
4821 (sha256
4822 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
4823 (build-system emacs-build-system)
4824 (synopsis "Implementation of streams for Emacs")
4825 (description "This library provides an implementation of streams for Emacs.
4826 Streams are implemented as delayed evaluation of cons cells.")
4827 (license license:gpl3+)))
4828
4829 (define-public emacs-el-search
4830 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
4831 (revision "1"))
4832 (package
4833 (name "emacs-el-search")
4834 ;; No ufficial release.
4835 (version (string-append "0.0-" revision "." (string-take commit 7)))
4836 (home-page "https://github.com/emacsmirror/el-search")
4837 (source
4838 (origin
4839 (method git-fetch)
4840 (file-name (string-append name "-" version ".tar.gz"))
4841 (uri (git-reference
4842 (commit commit)
4843 (url (string-append home-page ".git"))))
4844 (sha256
4845 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
4846 (build-system emacs-build-system)
4847 (inputs `(("emacs-stream" ,emacs-stream)))
4848 (synopsis "Expression based interactive search for emacs-lisp-mode")
4849 (description "This package provides expression based interactive search
4850 procedures for emacs-lisp-mode.")
4851 (license license:gpl3+))))
4852
4853 (define-public emacs-ht
4854 (package
4855 (name "emacs-ht")
4856 (version "2.1")
4857 (source
4858 (origin
4859 (method url-fetch)
4860 (uri (string-append
4861 "https://github.com/Wilfred/ht.el/archive/"
4862 version ".tar.gz"))
4863 (file-name (string-append name "-" version ".tar.gz"))
4864 (sha256
4865 (base32
4866 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
4867 (build-system emacs-build-system)
4868 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
4869 (home-page "https://github.com/Wilfred/ht.el")
4870 (synopsis "Hash table library for Emacs")
4871 (description
4872 "This package simplifies the use of hash tables in elisp. It also
4873 provides functions to convert hash tables from and to alists and plists.")
4874 (license license:gpl3+)))
4875
4876 (define-public emacs-log4e
4877 (package
4878 (name "emacs-log4e")
4879 (version "0.3.0")
4880 (source
4881 (origin
4882 (method url-fetch)
4883 (uri (string-append
4884 "https://github.com/aki2o/log4e/archive/v"
4885 version ".tar.gz"))
4886 (file-name (string-append name "-" version ".tar.gz"))
4887 (sha256
4888 (base32
4889 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
4890 (build-system emacs-build-system)
4891 (arguments
4892 `(#:phases
4893 (modify-phases %standard-phases
4894 (add-after 'unpack 'remove-tests
4895 ;; Guile builder complains about null characters in some
4896 ;; strings of test files. Remove "test" directory (it is not
4897 ;; needed anyway).
4898 (lambda _
4899 (delete-file-recursively "test"))))))
4900 (home-page "https://github.com/aki2o/log4e")
4901 (synopsis "Logging framework for elisp")
4902 (description
4903 "This package provides a logging framework for elisp. It allows
4904 you to deal with multiple log levels.")
4905 (license license:gpl3+)))
4906
4907 (define-public emacs-gntp
4908 (package
4909 (name "emacs-gntp")
4910 (version "0.1")
4911 (source
4912 (origin
4913 (method url-fetch)
4914 (uri (string-append
4915 "https://github.com/tekai/gntp.el/archive/v"
4916 version ".tar.gz"))
4917 (file-name (string-append name "-" version ".tar.gz"))
4918 (sha256
4919 (base32
4920 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
4921 (build-system emacs-build-system)
4922 (home-page "https://github.com/tekai/gntp.el")
4923 (synopsis "Growl Notification Protocol for Emacs")
4924 (description
4925 "This package implements the Growl Notification Protocol GNTP
4926 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
4927 It is incomplete as it only lets you send but not receive
4928 notifications.")
4929 (license license:bsd-3)))
4930
4931 (define-public emacs-alert
4932 (package
4933 (name "emacs-alert")
4934 (version "1.2")
4935 (source
4936 (origin
4937 (method url-fetch)
4938 (uri (string-append
4939 "https://github.com/jwiegley/alert/archive/v"
4940 version ".tar.gz"))
4941 (file-name (string-append name "-" version ".tar.gz"))
4942 (sha256
4943 (base32
4944 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
4945 (build-system emacs-build-system)
4946 (propagated-inputs
4947 `(("emacs-gntp" ,emacs-gntp)
4948 ("emacs-log4e" ,emacs-log4e)))
4949 (home-page "https://github.com/jwiegley/alert")
4950 (synopsis "Growl-style notification system for Emacs")
4951 (description
4952 "Alert is a Growl-workalike for Emacs which uses a common notification
4953 interface and multiple, selectable \"styles\", whose use is fully
4954 customizable by the user.")
4955 (license license:gpl2+)))
4956
4957 (define-public emacs-mu4e-alert
4958 (package
4959 (name "emacs-mu4e-alert")
4960 (version "1.0")
4961 (source
4962 (origin
4963 (method url-fetch)
4964 (uri (string-append
4965 "https://github.com/iqbalansari/mu4e-alert/archive/v"
4966 version ".tar.gz"))
4967 (file-name (string-append name "-" version ".tar.gz"))
4968 (sha256
4969 (base32
4970 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
4971 (build-system emacs-build-system)
4972 (propagated-inputs
4973 `(("emacs-alert" ,emacs-alert)
4974 ("emacs-s" ,emacs-s)
4975 ("emacs-ht" ,emacs-ht)))
4976 (home-page "https://github.com/iqbalansari/mu4e-alert")
4977 (synopsis "Desktop notification for mu4e")
4978 (description
4979 "This package provides desktop notifications for mu4e.
4980 Additionally it can display the number of unread emails in the
4981 mode-line.")
4982 (license license:gpl3+)))
4983
4984 (define-public emacs-pretty-mode
4985 (package
4986 (name "emacs-pretty-mode")
4987 (version "2.0.3")
4988 (source
4989 (origin
4990 (method url-fetch)
4991 (uri (string-append "https://github.com/akatov/pretty-mode/"
4992 "archive/" version ".tar.gz"))
4993 (file-name (string-append name "-" version ".tar.gz"))
4994 (sha256
4995 (base32
4996 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
4997 (build-system emacs-build-system)
4998 (home-page "https://github.com/akatov/pretty-mode")
4999 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5000 (description
5001 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5002 (license license:gpl3+)))
5003
5004 (define-public emacs-yasnippet
5005 (package
5006 (name "emacs-yasnippet")
5007 (version "0.12.2")
5008 (source (origin
5009 (method url-fetch)
5010 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5011 "archive/" version ".tar.gz"))
5012 (file-name (string-append name "-" version ".tar.gz"))
5013 (sha256
5014 (base32
5015 "01jabaz0g67bsziayrxgv74px55fx4nlrcl0csl8f1by2102pwc5"))
5016 (modules '((guix build utils)))
5017 (snippet
5018 '(begin
5019 ;; YASnippet expects a "snippets" subdirectory in the same
5020 ;; directory as yasnippet.el, but we don't install it
5021 ;; because it's a git submodule pointing to an external
5022 ;; repository. Adjust `yas-snippet-dirs' to prevent
5023 ;; warnings about a missing directory.
5024 (substitute* "yasnippet.el"
5025 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5026 "))\n"))))))
5027 (build-system emacs-build-system)
5028 (home-page "https://github.com/joaotavora/yasnippet")
5029 (synopsis "Yet another snippet extension for Emacs")
5030 (description
5031 "YASnippet is a template system for Emacs. It allows you to type an
5032 abbreviation and automatically expand it into function templates.")
5033 (license license:gpl3+)))
5034
5035 (define-public emacs-yasnippet-snippets
5036 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5037 (revision "1"))
5038 (package
5039 (name "emacs-yasnippet-snippets")
5040 (version (string-append "1-" revision "." (string-take commit 8)))
5041 (source
5042 (origin
5043 (method git-fetch)
5044 (uri (git-reference
5045 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5046 (commit commit)))
5047 (file-name (string-append name "-" version "-checkout"))
5048 (sha256
5049 (base32
5050 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5051 (build-system trivial-build-system)
5052 (arguments
5053 `(#:modules ((ice-9 ftw)
5054 (ice-9 regex)
5055 (guix build utils))
5056 #:builder
5057 (begin
5058 (use-modules (ice-9 ftw)
5059 (ice-9 regex)
5060 (guix build utils))
5061 (with-directory-excursion (assoc-ref %build-inputs "source")
5062 (for-each (lambda (dir)
5063 (copy-recursively
5064 dir
5065 (string-append %output
5066 "/share/emacs/yasnippet-snippets/"
5067 dir)))
5068 (scandir "." (lambda (fname)
5069 (and (string-match "-mode$" fname)
5070 (directory-exists? fname)))))))))
5071 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5072 (synopsis "Collection of YASnippet snippets for many languages")
5073 (description
5074 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5075 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5076 To make YASnippet aware of these snippets, add the above directory to
5077 @code{yas-snippet-dirs}.")
5078 (license license:expat))))
5079
5080 (define-public emacs-helm-c-yasnippet
5081 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5082 (revision "1"))
5083 (package
5084 (name "emacs-helm-c-yasnippet")
5085 (version (string-append "0.6.7" "-" revision "."
5086 (string-take commit 7)))
5087 (source (origin
5088 (method git-fetch)
5089 (uri (git-reference
5090 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5091 (commit commit)))
5092 (file-name (string-append name "-" version "-checkout"))
5093 (sha256
5094 (base32
5095 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5096 (build-system emacs-build-system)
5097 (propagated-inputs
5098 `(("emacs-helm" ,emacs-helm)
5099 ("emacs-yasnippet" ,emacs-yasnippet)))
5100 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5101 (synopsis "Helm integration for Yasnippet")
5102 (description "This Emacs library provides Helm interface for
5103 Yasnippet.")
5104 (license license:gpl2+))))
5105
5106 (define-public emacs-memoize
5107 (package
5108 (name "emacs-memoize")
5109 (version "20130421.b55eab0")
5110 (source
5111 (origin
5112 (method git-fetch)
5113 (uri (git-reference
5114 (url "https://github.com/skeeto/emacs-memoize")
5115 (commit "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75")))
5116 (file-name (string-append name "-" version ".tar.gz"))
5117 (sha256
5118 (base32
5119 "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"))))
5120 (build-system emacs-build-system)
5121 (arguments
5122 `(#:phases
5123 (modify-phases %standard-phases
5124 (add-before 'install 'check
5125 (lambda _
5126 (zero? (system* "emacs" "-batch" "-l" "memoize.el"
5127 "-l" "memoize-test.el"
5128 "-f" "ert-run-tests-batch-and-exit")))))))
5129 (home-page "https://github.com/skeeto/emacs-memoize")
5130 (synopsis "Emacs lisp memoization library")
5131 (description "@code{emacs-memoize} is an Emacs library for
5132 memoizing functions.")
5133 (license license:unlicense)))
5134
5135 (define-public emacs-linum-relative
5136 (package
5137 (name "emacs-linum-relative")
5138 (version "0.5")
5139 (source
5140 (origin
5141 (method url-fetch)
5142 (uri (string-append
5143 "https://github.com/coldnew/linum-relative/archive/"
5144 version ".tar.gz"))
5145 (file-name (string-append name "-" version ".tar.gz"))
5146 (sha256
5147 (base32
5148 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5149 (build-system emacs-build-system)
5150 (home-page "https://github.com/coldnew/linum-relative")
5151 (synopsis "Relative line numbering for Emacs")
5152 (description "@code{emacs-linum-relative} displays the relative line
5153 number on the left margin in Emacs.")
5154 (license license:gpl2+)))
5155
5156 (define-public emacs-idle-highlight
5157 (package
5158 (name "emacs-idle-highlight")
5159 (version "1.1.3")
5160 (source
5161 (origin
5162 (method url-fetch)
5163 (uri (string-append
5164 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5165 version ".tar.gz"))
5166 (file-name (string-append name "-" version ".tar.gz"))
5167 (sha256
5168 (base32
5169 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5170 (build-system emacs-build-system)
5171 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5172 (synopsis "Highlights all occurrences of the word the point is on")
5173 (description
5174 "This Emacs package provides @code{idle-highlight-mode} that sets
5175 an idle timer to highlight all occurrences in the buffer of the word under
5176 the point.")
5177 (license license:gpl3+)))
5178
5179 (define-public emacs-ox-twbs
5180 (package
5181 (name "emacs-ox-twbs")
5182 (version "1.1.1")
5183 (source
5184 (origin
5185 (method url-fetch)
5186 (uri (string-append
5187 "https://github.com/marsmining/ox-twbs/archive/v"
5188 version ".tar.gz"))
5189 (file-name (string-append name "-" version ".tar.gz"))
5190 (sha256
5191 (base32
5192 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5193 (build-system emacs-build-system)
5194 (home-page "https://github.com/marsmining/ox-twbs")
5195 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5196 (description
5197 "This Emacs package outputs your org-mode docs with a simple, clean and
5198 modern look. It implements a new HTML back-end for exporting org-mode docs as
5199 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5200 jQuery and Bootstrap resources included via osscdn.")
5201 (license license:gpl3+)))
5202
5203 (define-public emacs-highlight-sexp
5204 (package
5205 (name "emacs-highlight-sexp")
5206 (version "1.0")
5207 (source
5208 (origin
5209 (method url-fetch)
5210 (uri (string-append
5211 "https://github.com/daimrod/highlight-sexp/archive/v"
5212 version ".tar.gz"))
5213 (file-name (string-append name "-" version ".tar.gz"))
5214 (sha256
5215 (base32
5216 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
5217 (build-system emacs-build-system)
5218 (home-page "https://github.com/daimrod/highlight-sexp")
5219 (synopsis "Minor mode that highlights the s-exp at the current position")
5220 (description
5221 "This Emacs package highlights the s-exp at the current position.")
5222 (license license:gpl3+)))
5223
5224 (define-public emacs-highlight-stages
5225 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
5226 (revision "1"))
5227 (package
5228 (name "emacs-highlight-stages")
5229 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
5230 (source
5231 (origin
5232 (method git-fetch)
5233 (uri (git-reference
5234 (url "https://github.com/zk-phi/highlight-stages.git")
5235 (commit commit)))
5236 (file-name (string-append name "-" version "-checkout"))
5237 (sha256
5238 (base32
5239 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
5240 (patches
5241 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
5242 (build-system emacs-build-system)
5243 (home-page "https://github.com/wigust/highlight-stages")
5244 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
5245 (description "@code{highlight-stages} provides an Emacs minor mode that
5246 highlights quasi-quoted expressions.")
5247 (license license:gpl3+))))
5248
5249 (define-public emacspeak
5250 (package
5251 (name "emacspeak")
5252 (version "47.0")
5253 (source
5254 (origin
5255 (method url-fetch)
5256 (uri (string-append
5257 "https://github.com/tvraman/emacspeak/releases/download/"
5258 version "/emacspeak-" version ".tar.bz2"))
5259 (sha256
5260 (base32
5261 "0xbcc266x752y68s3g096m161irzvsqym3axzqn8rb276a8x55n7"))))
5262 (build-system gnu-build-system)
5263 (arguments
5264 '(#:make-flags (list (string-append "prefix="
5265 (assoc-ref %outputs "out")))
5266 #:phases
5267 (modify-phases %standard-phases
5268 (replace 'configure
5269 (lambda _
5270 ;; Configure Emacspeak according to etc/install.org.
5271 (setenv "SHELL" (which "sh"))
5272 (zero? (system* "make" "config"))))
5273 (add-after 'build 'build-espeak
5274 (lambda _
5275 (zero? (system* "make" "espeak"))))
5276 (replace 'install
5277 (lambda* (#:key outputs #:allow-other-keys)
5278 (let* ((out (assoc-ref outputs "out"))
5279 (bin (string-append out "/bin"))
5280 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
5281 (info (string-append out "/share/info")))
5282 ;; According to etc/install.org, the Emacspeak directory should
5283 ;; be copied to its installation destination.
5284 (for-each
5285 (lambda (file)
5286 (copy-recursively file (string-append lisp "/" file)))
5287 '("etc" "info" "lisp" "media" "servers" "sounds" "stumpwm"
5288 "xsl"))
5289 ;; Make sure emacspeak is loaded from the correct directory.
5290 (substitute* "etc/emacspeak.sh"
5291 (("exec emacs.*$")
5292 (string-append "exec emacs -l " lisp
5293 "/lisp/emacspeak-setup.el $CL_ALL")))
5294 ;; Install the convenient startup script.
5295 (mkdir-p bin)
5296 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
5297 #t))
5298 (add-after 'install 'wrap-program
5299 (lambda* (#:key inputs outputs #:allow-other-keys)
5300 (let* ((out (assoc-ref outputs "out"))
5301 (emacspeak (string-append out "/bin/emacspeak"))
5302 (espeak (string-append (assoc-ref inputs "espeak")
5303 "/bin/espeak")))
5304 ;; The environment variable DTK_PROGRAM tells emacspeak what
5305 ;; program to use for speech.
5306 (wrap-program emacspeak
5307 `("DTK_PROGRAM" ":" prefix (,espeak)))
5308 #t))))
5309 #:tests? #f)) ; no check target
5310 (inputs
5311 `(("espeak" ,espeak)
5312 ("tcl" ,tcl)
5313 ("tclx" ,tclx)))
5314 (native-inputs `(("emacs" ,emacs-minimal)))
5315 (home-page "http://emacspeak.sourceforge.net")
5316 (synopsis "Audio desktop interface for Emacs")
5317 (description
5318 "Emacspeak is a speech interface that allows visually impaired users to
5319 interact independently and efficiently with the computer. Audio formatting
5320 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
5321 allows Emacspeak to produce rich aural presentations of electronic information.
5322 By seamlessly blending all aspects of the Internet such as Web-surfing and
5323 messaging, Emacspeak speech-enables local and remote information via a
5324 consistent and well-integrated user interface.")
5325 (license license:gpl2+)))
5326
5327 (define-public emacs-adaptive-wrap
5328 (package
5329 (name "emacs-adaptive-wrap")
5330 (version "0.5.1")
5331 (source (origin
5332 (method url-fetch)
5333 (uri (string-append
5334 "http://elpa.gnu.org/packages/adaptive-wrap-"
5335 version ".el"))
5336 (sha256
5337 (base32
5338 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
5339 (build-system emacs-build-system)
5340 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
5341 (synopsis "Smart line-wrapping with wrap-prefix")
5342 (description
5343 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
5344 minor mode which sets the wrap-prefix property on the fly so that
5345 single-long-line paragraphs get word-wrapped in a way similar to what
5346 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
5347 actually changing the buffer's text.")
5348 (license license:gpl3+)))
5349
5350 (define-public emacs-diff-hl
5351 (package
5352 (name "emacs-diff-hl")
5353 (version "1.8.4")
5354 (source
5355 (origin
5356 (method url-fetch)
5357 (uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
5358 version ".tar"))
5359 (sha256
5360 (base32
5361 "0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
5362 (build-system emacs-build-system)
5363 (home-page "https://github.com/dgutov/diff-hl")
5364 (synopsis
5365 "Highlight uncommitted changes using VC")
5366 (description
5367 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
5368 window (using the fringe, by default), allows you to jump between
5369 the hunks and revert them selectively.")
5370 (license license:gpl3+)))
5371
5372 (define-public emacs-diminish
5373 (package
5374 (name "emacs-diminish")
5375 (version "0.45")
5376 (source
5377 (origin
5378 (method url-fetch)
5379 (uri (string-append
5380 "https://github.com/myrjola/diminish.el/archive/v"
5381 version ".tar.gz"))
5382 (file-name (string-append name "-" version ".tar.gz"))
5383 (sha256
5384 (base32
5385 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
5386 (build-system emacs-build-system)
5387 (home-page "https://github.com/myrjola/diminish.el")
5388 (synopsis "Diminish minor modes with no modeline display")
5389 (description "@code{emacs-diminish} implements hiding or
5390 abbreviation of the mode line displays (lighters) of minor modes.")
5391 (license license:gpl2+)))
5392
5393 (define-public emacs-use-package
5394 (package
5395 (name "emacs-use-package")
5396 (version "2.3")
5397 (source
5398 (origin
5399 (method url-fetch)
5400 (uri (string-append
5401 "https://github.com/jwiegley/use-package/archive/"
5402 version ".tar.gz"))
5403 (file-name (string-append name "-" version ".tar.gz"))
5404 (sha256
5405 (base32
5406 "0x4h136jb3imyli6zsh7dyzjrra6pv0v6b0yk94jdng3rdfcmsf5"))))
5407 (build-system emacs-build-system)
5408 (propagated-inputs
5409 `(("emacs-diminish" ,emacs-diminish)))
5410 (arguments
5411 `(#:phases
5412 (modify-phases %standard-phases
5413 (add-before 'install 'check
5414 (lambda _
5415 (zero? (system* "emacs" "--batch" "-L" "."
5416 "-l" "use-package-tests.el"
5417 "-f" "ert-run-tests-batch-and-exit"))
5418 ;; Tests fail in this release, but have been fixed in
5419 ;; upstream commit 7956d40eed57d6c06bef36ebc174cf57d934e30d
5420 #t)))))
5421 (home-page "https://github.com/jwiegley/use-package")
5422 (synopsis "Declaration for simplifying your .emacs")
5423 (description "The use-package macro allows you to isolate package
5424 configuration in your @file{.emacs} file in a way that is both
5425 performance-oriented and tidy.")
5426 (license license:gpl2+)))
5427
5428 (define-public emacs-strace-mode
5429 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
5430 (revision "1"))
5431 (package
5432 (name "emacs-strace-mode")
5433 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
5434 (source (origin
5435 (method git-fetch)
5436 (uri (git-reference
5437 (url "https://github.com/pkmoore/strace-mode")
5438 (commit commit)))
5439 (file-name (string-append name "-" version "-checkout"))
5440 (sha256
5441 (base32
5442 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
5443 (build-system emacs-build-system)
5444 (home-page "https://github.com/pkmoore/strace-mode")
5445 (synopsis "Emacs major mode to highlight strace outputs")
5446 (description "@code{emacs-strace-mode} provides an Emacs major mode
5447 highlighting strace outputs.")
5448 (license license:gpl3+))))
5449
5450 (define-public emacs-default-encrypt
5451 (package
5452 (name "emacs-default-encrypt")
5453 (version "4.3")
5454 (source
5455 (origin
5456 (method url-fetch)
5457 (uri (string-append
5458 "https://www.informationelle-selbstbestimmung-im-internet.de"
5459 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
5460 (file-name (string-append "jl-encrypt-" version ".el"))
5461 (sha256
5462 (base32
5463 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
5464 (build-system emacs-build-system)
5465 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
5466 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
5467 (description
5468 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
5469 automatically encrypts messages that you send (e.g., email) when public keys
5470 for all recipients are available, and it protects you from accidentally
5471 sending un-encrypted messages. It can also be configured to automatically
5472 sign messages that you send. For details and instructions on how to use
5473 DefaultEncrypt, please refer to the home page or read the comments in the
5474 source file, @file{jl-encrypt.el}.")
5475 (license license:gpl3+)))
5476
5477 (define-public emacs-htmlize
5478 (package
5479 (name "emacs-htmlize")
5480 (version "1.51")
5481 (source
5482 (origin
5483 (method url-fetch)
5484 (uri (string-append
5485 "https://github.com/hniksic/emacs-htmlize/archive/release/"
5486 version ".tar.gz"))
5487 (file-name (string-append name "-" version ".tar.gz"))
5488 (sha256
5489 (base32
5490 "1fy1lybzrxl8a8r88f6p19nz8ygmvcxhxbnymkxh7jqaz25viwld"))))
5491 (build-system emacs-build-system)
5492 (home-page "https://github.com/hniksic/emacs-htmlize")
5493 (synopsis "Convert buffer text and decorations to HTML")
5494 (description "@code{emacs-htmlize} converts the buffer text and
5495 the associated decorations to HTML. Output to CSS, inline CSS and
5496 fonts is supported.")
5497 (license license:gpl2+)))
5498
5499 (define-public emacs-xmlgen
5500 (package
5501 (name "emacs-xmlgen")
5502 (version "0.5")
5503 (source
5504 (origin
5505 (method url-fetch)
5506 (uri (string-append
5507 "https://github.com/philjackson/xmlgen/archive/"
5508 version ".tar.gz"))
5509 (file-name (string-append name "-" version ".tar.gz"))
5510 (sha256
5511 (base32
5512 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
5513 (build-system emacs-build-system)
5514 (arguments
5515 `(#:phases
5516 (modify-phases %standard-phases
5517 (add-before 'install 'check
5518 (lambda _
5519 (zero? (system* "emacs" "--batch" "-L" "."
5520 "-l" "xmlgen-test.el"
5521 "-f" "ert-run-tests-batch-and-exit")))))))
5522 (home-page "https://github.com/philjackson/xmlgen")
5523 (synopsis "S-expression to XML domain specific language (DSL) in
5524 Emacs Lisp")
5525 (description "@code{emacs-xmlgen} provides S-expression to XML
5526 conversion for Emacs Lisp.")
5527 (license license:gpl2+)))
5528
5529 (define-public emacs-cdlatex
5530 (package
5531 (name "emacs-cdlatex")
5532 (version "4.7")
5533 (source
5534 (origin
5535 (method url-fetch)
5536 (uri (string-append
5537 "https://github.com/cdominik/cdlatex/archive/"
5538 version ".tar.gz"))
5539 (file-name (string-append name "-" version ".tar.gz"))
5540 (sha256
5541 (base32
5542 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
5543 (build-system emacs-build-system)
5544 (propagated-inputs
5545 `(("emacs-auctex" ,emacs-auctex)))
5546 (home-page "https://github.com/cdominik/cdlatex")
5547 (synopsis "Fast Emacs input methods for LaTeX environments and
5548 math")
5549 (description "CDLaTeX is an Emacs minor mode supporting fast
5550 insertion of environment templates and math in LaTeX. Similar
5551 commands are also offered as part of the AUCTeX package, but it is not
5552 the same - CDLaTeX focuses on speediness for inserting LaTeX
5553 constructs.")
5554 (license license:gpl3+)))
5555
5556 (define-public emacs-cnfonts
5557 (package
5558 (name "emacs-cnfonts")
5559 (version "0.9.1")
5560 (source (origin
5561 (method url-fetch)
5562 (uri (string-append
5563 "https://github.com/tumashu/cnfonts/archive/v"
5564 version ".tar.gz"))
5565 (file-name (string-append name "-" version ".tar.gz"))
5566 (sha256
5567 (base32
5568 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
5569 (build-system emacs-build-system)
5570 (home-page "https://github.com/tumashu/cnfonts")
5571 (synopsis "Emacs Chinese fonts setup tool")
5572 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
5573 configuration of Chinese fonts.")
5574 (license license:gpl2+)))
5575
5576 (define-public emacs-php-mode
5577 (package
5578 (name "emacs-php-mode")
5579 (version "20171225.342")
5580 (source (origin
5581 (method url-fetch)
5582 (uri (string-append
5583 "https://melpa.org/packages/php-mode-"
5584 version ".tar"))
5585 (sha256
5586 (base32
5587 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
5588 (build-system emacs-build-system)
5589 (home-page "https://github.com/ejmr/php-mode")
5590 (synopsis "Major mode for editing PHP code")
5591 (description "@code{php-mode} is a major mode for editing PHP source
5592 code. It's an extension of C mode; thus it inherits all C mode's navigation
5593 functionality. But it colors according to the PHP grammar and indents
5594 according to the PEAR coding guidelines. It also includes a couple handy
5595 IDE-type features such as documentation search and a source and class
5596 browser.")
5597 (license license:gpl3+)))
5598
5599 (define-public emacs-pos-tip
5600 (package
5601 (name "emacs-pos-tip")
5602 (version "0.4.6")
5603 (source (origin
5604 (method url-fetch)
5605 (uri (string-append
5606 "https://github.com/pitkali/pos-tip/archive/"
5607 version ".tar.gz"))
5608 (file-name (string-append name "-" version ".tar.gz"))
5609 (sha256
5610 (base32
5611 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
5612 (build-system emacs-build-system)
5613 ;; The following functions and variables needed by emacs-pos-tip are
5614 ;; not included in emacs-minimal:
5615 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
5616 (arguments `(#:emacs ,emacs))
5617 (home-page "https://github.com/pitkali/pos-tip")
5618 (synopsis "Show tooltip at point")
5619 (description "The standard library tooltip.el provides a function for
5620 displaying a tooltip at the mouse position. However, locating a tooltip at an
5621 arbitrary buffer position in a window is not easy. Pos-tip provides such a
5622 function to be used by other frontend programs.")
5623 (license license:gpl2+)))
5624
5625 (define-public emacs-pyim-basedict
5626 (package
5627 (name "emacs-pyim-basedict")
5628 (version "0.3.1")
5629 (source (origin
5630 (method url-fetch)
5631 (uri (string-append
5632 "https://github.com/tumashu/pyim-basedict/archive/v"
5633 version ".tar.gz"))
5634 (file-name (string-append name "-" version ".tar.gz"))
5635 (sha256
5636 (base32
5637 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
5638 (build-system emacs-build-system)
5639 (home-page "https://github.com/tumashu/pyim-basedict")
5640 (synopsis "Input method dictionary of pyim")
5641 (description "Pyim-basedict is the default pinyin input method dictionary,
5642 containing words from the rime project.")
5643 (license license:gpl2+)))
5644
5645 (define-public emacs-pyim
5646 (package
5647 (name "emacs-pyim")
5648 (version "1.6.4")
5649 (source (origin
5650 (method url-fetch)
5651 (uri (string-append
5652 "https://github.com/tumashu/pyim/archive/v"
5653 version ".tar.gz"))
5654 (file-name (string-append name "-" version ".tar.gz"))
5655 (sha256
5656 (base32
5657 "0hfg8q9hcjifvnlghw2g94dfxfirms2psq2ghqb28fhkf0lks13r"))))
5658 (build-system emacs-build-system)
5659 (propagated-inputs
5660 `(("emacs-async" ,emacs-async)
5661 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
5662 ("emacs-popup" ,emacs-popup)
5663 ("emacs-pos-tip" ,emacs-pos-tip)))
5664 (home-page "https://github.com/tumashu/pyim")
5665 (synopsis "Chinese input method")
5666 (description "Chinese input method which supports quanpin, shuangpin, wubi
5667 and cangjie.")
5668 (license license:gpl2+)))
5669
5670 (define-public emacs-el2org
5671 (package
5672 (name "emacs-el2org")
5673 (version "0.6.0")
5674 (source (origin
5675 (method url-fetch)
5676 (uri (string-append
5677 "https://github.com/tumashu/el2org/archive/v"
5678 version ".tar.gz"))
5679 (file-name (string-append name "-" version ".tar.gz"))
5680 (sha256
5681 (base32
5682 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
5683 (build-system emacs-build-system)
5684 (home-page "https://github.com/tumashu/el2org")
5685 (synopsis "Convert Emacs-lisp file to org file")
5686 (description "El2org is a simple tool, which can convert Emacs-lisp file
5687 to org file, you can use this tool to write orgify commentary.")
5688 (license license:gpl2+)))
5689
5690 (define-public emacs-mustache
5691 (package
5692 (name "emacs-mustache")
5693 (version "0.23")
5694 (source (origin
5695 (method url-fetch)
5696 (uri (string-append
5697 "https://github.com/Wilfred/mustache.el/archive/"
5698 version ".tar.gz"))
5699 (file-name (string-append name "-" version ".tar.gz"))
5700 (sha256
5701 (base32
5702 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
5703 (build-system emacs-build-system)
5704 (propagated-inputs
5705 `(("emacs-dash" ,emacs-dash)
5706 ("emacs-ht" ,emacs-ht)
5707 ("emacs-s" ,emacs-s)))
5708 (home-page "https://github.com/Wilfred/mustache.el")
5709 (synopsis "Mustache templating library for Emacs")
5710 (description "Mustache templating library for Emacs, mustache is
5711 a simple web template system, which is described as a logic-less system
5712 because it lacks any explicit control flow statements, both looping and
5713 conditional evaluation can be achieved using section tags processing lists
5714 and lambdas.")
5715 (license license:gpl3+)))
5716
5717 (define-public emacs-org2web
5718 (package
5719 (name "emacs-org2web")
5720 (version "0.9.1")
5721 (source (origin
5722 (method url-fetch)
5723 (uri (string-append
5724 "https://github.com/tumashu/org2web/archive/v"
5725 version ".tar.gz"))
5726 (file-name (string-append name "-" version ".tar.gz"))
5727 (sha256
5728 (base32
5729 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
5730 (build-system emacs-build-system)
5731 (propagated-inputs
5732 `(("emacs-dash" ,emacs-dash)
5733 ("emacs-el2org" ,emacs-el2org)
5734 ("emacs-ht" ,emacs-ht)
5735 ("emacs-mustache" ,emacs-mustache)
5736 ("emacs-simple-httpd" ,emacs-simple-httpd)))
5737 (home-page "https://github.com/tumashu/org2web")
5738 (synopsis "Static site generator based on org-mode ")
5739 (description "Org2web is a static site generator based on org-mode,
5740 which code derived from Kelvin H's org-page.")
5741 (license license:gpl2+)))
5742
5743 (define-public emacs-xelb
5744 (package
5745 (name "emacs-xelb")
5746 (version "0.14")
5747 (source (origin
5748 (method url-fetch)
5749 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
5750 version ".tar"))
5751 (sha256
5752 (base32
5753 "09flnbjy9ck784kprz036rwg9qk45hpv0w5hz3pz3zhwyk57fv74"))))
5754 (build-system emacs-build-system)
5755 ;; The following functions and variables needed by emacs-xelb are
5756 ;; not included in emacs-minimal:
5757 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
5758 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
5759 ;; x-display-pixel-width, x-display-pixel-height
5760 (arguments
5761 `(#:emacs ,emacs
5762 #:phases
5763 (modify-phases %standard-phases
5764 (add-after 'unpack 'regenerate-el-files
5765 (lambda* (#:key inputs #:allow-other-keys)
5766 (zero? (system* "make"
5767 (string-append "PROTO_PATH="
5768 (assoc-ref inputs "xcb-proto")
5769 "/share/xcb")
5770 (string-append "EMACS_BIN="
5771 (assoc-ref inputs "emacs")
5772 "/bin/emacs -Q"))))))))
5773 (native-inputs `(("xcb-proto" ,xcb-proto)))
5774 (home-page "https://github.com/ch11ng/xelb")
5775 (synopsis "X protocol Emacs Lisp binding")
5776 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
5777 X11 protocol based on the XML description files from the XCB project. It
5778 features an object-oriented API and permits a certain degree of concurrency.
5779 It should enable you to implement low-level X11 applications.")
5780 (license license:gpl3+)))
5781
5782 (define-public emacs-exwm
5783 (package
5784 (name "emacs-exwm")
5785 (version "0.18")
5786 (synopsis "Emacs X window manager")
5787 (source (origin
5788 (method url-fetch)
5789 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
5790 version ".tar"))
5791 (sha256
5792 (base32
5793 "1shz5bf4v4gg3arjaaldics5qkg3aiiaf3ngys8lb6qyxhcpvh6q"))))
5794 (build-system emacs-build-system)
5795 (propagated-inputs
5796 `(("emacs-xelb" ,emacs-xelb)))
5797 (inputs
5798 `(("xhost" ,xhost)
5799 ("dbus" ,dbus)))
5800 ;; The following functions and variables needed by emacs-exwm are
5801 ;; not included in emacs-minimal:
5802 ;; scroll-bar-mode, fringe-mode
5803 ;; x-display-pixel-width, x-display-pixel-height
5804 (arguments
5805 `(#:emacs ,emacs
5806 #:phases
5807 (modify-phases %standard-phases
5808 (add-after 'build 'install-xsession
5809 (lambda* (#:key inputs outputs #:allow-other-keys)
5810 (let* ((out (assoc-ref outputs "out"))
5811 (xsessions (string-append out "/share/xsessions"))
5812 (bin (string-append out "/bin"))
5813 (exwm-executable (string-append bin "/exwm")))
5814 ;; Add a .desktop file to xsessions
5815 (mkdir-p xsessions)
5816 (mkdir-p bin)
5817 (with-output-to-file
5818 (string-append xsessions "/exwm.desktop")
5819 (lambda _
5820 (format #t "[Desktop Entry]~@
5821 Name=~a~@
5822 Comment=~a~@
5823 Exec=~a~@
5824 TryExec=~@*~a~@
5825 Type=Application~%" ,name ,synopsis exwm-executable)))
5826 ;; Add a shell wrapper to bin
5827 (with-output-to-file exwm-executable
5828 (lambda _
5829 (format #t "#!~a ~@
5830 ~a +SI:localuser:$USER ~@
5831 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
5832 (string-append (assoc-ref inputs "bash") "/bin/sh")
5833 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
5834 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
5835 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
5836 '(cond
5837 ((file-exists-p "~/.exwm")
5838 (load-file "~/.exwm"))
5839 ((not (featurep 'exwm))
5840 (require 'exwm)
5841 (require 'exwm-config)
5842 (exwm-config-default)
5843 (message (concat "exwm configuration not found. "
5844 "Falling back to default configuration...")))))))
5845 (chmod exwm-executable #o555)
5846 #t))))))
5847 (home-page "https://github.com/ch11ng/exwm")
5848 (description "EXWM is a full-featured tiling X window manager for Emacs
5849 built on top of XELB.")
5850 (license license:gpl3+)))
5851
5852 (define-public emacs-switch-window
5853 (package
5854 (name "emacs-switch-window")
5855 (version "1.5.1")
5856 (source (origin
5857 (method url-fetch)
5858 (uri (string-append
5859 "https://github.com/dimitri/switch-window/archive/v"
5860 version ".tar.gz"))
5861 (file-name (string-append name "-" version ".tar.gz"))
5862 (sha256
5863 (base32
5864 "07f99apxscwvsp2bjxsbi462c433kcglrjh6xl0gyafs1nvvvnd8"))))
5865 (build-system emacs-build-system)
5866 (home-page "https://github.com/dimitri/switch-window")
5867 (synopsis "Emacs window switch tool")
5868 (description "Switch-window is an emacs window switch tool, which
5869 offer a visual way to choose a window to switch to, delete, split or
5870 other operations.")
5871 (license license:wtfpl2)))
5872
5873 (define-public emacs-exwm-x
5874 (package
5875 (name "emacs-exwm-x")
5876 (version "1.8.1")
5877 (synopsis "Derivative window manager based on EXWM")
5878 (source (origin
5879 (method url-fetch)
5880 (uri (string-append
5881 "https://github.com/tumashu/exwm-x/archive/v"
5882 version ".tar.gz"))
5883 (file-name (string-append name "-" version ".tar.gz"))
5884 (sha256
5885 (base32
5886 "0ali1100aacq4zbvcck80h51pvw204jlxhn4aikkqq4ngbx03kkr"))))
5887 (build-system emacs-build-system)
5888 (propagated-inputs
5889 `(("emacs-exwm" ,emacs-exwm)
5890 ("emacs-switch-window" ,emacs-switch-window)
5891 ("emacs-ivy" ,emacs-ivy)
5892 ("emacs-use-package" ,emacs-use-package)))
5893 (inputs
5894 `(("xhost" ,xhost)
5895 ("dbus" ,dbus)))
5896 ;; Need emacs instead of emacs-minimal,
5897 ;; for emacs's bin path will be inserted into bin/exwm-x file.
5898 (arguments
5899 `(#:emacs ,emacs
5900 #:phases
5901 (modify-phases %standard-phases
5902 (add-after 'build 'install-xsession
5903 (lambda* (#:key inputs outputs #:allow-other-keys)
5904 (let* ((out (assoc-ref outputs "out"))
5905 (xsessions (string-append out "/share/xsessions"))
5906 (bin (string-append out "/bin"))
5907 (exwm-executable (string-append bin "/exwm-x")))
5908 ;; Add a .desktop file to xsessions
5909 (mkdir-p xsessions)
5910 (mkdir-p bin)
5911 (with-output-to-file
5912 (string-append xsessions "/exwm-x.desktop")
5913 (lambda _
5914 (format #t "[Desktop Entry]~@
5915 Name=~a~@
5916 Comment=~a~@
5917 Exec=~a~@
5918 TryExec=~@*~a~@
5919 Type=Application~%" ,name ,synopsis exwm-executable)))
5920 ;; Add a shell wrapper to bin
5921 (with-output-to-file exwm-executable
5922 (lambda _
5923 (format #t "#!~a ~@
5924 ~a +SI:localuser:$USER ~@
5925 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
5926 (string-append (assoc-ref inputs "bash") "/bin/sh")
5927 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
5928 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
5929 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
5930 '(require 'exwmx-loader))))
5931 (chmod exwm-executable #o555)
5932 #t))))))
5933 (home-page "https://github.com/tumashu/exwm-x")
5934 (description "EXWM-X is a derivative window manager based on EXWM, with focus
5935 on mouse-control.")
5936 (license license:gpl3+)))
5937
5938 (define-public emacs-gnuplot
5939 (package
5940 (name "emacs-gnuplot")
5941 (version "0.7.0")
5942 (source
5943 (origin
5944 (method url-fetch)
5945 (uri (string-append
5946 "https://github.com/bruceravel/gnuplot-mode/archive/"
5947 version ".tar.gz"))
5948 (file-name (string-append name "-" version ".tar.gz"))
5949 (sha256
5950 (base32
5951 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
5952 (build-system gnu-build-system)
5953 (native-inputs `(("emacs" ,emacs-minimal)))
5954 (arguments
5955 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
5956 "/gnuplot-" version)))
5957 `(#:modules ((guix build gnu-build-system)
5958 (guix build utils)
5959 (guix build emacs-utils))
5960 #:imported-modules (,@%gnu-build-system-modules
5961 (guix build emacs-utils))
5962 #:configure-flags
5963 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
5964 "/bin/emacs")
5965 (string-append "--with-lispdir=" %output ,elisp-dir))
5966 #:phases
5967 (modify-phases %standard-phases
5968 (add-after 'install 'generate-autoloads
5969 (lambda* (#:key outputs #:allow-other-keys)
5970 (emacs-generate-autoloads
5971 "gnuplot"
5972 (string-append (assoc-ref outputs "out") ,elisp-dir))
5973 #t))))))
5974 (home-page "https://github.com/bruceravel/gnuplot-mode")
5975 (synopsis "Emacs major mode for interacting with gnuplot")
5976 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
5977 with gnuplot.")
5978 (license license:gpl2+)))
5979
5980 (define-public emacs-transpose-frame
5981 (package
5982 (name "emacs-transpose-frame")
5983 (version "0.1.0")
5984 (source
5985 (origin
5986 (method url-fetch)
5987 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
5988 (file-name (string-append "transpose-frame-" version ".el"))
5989 (sha256
5990 (base32
5991 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
5992 (build-system emacs-build-system)
5993 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
5994 (synopsis "Transpose window arrangement in current frame")
5995 (description "@code{emacs-transpose-frame} provides some interactive
5996 functions which allows users to transpose windows arrangement in currently
5997 selected frame.")
5998 (license license:bsd-2)))
5999
6000 (define-public emacs-key-chord
6001 (package
6002 (name "emacs-key-chord")
6003 (version "0.6")
6004 (source
6005 (origin
6006 (method url-fetch)
6007 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6008 (file-name (string-append "key-chord-" version ".el"))
6009 (sha256
6010 (base32
6011 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6012 (build-system emacs-build-system)
6013 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6014 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6015 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6016 mode for binding key chords to commands. A key chord is defined as two keys
6017 pressed simultaneously or a single key quickly pressed twice.")
6018 (license license:gpl2+)))
6019
6020 (define-public emacs-evil-surround
6021 (package
6022 (name "emacs-evil-surround")
6023 (version "1.0.0")
6024 (source
6025 (origin
6026 (method url-fetch)
6027 (uri (string-append
6028 "https://github.com/timcharper/evil-surround/archive/v"
6029 version ".tar.gz"))
6030 (file-name (string-append name "-" version ".tar.gz"))
6031 (sha256
6032 (base32
6033 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6034 (build-system emacs-build-system)
6035 (propagated-inputs
6036 `(("emacs-evil" ,emacs-evil)))
6037 (home-page "https://github.com/timcharper/evil-surround")
6038 (synopsis "Easily modify surrounding parantheses and quotes")
6039 (description "@code{emacs-evil-surround} allows easy deletion, change and
6040 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6041 (license license:gpl3+)))
6042
6043 (define-public emacs-evil-commentary
6044 (package
6045 (name "emacs-evil-commentary")
6046 (version "2.1.1")
6047 (source
6048 (origin
6049 (method url-fetch)
6050 (uri (string-append
6051 "https://github.com/linktohack/evil-commentary/archive/v"
6052 version ".tar.gz"))
6053 (file-name (string-append name "-" version ".tar.gz"))
6054 (sha256
6055 (base32
6056 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6057 (build-system emacs-build-system)
6058 (propagated-inputs
6059 `(("emacs-evil" ,emacs-evil)))
6060 (home-page "https://github.com/linktohack/evil-commentary")
6061 (synopsis "Comment out code in evil mode")
6062 (description "@code{emacs-evil-commentary} adds keybindings to easily
6063 comment out lines of code in evil mode. It provides @code{gcc} to comment out
6064 lines, and @code{gc} to comment out the target of a motion.")
6065 (license license:gpl3+)))
6066
6067 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6068 ;; therefore cannot be run
6069 (define-public emacs-ansi
6070 (package
6071 (name "emacs-ansi")
6072 (version "0.4.1")
6073 (source
6074 (origin
6075 (method url-fetch)
6076 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6077 version ".tar.gz"))
6078 (file-name (string-append name "-" version ".tar.gz"))
6079 (sha256
6080 (base32
6081 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6082 (build-system emacs-build-system)
6083 (propagated-inputs
6084 `(("emacs-dash" ,emacs-dash)
6085 ("emacs-s" ,emacs-s)))
6086 (home-page "https://github.com/rejeep/ansi.el")
6087 (synopsis "Convert strings to ANSI")
6088 (description "@code{emacs-ansi} defines functions that turns simple
6089 strings to ANSI strings. Turning a string into an ANSI string can be to add
6090 color to a text, add color in the background of a text or adding a style, such
6091 as bold, underscore or italic.")
6092 (license license:gpl3+)))
6093
6094 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
6095 ;; therefore cannot be run
6096 (define-public emacs-commander
6097 (package
6098 (name "emacs-commander")
6099 (version "0.7.0")
6100 (source
6101 (origin
6102 (method url-fetch)
6103 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6104 version ".tar.gz"))
6105 (file-name (string-append name "-" version ".tar.gz"))
6106 (sha256
6107 (base32
6108 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6109 (build-system emacs-build-system)
6110 (propagated-inputs
6111 `(("emacs-dash" ,emacs-dash)
6112 ("emacs-f" ,emacs-f)
6113 ("emacs-s" ,emacs-s)))
6114 (home-page "https://github.com/rejeep/commander.el")
6115 (synopsis "Emacs command line parser")
6116 (description "@code{emacs-commander} provides command line parsing for
6117 Emacs.")
6118 (license license:gpl3+)))
6119
6120 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6121 ;; cannot be run
6122 (define-public ert-runner
6123 (let ((dependencies
6124 `(("emacs-ansi" ,emacs-ansi)
6125 ("emacs-commander" ,emacs-commander)
6126 ("emacs-dash" ,emacs-dash)
6127 ("emacs-f" ,emacs-f)
6128 ("emacs-s" ,emacs-s)
6129 ("emacs-shut-up" ,emacs-shut-up))))
6130 (package
6131 (name "ert-runner")
6132 (version "0.7.0")
6133 (source
6134 (origin
6135 (method url-fetch)
6136 (uri (string-append "https://github.com/rejeep/ert-runner.el/archive/v"
6137 version ".tar.gz"))
6138 (file-name (string-append name "-" version ".tar.gz"))
6139 (sha256
6140 (base32
6141 "1657nck9i96a4xgl8crfqq0s8gflzp21pkkzwg6m3z5npjxklgwp"))))
6142 (build-system emacs-build-system)
6143 (inputs dependencies)
6144 (arguments
6145 `(#:phases
6146 (modify-phases %standard-phases
6147 (add-after 'install 'install-executable
6148 (lambda* (#:key inputs outputs #:allow-other-keys)
6149 (let ((out (assoc-ref outputs "out")))
6150 (substitute* "bin/ert-runner"
6151 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6152 (string-append "ERT_RUNNER=\"" out
6153 "/share/emacs/site-lisp/guix.d/"
6154 ,name "-" ,version)))
6155 (install-file "bin/ert-runner" (string-append out "/bin"))
6156 (wrap-program (string-append out "/bin/ert-runner")
6157 (list "EMACSLOADPATH" ":" '=
6158 (append
6159 ,(match dependencies
6160 (((labels packages) ...)
6161 `(map (lambda (label package version)
6162 (string-append (assoc-ref inputs label)
6163 "/share/emacs/site-lisp/guix.d/"
6164 (string-drop package 6)
6165 "-" version))
6166 ',labels
6167 ',(map package-name packages)
6168 ',(map package-version packages))))
6169 ;; empty element to include the default load path as
6170 ;; determined by emacs' standard initialization
6171 ;; procedure
6172 (list ""))))
6173 #t))))
6174 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6175 (home-page "https://github.com/rejeep/ert-runner.el")
6176 (synopsis "Opinionated Ert testing workflow")
6177 (description "@code{ert-runner} is a tool for Emacs projects tested
6178 using ERT. It assumes a certain test structure setup and can therefore make
6179 running tests easier.")
6180 (license license:gpl3+))))
6181
6182 (define-public emacs-disable-mouse
6183 (package
6184 (name "emacs-disable-mouse")
6185 (version "0.2")
6186 (source
6187 (origin
6188 (method url-fetch)
6189 (uri (string-append
6190 "https://github.com/purcell/disable-mouse/archive/"
6191 version ".tar.gz"))
6192 (file-name (string-append name "-" version ".tar.gz"))
6193 (sha256
6194 (base32
6195 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
6196 (build-system emacs-build-system)
6197 (home-page "https://github.com/purcell/disable-mouse")
6198 (synopsis "Disable mouse commands globally")
6199 (description
6200 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
6201 pair of minor modes which suppress all mouse events by intercepting them and
6202 running a customisable handler command (@code{ignore} by default). ")
6203 (license license:gpl3+)))
6204
6205 (define-public emacs-json-reformat
6206 (package
6207 (name "emacs-json-reformat")
6208 (version "0.0.6")
6209 (source
6210 (origin
6211 (method url-fetch)
6212 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
6213 version ".tar.gz"))
6214 (file-name (string-append name "-" version ".tar.gz"))
6215 (sha256
6216 (base32
6217 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
6218 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
6219 (build-system emacs-build-system)
6220 (propagated-inputs `(("emacs-undercover" ,emacs-undercover)))
6221 (inputs
6222 `(("emacs-dash" ,emacs-dash) ; for tests
6223 ("emacs-shut-up" ,emacs-shut-up))) ; for tests
6224 (arguments
6225 `(#:phases
6226 (modify-phases %standard-phases
6227 (add-before 'install 'check
6228 (lambda* (#:key inputs #:allow-other-keys)
6229 (zero? (system* "emacs" "--batch" "-L" "."
6230 "-L" (string-append
6231 (assoc-ref inputs "emacs-undercover")
6232 "/share/emacs/site-lisp/guix.d/undercover-"
6233 ,(package-version emacs-undercover))
6234 "-L" (string-append
6235 (assoc-ref inputs "emacs-dash")
6236 "/share/emacs/site-lisp/guix.d/dash-"
6237 ,(package-version emacs-dash))
6238 "-L" (string-append
6239 (assoc-ref inputs "emacs-shut-up")
6240 "/share/emacs/site-lisp/guix.d/shut-up-"
6241 ,(package-version emacs-shut-up))
6242 "-l" "test/test-helper.el"
6243 "-l" "test/json-reformat-test.el"
6244 "-f" "ert-run-tests-batch-and-exit"))
6245 #t)))))
6246 (home-page "https://github.com/gongo/json-reformat")
6247 (synopsis "Reformatting tool for JSON")
6248 (description "@code{json-reformat} provides a reformatting tool for
6249 @url{http://json.org/, JSON}.")
6250 (license license:gpl3+)))
6251
6252 (define-public emacs-json-snatcher
6253 (package
6254 (name "emacs-json-snatcher")
6255 (version "1.0.0")
6256 (source
6257 (origin
6258 (method url-fetch)
6259 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
6260 version ".tar.gz"))
6261 (file-name (string-append name "-" version ".tar.gz"))
6262 (sha256
6263 (base32
6264 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
6265 (build-system emacs-build-system)
6266 (home-page "https://github.com/sterlingg/json-snatcher")
6267 (synopsis "Grabs the path to JSON values in a JSON file")
6268 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
6269 a @url{http://json.org/, JSON} file.")
6270 (license license:gpl3+)))
6271
6272 (define-public emacs-json-mode
6273 (package
6274 (name "emacs-json-mode")
6275 (version "1.7.0")
6276 (source
6277 (origin
6278 (method url-fetch)
6279 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
6280 "v" version ".tar.gz"))
6281 (file-name (string-append name "-" version ".tar.gz"))
6282 (sha256
6283 (base32
6284 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
6285 (build-system emacs-build-system)
6286 (propagated-inputs
6287 `(("emacs-json-reformat" ,emacs-json-reformat)
6288 ("emacs-json-snatcher" ,emacs-json-snatcher)))
6289 (home-page "https://github.com/joshwnj/json-mode")
6290 (synopsis "Major mode for editing JSON files")
6291 (description "@code{json-mode} extends the builtin js-mode syntax
6292 highlighting.")
6293 (license license:gpl3+)))
6294
6295 (define-public emacs-restclient
6296 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
6297 (revision "1")) ;Guix package revision,
6298 ;upstream doesn't have official releases
6299 (package
6300 (name "emacs-restclient")
6301 (version (string-append revision "."
6302 (string-take commit 7)))
6303 (source (origin
6304 (method git-fetch)
6305 (uri (git-reference
6306 (url "https://github.com/pashky/restclient.el.git")
6307 (commit commit)))
6308 (sha256
6309 (base32
6310 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
6311 (file-name (git-file-name name version))))
6312 (build-system emacs-build-system)
6313 (propagated-inputs
6314 `(("emacs-helm" ,emacs-helm)))
6315 (home-page "https://github.com/pashky/restclient.el")
6316 (synopsis "Explore and test HTTP REST webservices")
6317 (description
6318 "This tool allows for testing and exploration of HTTP REST Web services
6319 from within Emacs. Restclient runs queries from a plan-text query sheet,
6320 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
6321 (license license:public-domain))))
6322
6323 (define-public emacs-dired-hacks
6324 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
6325 (revision "1"))
6326 (package
6327 (name "emacs-dired-hacks")
6328 (version (string-append "0.0.1-" revision "."
6329 (string-take commit 7)))
6330 (source (origin
6331 (method git-fetch)
6332 (uri (git-reference
6333 (url "https://github.com/Fuco1/dired-hacks.git")
6334 (commit commit)))
6335 (file-name (string-append name "-" version "-checkout"))
6336 (sha256
6337 (base32
6338 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
6339 (build-system emacs-build-system)
6340 (propagated-inputs
6341 `(("emacs-dash" ,emacs-dash)
6342 ("emacs-f" ,emacs-f)
6343 ("emacs-s" ,emacs-s)))
6344 (home-page "https://github.com/Fuco1/dired-hacks")
6345 (synopsis
6346 "Collection of useful dired additions")
6347 (description
6348 "Collection of Emacs dired mode additions:
6349 @itemize
6350 @item dired-avfs
6351 @item dired-columns
6352 @item dired-filter
6353 @item dired-hacks-utils
6354 @item dired-images
6355 @item dired-list
6356 @item dired-narrow
6357 @item dired-open
6358 @item dired-rainbow
6359 @item dired-ranger
6360 @item dired-subtree
6361 @item dired-tagsistant
6362 @end itemize\n")
6363 (license license:gpl3+))))
6364
6365 (define-public emacs-which-key
6366 (package
6367 (name "emacs-which-key")
6368 (version "3.0.2")
6369 (source
6370 (origin
6371 (method url-fetch)
6372 (uri (string-append
6373 "https://github.com/justbur/emacs-which-key/archive/v"
6374 version ".tar.gz"))
6375 (sha256
6376 (base32
6377 "1xvd70cwq9n31f28viyjxmr3nn8l153gsy6scpszvgvjxkiikv24"))
6378 (file-name (string-append name "-" version ".tar.gz"))))
6379 (build-system emacs-build-system)
6380 (arguments
6381 `(#:phases
6382 (modify-phases %standard-phases
6383 (add-before 'install 'check
6384 (lambda _
6385 (zero? (system* "emacs" "--batch" "-L" "."
6386 "-l" "which-key-tests.el"
6387 "-f" "ert-run-tests-batch-and-exit")))))))
6388 (home-page "https://github.com/justbur/emacs-which-key")
6389 (synopsis "Display available key bindings in popup")
6390 (description
6391 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
6392 bindings following your currently entered incomplete command (a prefix) in a
6393 popup. For example, after enabling the minor mode if you enter C-x and wait
6394 for the default of 1 second, the minibuffer will expand with all of the
6395 available key bindings that follow C-x (or as many as space allows given your
6396 settings).")
6397 (license license:gpl3+)))
6398
6399 (define-public emacs-ws-butler
6400 (package
6401 (name "emacs-ws-butler")
6402 (version "0.6")
6403 (source (origin
6404 (method git-fetch)
6405 (uri (git-reference
6406 (url "https://github.com/lewang/ws-butler.git")
6407 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
6408 (file-name (string-append name "-" version "-checkout"))
6409 (sha256
6410 (base32
6411 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
6412 (build-system emacs-build-system)
6413 (native-inputs
6414 `(("ert-runner" ,ert-runner)))
6415 (arguments
6416 `(#:phases
6417 (modify-phases %standard-phases
6418 (add-before 'install 'check
6419 (lambda _
6420 (zero? (system* "ert-runner" "tests")))))))
6421 (home-page "https://github.com/lewang/ws-butler")
6422 (synopsis "Trim spaces from end of lines")
6423 (description
6424 "This Emacs package automatically and unobtrusively trims whitespace
6425 characters from end of lines.")
6426 (license license:gpl3+)))
6427
6428 (define-public emacs-org-edit-latex
6429 (package
6430 (name "emacs-org-edit-latex")
6431 (version "0.8.0")
6432 (source
6433 (origin
6434 (method url-fetch)
6435 (uri (string-append
6436 "https://github.com/et2010/org-edit-latex/archive/v"
6437 version ".tar.gz"))
6438 (file-name (string-append name "-" version ".tar.gz"))
6439 (sha256
6440 (base32
6441 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
6442 (build-system emacs-build-system)
6443 (propagated-inputs
6444 `(("emacs-auctex" ,emacs-auctex)
6445 ;; The version of org in Emacs 25.2 is not sufficient, because the
6446 ;; `org-latex-make-preamble' function is required.
6447 ("emacs-org" ,emacs-org)))
6448 (home-page "https://github.com/et2010/org-edit-latex")
6449 (synopsis "Edit a latex fragment just like editing a src block")
6450 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
6451 It lets you edit a latex fragment in a dedicated buffer just like editing a
6452 src block.")
6453 (license license:gpl3+)))
6454
6455 (define-public emacs-emamux
6456 (package
6457 (name "emacs-emamux")
6458 (version "0.14")
6459 (source (origin
6460 (method url-fetch)
6461 (uri (string-append
6462 "https://github.com/syohex/emacs-emamux/archive/"
6463 version ".tar.gz"))
6464 (file-name (string-append name "-" version ".tar.gz"))
6465 (sha256
6466 (base32
6467 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
6468 (build-system emacs-build-system)
6469 (home-page "https://github.com/syohex/emacs-emamux")
6470 (synopsis "Manipulate Tmux from Emacs")
6471 (description
6472 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
6473 multiplexer.")
6474 (license license:gpl3+)))
6475
6476 (define-public emacs-rpm-spec-mode
6477 (package
6478 (name "emacs-rpm-spec-mode")
6479 (version "0.16")
6480 (source
6481 (origin
6482 (method url-fetch)
6483 ;; URI has the Fedora release number instead of the version
6484 ;; number. This will have to updated manually every new release.
6485 (uri (string-append
6486 "https://src.fedoraproject.org/cgit/rpms"
6487 "/emacs-rpm-spec-mode.git/snapshot"
6488 "/emacs-rpm-spec-mode-f26.tar.gz"))
6489 (sha256
6490 (base32
6491 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
6492 (build-system emacs-build-system)
6493 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
6494 (synopsis "Emacs major mode for editing RPM spec files")
6495 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
6496 editing RPM spec files.")
6497 (license license:gpl2+)))
6498
6499 (define-public emacs-git-messenger
6500 (package
6501 (name "emacs-git-messenger")
6502 (version "0.18")
6503 (source
6504 (origin
6505 (method url-fetch)
6506 (uri (string-append
6507 "https://github.com/syohex/emacs-git-messenger/archive/"
6508 version ".tar.gz"))
6509 (file-name (string-append name "-" version ".tar.gz"))
6510 (sha256
6511 (base32
6512 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
6513 (build-system emacs-build-system)
6514 (propagated-inputs
6515 `(("emacs-popup" ,emacs-popup)))
6516 (arguments
6517 `(#:phases
6518 (modify-phases %standard-phases
6519 (add-before 'install 'check
6520 (lambda* (#:key inputs #:allow-other-keys)
6521 (zero? (system* "emacs" "--batch" "-L" "."
6522 "-L" (string-append
6523 (assoc-ref inputs "emacs-popup")
6524 "/share/emacs/site-lisp/guix.d/popup-"
6525 ,(package-version emacs-popup))
6526 "-l" "test/test.el"
6527 "-f" "ert-run-tests-batch-and-exit")))))))
6528 (home-page "https://github.com/syohex/emacs-git-messenger")
6529 (synopsis "Popup commit message at current line")
6530 (description "@code{emacs-git-messenger} provides
6531 @code{git-messenger:popup-message}, a function that when called, will popup
6532 the last git commit message for the current line. This uses git-blame
6533 internally.")
6534 (license license:gpl3+)))
6535
6536 (define-public emacs-gitpatch
6537 (package
6538 (name "emacs-gitpatch")
6539 (version "0.5.0")
6540 (source
6541 (origin
6542 (method url-fetch)
6543 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
6544 "v" version ".tar.gz"))
6545 (file-name (string-append name "-" version ".tar.gz"))
6546 (sha256
6547 (base32
6548 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
6549 (build-system emacs-build-system)
6550 (home-page "https://github.com/tumashu/gitpatch")
6551 (synopsis "Mail git patch from Emacs")
6552 (description "@code{emacs-gitpatch} lets users easily send git patches,
6553 created by @code{git format-patch}, from @code{magit}, @code{dired} and
6554 @code{ibuffer} buffers.")
6555 (license license:gpl3+)))
6556
6557 (define-public emacs-erc-hl-nicks
6558 (package
6559 (name "emacs-erc-hl-nicks")
6560 (version "1.3.2")
6561 (source
6562 (origin
6563 (method url-fetch)
6564 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
6565 "/archive/" version ".tar.gz"))
6566 (file-name (string-append name "-" version ".tar.gz"))
6567 (sha256
6568 (base32
6569 "01svpl9bps5kx4y1wnymakxya2cznqmlynvqv2r500wpnbxczrbs"))))
6570 (build-system emacs-build-system)
6571 (synopsis "Nickname highlighting for Emacs ERC")
6572 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
6573 client for Emacs. The main features are:
6574 @itemize
6575 @item Auto-colorizes nicknames without having to specify colors
6576 @item Ignores certain characters that IRC clients add to nicknames to avoid
6577 duplicates (nickname, nickname’, nickname\", etc.)
6578 @item Attempts to produce colors with a sufficient amount of contrast between
6579 the nick color and the background color
6580 @end itemize\n")
6581 (home-page "https://github.com/leathekd/erc-hl-nicks")
6582 (license license:gpl3+)))
6583
6584 (define-public emacs-engine-mode
6585 (package
6586 (name "emacs-engine-mode")
6587 (version "2.0.0")
6588 (source
6589 (origin
6590 (method url-fetch)
6591 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
6592 "v" version ".tar.gz"))
6593 (file-name (string-append name "-" version ".tar.gz"))
6594 (sha256
6595 (base32
6596 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
6597 (build-system emacs-build-system)
6598 (synopsis "Minor mode for defining and querying search engines")
6599 (description "@code{engine-mode} is a global minor mode for Emacs. It
6600 enables you to easily define search engines, bind them to keybindings, and
6601 query them from the comfort of your editor.")
6602 (home-page "https://github.com/hrs/engine-mode")
6603 (license license:gpl3+)))
6604
6605 (define-public emacs-prop-menu
6606 (package
6607 (name "emacs-prop-menu")
6608 (version "0.1.2")
6609 (source
6610 (origin
6611 (method url-fetch)
6612 (uri (string-append
6613 "http://stable.melpa.org/packages/prop-menu-"
6614 version ".el"))
6615 (sha256
6616 (base32
6617 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
6618 (build-system emacs-build-system)
6619 (home-page
6620 "https://github.com/david-christiansen/prop-menu-el")
6621 (synopsis
6622 "Create and display a context menu based on text and overlay properties")
6623 (description
6624 "This is a library for computing context menus based on text
6625 properties and overlays. The intended use is to have tools that
6626 annotate source code and others that use these annotations, without
6627 requiring a direct coupling between them, but maintaining
6628 discoverability.
6629
6630 Major modes that wish to use this library should first define an
6631 appropriate value for @code{prop-menu-item-functions}. Then, they should
6632 bind @code{prop-menu-by-completing-read} to an appropriate
6633 key. Optionally, a mouse pop-up can be added by binding
6634 @code{prop-menu-show-menu} to a mouse event.")
6635 (license license:gpl3+)))
6636
6637 (define-public emacs-idris-mode
6638 (package
6639 (name "emacs-idris-mode")
6640 (version "0.9.19")
6641 (source
6642 (origin
6643 (method url-fetch)
6644 (uri (string-append
6645 "http://stable.melpa.org/packages/idris-mode-"
6646 version ".tar"))
6647 (sha256
6648 (base32
6649 "0ld4kfwnyyhlsnj5f6cbn4is4mpxdqalk2aifkw02r00mbr9n294"))))
6650 (build-system emacs-build-system)
6651 (propagated-inputs
6652 `(("emacs-prop-menu" ,emacs-prop-menu)))
6653 (home-page
6654 "https://github.com/idris-hackers/idris-mode")
6655 (synopsis "Major mode for editing Idris code")
6656 (description
6657 "This is an Emacs mode for editing Idris code. It requires the latest
6658 version of Idris, and some features may rely on the latest Git version of
6659 Idris.")
6660 (license license:gpl3+)))
6661
6662 (define-public emacs-browse-at-remote
6663 (let ((commit "31dcf77d7c89a12f230e2b2332585db2c44530ef")
6664 (revision "1"))
6665 (package
6666 (name "emacs-browse-at-remote")
6667 (version (string-append "0.9.0-" revision "."
6668 (string-take commit 7)))
6669 (source (origin
6670 (method git-fetch)
6671 (uri (git-reference
6672 (url "https://github.com/rmuslimov/browse-at-remote.git")
6673 (commit commit)))
6674 (file-name (string-append name "-" version "-checkout"))
6675 (patches
6676 (search-patches "emacs-browse-at-remote-cgit-gnu.patch"))
6677 (sha256
6678 (base32
6679 "017cb8lf7zbg0jmr7zxzd7d5kz2jy35cvw5vcpdmq1fdr3wqwkgj"))))
6680 (build-system emacs-build-system)
6681 (propagated-inputs
6682 `(("emacs-f" ,emacs-f)
6683 ("emacs-s" ,emacs-s)))
6684 (native-inputs
6685 `(("ert-runner" ,ert-runner)))
6686 (arguments
6687 `(#:phases
6688 (modify-phases %standard-phases
6689 (add-before 'install 'check
6690 (lambda _
6691 (zero? (system* "ert-runner")))))))
6692 (home-page "https://github.com/rmuslimov/browse-at-remote")
6693 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
6694 (description
6695 "This Emacs package allows you to open a target page on
6696 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
6697 It supports dired buffers and opens them in tree mode at destination.")
6698 (license license:gpl3+))))
6699
6700 (define-public emacs-tiny
6701 (package
6702 (name "emacs-tiny")
6703 (version "0.2.1")
6704 (source
6705 (origin
6706 (method url-fetch)
6707 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
6708 (sha256
6709 (base32
6710 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
6711 (build-system emacs-build-system)
6712 (home-page "https://github.com/abo-abo/tiny")
6713 (synopsis "Quickly generate linear ranges in Emacs")
6714 (description
6715 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
6716 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
6717 proficiency is an advantage, since you can transform your numeric range with
6718 an elisp expression.")
6719 (license license:gpl3+)))
6720
6721 (define-public emacs-emojify
6722 (package
6723 (name "emacs-emojify")
6724 (version "0.4")
6725 (source
6726 (origin
6727 (method url-fetch)
6728 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
6729 "releases/download/v" version "/emojify-"
6730 version ".tar"))
6731 (sha256
6732 (base32
6733 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
6734 (build-system emacs-build-system)
6735 (arguments
6736 `(#:phases
6737 (modify-phases %standard-phases
6738 (add-after 'install 'install-data
6739 (lambda* (#:key outputs #:allow-other-keys)
6740 (copy-recursively "data"
6741 (string-append (assoc-ref outputs "out")
6742 "/share/emacs/site-lisp/guix.d/"
6743 "emojify-" ,version "/data"))
6744 #t)))))
6745 (propagated-inputs
6746 `(("emacs-ht" ,emacs-ht)))
6747 (home-page "https://github.com/iqbalansari/emacs-emojify")
6748 (synopsis "Display emojis in Emacs")
6749 (description "This package displays emojis in Emacs similar to how Github,
6750 Slack, and other websites do. It can display plain ASCII like @code{:)} as
6751 well as Github-style emojis like @code{:smile:}. It provides a minor mode
6752 @code{emojify-mode} to enable the display of emojis in a buffer.")
6753 (license license:gpl3+)))
6754
6755 (define-public emacs-websocket
6756 (package
6757 (name "emacs-websocket")
6758 (version "1.8")
6759 (source
6760 (origin
6761 (method url-fetch)
6762 (uri (string-append "https://elpa.gnu.org/packages/websocket-"
6763 version ".tar"))
6764 (sha256
6765 (base32
6766 "0dcxmnnm8z7cvsc7nkb822a1g6w03klp7cijjnfq0pz84p3w9cd9"))))
6767 (build-system emacs-build-system)
6768 (home-page "http://elpa.gnu.org/packages/websocket.html")
6769 (synopsis "Emacs WebSocket client and server")
6770 (description "This is an Elisp library for WebSocket clients to talk to
6771 WebSocket servers, and for WebSocket servers to accept connections from
6772 WebSocket clients. This library is designed to be used by other library
6773 writers, to write applications that use WebSockets, and is not useful by
6774 itself.")
6775 (license license:gpl3+)))
6776
6777 (define-public emacs-oauth2
6778 (package
6779 (name "emacs-oauth2")
6780 (version "0.11")
6781 (source
6782 (origin
6783 (method url-fetch)
6784 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
6785 version ".el"))
6786 (sha256
6787 (base32
6788 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
6789 (build-system emacs-build-system)
6790 (home-page "http://elpa.gnu.org/packages/oauth2.html")
6791 (synopsis "OAuth 2.0 authorization protocol implementation")
6792 (description
6793 "This package provides an Elisp implementation of the OAuth 2.0 draft.
6794 The main entry point is @code{oauth2-auth-and-store} which will return a token
6795 structure. This token structure can be then used with
6796 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
6797 retrieve any data that need OAuth authentication to be accessed. If the token
6798 needs to be refreshed, the code handles it automatically and stores the new
6799 value of the access token.")
6800 (license license:gpl3+)))
6801
6802 (define-public emacs-circe
6803 (package
6804 (name "emacs-circe")
6805 (version "2.6")
6806 (source
6807 (origin
6808 (method git-fetch)
6809 (uri (git-reference
6810 (url "https://github.com/jorgenschaefer/circe.git")
6811 (commit (string-append "v" version))))
6812 (file-name (string-append name "-" version "-checkout"))
6813 (sha256
6814 (base32
6815 "19h3983zy3f15cgs86irvbdzz55qyjm48qd7gjlzcxplr7vnnh0j"))))
6816 (build-system emacs-build-system)
6817 ;; In order to securely connect to an IRC server using TLS, Circe requires
6818 ;; the GnuTLS binary.
6819 (propagated-inputs
6820 `(("gnutls" ,gnutls)))
6821 (home-page "https://github.com/jorgenschaefer/circe")
6822 (synopsis "Client for IRC in Emacs")
6823 (description "Circe is a Client for IRC in Emacs. It integrates well with
6824 the rest of the editor, using standard Emacs key bindings and indicating
6825 activity in channels in the status bar so it stays out of your way unless you
6826 want to use it.")
6827 (license license:gpl3+)))
6828
6829 (define-public emacs-slack
6830 (let ((commit "92724604879149cf331fa8778d089813a9d4ce1a")
6831 (revision "3"))
6832 (package
6833 (name "emacs-slack")
6834 (version (string-append "0-" revision "." (string-take commit 7)))
6835 (source (origin
6836 (method git-fetch)
6837 (uri (git-reference
6838 (url "https://github.com/yuya373/emacs-slack.git")
6839 (commit commit)))
6840 (file-name (string-append name "-" version "-checkout"))
6841 (sha256
6842 (base32
6843 "1fdf8s3ca356k7m7f5kqzfamfl2nrqjj2pynjv3kkrr0ad15nxmw"))))
6844 (build-system emacs-build-system)
6845 (propagated-inputs
6846 `(("emacs-alert" ,emacs-alert)
6847 ("emacs-emojify" ,emacs-emojify)
6848 ("emacs-request" ,emacs-request)
6849 ("emacs-websocket" ,emacs-websocket)
6850 ("emacs-oauth2" ,emacs-oauth2)
6851 ("emacs-circe" ,emacs-circe)))
6852 (home-page "https://github.com/yuya373/emacs-slack")
6853 (synopsis "Slack client for Emacs")
6854 (description "This package provides an Emacs client for the Slack
6855 messaging service.")
6856 (license license:gpl3+))))
6857
6858 (define-public emacs-bash-completion
6859 (package
6860 (name "emacs-bash-completion")
6861 (version "2.0.0")
6862 (source
6863 (origin
6864 (method url-fetch)
6865 (uri (string-append
6866 "https://github.com/szermatt/emacs-bash-completion/archive/v"
6867 version ".tar.gz"))
6868 (file-name (string-append name "-" version ".tar.gz"))
6869 (sha256
6870 (base32
6871 "0mkci4a1fy8z4cmry8mx5vsx4f16a8r454slnh7lqzidnhfi63hj"))))
6872 (inputs `(("bash" ,bash)))
6873 (build-system emacs-build-system)
6874 (arguments
6875 `(#:phases
6876 (modify-phases %standard-phases
6877 (add-before 'install 'configure
6878 (lambda* (#:key inputs #:allow-other-keys)
6879 (let ((bash (assoc-ref inputs "bash")))
6880 (emacs-substitute-variables "bash-completion.el"
6881 ("bash-completion-prog" (string-append bash "/bin/bash"))))
6882 #t)))))
6883 (home-page "https://github.com/szermatt/emacs-bash-completion")
6884 (synopsis "BASH completion for the shell buffer")
6885 (description
6886 "@code{bash-completion} defines dynamic completion hooks for shell-mode
6887 and shell-command prompts that are based on bash completion.")
6888 (license license:gpl2+)))
6889
6890 (define-public emacs-easy-kill
6891 (package
6892 (name "emacs-easy-kill")
6893 (version "0.9.3")
6894 (source (origin
6895 (method url-fetch)
6896 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
6897 version ".tar"))
6898 (sha256
6899 (base32
6900 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
6901 (build-system emacs-build-system)
6902 (home-page "https://github.com/leoliu/easy-kill")
6903 (synopsis "Kill and mark things easily in Emacs")
6904 (description
6905 "This package provides commands @code{easy-kill} and @code{easy-mark} to
6906 let users kill or mark things easily.")
6907 (license license:gpl3+)))
6908
6909 (define-public emacs-csv-mode
6910 (package
6911 (name "emacs-csv-mode")
6912 (version "1.7")
6913 (source
6914 (origin
6915 (method url-fetch)
6916 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
6917 version ".el"))
6918 (sha256
6919 (base32
6920 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
6921 (build-system emacs-build-system)
6922 (home-page
6923 "http://elpa.gnu.org/packages/csv-mode.html")
6924 (synopsis
6925 "Major mode for editing comma/char separated values")
6926 (description
6927 "This Emacs package implements CSV mode, a major mode for editing records
6928 in a generalized CSV (character-separated values) format.")
6929 (license license:gpl3+)))
6930
6931 (define-public emacs-transmission
6932 (package
6933 (name "emacs-transmission")
6934 (version "0.12.1")
6935 (source (origin
6936 (method url-fetch)
6937 (uri (string-append
6938 "https://github.com/holomorph/transmission/archive/"
6939 version ".tar.gz"))
6940 (file-name (string-append name "-" version ".tar.gz"))
6941 (sha256
6942 (base32
6943 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
6944 (build-system emacs-build-system)
6945 (home-page "https://github.com/holomorph/transmission")
6946 (synopsis "Emacs interface to a Transmission session")
6947 (description "This package provides an Emacs interface to interact with a
6948 running session of the Transmission Bittorrent client.
6949
6950 Features:
6951
6952 @itemize
6953 @item List, add, start/stop, verify, remove torrents.
6954 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
6955 @item Navigate to the corresponding file list, torrent info, peer info
6956 contexts.
6957 @item Toggle downloading and set priorities for individual files.
6958 @end itemize\n")
6959 (license license:gpl3+)))
6960
6961 (define-public emacs-polymode
6962 ;; There hasn't been a proper release.
6963 (let ((commit "0340f5e7e55235832e59673f027cc79a23cbdcd6")
6964 (revision "1"))
6965 (package
6966 (name "emacs-polymode")
6967 (version (string-append "1.0-" revision "." (string-take commit 7)))
6968 (source (origin
6969 (method git-fetch)
6970 (uri (git-reference
6971 (url "https://github.com/vspinu/polymode.git")
6972 (commit commit)))
6973 (file-name (string-append name "-" version "-checkout"))
6974 (sha256
6975 (base32
6976 "057cybkq3cy07n5s332k071sjiky3mziy003lza4rh75mgqkwhmh"))))
6977 (build-system emacs-build-system)
6978 (home-page "https://github.com/vspinu/polymode")
6979 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
6980 (description "Polymode is an Emacs package that offers generic support
6981 for multiple major modes inside a single Emacs buffer. It is lightweight,
6982 object oriented and highly extensible. Creating a new polymode typically
6983 takes only a few lines of code. Polymode also provides extensible facilities
6984 for external literate programming tools for exporting, weaving and tangling.")
6985 (license license:gpl3+))))
6986
6987 (define-public eless
6988 (package
6989 (name "eless")
6990 (version "0.3")
6991 (source (origin
6992 (method url-fetch)
6993 (uri (string-append
6994 "https://github.com/kaushalmodi/eless/archive/"
6995 "v" version ".tar.gz"))
6996 (file-name (string-append name "-" version ".tar.gz"))
6997 (sha256
6998 (base32
6999 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7000 (build-system trivial-build-system)
7001 (inputs
7002 `(("bash" ,bash)))
7003 (native-inputs
7004 `(("tar" ,tar)
7005 ("gzip" ,gzip)))
7006 (arguments
7007 `(#:modules ((guix build utils))
7008 #:builder
7009 (begin
7010 (use-modules (guix build utils))
7011 (setenv "PATH" (string-append
7012 (assoc-ref %build-inputs "tar") "/bin" ":"
7013 (assoc-ref %build-inputs "gzip") "/bin"))
7014 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
7015 (chdir (string-append "eless" "-" ,version))
7016 (substitute* "eless" (("/usr/bin/env bash")
7017 (string-append (assoc-ref %build-inputs "bash")
7018 "/bin/bash")))
7019 (install-file "eless" (string-append %output "/bin"))
7020 (install-file "doc/eless.info" (string-append %output "/share/info"))
7021 #t)))
7022 (home-page "https://github.com/kaushalmodi/eless")
7023 (synopsis "Use Emacs as a paginator")
7024 (description "@code{eless} provides a combination of Bash script
7025 and a minimal Emacs view-mode.
7026
7027 Feautures:
7028
7029 @itemize
7030 @item Independent of a user’s Emacs config.
7031 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7032 @item Not require an Emacs server to be already running.
7033 @item Syntax highlighting.
7034 @item Org-mode file rendering.
7035 @item @code{man} page viewer.
7036 @item Info viewer.
7037 @item Dired, wdired, (batch edit symbolic links).
7038 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
7039 @item Filter log files lines matching a regexp.
7040 @item Auto-revert log files similar to @code{tail -f}.
7041 @item Quickly change frame and font sizes.
7042 @end itemize\n")
7043 (license license:expat)))
7044
7045 (define-public emacs-evil-matchit
7046 (package
7047 (name "emacs-evil-matchit")
7048 (version "2.2.5")
7049 (source
7050 (origin
7051 (method url-fetch)
7052 (uri (string-append
7053 "https://github.com/redguardtoo/evil-matchit/archive/"
7054 version ".tar.gz"))
7055 (file-name (string-append name "-" version ".tar.gz"))
7056 (sha256
7057 (base32
7058 "1hm0k53m7d8zv2pk4p93k5mmilsv1mz7y2z6dqf7r6f0zmncs31a"))))
7059 (build-system emacs-build-system)
7060 (home-page "https://github.com/redguardtoo/evil-matchit")
7061 (synopsis "Vim matchit ported into Emacs")
7062 (description
7063 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7064 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7065 (license license:gpl3+)))
7066
7067 (define-public emacs-evil-smartparens
7068 (package
7069 (name "emacs-evil-smartparens")
7070 (version "0.4.0")
7071 (source
7072 (origin
7073 (method url-fetch)
7074 (uri (string-append
7075 "https://github.com/expez/evil-smartparens/archive/"
7076 version ".tar.gz"))
7077 (file-name (string-append name "-" version ".tar.gz"))
7078 (sha256
7079 (base32
7080 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7081 (build-system emacs-build-system)
7082 (propagated-inputs
7083 `(("emacs-evil" ,emacs-evil)
7084 ("emacs-smartparens" ,emacs-smartparens)))
7085 (home-page "https://github.com/expez/evil-smartparens")
7086 (synopsis "Emacs Evil integration for Smartparens")
7087 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7088 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7089 emulates Vim features and provides Vim-like key bindings.")
7090 (license license:gpl3+)))
7091
7092 (define-public emacs-evil-quickscope
7093 (package
7094 (name "emacs-evil-quickscope")
7095 (version "0.1.4")
7096 (source
7097 (origin
7098 (method url-fetch)
7099 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7100 version ".tar.gz"))
7101 (file-name (string-append name "-" version ".tar.gz"))
7102 (sha256
7103 (base32
7104 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
7105 (build-system emacs-build-system)
7106 (propagated-inputs
7107 `(("emacs-evil" ,emacs-evil)))
7108 (arguments
7109 `(#:phases
7110 (modify-phases %standard-phases
7111 (add-before 'install 'check
7112 (lambda* (#:key inputs #:allow-other-keys)
7113 (invoke "emacs" "--batch" "-L"
7114 (string-append (assoc-ref inputs "emacs-evil")
7115 "/share/emacs/site-lisp/guix.d/evil-"
7116 ,(package-version emacs-evil))
7117 "-l" "evil-quickscope-tests.el"
7118 "-f" "ert-run-tests-batch-and-exit"))))))
7119 (home-page "https://github.com/blorbx/evil-quickscope")
7120 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
7121 (description "@code{emacs-evil-quickscope} highlights targets for Evil
7122 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
7123 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
7124 features and provides Vim-like key bindings.")
7125 (license license:gpl3+)))
7126
7127 (define-public emacs-bongo
7128 (package
7129 (name "emacs-bongo")
7130 (version "1.0")
7131 (source
7132 (origin
7133 (method url-fetch)
7134 (uri (string-append
7135 "https://github.com/dbrock/bongo/archive/"
7136 version ".tar.gz"))
7137 (file-name (string-append name "-" version ".tar.gz"))
7138 (sha256
7139 (base32
7140 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
7141 (build-system emacs-build-system)
7142 (home-page "https://github.com/dbrock/bongo")
7143 (synopsis "Media player for Emacs")
7144 (description
7145 "This package provides a flexible media player for Emacs. @code{Bongo}
7146 supports multiple backends such as @code{vlc}, @code{mpg123},
7147 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
7148 @code{afplay}.")
7149 (license license:gpl2+)))
7150
7151 (define-public groovy-emacs-modes
7152 (package
7153 (name "groovy-emacs-modes")
7154 (version "2.0")
7155 (source (origin
7156 (method url-fetch)
7157 (uri (string-append
7158 "https://github.com/Groovy-Emacs-Modes/" name
7159 "/archive/" version ".tar.gz"))
7160 (file-name (string-append name "-" version ".tar.gz"))
7161 (sha256
7162 (base32
7163 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
7164 (build-system emacs-build-system)
7165 (propagated-inputs
7166 `(("emacs-s" ,emacs-s)))
7167 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
7168 (synopsis "Groovy related modes for Emacs")
7169 (description
7170 "This package provides @code{groovy-mode} for syntax highlighing in
7171 Groovy source files, REPL integration with run-groovy and Grails project
7172 navigation with the grails mode.")
7173 (license license:gpl3+)))
7174
7175 (define-public org-tree-slide
7176 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
7177 (revision "0"))
7178 (package
7179 (name "emacs-org-tree-slide")
7180 (version (git-version "0.1" revision commit))
7181 (home-page "https://github.com/takaxp/org-tree-slide")
7182 (source (origin
7183 (method git-fetch)
7184 (uri (git-reference (url home-page) (commit commit)))
7185 (sha256
7186 (base32
7187 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
7188 (file-name (git-file-name name version))))
7189 (build-system emacs-build-system)
7190 (synopsis "Presentation tool for org-mode")
7191 (description
7192 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
7193 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
7194 @kbd{C-<} to jump to the next and previous slide.")
7195 (license license:gpl3+))))
7196
7197 (define-public emacs-scratch-el
7198 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
7199 (revision "1"))
7200 (package
7201 (name "emacs-scratch-el")
7202 (version (git-version "1.2" revision commit))
7203 (source (origin
7204 (method git-fetch)
7205 (uri (git-reference
7206 (url "https://github.com/ieure/scratch-el.git")
7207 (commit commit)))
7208 (file-name (git-file-name name version))
7209 (sha256
7210 (base32
7211 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
7212 (build-system emacs-build-system)
7213 (native-inputs
7214 `(("texinfo" ,texinfo)))
7215 (arguments
7216 '(#:phases
7217 (modify-phases %standard-phases
7218 (add-after 'install 'install-doc
7219 (lambda* (#:key outputs #:allow-other-keys)
7220 (unless (invoke "makeinfo" "scratch.texi")
7221 (error "makeinfo failed"))
7222 (install-file "scratch.info"
7223 (string-append (assoc-ref outputs "out")
7224 "/share/info"))
7225 #t)))))
7226 (home-page "https://github.com/ieure/scratch-el/")
7227 (synopsis "Create scratch buffers with the same mode as current buffer")
7228 (description "Scratch is an extension to Emacs that enables one to create
7229 scratch buffers that are in the same mode as the current buffer. This is
7230 notably useful when working on code in some language; you may grab code into a
7231 scratch buffer, and, by virtue of this extension, do so using the Emacs
7232 formatting rules for that language.")
7233 (license license:bsd-2))))
7234
7235 (define-public emacs-esxml
7236 (package
7237 (name "emacs-esxml")
7238 (version "0.3.4")
7239 (source (origin
7240 (method git-fetch)
7241 (uri (git-reference
7242 (url "https://github.com/tali713/esxml.git")
7243 (commit version)))
7244 (file-name (git-file-name name version))
7245 (sha256
7246 (base32
7247 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
7248 (build-system emacs-build-system)
7249 (home-page "https://github.com/tali713/esxml/")
7250 (synopsis "SXML for EmacsLisp")
7251 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
7252 Simply, this is the easiest way to write HTML or XML in Lisp. This library
7253 uses the native form of XML representation as used by many libraries already
7254 included within Emacs. See @code{esxml-to-xml} for a concise description of
7255 the format.")
7256 (license license:gpl3+)))
7257
7258 (define-public emacs-nov-el
7259 (package
7260 (name "emacs-nov-el")
7261 (version "0.2.2")
7262 (source (origin
7263 (method git-fetch)
7264 (uri (git-reference
7265 (url "https://github.com/wasamasa/nov.el.git")
7266 (commit version)))
7267 (file-name (git-file-name name version))
7268 (sha256
7269 (base32
7270 "03s0qjvwk1f7y3i4wh2p5y3z4hdv00adgz8za3vphzc0q8i1kjzb"))))
7271 (build-system emacs-build-system)
7272 (arguments
7273 `(#:phases
7274 (modify-phases %standard-phases
7275 (add-after 'unpack 'embed-path-to-unzip
7276 (lambda _
7277 (substitute* "nov.el"
7278 (("\\(executable-find \"unzip\"\\)")
7279 (string-append "\"" (which "unzip") "\"")))
7280 #t)))))
7281 (propagated-inputs
7282 `(("emacs-dash" ,emacs-dash)
7283 ("emacs-esxml" ,emacs-esxml)))
7284 (inputs
7285 `(("unzip" ,unzip)))
7286 (home-page "https://github.com/wasamasa/nov.el/")
7287 (synopsis "Major mode for reading EPUBs in Emacs")
7288 (description "@code{nov.el} provides a major mode for reading EPUB
7289 documents.
7290
7291 Features:
7292
7293 @itemize
7294 @item Basic navigation (jump to TOC, previous/next chapter)
7295 @item Remembering and restoring the last read position
7296 @item Jump to next chapter when scrolling beyond end
7297 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
7298 @item Hyperlinks to internal and external targets
7299 @item Supports textual and image documents
7300 @item View source of document files
7301 @item Metadata display
7302 @item Image rescaling
7303 @end itemize
7304 ")
7305 (license license:gpl3+)))
7306
7307 (define-public epipe
7308 (package
7309 (name "epipe")
7310 (version "0.1.0")
7311 (source
7312 (origin
7313 (method url-fetch)
7314 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
7315 version ".tar.gz"))
7316 (file-name (string-append name "-" version ".tar.gz"))
7317 (sha256
7318 (base32
7319 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
7320 (build-system trivial-build-system)
7321 (inputs
7322 `(("bash" ,bash)
7323 ("perl" ,perl)))
7324 (native-inputs
7325 `(("tar" ,tar)
7326 ("gzip" ,gzip)))
7327 (arguments
7328 `(#:modules
7329 ((guix build utils))
7330 #:builder
7331 (begin
7332 (use-modules (guix build utils))
7333 ;; Extract source
7334 (setenv "PATH" (string-append
7335 (assoc-ref %build-inputs "tar") "/bin" ":"
7336 (assoc-ref %build-inputs "gzip") "/bin"))
7337 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
7338 (chdir (string-append ,name "-" ,version))
7339 ;; Patch shebangs
7340 (substitute* "epipe"
7341 (("/usr/bin/env bash")
7342 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
7343 (patch-shebang "epipe.pl"
7344 (list (string-append (assoc-ref %build-inputs "perl")
7345 "/bin")))
7346 ;; Installation
7347 (for-each (lambda (file)
7348 (install-file file (string-append %output "/bin")))
7349 '("epipe" "epipe.pl"))
7350 #t)))
7351 (home-page "https://github.com/cute-jumper/epipe")
7352 (synopsis "Pipe to the @code{emacsclient}")
7353 (description "@code{epipe} provides an utility to use your editor in
7354 the pipeline, featuring the support for running @code{emacsclient}.")
7355 (license license:gpl3+)))
7356
7357 (define-public emacs-hcl-mode
7358 (package
7359 (name "emacs-hcl-mode")
7360 (version "0.03")
7361 (source
7362 (origin
7363 (method url-fetch)
7364 (uri (string-append
7365 "https://github.com/syohex/emacs-hcl-mode/archive/"
7366 version ".tar.gz"))
7367 (file-name (string-append name "-" version ".tar.gz"))
7368 (sha256
7369 (base32
7370 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
7371 (build-system emacs-build-system)
7372 (home-page "https://github.com/syohex/emacs-hcl-mode")
7373 (synopsis "Major mode for the Hashicorp Configuration Language")
7374 (description
7375 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
7376 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
7377 highlighting and indentation support.")
7378 (license license:gpl3+)))
7379
7380 (define-public emacs-terraform-mode
7381 (package
7382 (name "emacs-terraform-mode")
7383 (version "0.06")
7384 (source
7385 (origin
7386 (method url-fetch)
7387 (uri (string-append
7388 "https://github.com/syohex/emacs-terraform-mode/archive/"
7389 version ".tar.gz"))
7390 (file-name (string-append name "-" version ".tar.gz"))
7391 (sha256
7392 (base32
7393 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
7394 (build-system emacs-build-system)
7395 (propagated-inputs
7396 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
7397 (home-page "https://github.com/syohex/emacs-terraform-mode")
7398 (synopsis "Major mode for Terraform")
7399 (description
7400 "@code{emacs-terraform-mode} provides a major mode for working with
7401 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
7402 functionality is inherited from @code{hcl-mode}.")
7403 (license license:gpl3+)))
7404
7405 (define-public emacs-exec-path-from-shell
7406 (package
7407 (name "emacs-exec-path-from-shell")
7408 (version "1.11")
7409 (source
7410 (origin
7411 (method url-fetch)
7412 (uri (string-append
7413 "https://stable.melpa.org/packages/exec-path-from-shell-"
7414 version ".el"))
7415 (sha256
7416 (base32
7417 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
7418 (build-system emacs-build-system)
7419 (home-page "https://github.com/purcell/exec-path-from-shell")
7420 (synopsis "Get environment variables such as @var{PATH} from the shell")
7421 (description
7422 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
7423 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
7424 the like work as expected on systems on which Emacs is not guaranteed to
7425 inherit a login shell's environment variables. It also allows other
7426 environment variables to be retrieved from the shell, so that Emacs will see
7427 the same values you get in a terminal.")
7428 (license license:gpl3+)))
7429
7430 (define-public emacs-deft
7431 (package
7432 (name "emacs-deft")
7433 (version "0.8")
7434 (source
7435 (origin
7436 (method url-fetch)
7437 (uri (string-append "https://stable.melpa.org/packages/deft-"
7438 version ".el"))
7439 (sha256
7440 (base32
7441 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
7442 (build-system emacs-build-system)
7443 (home-page "https://jblevins.org/projects/deft/")
7444 (synopsis "Quickly browse, filter, and edit plain text notes")
7445 (description
7446 "Deft is an Emacs mode for quickly browsing, filtering, and editing
7447 directories of plain text notes, inspired by Notational Velocity.")
7448 (license license:bsd-3)))
7449
7450 (define-public emacs-anzu
7451 (package
7452 (name "emacs-anzu")
7453 (version "0.62")
7454 (source
7455 (origin
7456 (method url-fetch)
7457 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
7458 version ".tar.gz"))
7459 (file-name (string-append name "-" version ".tar.gz"))
7460 (sha256
7461 (base32
7462 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
7463 (build-system emacs-build-system)
7464 (home-page "https://github.com/syohex/emacs-anzu")
7465 (synopsis "Show number of matches in mode-line while searching")
7466 (description
7467 "Anzu provides a minor mode which displays \"current match/total
7468 matches\" in the mode line in various search modes. This is an Emacs port of
7469 Anzu.zim.")
7470 (license license:gpl3+)))
7471
7472 (define-public emacs-emmet-mode
7473 (package
7474 (name "emacs-emmet-mode")
7475 (version "1.0.8")
7476 (source (origin
7477 (method url-fetch)
7478 (uri (string-append "https://github.com/smihica/emmet-mode"
7479 "/archive/" version ".tar.gz"))
7480 (file-name (string-append name "-" version ".tar.gz"))
7481 (sha256
7482 (base32
7483 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
7484 (build-system emacs-build-system)
7485 (home-page "https://github.com/smihica/emmet-mode")
7486 (synopsis "Unofficial Emmet's support for Emacs")
7487 (description
7488 "Unfold CSS-selector-like expressions to markup. It is intended to be
7489 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
7490 (license license:gpl3+)))
7491
7492 (define-public emacs-password-store
7493 (package
7494 (name "emacs-password-store")
7495 (version "1.7.1")
7496 (source (origin
7497 (method url-fetch)
7498 (uri
7499 (string-append "https://git.zx2c4.com/password-store/snapshot/"
7500 "password-store-" version ".tar.xz"))
7501 (sha256
7502 (base32
7503 "0scqkpll2q8jhzcgcsh9kqz0gwdpvynivqjmmbzax2irjfaiklpn"))))
7504 (build-system emacs-build-system)
7505 (arguments
7506 `(#:phases
7507 (modify-phases %standard-phases
7508 (add-after 'unpack 'extract-el-file
7509 (lambda _
7510 (copy-file "contrib/emacs/password-store.el" "password-store.el")
7511 (delete-file-recursively "contrib")
7512 (delete-file-recursively "man")
7513 (delete-file-recursively "src")
7514 (delete-file-recursively "tests"))))))
7515 (propagated-inputs
7516 `(("emacs-f" ,emacs-f)
7517 ("emacs-s" ,emacs-s)
7518 ("password-store" ,password-store)))
7519 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
7520 (synopsis "Password store (pass) support for Emacs")
7521 (description
7522 "This package provides functions for working with pass (\"the
7523 standard Unix password manager\").")
7524 (license license:gpl2+)))
7525
7526 (define-public emacs-pass
7527 (package
7528 (name "emacs-pass")
7529 (version "1.7")
7530 (source (origin
7531 (method url-fetch)
7532 (uri (string-append
7533 "https://github.com/NicolasPetton/pass/archive/"
7534 version ".tar.gz"))
7535 (sha256
7536 (base32
7537 "0zlx9v6z0q3w9qhq9bq6vb7sli4c9x7qccm2wq55j0nw7bwy2yvj"))
7538 (file-name (string-append name "-" version ".tar.gz"))))
7539 (build-system emacs-build-system)
7540 (propagated-inputs
7541 `(("emacs-password-store" ,emacs-password-store)
7542 ("emacs-f" ,emacs-f)))
7543 (home-page "https://github.com/NicolasPetton/pass")
7544 (synopsis "Major mode for @file{password-store.el}")
7545 (description "This is a major mode for managing password-store (pass)
7546 keychains. The keychain entries are displayed in a directory-like structure
7547 and can be consulted and modified.")
7548 (license license:gpl3+)))
7549
7550 (define-public emacs-evil-anzu
7551 (package
7552 (name "emacs-evil-anzu")
7553 (version "0.03")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
7558 "/archive/" version ".tar.gz"))
7559 (file-name (string-append name "-" version ".tar.gz"))
7560 (sha256
7561 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
7562 (build-system emacs-build-system)
7563 (propagated-inputs
7564 `(("emacs-evil" ,emacs-evil)
7565 ("emacs-anzu" ,emacs-anzu)))
7566 (home-page "https://github.com/syohex/emacs-evil-anzu")
7567 (synopsis "Anzu for evil-mode")
7568 (description "@code{anzu} provides a minor mode that displays the current
7569 match and total match information in the mode-line in various search modes.")
7570 (license license:gpl3+)))