gnu: Add emacs-fancy-narrow.
[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, 2018 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, 2018 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, 2018 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 databases)
70 #:use-module (gnu packages guile)
71 #:use-module (gnu packages gtk)
72 #:use-module (gnu packages gnome)
73 #:use-module (gnu packages ncurses)
74 #:use-module (gnu packages python)
75 #:use-module (gnu packages tex)
76 #:use-module (gnu packages texinfo)
77 #:use-module (gnu packages tcl)
78 #:use-module (gnu packages tls)
79 #:use-module (gnu packages pkg-config)
80 #:use-module (gnu packages xorg)
81 #:use-module (gnu packages lesstif)
82 #:use-module (gnu packages image)
83 #:use-module (gnu packages linux)
84 #:use-module (gnu packages version-control)
85 #:use-module (gnu packages imagemagick)
86 #:use-module (gnu packages w3m)
87 #:use-module (gnu packages wget)
88 #:use-module (gnu packages autotools)
89 #:use-module (gnu packages base)
90 #:use-module (gnu packages compression)
91 #:use-module (gnu packages xml)
92 #:use-module (gnu packages glib)
93 #:use-module (gnu packages acl)
94 #:use-module (gnu packages mail)
95 #:use-module (gnu packages package-management)
96 #:use-module (gnu packages perl)
97 #:use-module (gnu packages pdf)
98 #:use-module (gnu packages scheme)
99 #:use-module (gnu packages statistics)
100 #:use-module (gnu packages xiph)
101 #:use-module (gnu packages mp3)
102 #:use-module (gnu packages gettext)
103 #:use-module (gnu packages fribidi)
104 #:use-module (gnu packages gd)
105 #:use-module (gnu packages fontutils)
106 #:use-module (gnu packages password-utils)
107 #:use-module (guix utils)
108 #:use-module (srfi srfi-1)
109 #:use-module (ice-9 match))
110
111 (define-public emacs
112 (package
113 (name "emacs")
114 (version "25.3")
115 (source (origin
116 (method url-fetch)
117 (uri (string-append "mirror://gnu/emacs/emacs-"
118 version ".tar.xz"))
119 (sha256
120 (base32
121 "02y00y9q42g1iqgz5qhmsja75hwxd88yrn9zp14lanay0zkwafi5"))
122 (patches (search-patches "emacs-exec-path.patch"
123 "emacs-fix-scheme-indent-function.patch"
124 "emacs-source-date-epoch.patch"))
125 (modules '((guix build utils)))
126 (snippet
127 ;; Delete the bundled byte-compiled elisp files and
128 ;; generated autoloads.
129 '(with-directory-excursion "lisp"
130 (for-each delete-file
131 (append (find-files "." "\\.elc$")
132 (find-files "." "loaddefs\\.el$")
133 ;; This is the only "autoloads" file that
134 ;; does not have "*loaddefs.el" name.
135 '("eshell/esh-groups.el")))
136
137 ;; Make sure Tramp looks for binaries in the right places on
138 ;; remote GuixSD machines, where 'getconf PATH' returns
139 ;; something bogus.
140 (substitute* "net/tramp-sh.el"
141 ;; Patch the line after "(defcustom tramp-remote-path".
142 (("\\(tramp-default-remote-path")
143 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
144 "~/.guix-profile/bin" "~/.guix-profile/sbin"
145 "/run/current-system/profile/bin"
146 "/run/current-system/profile/sbin")))
147
148 ;; Make sure Man looks for C header files in the right
149 ;; places.
150 (substitute* "man.el"
151 (("\"/usr/local/include\"" line)
152 (string-join
153 (list line
154 "\"~/.guix-profile/include\""
155 "\"/var/guix/profiles/system/profile/include\"")
156 " ")))))))
157 (build-system glib-or-gtk-build-system)
158 (arguments
159 `(#:phases
160 (modify-phases %standard-phases
161 (add-before 'configure 'fix-/bin/pwd
162 (lambda _
163 ;; Use `pwd', not `/bin/pwd'.
164 (substitute* (find-files "." "^Makefile\\.in$")
165 (("/bin/pwd")
166 "pwd"))))
167 (add-after 'install 'install-site-start
168 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
169 ;; provided by Guix and installed in
170 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
171 ;; automatically found.
172 (lambda* (#:key inputs outputs #:allow-other-keys)
173 (let* ((out (assoc-ref outputs "out"))
174 (lisp-dir (string-append out "/share/emacs/site-lisp")))
175 (copy-file (assoc-ref inputs "guix-emacs.el")
176 (string-append lisp-dir "/guix-emacs.el"))
177 (with-output-to-file (string-append lisp-dir "/site-start.el")
178 (lambda ()
179 (display
180 (string-append "(when (require 'guix-emacs nil t)\n"
181 " (guix-emacs-autoload-packages))\n"))))
182 #t))))))
183 (inputs
184 `(("gnutls" ,gnutls)
185 ("ncurses" ,ncurses)
186
187 ;; TODO: Add the optional dependencies.
188 ("libx11" ,libx11)
189 ("gtk+" ,gtk+)
190 ("libxft" ,libxft)
191 ("libtiff" ,libtiff)
192 ("giflib" ,giflib)
193 ("libjpeg" ,libjpeg-8)
194 ("imagemagick" ,imagemagick)
195 ("acl" ,acl)
196
197 ;; When looking for libpng `configure' links with `-lpng -lz', so we
198 ;; must also provide zlib as an input.
199 ("libpng" ,libpng)
200 ("zlib" ,zlib)
201
202 ("librsvg" ,librsvg)
203 ("libxpm" ,libxpm)
204 ("libxml2" ,libxml2)
205 ("libice" ,libice)
206 ("libsm" ,libsm)
207 ("alsa-lib" ,alsa-lib)
208 ("dbus" ,dbus)
209
210 ;; multilingualization support
211 ("libotf" ,libotf)
212 ("m17n-lib" ,m17n-lib)))
213 (native-inputs
214 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
215 ("pkg-config" ,pkg-config)
216 ("texinfo" ,texinfo)))
217
218 (native-search-paths
219 (list (search-path-specification
220 (variable "INFOPATH")
221 (files '("share/info")))))
222
223 (home-page "https://www.gnu.org/software/emacs/")
224 (synopsis "The extensible, customizable, self-documenting text editor")
225 (description
226 "GNU Emacs is an extensible and highly customizable text editor. It is
227 based on an Emacs Lisp interpreter with extensions for text editing. Emacs
228 has been extended in essentially all areas of computing, giving rise to a
229 vast array of packages supporting, e.g., email, IRC and XMPP messaging,
230 spreadsheets, remote server editing, and much more. Emacs includes extensive
231 documentation on all aspects of the system, from basic editing to writing
232 large Lisp programs. It has full Unicode support for nearly all human
233 languages.")
234 (license license:gpl3+)))
235
236 (define-public emacs-minimal
237 ;; This is the version that you should use as an input to packages that just
238 ;; need to byte-compile .el files.
239 (package (inherit emacs)
240 (name "emacs-minimal")
241 (synopsis "The extensible text editor (used only for byte-compilation)")
242 (build-system gnu-build-system)
243 (arguments
244 (substitute-keyword-arguments (package-arguments emacs)
245 ((#:phases phases)
246 `(modify-phases ,phases
247 (delete 'install-site-start)))))
248 (inputs
249 `(("ncurses" ,ncurses)))
250 (native-inputs
251 `(("pkg-config" ,pkg-config)))))
252
253 (define-public emacs-no-x
254 (package (inherit emacs)
255 (name "emacs-no-x")
256 (synopsis "The extensible, customizable, self-documenting text
257 editor (console only)")
258 (build-system gnu-build-system)
259 (inputs (fold alist-delete
260 (package-inputs emacs)
261 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
262 "imagemagick" "libpng" "librsvg" "libxpm" "libice"
263 "libsm"
264
265 ;; These depend on libx11, so remove them as well.
266 "libotf" "m17n-lib" "dbus")))))
267
268 (define-public emacs-no-x-toolkit
269 (package (inherit emacs)
270 (name "emacs-no-x-toolkit")
271 (synopsis "The extensible, customizable, self-documenting text
272 editor (without an X toolkit)" )
273 (build-system gnu-build-system)
274 (inputs (append `(("inotify-tools" ,inotify-tools))
275 (alist-delete "gtk+" (package-inputs emacs))))
276 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
277 (package-arguments emacs)))))
278
279 (define-public guile-emacs
280 (package (inherit emacs)
281 (name "guile-emacs")
282 (version "20150512.41120e0")
283 (source (origin
284 (method git-fetch)
285 (uri (git-reference
286 (url "git://git.hcoop.net/git/bpt/emacs.git")
287 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
288 (file-name (string-append name "-" version "-checkout"))
289 (patches (search-patches "guile-emacs-fix-configure.patch"))
290 (sha256
291 (base32
292 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
293 (native-inputs
294 `(("autoconf" ,autoconf)
295 ("automake" ,automake)
296 ("guile" ,guile-for-guile-emacs)
297 ,@(package-native-inputs emacs)))
298 (arguments
299 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
300 #:parallel-build? #f
301 ;; Tests aren't passing for now.
302 #:tests? #f
303 ,@(package-arguments emacs))
304 ((#:phases phases)
305 `(modify-phases ,phases
306 (add-after 'unpack 'autogen
307 (lambda _
308 (zero? (system* "sh" "autogen.sh"))))
309 ;; Build sometimes fails: deps/dispnew.d: No such file or directory
310 (add-before 'build 'make-deps-dir
311 (lambda _
312 (zero? (system* "mkdir" "-p" "src/deps"))))))))))
313
314 \f
315 ;;;
316 ;;; Emacs hacking.
317 ;;;
318
319 (define-public geiser
320 (package
321 (name "geiser")
322 (version "0.10")
323 (source (origin
324 (method url-fetch)
325 (uri (string-append "mirror://savannah/geiser/" version
326 "/geiser-" version ".tar.gz"))
327 (sha256
328 (base32
329 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
330 (build-system gnu-build-system)
331 (arguments
332 '(#:phases
333 (modify-phases %standard-phases
334 (add-after 'install 'post-install
335 (lambda* (#:key outputs #:allow-other-keys)
336 (symlink "geiser-install.el"
337 (string-append (assoc-ref outputs "out")
338 "/share/emacs/site-lisp/"
339 "geiser-autoloads.el"))
340 #t)))))
341 (inputs `(("guile" ,guile-2.2)))
342 (native-inputs `(("emacs" ,emacs-minimal)))
343 (home-page "https://nongnu.org/geiser/")
344 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
345 (description
346 "Geiser is a collection of Emacs major and minor modes that conspire with
347 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
348 continuously running Scheme interpreter takes the center of the stage in
349 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
350 implementation, Emacs and, ultimately, the schemer, giving them access to live
351 metadata.")
352 (license license:bsd-3)))
353
354 (define-public paredit
355 (package
356 (name "emacs-paredit")
357 (version "24")
358 (source (origin
359 (method url-fetch)
360 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
361 version ".el"))
362 (sha256
363 (base32
364 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
365 (build-system emacs-build-system)
366 (home-page "http://mumble.net/~campbell/emacs/paredit/")
367 (synopsis "Emacs minor mode for editing parentheses")
368 (description
369 "ParEdit (paredit.el) is a minor mode for performing structured editing
370 of S-expression data. The typical example of this would be Lisp or Scheme
371 source code.
372
373 ParEdit helps **keep parentheses balanced** and adds many keys for moving
374 S-expressions and moving around in S-expressions. Its behavior can be jarring
375 for those who may want transient periods of unbalanced parentheses, such as
376 when typing parentheses directly or commenting out code line by line.")
377 (license license:gpl3+)))
378
379 (define-public git-modes
380 (package
381 (name "emacs-git-modes")
382 (version "1.2.7")
383 (source (origin
384 (method url-fetch)
385 (uri (string-append
386 "https://github.com/magit/git-modes/archive/"
387 version ".tar.gz"))
388 (file-name (string-append name "-" version ".tar.gz"))
389 (sha256
390 (base32
391 "1mzl70s0xyysnjq1j10mc5vn9i022n5vd82kxsgp4xxqq7gc4qnx"))))
392 (build-system emacs-build-system)
393 (home-page "https://github.com/magit/git-modes")
394 (synopsis "Emacs major modes for Git configuration files")
395 (description
396 "This package provides Emacs major modes for editing various Git
397 configuration files, such as .gitattributes, .gitignore, and .git/config.")
398 (license license:gpl3+)))
399
400 (define-public git-modes/old-name
401 (deprecated-package "git-modes" git-modes))
402
403 (define-public emacs-with-editor
404 (package
405 (name "emacs-with-editor")
406 (version "2.7.2")
407 (source (origin
408 (method url-fetch)
409 (uri (string-append
410 "https://github.com/magit/with-editor/archive/v"
411 version ".tar.gz"))
412 (file-name (string-append name "-" version ".tar.gz"))
413 (sha256
414 (base32
415 "1jqi3axcs0cb1pcv1jxxc2a09v6psrm33wwl6hmyshzl8kbxs2mv"))))
416 (build-system emacs-build-system)
417 (propagated-inputs
418 `(("emacs-dash" ,emacs-dash)))
419 (home-page "https://github.com/magit/with-editor")
420 (synopsis "Emacs library for using Emacsclient as EDITOR")
421 (description
422 "This package provides an Emacs library to use the Emacsclient as
423 @code{$EDITOR} of child processes, making sure they know how to call home.
424 For remote processes a substitute is provided, which communicates with Emacs
425 on stdout instead of using a socket as the Emacsclient does.")
426 (license license:gpl3+)))
427
428 (define-public magit
429 (package
430 (name "magit")
431 (version "2.12.1")
432 (source (origin
433 (method url-fetch)
434 (uri (string-append
435 "https://github.com/magit/magit/releases/download/"
436 version "/" name "-" version ".tar.gz"))
437 (sha256
438 (base32
439 "1czzknmhzbggcv3bxl5amvfpp0zrkdwl1x05qarsq6qakvc85xy3"))))
440 (build-system gnu-build-system)
441 (native-inputs `(("texinfo" ,texinfo)
442 ("emacs" ,emacs-minimal)))
443 (inputs
444 `(("git" ,git)
445 ("perl" ,perl)))
446 (propagated-inputs
447 `(("dash" ,emacs-dash)
448 ("ghub" ,emacs-ghub)
449 ("magit-popup" ,emacs-magit-popup)
450 ("with-editor" ,emacs-with-editor)))
451 (arguments
452 `(#:test-target "test"
453 #:tests? #f ; tests are not included in the release
454
455 #:make-flags
456 (list (string-append "PREFIX=" %output)
457 ;; Don't put .el files in a sub-directory.
458 (string-append "lispdir=" %output "/share/emacs/site-lisp")
459 (string-append "DASH_DIR="
460 (assoc-ref %build-inputs "dash")
461 "/share/emacs/site-lisp/guix.d/dash-"
462 ,(package-version emacs-dash))
463 (string-append "GHUB_DIR="
464 (assoc-ref %build-inputs "ghub")
465 "/share/emacs/site-lisp/guix.d/ghub-"
466 ,(package-version emacs-ghub))
467 (string-append "MAGIT_POPUP_DIR="
468 (assoc-ref %build-inputs "magit-popup")
469 "/share/emacs/site-lisp/guix.d/magit-popup-"
470 ,(package-version emacs-magit-popup))
471 (string-append "WITH_EDITOR_DIR="
472 (assoc-ref %build-inputs "with-editor")
473 "/share/emacs/site-lisp/guix.d/with-editor-"
474 ,(package-version emacs-with-editor)))
475
476 #:phases
477 (modify-phases %standard-phases
478 (delete 'configure)
479 (add-before
480 'build 'patch-exec-paths
481 (lambda* (#:key inputs #:allow-other-keys)
482 (let ((perl (assoc-ref inputs "perl")))
483 (substitute* "lisp/magit-sequence.el"
484 (("perl") (string-append perl "/bin/perl")))
485 #t))))))
486 (home-page "https://magit.vc/")
487 (synopsis "Emacs interface for the Git version control system")
488 (description
489 "With Magit, you can inspect and modify your Git repositories with Emacs.
490 You can review and commit the changes you have made to the tracked files, for
491 example, and you can browse the history of past changes. There is support for
492 cherry picking, reverting, merging, rebasing, and other common Git
493 operations.")
494 (license license:gpl3+)))
495
496 (define-public magit-svn
497 (package
498 (name "magit-svn")
499 (version "2.2.0")
500 (source (origin
501 (method url-fetch)
502 (uri (string-append
503 "https://github.com/magit/magit-svn/archive/"
504 version ".tar.gz"))
505 (file-name (string-append name "-" version ".tar.gz"))
506 (sha256
507 (base32
508 "1c3n377v436zaxamlsz04y1ahdhp96x1vd43zaryv4y10m02ba47"))))
509 (build-system trivial-build-system)
510 (native-inputs `(("emacs" ,emacs-minimal)
511 ("tar" ,tar)
512 ("gzip" ,gzip)))
513 (propagated-inputs `(("dash" ,emacs-dash)
514 ("with-editor" ,emacs-with-editor)
515 ("magit" ,magit)))
516 (arguments
517 `(#:modules ((guix build utils)
518 (guix build emacs-utils))
519
520 #:builder
521 (begin
522 (use-modules (guix build utils)
523 (guix build emacs-utils))
524
525 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
526 "/bin/tar"))
527 (PATH (string-append (assoc-ref %build-inputs "gzip")
528 "/bin"))
529 (emacs (string-append (assoc-ref %build-inputs "emacs")
530 "/bin/emacs"))
531 (magit (string-append (assoc-ref %build-inputs "magit")
532 "/share/emacs/site-lisp"))
533 (dash (string-append (assoc-ref %build-inputs "dash")
534 "/share/emacs/site-lisp/guix.d/dash-"
535 ,(package-version emacs-dash)))
536 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
537 "/share/emacs/site-lisp/guix.d/with-editor-"
538 ,(package-version emacs-with-editor)))
539 (source (assoc-ref %build-inputs "source"))
540 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
541 (setenv "PATH" PATH)
542 (system* tar "xvf" source)
543
544 (install-file (string-append ,name "-" ,version "/magit-svn.el")
545 lisp-dir)
546
547 (with-directory-excursion lisp-dir
548 (parameterize ((%emacs emacs))
549 (emacs-generate-autoloads ,name lisp-dir)
550 (setenv "EMACSLOADPATH"
551 (string-append ":" magit ":" dash ":" with-editor))
552 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))))))
553 (home-page "https://github.com/magit/magit-svn")
554 (synopsis "Git-SVN extension to Magit")
555 (description
556 "This package is an extension to Magit, the Git Emacs mode, providing
557 support for Git-SVN.")
558 (license license:gpl3+)))
559
560 (define-public emacs-magit-popup
561 (package
562 (name "emacs-magit-popup")
563 (version "2.12.3")
564 (source (origin
565 (method url-fetch)
566 (uri (string-append
567 "https://github.com/magit/magit-popup/archive/v"
568 version ".tar.gz"))
569 (file-name (string-append name "-" version ".tar.gz"))
570 (sha256
571 (base32
572 "1kz6vj67awkwf9y2wj6m3l2him3znm08z6bkdvnmfr6rwd96dr39"))))
573 (build-system emacs-build-system)
574 (arguments
575 `(#:phases
576 (modify-phases %standard-phases
577 (add-before 'install 'make-info
578 (lambda _
579 (zero? (system* "make" "info")))))))
580 (native-inputs
581 `(("texinfo" ,texinfo)))
582 (propagated-inputs
583 `(("emacs-dash" ,emacs-dash)))
584 (home-page "https://github.com/magit/magit-popup")
585 (synopsis "Define prefix-infix-suffix command combos")
586 (description
587 "This library implements a generic interface for toggling switches and
588 setting options and then invoking an Emacs command which does something with
589 these arguments. The prototypical use is for the command to call an external
590 process, passing on the arguments as command line arguments.")
591 (license license:gpl3+)))
592
593 (define-public emacs-ghub
594 (package
595 (name "emacs-ghub")
596 (version "2.0.0")
597 (source (origin
598 (method url-fetch)
599 (uri (string-append
600 "https://github.com/magit/ghub/archive/v"
601 version ".tar.gz"))
602 (file-name (string-append name "-" version ".tar.gz"))
603 (sha256
604 (base32
605 "1zrb3xk04a228g2ahx0r02d0d3xskj60q73qavvmm2i56r66cxvc"))))
606 (build-system emacs-build-system)
607 (arguments
608 `(#:phases
609 (modify-phases %standard-phases
610 (add-before 'install 'make-info
611 (lambda _
612 (zero? (system* "make" "info")))))))
613 (native-inputs
614 `(("texinfo" ,texinfo)))
615 (home-page "https://github.com/magit/ghub")
616 (synopsis "Emacs client library for Github API and Gitlab API")
617 (description
618 "This package provides 2 files: @file{ghub.el} and @file{glab.el},
619 which are the libraries that provide basic support for using the Github and
620 Gitlab APIs from Emacs packages. It abstracts access to API resources using
621 only a handful of functions that are not resource-specific.")
622 (license license:gpl3+)))
623
624 (define-public haskell-mode
625 (package
626 (name "haskell-mode")
627 (version "16.1")
628 (source (origin
629 (method url-fetch)
630 (file-name (string-append name "-" version ".tar.gz"))
631 (uri (string-append
632 "https://github.com/haskell/haskell-mode/archive/v"
633 version ".tar.gz"))
634 (sha256
635 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))))
636 (inputs
637 `(("emacs-el-search" ,emacs-el-search) ; for tests
638 ("emacs-stream" ,emacs-stream))) ; for tests
639 (propagated-inputs
640 `(("emacs-dash" ,emacs-dash)))
641 (native-inputs
642 `(("emacs" ,emacs-minimal)
643 ("texinfo" ,texinfo)))
644 (build-system gnu-build-system)
645 (arguments
646 `(#:make-flags (list (string-append "EMACS="
647 (assoc-ref %build-inputs "emacs")
648 "/bin/emacs"))
649 #:modules ((ice-9 match)
650 (srfi srfi-26)
651 ,@%gnu-build-system-modules)
652 #:phases
653 (modify-phases %standard-phases
654 (delete 'configure)
655 (add-before
656 'build 'pre-build
657 (lambda* (#:key inputs #:allow-other-keys)
658 (define (el-dir store-dir)
659 (match (find-files store-dir "\\.el$")
660 ((f1 f2 ...) (dirname f1))
661 (_ "")))
662
663 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
664 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
665
666 (setenv "SHELL" "sh")
667 (setenv "EMACSLOADPATH"
668 (string-concatenate
669 (map (match-lambda
670 (((? emacs-prefix? name) . dir)
671 (string-append (el-dir dir) ":"))
672 (_ ""))
673 inputs)))
674 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
675 (substitute* "tests/haskell-code-conventions.el"
676 ;; Function name recently changed in "emacs-el-search".
677 (("el-search--search-pattern") "el-search-forward")
678 ;; Don't contact home.
679 (("\\(when \\(>= emacs-major-version 25\\)")
680 "(require 'el-search) (when nil"))
681 #t)))
682 (replace
683 'install
684 (lambda* (#:key outputs #:allow-other-keys)
685 (let* ((out (assoc-ref outputs "out"))
686 (el-dir (string-append out "/share/emacs/site-lisp"))
687 (doc (string-append
688 out "/share/doc/haskell-mode-" ,version))
689 (info (string-append out "/share/info")))
690 (define (copy-to-dir dir files)
691 (for-each (lambda (f)
692 (install-file f dir))
693 files))
694
695 (with-directory-excursion "doc"
696 (unless (zero? (system* "makeinfo" "haskell-mode.texi"))
697 (error "makeinfo failed"))
698 (install-file "haskell-mode.info" info))
699 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
700 (copy-to-dir el-dir (find-files "." "\\.elc?"))
701 ;; These are part of other packages.
702 (with-directory-excursion el-dir
703 (for-each delete-file '("dash.el" "ert.el")))
704 #t))))))
705 (home-page "https://github.com/haskell/haskell-mode")
706 (synopsis "Haskell mode for Emacs")
707 (description
708 "This is an Emacs mode for editing, debugging and developing Haskell
709 programs.")
710 (license license:gpl3+)))
711
712 (define-public flycheck
713 (package
714 (name "emacs-flycheck")
715 (version "31")
716 (source (origin
717 (method url-fetch)
718 (uri (string-append
719 "https://github.com/flycheck/flycheck/releases/download/"
720 version "/flycheck-" version ".tar"))
721 (sha256
722 (base32
723 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))))
724 (build-system emacs-build-system)
725 (propagated-inputs
726 `(("emacs-dash" ,emacs-dash)))
727 (home-page "https://www.flycheck.org")
728 (synopsis "On-the-fly syntax checking")
729 (description
730 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
731 replacement for the older Flymake extension which is part of GNU Emacs, with
732 many improvements and additional features.
733
734 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
735 checking for over 30 programming and markup languages with more than 70
736 different tools. It highlights errors and warnings inline in the buffer, and
737 provides an optional IDE-like error list.")
738 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
739
740 \f
741 ;;;
742 ;;; Web browsing.
743 ;;;
744
745 (define-public emacs-w3m
746 (package
747 (name "emacs-w3m")
748 (version "1.4.538+0.20141022")
749 (source (origin
750 (method url-fetch)
751 (uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_"
752 version ".orig.tar.gz"))
753 (sha256
754 (base32
755 "0zfxmq86pwk64yv0426gnjrvhjrgrjqn08sdcdhmmjmfpmqvm79y"))))
756 (build-system gnu-build-system)
757 (native-inputs `(("autoconf" ,autoconf)
758 ("emacs" ,emacs-minimal)))
759 (inputs `(("w3m" ,w3m)
760 ("imagemagick" ,imagemagick)))
761 (arguments
762 `(#:modules ((guix build gnu-build-system)
763 (guix build utils)
764 (guix build emacs-utils))
765 #:imported-modules (,@%gnu-build-system-modules
766 (guix build emacs-utils))
767 #:configure-flags
768 (let ((out (assoc-ref %outputs "out")))
769 (list (string-append "--with-lispdir="
770 out "/share/emacs/site-lisp")
771 (string-append "--with-icondir="
772 out "/share/images/emacs-w3m")
773 ;; Leave .el files uncompressed, otherwise GC can't
774 ;; identify run-time dependencies. See
775 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
776 "--without-compress-install"))
777 #:tests? #f ; no check target
778 #:phases
779 (modify-phases %standard-phases
780 (add-after 'unpack 'autoconf
781 (lambda _
782 (zero? (system* "autoconf"))))
783 (add-before 'build 'patch-exec-paths
784 (lambda* (#:key inputs outputs #:allow-other-keys)
785 (let ((out (assoc-ref outputs "out"))
786 (w3m (assoc-ref inputs "w3m"))
787 (imagemagick (assoc-ref inputs "imagemagick"))
788 (coreutils (assoc-ref inputs "coreutils")))
789 (emacs-substitute-variables "w3m.el"
790 ("w3m-command" (string-append w3m "/bin/w3m"))
791 ("w3m-touch-command"
792 (string-append coreutils "/bin/touch"))
793 ("w3m-image-viewer"
794 (string-append imagemagick "/bin/display"))
795 ("w3m-icon-directory"
796 (string-append out "/share/images/emacs-w3m")))
797 (emacs-substitute-variables "w3m-image.el"
798 ("w3m-imagick-convert-program"
799 (string-append imagemagick "/bin/convert"))
800 ("w3m-imagick-identify-program"
801 (string-append imagemagick "/bin/identify")))
802 #t)))
803 (replace 'install
804 (lambda* (#:key outputs #:allow-other-keys)
805 (and (zero? (system* "make" "install" "install-icons"))
806 (with-directory-excursion
807 (string-append (assoc-ref outputs "out")
808 "/share/emacs/site-lisp")
809 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
810 (symlink "w3m-load.el" "w3m-autoloads.el")
811 #t)))))))
812 (home-page "http://emacs-w3m.namazu.org/")
813 (synopsis "Simple Web browser for Emacs based on w3m")
814 (description
815 "Emacs-w3m is an emacs interface for the w3m web browser.")
816 (license license:gpl2+)))
817
818 (define-public emacs-wget
819 (package
820 (name "emacs-wget")
821 (version "0.5.0")
822 (source (origin
823 (method url-fetch)
824 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
825 version ".orig.tar.gz"))
826 (sha256
827 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
828 (build-system gnu-build-system)
829 (inputs `(("wget" ,wget)))
830 (native-inputs `(("emacs" ,emacs-minimal)))
831 (arguments
832 `(#:modules ((guix build gnu-build-system)
833 (guix build utils)
834 (guix build emacs-utils))
835 #:imported-modules (,@%gnu-build-system-modules
836 (guix build emacs-utils))
837 #:tests? #f ; no check target
838 #:phases
839 (modify-phases %standard-phases
840 (replace 'configure
841 (lambda* (#:key outputs #:allow-other-keys)
842 (substitute* "Makefile"
843 (("/usr/local") (assoc-ref outputs "out"))
844 (("/site-lisp/emacs-wget") "/site-lisp"))
845 #t))
846 (add-before 'build 'patch-exec-paths
847 (lambda* (#:key inputs outputs #:allow-other-keys)
848 (let ((wget (assoc-ref inputs "wget")))
849 (emacs-substitute-variables "wget.el"
850 ("wget-command" (string-append wget "/bin/wget"))))
851 #t))
852 (add-after 'install 'post-install
853 (lambda* (#:key outputs #:allow-other-keys)
854 (emacs-generate-autoloads
855 "wget" (string-append (assoc-ref outputs "out")
856 "/share/emacs/site-lisp/"))
857 #t)))))
858 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
859 (synopsis "Simple file downloader for Emacs based on wget")
860 (description
861 "Emacs-wget is an emacs interface for the wget file downloader.")
862 (license license:gpl2+)))
863
864 \f
865 ;;;
866 ;;; Multimedia.
867 ;;;
868
869 (define-public emms
870 (package
871 (name "emacs-emms")
872 (version "5.0")
873 (source (origin
874 (method url-fetch)
875 (uri (string-append "mirror://gnu/emms/emms-"
876 version ".tar.gz"))
877 (sha256
878 (base32
879 "08f9lj77jlk96grqgjsv63s2i8ywvp4wvnmgmhnslwyx2lsdxza3"))
880 (modules '((guix build utils)))
881 (snippet
882 '(substitute* "Makefile"
883 (("/usr/bin/install-info")
884 ;; No need to use 'install-info' since it would create a
885 ;; useless 'dir' file.
886 "true")
887 (("^INFODIR=.*")
888 ;; Install Info files to $out/share/info, not $out/info.
889 "INFODIR := $(PREFIX)/share/info\n")
890 (("/site-lisp/emms")
891 ;; Install directly in share/emacs/site-lisp, not in a
892 ;; sub-directory.
893 "/site-lisp")
894 (("^all: (.*)\n" _ rest)
895 ;; Build 'emms-print-metadata'.
896 (string-append "all: " rest " emms-print-metadata\n"))))))
897 (build-system gnu-build-system)
898 (arguments
899 `(#:modules ((guix build gnu-build-system)
900 (guix build utils)
901 (guix build emacs-utils))
902 #:imported-modules (,@%gnu-build-system-modules
903 (guix build emacs-utils))
904
905 #:phases
906 (modify-phases %standard-phases
907 (replace 'configure
908 (lambda* (#:key inputs outputs #:allow-other-keys)
909 (let ((out (assoc-ref outputs "out"))
910 (flac (assoc-ref inputs "flac"))
911 (vorbis (assoc-ref inputs "vorbis-tools"))
912 (alsa (assoc-ref inputs "alsa-utils"))
913 (mpg321 (assoc-ref inputs "mpg321"))
914 (mp3info (assoc-ref inputs "mp3info")))
915 ;; Specify the installation directory.
916 (substitute* "Makefile"
917 (("PREFIX=.*$")
918 (string-append "PREFIX := " out "\n")))
919
920 (setenv "SHELL" (which "sh"))
921 (setenv "CC" "gcc")
922
923 ;; Specify the absolute file names of the various
924 ;; programs so that everything works out-of-the-box.
925 (with-directory-excursion "lisp"
926 (emacs-substitute-variables
927 "emms-player-mpg321-remote.el"
928 ("emms-player-mpg321-remote-command"
929 (string-append mpg321 "/bin/mpg321")))
930 (substitute* "emms-player-simple.el"
931 (("\"ogg123\"")
932 (string-append "\"" vorbis "/bin/ogg123\"")))
933 (substitute* "emms-player-simple.el"
934 (("\"mpg321\"")
935 (string-append "\"" mpg321 "/bin/mpg321\"")))
936 (emacs-substitute-variables "emms-info-ogginfo.el"
937 ("emms-info-ogginfo-program-name"
938 (string-append vorbis "/bin/ogginfo")))
939 (emacs-substitute-variables "emms-info-libtag.el"
940 ("emms-info-libtag-program-name"
941 (string-append out "/bin/emms-print-metadata")))
942 (emacs-substitute-variables "emms-info-mp3info.el"
943 ("emms-info-mp3info-program-name"
944 (string-append mp3info "/bin/mp3info")))
945 (emacs-substitute-variables "emms-info-metaflac.el"
946 ("emms-info-metaflac-program-name"
947 (string-append flac "/bin/metaflac")))
948 (emacs-substitute-variables "emms-source-file.el"
949 ("emms-source-file-gnu-find" (which "find")))
950 (substitute* "emms-volume-amixer.el"
951 (("\"amixer\"")
952 (string-append "\"" alsa "/bin/amixer\"")))
953 (substitute* "emms-tag-editor.el"
954 (("\"mp3info\"")
955 (string-append "\"" mp3info "/bin/mp3info\"")))))))
956 (add-before 'install 'pre-install
957 (lambda* (#:key outputs #:allow-other-keys)
958 ;; The 'install' rule expects the target directories to exist.
959 (let* ((out (assoc-ref outputs "out"))
960 (bin (string-append out "/bin"))
961 (man1 (string-append out "/share/man/man1")))
962 (mkdir-p bin)
963 (mkdir-p man1)
964 #t)))
965 (add-after 'install 'post-install
966 (lambda* (#:key outputs #:allow-other-keys)
967 (let ((out (assoc-ref outputs "out")))
968 (symlink "emms-auto.el"
969 (string-append out "/share/emacs/site-lisp/"
970 "emms-autoloads.el"))))))
971 #:tests? #f))
972 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
973 ("texinfo" ,texinfo)))
974 (inputs `(("alsa-utils" ,alsa-utils)
975 ("flac" ,flac) ;for metaflac
976 ("vorbis-tools" ,vorbis-tools)
977 ("mpg321" ,mpg321)
978 ("taglib" ,taglib)
979 ("mp3info" ,mp3info)))
980 (properties '((upstream-name . "emms")))
981 (synopsis "Emacs Multimedia System")
982 (description
983 "EMMS is the Emacs Multimedia System. It is a small front-end which
984 can control one of the supported external players. Thus, it supports
985 whatever formats are supported by your music player. It also
986 supports tagging and playlist management, all behind a clean and
987 light user interface.")
988 (home-page "https://www.gnu.org/software/emms/")
989 (license license:gpl3+)))
990
991 (define-public emacs-emms-player-mpv
992 (package
993 (name "emacs-emms-player-mpv")
994 (version "0.1.0")
995 (source
996 (origin
997 (method url-fetch)
998 (uri (string-append "https://github.com/dochang/emms-player-mpv/archive/"
999 version ".tar.gz"))
1000 (file-name (string-append name "-" version ".tar.gz"))
1001 (sha256
1002 (base32
1003 "05qwbagc4i7yn7i94r1hdgj6wc5xijy1pxqv08pwsmli9rqj51n9"))))
1004 (build-system emacs-build-system)
1005 (propagated-inputs
1006 `(("emms" ,emms)))
1007 (home-page "https://github.com/dochang/emms-player-mpv/")
1008 (synopsis "Mpv support for EMMS")
1009 (description
1010 "This package provides an EMMS player that uses mpv. It supports pause
1011 and seeking.")
1012 (license license:gpl3+)))
1013
1014 (define-public emacs-emms-mode-line-cycle
1015 (package
1016 (name "emacs-emms-mode-line-cycle")
1017 (version "0.2.5")
1018 (source
1019 (origin
1020 (method url-fetch)
1021 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
1022 "/archive/" version ".tar.gz"))
1023 (file-name (string-append name "-" version ".tar.gz"))
1024 (sha256
1025 (base32
1026 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
1027 (build-system emacs-build-system)
1028 (propagated-inputs
1029 `(("emms" ,emms)))
1030 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1031 (synopsis "Display the EMMS mode line as a ticker")
1032 (description
1033 "This is a minor mode for updating the EMMS mode-line string cyclically
1034 within a specified width. It is useful for displaying long track titles.")
1035 (license license:gpl3+)))
1036
1037 \f
1038 ;;;
1039 ;;; Miscellaneous.
1040 ;;;
1041
1042 (define-public bbdb
1043 (package
1044 (name "bbdb")
1045 (version "3.1.2")
1046 (source (origin
1047 (method url-fetch)
1048 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1049 version ".tar.gz"))
1050 (sha256
1051 (base32
1052 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1053 (modules '((guix build utils)))
1054 (snippet
1055 ;; We don't want to build and install the PDF.
1056 '(substitute* "doc/Makefile.in"
1057 (("^doc_DATA = .*$")
1058 "doc_DATA =\n")))))
1059 (build-system gnu-build-system)
1060 (arguments
1061 '(#:phases
1062 (modify-phases %standard-phases
1063 (add-after 'install 'post-install
1064 (lambda* (#:key outputs #:allow-other-keys)
1065 ;; Add an autoloads file with the right name for guix.el.
1066 (let* ((out (assoc-ref outputs "out"))
1067 (site (string-append out "/share/emacs/site-lisp")))
1068 (with-directory-excursion site
1069 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1070 #t)))))
1071 (native-inputs `(("emacs" ,emacs-minimal)))
1072 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1073 (synopsis "Contact management utility for Emacs")
1074 (description
1075 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1076 an address book for email and snail mail addresses, phone numbers and the
1077 like. It can be linked with various Emacs mail clients (Message and Mail
1078 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1079 (license license:gpl3+)))
1080
1081 (define-public emacs-aggressive-indent
1082 (package
1083 (name "emacs-aggressive-indent")
1084 (version "1.8.3")
1085 (source (origin
1086 (method url-fetch)
1087 (uri (string-append "https://elpa.gnu.org/packages/"
1088 "aggressive-indent-" version ".el"))
1089 (sha256
1090 (base32
1091 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1092 (build-system emacs-build-system)
1093 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1094 (synopsis "Minor mode to aggressively keep your code always indented")
1095 (description
1096 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1097 always indented. It reindents after every change, making it more reliable
1098 than @code{electric-indent-mode}.")
1099 (license license:gpl2+)))
1100
1101 (define-public emacs-ag
1102 (package
1103 (name "emacs-ag")
1104 (version "0.47")
1105 (source (origin
1106 (method url-fetch)
1107 (uri (string-append
1108 "https://github.com/Wilfred/ag.el/archive/"
1109 version ".tar.gz"))
1110 (file-name (string-append name "-" version ".tar.gz"))
1111 (sha256
1112 (base32
1113 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1114 (build-system emacs-build-system)
1115 (arguments
1116 `(#:phases
1117 (modify-phases %standard-phases
1118 (add-before 'install 'make-info
1119 (lambda _
1120 (with-directory-excursion "docs"
1121 (zero? (system* "make" "info")))))
1122 (add-after 'install 'install-info
1123 (lambda* (#:key outputs #:allow-other-keys)
1124 (let* ((out (assoc-ref outputs "out"))
1125 (info (string-append out "/share/info")))
1126 (install-file "docs/_build/texinfo/agel.info" info)
1127 #t))))))
1128 (native-inputs
1129 `(("python-sphinx" ,python-sphinx)
1130 ("texinfo" ,texinfo)))
1131 (propagated-inputs
1132 `(("dash" ,emacs-dash)
1133 ("s" ,emacs-s)
1134 ;; We need to use 'ag' as the executable on remote systems.
1135 ("the-silver-searcher" ,the-silver-searcher)))
1136 (home-page "https://github.com/Wilfred/ag.el")
1137 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1138 (description "This package provides the ability to use the silver
1139 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1140 include version control system awareness, use of Perl compatible regular
1141 expressions, editing the search results directly and searching file names
1142 rather than the contents of files.")
1143 (license license:gpl3+)))
1144
1145 (define-public emacs-async
1146 (package
1147 (name "emacs-async")
1148 (version "1.9.2")
1149 (source (origin
1150 (method url-fetch)
1151 (uri (string-append "https://elpa.gnu.org/packages/async-"
1152 version ".tar"))
1153 (sha256
1154 (base32
1155 "17fnvrj7jww29sav6a6jpizclg4w2962m6h37akpii71gf0vrffw"))))
1156 (build-system emacs-build-system)
1157 (home-page "https://elpa.gnu.org/packages/async.html")
1158 (synopsis "Asynchronous processing in Emacs")
1159 (description
1160 "This package provides the ability to call asynchronous functions and
1161 processes. For example, it can be used to run dired commands (for copying,
1162 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1163 as a library for other Emacs packages.")
1164 (license license:gpl3+)))
1165
1166 (define-public emacs-auctex
1167 (package
1168 (name "emacs-auctex")
1169 (version "12.1.0")
1170 (source
1171 (origin
1172 (method url-fetch)
1173 (uri (string-append
1174 "https://elpa.gnu.org/packages/auctex-"
1175 version
1176 ".tar"))
1177 (sha256
1178 (base32
1179 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1180 (build-system emacs-build-system)
1181 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1182 ;; ('emacs-minimal' does not provide dbus).
1183 (arguments
1184 `(#:emacs ,emacs
1185 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1186 #:exclude '("^tests/" "^latex/README")))
1187 (native-inputs
1188 `(("perl" ,perl)))
1189 (home-page "https://www.gnu.org/software/auctex/")
1190 (synopsis "Integrated environment for TeX")
1191 (description
1192 "AUCTeX is a comprehensive customizable integrated environment for
1193 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1194 or XEmacs.")
1195 (license license:gpl3+)))
1196
1197 (define-public emacs-autothemer
1198 (package
1199 (name "emacs-autothemer")
1200 (version "0.2.2")
1201 (source
1202 (origin
1203 (method url-fetch)
1204 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1205 version ".tar.gz"))
1206 (file-name (string-append name "-" version ".tar.gz"))
1207 (sha256
1208 (base32
1209 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1210 (build-system emacs-build-system)
1211 (propagated-inputs
1212 `(("emacs-dash" ,emacs-dash)))
1213 (home-page "https://github.com/sebastiansturm/autothemer")
1214 (synopsis "Conveniently create Emacs themes")
1215 (description
1216 "Autothemer provides a thin layer on top of @code{deftheme} and
1217 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1218 a set of simplified face specifications and a user-supplied color palette")
1219 (license license:gpl3+)))
1220
1221 (define-public emacs-calfw
1222 (package
1223 (name "emacs-calfw")
1224 (version "1.5")
1225 (source
1226 (origin
1227 (method url-fetch)
1228 (uri (string-append
1229 "https://github.com/kiwanami/emacs-calfw/archive/v"
1230 version ".tar.gz"))
1231 (file-name (string-append name "-" version ".tar.gz"))
1232 (sha256
1233 (base32
1234 "17ssg8gx66yp63nhygjq2r6kgl4h45cacmrxsxs9f0lrfcx37k0l"))))
1235 (build-system emacs-build-system)
1236 (home-page "https://github.com/kiwanami/emacs-calfw/")
1237 (synopsis "Calendar framework for Emacs")
1238 (description
1239 "This package displays a calendar view with various schedule data in the
1240 Emacs buffer.")
1241 (license license:gpl3+)))
1242
1243 (define-public emacs-direnv
1244 (package
1245 (name "emacs-direnv")
1246 (version "1.2.0")
1247 (source
1248 (origin
1249 (method url-fetch)
1250 (uri (string-append
1251 "https://github.com/wbolster/emacs-direnv/archive/"
1252 version ".tar.gz"))
1253 (file-name (string-append name "-" version ".tar.gz"))
1254 (sha256
1255 (base32
1256 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1257 (build-system emacs-build-system)
1258 (propagated-inputs
1259 `(("dash" ,emacs-dash)
1260 ("with-editor" ,emacs-with-editor)))
1261 (home-page "https://github.com/wbolster/emacs-direnv")
1262 (synopsis "Direnv integration for Emacs")
1263 (description
1264 "This package provides support for invoking direnv to get the environment
1265 for the current file and updating the environment within Emacs to match.
1266
1267 Direnv can be invoked manually, and a global minor mode is included that will
1268 update the environment when the active buffer changes.
1269
1270 Using emacs-direnv means that programs started from Emacs will use the
1271 environment set through Direnv.")
1272 (license license:gpl3+)))
1273
1274 (define-public emacs-ggtags
1275 (package
1276 (name "emacs-ggtags")
1277 (version "0.8.12")
1278 (source
1279 (origin
1280 (method url-fetch)
1281 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1282 version ".el"))
1283 (sha256
1284 (base32
1285 "0ny3llk021g6r0s75xdm4hzpbxv393ddm2r6f2xdk8kqnq4gnirp"))))
1286 (build-system emacs-build-system)
1287 (home-page "https://github.com/leoliu/ggtags")
1288 (synopsis "Frontend to the GNU Global source code tagging system")
1289 (description "@code{ggtags} provides a frontend to the GNU Global source
1290 code tagging system.
1291
1292 Features:
1293
1294 @itemize
1295 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1296 @item Automatically update Global's tag files when needed with tuning for
1297 large source trees.
1298 @item Intuitive navigation among multiple matches with mode-line display of
1299 current match, total matches and exit status.
1300 @item Read tag with completion.
1301 @item Show definition at point.
1302 @item Jump to #include files.
1303 @item Support search history and saving a search to register/bookmark.
1304 @item Query replace.
1305 @item Manage Global's environment variables on a per-project basis.
1306 @item Highlight (definition) tag at point.
1307 @item Abbreviated display of file names.
1308 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1309 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1310 @code{pygments} backend.
1311 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1312 @code{cscope} etc.
1313 @item Support projects on remote hosts (e.g. via @code{tramp}).
1314 @item Support eldoc.
1315 @item Search @code{GTAGSLIBPATH} for references and symbols.
1316 @end itemize\n")
1317 (license license:gpl3+)))
1318
1319 (define-public emacs-go-mode
1320 (package
1321 (name "emacs-go-mode")
1322 (version "1.5.0")
1323 (source (origin
1324 (method url-fetch)
1325 (uri (string-append "https://github.com/dominikh/go-mode.el/"
1326 "archive/v" version ".tar.gz"))
1327 (file-name (string-append name "-" version ".tar.gz"))
1328 (sha256
1329 (base32
1330 "1adngbjyb8qnwg7n6r2y31djw9j6qf3b9fi63zd85035q7x4ljnm"))))
1331 (build-system emacs-build-system)
1332 (home-page "https://github.com/dominikh/go-mode.el")
1333 (synopsis "Go mode for Emacs")
1334 (description
1335 "This package provides go-mode, an Emacs mode for working with software
1336 written in the Go programming language.")
1337 (license license:bsd-3)))
1338
1339 (define-public emacs-google-maps
1340 (package
1341 (name "emacs-google-maps")
1342 (version "1.0.0")
1343 (source (origin
1344 (method url-fetch)
1345 (uri (string-append "https://github.com/jd/google-maps.el/"
1346 "archive/" version ".tar.gz"))
1347 (file-name (string-append name "-" version ".tar.gz"))
1348 (sha256
1349 (base32
1350 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1351 (build-system emacs-build-system)
1352 (home-page "https://github.com/jd/google-maps.el")
1353 (synopsis "Access Google Maps from Emacs")
1354 (description "The @code{google-maps} package allows to display Google
1355 Maps directly inside Emacs.")
1356 (license license:gpl3+)))
1357
1358 (define-public emacs-graphviz-dot-mode
1359 (let ((commit "fdaabbcc95d9156e3dadc84f81a4750c5b692580")
1360 (revision "1"))
1361 (package
1362 (name "emacs-graphviz-dot-mode")
1363 (version (string-append "0.3.10-" revision "."
1364 (string-take commit 7)))
1365 (source (origin
1366 (method git-fetch)
1367 (uri (git-reference
1368 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1369 (commit commit)))
1370 (file-name (string-append name "-" version "-checkout"))
1371 (sha256
1372 (base32
1373 "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714"))))
1374 (build-system emacs-build-system)
1375 (arguments
1376 `(#:phases
1377 (modify-phases %standard-phases
1378 (add-before 'install 'make-info
1379 (lambda* (#:key inputs #:allow-other-keys)
1380 (with-directory-excursion "texinfo"
1381 (substitute* "Makefile"
1382 (("\\/usr\\/bin\\/gzip")
1383 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1384 (zero?
1385 (system* "make"
1386 "clean"
1387 "info"
1388 (string-append "TEXINFODIR="
1389 (assoc-ref inputs "texinfo")
1390 "/bin"))))))
1391 (add-after 'install 'install-info
1392 (lambda* (#:key outputs #:allow-other-keys)
1393 (let* ((out (assoc-ref outputs "out"))
1394 (info (string-append out "/share/info")))
1395 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1396 #t))))))
1397 (native-inputs
1398 `(("texinfo" ,texinfo)
1399 ("gzip" ,gzip)))
1400 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1401 (synopsis "Major mode for editing Graphviz Dot files")
1402 (description
1403 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1404 files using the dot syntax, and use Graphviz to convert these files to
1405 diagrams.")
1406 (license license:gpl2+))))
1407
1408 (define-public emacs-mmm-mode
1409 (package
1410 (name "emacs-mmm-mode")
1411 (version "0.5.5")
1412 (source
1413 (origin
1414 (method url-fetch)
1415 (uri (string-append
1416 "https://github.com/purcell/mmm-mode/archive/"
1417 version ".tar.gz"))
1418 (file-name (string-append name "-" version ".tar.gz"))
1419 (sha256
1420 (base32
1421 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
1422 (build-system gnu-build-system)
1423 (arguments
1424 '(#:phases
1425 (modify-phases %standard-phases
1426 (add-after 'unpack 'autogen
1427 (lambda _
1428 (zero? (system* "sh" "autogen.sh")))))))
1429 (native-inputs
1430 `(("autoconf" ,autoconf)
1431 ("automake" ,automake)
1432 ("emacs" ,emacs-minimal)
1433 ("texinfo" ,texinfo)))
1434 (home-page "https://github.com/purcell/mmm-mode")
1435 (synopsis "Allow multiple major modes in an Emacs buffer")
1436 (description
1437 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1438 single buffer.")
1439 (license license:gpl3+)))
1440
1441 (define-public emacs-tablist
1442 (package
1443 (name "emacs-tablist")
1444 (version "0.70")
1445 (source (origin
1446 (method url-fetch)
1447 (uri (string-append
1448 "https://github.com/politza/tablist/archive/v"
1449 version ".tar.gz"))
1450 (file-name (string-append name "-" version ".tar.gz"))
1451 (sha256
1452 (base32
1453 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1454 (build-system emacs-build-system)
1455 (home-page "https://github.com/politza/tablist")
1456 (synopsis "Extension for @code{tabulated-list-mode}")
1457 (description "Tablist is the Emacs package that provides several
1458 additional features to @code{tabulated-list-mode}: it adds marks,
1459 filters, new key bindings and faces. It can be enabled by
1460 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1461 (license license:gpl3+)))
1462
1463 (define-public emacs-pdf-tools
1464 (package
1465 (name "emacs-pdf-tools")
1466 (version "0.80")
1467 (source (origin
1468 (method url-fetch)
1469 (uri (string-append
1470 "https://github.com/politza/pdf-tools/archive/v"
1471 version ".tar.gz"))
1472 (file-name (string-append name "-" version ".tar.gz"))
1473 (sha256
1474 (base32
1475 "06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
1476 (build-system gnu-build-system)
1477 (arguments
1478 `(#:tests? #f ; there are no tests
1479 #:modules ((guix build gnu-build-system)
1480 ((guix build emacs-build-system) #:prefix emacs:)
1481 (guix build utils)
1482 (guix build emacs-utils))
1483 #:imported-modules (,@%gnu-build-system-modules
1484 (guix build emacs-build-system)
1485 (guix build emacs-utils))
1486 #:phases
1487 (modify-phases %standard-phases
1488 ;; Build server side using 'gnu-build-system'.
1489 (add-after 'unpack 'enter-server-dir
1490 (lambda _ (chdir "server") #t))
1491 (add-after 'enter-server-dir 'autogen
1492 (lambda _
1493 (zero? (system* "bash" "autogen.sh"))))
1494
1495 ;; Build emacs side using 'emacs-build-system'.
1496 (add-after 'compress-documentation 'enter-lisp-dir
1497 (lambda _ (chdir "../lisp") #t))
1498 (add-after 'enter-lisp-dir 'emacs-patch-variables
1499 (lambda* (#:key outputs #:allow-other-keys)
1500 ;; Set path to epdfinfo program.
1501 (emacs-substitute-variables "pdf-info.el"
1502 ("pdf-info-epdfinfo-program"
1503 (string-append (assoc-ref outputs "out")
1504 "/bin/epdfinfo")))
1505 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1506 ;; upgrading" that pdf-tools tries to perform.
1507 (emacs-substitute-variables "pdf-tools.el"
1508 ("pdf-tools-handle-upgrades" '()))))
1509 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1510 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1511 (add-after 'emacs-set-emacs-load-path 'emacs-install
1512 (assoc-ref emacs:%standard-phases 'install))
1513 (add-after 'emacs-install 'emacs-build
1514 (assoc-ref emacs:%standard-phases 'build))
1515 (add-after 'emacs-install 'emacs-make-autoloads
1516 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1517 (native-inputs `(("autoconf" ,autoconf)
1518 ("automake" ,automake)
1519 ("pkg-config" ,pkg-config)
1520 ("emacs" ,emacs-minimal)))
1521 (inputs `(("poppler" ,poppler)
1522 ("cairo" ,cairo)
1523 ("glib" ,glib)
1524 ("libpng" ,libpng)
1525 ("zlib" ,zlib)))
1526 (propagated-inputs `(("tablist" ,emacs-tablist)))
1527 (synopsis "Emacs support library for PDF files")
1528 (description
1529 "PDF Tools is, among other things, a replacement of DocView for PDF
1530 files. The key difference is that pages are not pre-rendered by
1531 e.g. ghostscript and stored in the file-system, but rather created on-demand
1532 and stored in memory.")
1533 (home-page "https://github.com/politza/pdf-tools")
1534 (license license:gpl3+)))
1535
1536 (define-public emacs-dash
1537 (package
1538 (name "emacs-dash")
1539 (version "2.13.0")
1540 (source (origin
1541 (method url-fetch)
1542 (uri (string-append
1543 "https://github.com/magnars/dash.el/archive/"
1544 version ".tar.gz"))
1545 (file-name (string-append name "-" version ".tar.gz"))
1546 (sha256
1547 (base32
1548 "1pjlkrzr8n45bnp3xs3dybvy0nz3gwamrfc7vsi1nhpkkw99ihhb"))))
1549 (build-system emacs-build-system)
1550 (arguments
1551 `(#:tests? #t
1552 #:test-command '("./run-tests.sh")))
1553 (home-page "https://github.com/magnars/dash.el")
1554 (synopsis "Modern list library for Emacs")
1555 (description "This package provides a modern list API library for Emacs.")
1556 (license license:gpl3+)))
1557
1558 (define-public emacs-bui
1559 (package
1560 (name "emacs-bui")
1561 (version "1.1.0")
1562 (source (origin
1563 (method url-fetch)
1564 (uri (string-append
1565 "https://github.com/alezost/bui.el/archive/v"
1566 version ".tar.gz"))
1567 (file-name (string-append name "-" version ".tar.gz"))
1568 (sha256
1569 (base32
1570 "112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
1571 (build-system emacs-build-system)
1572 (propagated-inputs
1573 `(("dash" ,emacs-dash)))
1574 (home-page "https://github.com/alezost/bui.el")
1575 (synopsis "Buffer interface library for Emacs")
1576 (description
1577 "BUI (Buffer User Interface) is a library for making @code{list} and
1578 @code{info} interfaces to display an arbitrary data of the same
1579 type, for example: packages, buffers, files, etc.")
1580 (license license:gpl3+)))
1581
1582 (define-public emacs-guix
1583 (package
1584 (name "emacs-guix")
1585 (version "0.3.4")
1586 (source (origin
1587 (method url-fetch)
1588 (uri (string-append "https://github.com/alezost/guix.el"
1589 "/releases/download/v" version
1590 "/emacs-guix-" version ".tar.gz"))
1591 (sha256
1592 (base32
1593 "152zf9vkafmnnf7by5armg165npznb961csgnvr8iwdj3smvivjf"))))
1594 (build-system gnu-build-system)
1595 (arguments
1596 `(#:configure-flags
1597 (let ((guix (assoc-ref %build-inputs "guix"))
1598 (geiser (assoc-ref %build-inputs "geiser"))
1599 (dash (assoc-ref %build-inputs "dash"))
1600 (bui (assoc-ref %build-inputs "bui"))
1601 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1602 (site-lisp "/share/emacs/site-lisp"))
1603 (list (string-append "--with-guix-site-dir="
1604 (car (find-files (string-append guix
1605 "/share/guile/site")
1606 (lambda (file stat)
1607 (string-prefix?
1608 "2."
1609 (basename file)))
1610 #:directories? #t)))
1611 (string-append "--with-guix-site-ccache-dir="
1612 (car (find-files (string-append guix "/lib/guile")
1613 (lambda (file stat)
1614 (string-prefix?
1615 "2." (basename file)))
1616 #:directories? #t))
1617 "/site-ccache")
1618 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1619 (string-append "--with-dash-lispdir="
1620 dash site-lisp "/guix.d/dash-"
1621 ,(package-version emacs-dash))
1622 (string-append "--with-bui-lispdir="
1623 bui site-lisp "/guix.d/bui-"
1624 ,(package-version emacs-bui))
1625 (string-append "--with-popup-lispdir="
1626 magit-popup site-lisp "/guix.d/magit-popup-"
1627 ,(package-version emacs-magit-popup))))))
1628 (native-inputs
1629 `(("pkg-config" ,pkg-config)
1630 ("emacs" ,emacs-minimal)))
1631 (inputs
1632 `(("guile" ,guile-2.2)
1633 ("guix" ,guix)))
1634 (propagated-inputs
1635 `(("geiser" ,geiser)
1636 ("dash" ,emacs-dash)
1637 ("bui" ,emacs-bui)
1638 ("magit-popup" ,emacs-magit-popup)))
1639 (home-page "https://alezost.github.io/guix.el/")
1640 (synopsis "Emacs interface for GNU Guix")
1641 (description
1642 "Emacs-Guix provides a visual interface, tools and features for the GNU
1643 Guix package manager. Particularly, it allows you to do various package
1644 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1645 @code{M-x guix-help} command.")
1646 (license license:gpl3+)))
1647
1648 (define-public emacs-d-mode
1649 (package
1650 (name "emacs-d-mode")
1651 (version "2.0.8")
1652 (source (origin
1653 (method url-fetch)
1654 (uri (string-append
1655 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1656 "archive/" version ".tar.gz"))
1657 (file-name (string-append name "-" version ".tar.gz"))
1658 (sha256
1659 (base32
1660 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0"))))
1661 (build-system emacs-build-system)
1662 (propagated-inputs
1663 `(("emacs-undercover" ,emacs-undercover)))
1664 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1665 (synopsis "Emacs major mode for editing D code")
1666 (description "This package provides an Emacs major mode for highlighting
1667 code written in the D programming language. This mode is currently known to
1668 work with Emacs 24 and 25.")
1669 (license license:gpl2+)))
1670
1671 (define-public emacs-keyfreq
1672 (package
1673 (name "emacs-keyfreq")
1674 (version "20160516.716")
1675 (source
1676 (origin
1677 (method url-fetch)
1678 (uri (string-append "http://melpa.org/packages/keyfreq-"
1679 version ".el"))
1680 (sha256
1681 (base32
1682 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1683 (build-system emacs-build-system)
1684 (home-page "https://github.com/dacap/keyfreq")
1685 (synopsis "Track Emacs command frequencies")
1686 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1687 a command.")
1688 (license license:gpl3+)))
1689
1690 (define-public emacs-olivetti
1691 (package
1692 (name "emacs-olivetti")
1693 (version "1.5.7")
1694 (source (origin
1695 (method url-fetch)
1696 (uri (string-append
1697 "https://stable.melpa.org/packages/olivetti-"
1698 version ".el"))
1699 (sha256
1700 (base32
1701 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1702 (build-system emacs-build-system)
1703 (home-page "https://github.com/rnkn/olivetti")
1704 (synopsis "Emacs minor mode for a nice writing environment")
1705 (description "This package provides an Emacs minor mode that puts writing
1706 in the center.")
1707 (license license:gpl3+)))
1708
1709 (define-public emacs-undo-tree
1710 (package
1711 (name "emacs-undo-tree")
1712 (version "0.6.6")
1713 (source (origin
1714 (method git-fetch)
1715 (uri (git-reference
1716 (url "http://dr-qubit.org/git/undo-tree.git")
1717 (commit (string-append "release/" version))))
1718 (file-name (string-append name "-" version "-checkout"))
1719 (sha256
1720 (base32
1721 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1722 (build-system emacs-build-system)
1723 (home-page "http://www.dr-qubit.org/emacs.php")
1724 (synopsis "Treat undo history as a tree")
1725 (description "Tree-like interface to Emacs undo system, providing
1726 graphical tree presentation of all previous states of buffer that
1727 allows easily move between them.")
1728 (license license:gpl3+)))
1729
1730 (define-public emacs-s
1731 (package
1732 (name "emacs-s")
1733 (version "1.12.0")
1734 (source (origin
1735 (method url-fetch)
1736 (uri (string-append
1737 "https://github.com/magnars/s.el/archive/"
1738 version ".tar.gz"))
1739 (file-name (string-append name "-" version ".tar.gz"))
1740 (sha256
1741 (base32
1742 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1743 (build-system emacs-build-system)
1744 (arguments
1745 `(#:tests? #t
1746 #:test-command '("./run-tests.sh")))
1747 (home-page "https://github.com/magnars/s.el")
1748 (synopsis "Emacs string manipulation library")
1749 (description "This package provides an Emacs library for manipulating
1750 strings.")
1751 (license license:gpl3+)))
1752
1753 (define-public emacs-symon
1754 (package
1755 (name "emacs-symon")
1756 (version "20160630")
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1761 version ".tar.gz"))
1762 (file-name (string-append name "-" version ".tar.gz"))
1763 (sha256
1764 (base32
1765 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1766 (build-system emacs-build-system)
1767 (home-page "https://github.com/zk-phi/symon")
1768 (synopsis "Tiny graphical system monitor")
1769 (description
1770 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1771 (license license:gpl2+)))
1772
1773 (define-public emacs-sx
1774 (let ((version "20180212")
1775 (revision "1")
1776 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1777 (package
1778 (name "emacs-sx")
1779 (version (git-version version revision commit))
1780 (source
1781 (origin
1782 (method git-fetch)
1783 (uri (git-reference
1784 (url "https://github.com/vermiculus/sx.el")
1785 (commit commit)))
1786 (file-name (git-file-name name version))
1787 (sha256
1788 (base32
1789 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1790 (build-system emacs-build-system)
1791 (propagated-inputs
1792 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1793 (home-page "https://github.com/vermiculus/sx.el")
1794 (synopsis "Emacs StackExchange client")
1795 (description
1796 "Emacs StackExchange client. Ask and answer questions on
1797 Stack Overflow, Super User, and other StackExchange sites.")
1798 (license license:gpl3+))))
1799
1800 (define-public emacs-f
1801 (package
1802 (name "emacs-f")
1803 (version "0.19.0")
1804 (source (origin
1805 (method url-fetch)
1806 (uri (string-append
1807 "https://github.com/rejeep/f.el/archive/v"
1808 version ".tar.gz"))
1809 (file-name (string-append name "-" version ".tar.gz"))
1810 (sha256
1811 (base32
1812 "05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs"))))
1813 (build-system emacs-build-system)
1814 (propagated-inputs
1815 `(("emacs-s" ,emacs-s)
1816 ("emacs-dash" ,emacs-dash)))
1817 (home-page "https://github.com/rejeep/f.el")
1818 (synopsis "Emacs API for working with files and directories")
1819 (description "This package provides an Emacs library for working with
1820 files and directories.")
1821 (license license:gpl3+)))
1822
1823 (define-public emacs-git-gutter
1824 (package
1825 (name "emacs-git-gutter")
1826 (version "0.90")
1827 (source (origin
1828 (method url-fetch)
1829 (uri (string-append
1830 "https://github.com/syohex/" name "/archive/"
1831 version ".tar.gz"))
1832 (file-name (string-append name "-" version ".tar.gz"))
1833 (sha256
1834 (base32
1835 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1836 (build-system emacs-build-system)
1837 (home-page "https://github.com/syohex/emacs-git-gutter")
1838 (synopsis "See and manage hunks of text in a version control system")
1839 (description
1840 "This package is an Emacs minor mode for displaying and interacting with
1841 hunks of text managed in a version control system. Added modified and deleted
1842 areas can be indicated with symbols on the edge of the buffer, and commands
1843 can be used to move between and perform actions on these hunks.
1844
1845 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1846 display and behaviour is easily customisable.")
1847 (license license:gpl3+)))
1848
1849 (define-public emacs-git-timemachine
1850 (package
1851 (name "emacs-git-timemachine")
1852 (version "3.0")
1853 (source
1854 (origin
1855 (method url-fetch)
1856 (uri (string-append "https://github.com/pidu/git-timemachine/"
1857 "archive/" version ".tar.gz"))
1858 (file-name (string-append name "-" version ".tar.gz"))
1859 (sha256
1860 (base32
1861 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa"))))
1862 (build-system emacs-build-system)
1863 (home-page "https://github.com/pidu/git-timemachine")
1864 (synopsis "Step through historic versions of Git-controlled files")
1865 (description "This package enables you to step through historic versions
1866 of files under Git version control from within Emacs.")
1867 (license license:gpl3+)))
1868
1869 (define-public emacs-minitest
1870 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1871 (revision "1"))
1872 (package
1873 (name "emacs-minitest")
1874 (version (git-version "0.8.0" revision commit))
1875 (source (origin
1876 (method git-fetch)
1877 (uri (git-reference
1878 (url "https://github.com/arthurnn/minitest-emacs")
1879 (commit commit)))
1880 (file-name (git-file-name name commit))
1881 (sha256
1882 (base32
1883 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1884 (build-system emacs-build-system)
1885 (arguments
1886 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1887 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1888 (propagated-inputs
1889 `(("emacs-dash" ,emacs-dash)
1890 ("emacs-f" ,emacs-f)))
1891 (home-page "https://github.com/arthurnn/minitest-emacs")
1892 (synopsis "Emacs minitest mode")
1893 (description
1894 "The minitest mode provides commands to run the tests for the current
1895 file or line, as well as rerunning the previous tests, or all the tests for a
1896 project.
1897
1898 This package also includes relevant snippets for yasnippet.")
1899 (license license:expat))))
1900
1901 (define-public emacs-el-mock
1902 (package
1903 (name "emacs-el-mock")
1904 (version "1.25.1")
1905 (source
1906 (origin
1907 (method url-fetch)
1908 (uri (string-append "https://github.com/rejeep/el-mock.el/"
1909 "archive/v" version ".tar.gz"))
1910 (file-name (string-append name "-" version ".tar.gz"))
1911 (sha256
1912 (base32
1913 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
1914 (build-system emacs-build-system)
1915 (home-page "https://github.com/rejeep/el-mock.el")
1916 (synopsis "Tiny mock and stub framework in Emacs Lisp")
1917 (description
1918 "Emacs Lisp Mock is a library for mocking and stubbing using readable
1919 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
1920 Expectations, but it can be used in other contexts.")
1921 (license license:gpl3+)))
1922
1923 (define-public emacs-espuds
1924 (package
1925 (name "emacs-espuds")
1926 (version "0.3.3")
1927 (source
1928 (origin
1929 (method url-fetch)
1930 (uri (string-append "https://github.com/ecukes/espuds/"
1931 "archive/v" version ".tar.gz"))
1932 (file-name (string-append name "-" version ".tar.gz"))
1933 (sha256
1934 (base32
1935 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
1936 (build-system emacs-build-system)
1937 (propagated-inputs
1938 `(("emacs-s" ,emacs-s)
1939 ("emacs-dash" ,emacs-dash)
1940 ("emacs-f" ,emacs-f)))
1941 (home-page "https://github.com/ecukes/espuds")
1942 (synopsis "Common step definitions for Ecukes")
1943 (description "Espuds is a collection of the most commonly used step
1944 definitions for testing with the Ecukes framework.")
1945 (license license:gpl3+)))
1946
1947 (define-public emacs-spark
1948 (let ((version "20160503") ; no proper tag, use date of commit
1949 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
1950 (revision "1"))
1951 (package
1952 (name "emacs-spark")
1953 (version (git-version version revision commit))
1954 (source
1955 (origin
1956 (method git-fetch)
1957 (uri (git-reference
1958 (url "https://github.com/alvinfrancis/spark.git")
1959 (commit commit)))
1960 (file-name (git-file-name name version))
1961 (sha256
1962 (base32
1963 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
1964 (build-system emacs-build-system)
1965 (home-page "https://github.com/alvinfrancis/spark")
1966 (synopsis "Sparkline generation library for Emacs Lisp")
1967 (description "@code{emacs-spark} is a sparkline generation library for
1968 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
1969 port of @code{cl-spark} to Emacs Lisp.")
1970 (license license:expat))))
1971
1972 (define-public emacs-es-mode
1973 (package
1974 (name "emacs-es-mode")
1975 (version "4.3.0")
1976 (source (origin
1977 (method url-fetch)
1978 (uri (string-append
1979 "https://github.com/dakrone/es-mode/archive/"
1980 version ".tar.gz"))
1981 (file-name (string-append name "-" version ".tar.gz"))
1982 (sha256
1983 (base32
1984 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
1985 (build-system emacs-build-system)
1986 (propagated-inputs
1987 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
1988 ;; to be rendered incorrectly
1989 `(("emacs-dash" ,emacs-dash)
1990 ("emacs-org" ,emacs-org)
1991 ("emacs-spark" ,emacs-spark)))
1992 (home-page "https://github.com/dakrone/es-mode")
1993 (synopsis "Major mode for editing Elasticsearch queries")
1994 (description "@code{es-mode} includes highlighting, completion and
1995 indentation support for Elasticsearch queries. Also supported are
1996 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
1997 be processed through @code{jq}, or in the case of aggregations, can be
1998 rendered in to a table. In addition, there is an @code{es-command-center}
1999 mode, which displays information about Elasticsearch clusters.")
2000 (license license:gpl3+)))
2001
2002 (define-public emacs-expand-region
2003 (package
2004 (name "emacs-expand-region")
2005 (version "0.11.0")
2006 (source
2007 (origin
2008 (method url-fetch)
2009 (uri (string-append "https://github.com/magnars/expand-region.el"
2010 "/archive/" version ".tar.gz"))
2011 (file-name (string-append name "-" version ".tar.gz"))
2012 (sha256
2013 (base32
2014 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
2015 (build-system emacs-build-system)
2016 (home-page "https://github.com/magnars/expand-region.el")
2017 (synopsis "Increase selected region by semantic units")
2018 (description
2019 "Expand region increases the selected region by semantic units. Just
2020 keep pressing the key until it selects what you want. There's also
2021 @code{er/contract-region} if you expand too far.")
2022 (license license:gpl3+)))
2023
2024 (define-public emacs-fill-column-indicator
2025 (package
2026 (name "emacs-fill-column-indicator")
2027 (version "1.81")
2028 (source
2029 (origin
2030 (method url-fetch)
2031 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2032 "/archive/v" version ".tar.gz"))
2033 (file-name (string-append name "-" version ".tar.gz"))
2034 (sha256
2035 (base32
2036 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
2037 (build-system emacs-build-system)
2038 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2039 (synopsis "Graphically indicate the fill column")
2040 (description
2041 "Fill-column-indicator graphically indicates the location of the fill
2042 column by drawing a thin line down the length of the editing window.")
2043 (license license:gpl3+)))
2044
2045 (define-public emacs-grep-a-lot
2046 (package
2047 (name "emacs-grep-a-lot")
2048 (version "1.0.7")
2049 (source (origin
2050 (method git-fetch)
2051 (uri (git-reference
2052 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2053 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2054 (file-name (string-append name "-" version "-checkout"))
2055 (sha256
2056 (base32
2057 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2058 (build-system emacs-build-system)
2059 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2060 (synopsis "Enables multiple grep buffers in Emacs")
2061 (description
2062 "This Emacs package allows managing multiple grep buffers.")
2063 (license license:gpl3+)))
2064
2065 (define-public emacs-inf-ruby
2066 (package
2067 (name "emacs-inf-ruby")
2068 (version "2.5.1")
2069 (source
2070 (origin
2071 (method url-fetch)
2072 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2073 "archive/" version ".tar.gz"))
2074 (file-name (string-append name "-" version ".tar.gz"))
2075 (sha256
2076 (base32
2077 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2078 (build-system emacs-build-system)
2079 (home-page "https://github.com/nonsequitur/inf-ruby")
2080 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2081 (description
2082 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2083 for easy interaction with a ruby subprocess. Features include support for
2084 detecting specific uses of Ruby, e.g. when using rails, and using a
2085 appropriate console.")
2086 (license license:gpl3+)))
2087
2088 (define-public emacs-znc
2089 (package
2090 (name "emacs-znc")
2091 (version "0.0.2")
2092 (source
2093 (origin
2094 (method url-fetch)
2095 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2096 version ".el"))
2097 (sha256
2098 (base32
2099 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2100 (build-system emacs-build-system)
2101 (home-page "https://github.com/sshirokov/ZNC.el")
2102 (synopsis "Make ERC and ZNC get along better")
2103 (description
2104 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2105 IRC bouncer with ERC.")
2106 (license license:expat)))
2107
2108 (define-public emacs-shut-up
2109 (package
2110 (name "emacs-shut-up")
2111 (version "0.3.2")
2112 (source
2113 (origin
2114 (method url-fetch)
2115 (uri (string-append "https://github.com/cask/shut-up/"
2116 "archive/v" version ".tar.gz"))
2117 (file-name (string-append name "-" version ".tar.gz"))
2118 (sha256
2119 (base32
2120 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2121 (build-system emacs-build-system)
2122 (home-page "https://github.com/cask/shut-up")
2123 (synopsis "Silence Emacs")
2124 (description "This package silences most output of Emacs when running an
2125 Emacs shell script.")
2126 (license license:expat)))
2127
2128 (define-public emacs-undercover
2129 (package
2130 (name "emacs-undercover")
2131 (version "0.6.0")
2132 (source
2133 (origin
2134 (method url-fetch)
2135 (uri (string-append "https://github.com/sviridov/undercover.el/"
2136 "archive/v" version ".tar.gz"))
2137 (file-name (string-append name "-" version ".tar.gz"))
2138 (sha256
2139 (base32
2140 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2141 (build-system emacs-build-system)
2142 (propagated-inputs
2143 `(("emacs-dash" ,emacs-dash)
2144 ("emacs-shut-up" ,emacs-shut-up)))
2145 (home-page "https://github.com/sviridov/undercover.el")
2146 (synopsis "Test coverage library for Emacs Lisp")
2147 (description
2148 "Undercover is a test coverage library for software written in Emacs
2149 Lisp.")
2150 (license license:expat)))
2151
2152 (define-public emacs-paren-face
2153 (package
2154 (name "emacs-paren-face")
2155 (version "1.0.0")
2156 (source
2157 (origin
2158 (method url-fetch)
2159 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2160 version ".tar.gz"))
2161 (file-name (string-append name "-" version ".tar.gz"))
2162 (sha256
2163 (base32
2164 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2165 (build-system emacs-build-system)
2166 (home-page "https://github.com/tarsius/paren-face")
2167 (synopsis "Face for parentheses in lisp modes")
2168 (description
2169 "This library defines a face named @code{parenthesis} used just for
2170 parentheses. The intended purpose of this face is to make parentheses less
2171 visible in Lisp code by dimming them. Lispers probably don't need to be
2172 constantly made aware of the existence of the parentheses. Dimming them might
2173 be even more useful for people new to lisp who have not yet learned to
2174 subconsciously blend out the parentheses.")
2175 (license license:gpl3+)))
2176
2177 (define-public emacs-page-break-lines
2178 (package
2179 (name "emacs-page-break-lines")
2180 (version "0.11")
2181 (source
2182 (origin
2183 (method url-fetch)
2184 (uri (string-append "https://github.com/purcell/page-break-lines/"
2185 "archive/" version ".tar.gz"))
2186 (file-name (string-append name "-" version ".tar.gz"))
2187 (sha256
2188 (base32
2189 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2190 (build-system emacs-build-system)
2191 (home-page "https://github.com/purcell/page-break-lines")
2192 (synopsis "Display page breaks as tidy horizontal lines")
2193 (description
2194 "This library provides a global mode which displays form feed characters
2195 as horizontal rules.")
2196 (license license:gpl3+)))
2197
2198 (define-public emacs-simple-httpd
2199 (package
2200 (name "emacs-simple-httpd")
2201 (version "1.4.6")
2202 (source
2203 (origin
2204 (method url-fetch)
2205 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2206 "archive/" version ".tar.gz"))
2207 (file-name (string-append name "-" version ".tar.gz"))
2208 (sha256
2209 (base32
2210 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2211 (build-system emacs-build-system)
2212 (home-page "https://github.com/skeeto/emacs-http-server")
2213 (synopsis "HTTP server in pure Emacs Lisp")
2214 (description
2215 "This package provides a simple HTTP server written in Emacs Lisp to
2216 serve files and directory listings.")
2217 (license license:unlicense)))
2218
2219 (define-public emacs-skewer-mode
2220 (package
2221 (name "emacs-skewer-mode")
2222 (version "1.6.2")
2223 (source
2224 (origin
2225 (method url-fetch)
2226 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2227 version ".tar.gz"))
2228 (file-name (string-append name "-" version ".tar.gz"))
2229 (sha256
2230 (base32
2231 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2232 (build-system emacs-build-system)
2233 (propagated-inputs
2234 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2235 ("emacs-js2-mode" ,emacs-js2-mode)))
2236 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2237 (home-page "https://github.com/skeeto/skewer-mode")
2238 (synopsis "Live web development in Emacs")
2239 (description
2240 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2241 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2242 evaluated in the browser, just like Emacs does with an inferior Lisp process
2243 in Lisp modes.")
2244 (license license:unlicense)))
2245
2246 (define-public emacs-string-inflection
2247 (package
2248 (name "emacs-string-inflection")
2249 (version "1.0.6")
2250 (source (origin
2251 (method git-fetch)
2252 (uri (git-reference
2253 (url "https://github.com/akicho8/string-inflection")
2254 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2255 (file-name (string-append name "-" version "-checkout"))
2256 (sha256
2257 (base32
2258 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2259 (build-system emacs-build-system)
2260 (native-inputs
2261 `(("ert-runner" ,ert-runner)))
2262 (arguments
2263 `(#:tests? #t
2264 #:test-command '("ert-runner")))
2265 (home-page "https://github.com/akicho8/string-inflection")
2266 (synopsis "Convert symbol names between different naming conventions")
2267 (description
2268 "This Emacs package provides convenient methods for manipulating the
2269 naming style of a symbol. It supports different naming conventions such as:
2270
2271 @enumerate
2272 @item camel case
2273 @item Pascal case
2274 @item all upper case
2275 @item lower case separated by underscore
2276 @item etc...
2277 @end enumerate\n")
2278 (license license:gpl2+)))
2279
2280 (define-public emacs-stripe-buffer
2281 (package
2282 (name "emacs-stripe-buffer")
2283 (version "0.2.5")
2284 (source
2285 (origin
2286 (method url-fetch)
2287 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2288 "archive/" version ".tar.gz"))
2289 (file-name (string-append name "-" version ".tar.gz"))
2290 (sha256
2291 (base32
2292 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2293 (build-system emacs-build-system)
2294 (home-page "https://github.com/sabof/stripe-buffer/")
2295 (synopsis "Add stripes to list buffers")
2296 (description
2297 "This Emacs package adds faces to add stripes to list buffers and org
2298 tables.")
2299 (license license:gpl2+)))
2300
2301 (define-public emacs-rich-minority
2302 (package
2303 (name "emacs-rich-minority")
2304 (version "1.0.1")
2305 (source
2306 (origin
2307 (method url-fetch)
2308 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2309 "archive/" version ".tar.gz"))
2310 (file-name (string-append name "-" version ".tar.gz"))
2311 (sha256
2312 (base32
2313 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2314 (build-system emacs-build-system)
2315 (home-page "https://github.com/Malabarba/rich-minority")
2316 (synopsis "Clean-up and beautify the list of minor modes")
2317 (description
2318 "This Emacs package hides and/or highlights minor modes in the
2319 mode-line.")
2320 (license license:gpl2+)))
2321
2322 (define-public emacs-robe
2323 (package
2324 (name "emacs-robe")
2325 (version "0.8.1")
2326 (source
2327 (origin
2328 (method url-fetch)
2329 (uri (string-append "https://github.com/dgutov/robe/"
2330 "archive/" version ".tar.gz"))
2331 (file-name (string-append name "-" version ".tar.gz"))
2332 (sha256
2333 (base32
2334 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2335 (build-system emacs-build-system)
2336 (arguments
2337 '(#:include (cons "^lib\\/" %default-include)))
2338 (propagated-inputs
2339 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2340 (home-page "https://github.com/dgutov/robe")
2341 (synopsis "Ruby code assistance tool for Emacs")
2342 (description
2343 "Robe can provide information on loaded classes and modules in Ruby code,
2344 as well as where methods are defined. This allows the user to jump to method
2345 definitions, modules and classes, display method documentation and provide
2346 method and constant name completion.")
2347 (license license:gpl3+)))
2348
2349 (define-public emacs-rspec
2350 (package
2351 (name "emacs-rspec")
2352 (version "1.11")
2353 (source
2354 (origin
2355 (method url-fetch)
2356 (uri (string-append "https://github.com/pezra/rspec-mode/"
2357 "archive/v" version ".tar.gz"))
2358 (file-name (string-append name "-" version ".tar.gz"))
2359 (sha256
2360 (base32
2361 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2362 (build-system emacs-build-system)
2363 (home-page "https://github.com/pezra/rspec-mode")
2364 (synopsis "Provides a rspec mode for working with RSpec")
2365 (description
2366 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2367 verify the spec associated with the current buffer, or entire project, as well
2368 as moving between the spec files, and coresponding code files.
2369
2370 Also included are keybindings for spec files and Dired buffers, as well as
2371 snippets for yasnippet.")
2372 (license license:gpl3+)))
2373
2374 (define-public emacs-smart-mode-line
2375 (package
2376 (name "emacs-smart-mode-line")
2377 (version "2.10.1")
2378 (source
2379 (origin
2380 (method url-fetch)
2381 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2382 "archive/" version ".tar.gz"))
2383 (file-name (string-append name "-" version ".tar.gz"))
2384 (sha256
2385 (base32
2386 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
2387 (build-system emacs-build-system)
2388 (propagated-inputs
2389 `(("emacs-rich-minority" ,emacs-rich-minority)))
2390 (home-page "https://github.com/Malabarba/smart-mode-line")
2391 (synopsis "Color-coded smart mode-line")
2392 (description
2393 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2394 read from small to large monitors by using colors, a prefix feature, and smart
2395 truncation.")
2396 (license license:gpl2+)))
2397
2398 (define-public emacs-sr-speedbar
2399 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2400 (revision "0"))
2401 (package
2402 (name "emacs-sr-speedbar")
2403 (version (git-version "20161025" revision commit))
2404 (source
2405 (origin
2406 (method git-fetch)
2407 (uri (git-reference
2408 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2409 (commit commit)))
2410 (file-name (git-file-name name version))
2411 (sha256
2412 (base32
2413 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2414 (build-system emacs-build-system)
2415 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2416 (synopsis "Same frame Emacs @code{speedbar}")
2417 (description
2418 "This Emacs package allows you to show @code{M-x speedbar} in the
2419 same frame (in an extra window). You can customize the initial width of
2420 the speedbar window.")
2421 (license license:gpl3+))))
2422
2423 (define-public emacs-shell-switcher
2424 (package
2425 (name "emacs-shell-switcher")
2426 (version "1.0.1")
2427 (source
2428 (origin
2429 (method url-fetch)
2430 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2431 "/archive/v" version ".tar.gz"))
2432 (file-name (string-append name "-" version ".tar.gz"))
2433 (sha256
2434 (base32
2435 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2436 (build-system emacs-build-system)
2437 (home-page "https://github.com/DamienCassou/shell-switcher")
2438 (synopsis "Provide fast switching between shell buffers")
2439 (description
2440 "This package provides commands to quickly switch between shell buffers.")
2441 (license license:gpl3+)))
2442
2443 (define-public emacs-ob-ipython
2444 (package
2445 (name "emacs-ob-ipython")
2446 (version "20150704.8807064693")
2447 (source (origin
2448 (method git-fetch)
2449 (uri (git-reference
2450 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2451 (url "https://github.com/gregsexton/ob-ipython.git")))
2452 (file-name (string-append name "-" version "-checkout"))
2453 (sha256
2454 (base32
2455 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2456 (build-system emacs-build-system)
2457 (propagated-inputs
2458 `(("emacs-f" ,emacs-f)))
2459 (home-page "http://www.gregsexton.org")
2460 (synopsis "Org-Babel functions for IPython evaluation")
2461 (description "This package adds support to Org-Babel for evaluating Python
2462 source code using IPython.")
2463 (license license:gpl3+)))
2464
2465 (define-public emacs-debbugs
2466 (package
2467 (name "emacs-debbugs")
2468 (version "0.15")
2469 (source (origin
2470 (method url-fetch)
2471 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2472 version ".tar"))
2473 (sha256
2474 (base32
2475 "1x7jw2ldgkknyxg7x9fhnqkary691icnysmi3xw0g2fjrvllzhqw"))))
2476 (build-system emacs-build-system)
2477 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2478 (propagated-inputs
2479 `(("emacs-async" ,emacs-async)))
2480 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2481 (synopsis "Access the Debbugs bug tracker in Emacs")
2482 (description
2483 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2484 Tracker} from within Emacs.
2485
2486 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2487 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2488 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2489 @code{M-x debbugs-org} and related commands.
2490
2491 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2492 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2493 (license license:gpl3+)))
2494
2495 (define-public emacs-ert-expectations
2496 (package
2497 (name "emacs-ert-expectations")
2498 (version "0.2")
2499 (source
2500 (origin
2501 (method url-fetch)
2502 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2503 (sha256
2504 (base32
2505 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2506 (build-system emacs-build-system)
2507 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2508 (synopsis "Simple unit test framework for Emacs Lisp")
2509 (description "@code{emacs-ert-expectations} is a simple unit test
2510 framework for Emacs Lisp to be used with @code{ert}.")
2511 (license license:gpl3+)))
2512
2513 (define-public emacs-deferred
2514 (package
2515 (name "emacs-deferred")
2516 (version "0.5.1")
2517 (home-page "https://github.com/kiwanami/emacs-deferred")
2518 (source (origin
2519 (method git-fetch)
2520 (uri (git-reference
2521 (url home-page)
2522 (commit (string-append "v" version))))
2523 (sha256
2524 (base32
2525 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2526 (file-name (string-append name "-" version))))
2527 (build-system emacs-build-system)
2528 (arguments
2529 `(#:phases
2530 (modify-phases %standard-phases
2531 (add-before 'check 'fix-makefile
2532 (lambda _
2533 (substitute* "Makefile"
2534 (("\\$\\(CASK\\) exec ") ""))
2535 #t)))
2536 #:tests? #t
2537 ;; FIXME: Normally we'd run the "test" target but for some reason the
2538 ;; test-deferred target fails when run in the Guix build environment
2539 ;; with the error: (file-error "Searching for program" "No such file or
2540 ;; directory" "/bin/sh").
2541 #:test-command '("make" "test-concurrent" "test-concurrent-compiled")))
2542 (native-inputs
2543 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2544 ("emacs-undercover" ,emacs-undercover)
2545 ("ert-runner" ,ert-runner)))
2546 (synopsis "Simple asynchronous functions for Emacs Lisp")
2547 (description
2548 "The @code{deferred.el} library provides support for asynchronous tasks.
2549 The API is almost the same as that of
2550 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2551 for asynchronous tasks.")
2552 (license license:gpl3+)))
2553
2554 (define-public butler
2555 (package
2556 (name "emacs-butler")
2557 (version "0.2.4")
2558 (home-page "https://github.com/AshtonKem/Butler")
2559 (source (origin
2560 (method git-fetch)
2561 (uri (git-reference
2562 (url home-page)
2563 (commit version)))
2564 (sha256
2565 (base32
2566 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2567 (file-name (string-append name "-" version))))
2568 (build-system emacs-build-system)
2569 (propagated-inputs
2570 `(("emacs-deferred" ,emacs-deferred)))
2571 (synopsis "Emacs client for Jenkins")
2572 (description
2573 "Butler provides an interface to connect to Jenkins continuous
2574 integration servers. Users can specify a list of server in the
2575 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2576 view the build status of those servers' build jobs, and possibly to trigger
2577 build jobs.")
2578 (license license:gpl3+)))
2579
2580 (define-public emacs-company
2581 (package
2582 (name "emacs-company")
2583 (version "0.9.3")
2584 (source
2585 (origin
2586 (method url-fetch)
2587 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2588 version ".tar.gz"))
2589 (file-name (string-append name "-" version ".tar.gz"))
2590 (sha256
2591 (base32
2592 "1fyrpchpdmvszssy1qmsw41aqpv6q5rybvs1bw00nv9xdhiaq4vh"))))
2593 (build-system emacs-build-system)
2594 (arguments
2595 `(#:phases
2596 (modify-phases %standard-phases
2597 (add-before 'check 'fix-bin-dir
2598 (lambda _
2599 ;; The company-files-candidates-normal-root test looks
2600 ;; for the /bin directory, but the build environment has
2601 ;; no /bin directory. Modify the test to look for the
2602 ;; /tmp directory.
2603 (substitute* "test/files-tests.el"
2604 (("/bin/") "/tmp/"))
2605 #t)))
2606 #:tests? #t
2607 #:test-command '("make" "test-batch")))
2608 (home-page "http://company-mode.github.io/")
2609 (synopsis "Modular text completion framework")
2610 (description
2611 "Company is a modular completion mechanism. Modules for retrieving
2612 completion candidates are called back-ends, modules for displaying them are
2613 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2614 These are distributed in separate files and can be used individually.")
2615 (license license:gpl3+)))
2616
2617 (define-public emacs-company-quickhelp
2618 (package
2619 (name "emacs-company-quickhelp")
2620 (version "2.3.0")
2621 (source
2622 (origin
2623 (method url-fetch)
2624 (uri (string-append
2625 "https://github.com/expez/company-quickhelp/archive/"
2626 version ".tar.gz"))
2627 (file-name (string-append name "-" version ".tar.gz"))
2628 (sha256
2629 (base32
2630 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2631 (build-system emacs-build-system)
2632 (propagated-inputs
2633 `(("emacs-pos-tip" ,emacs-pos-tip)
2634 ("emacs-company" ,emacs-company)))
2635 (home-page "https://github.com/expez/company-quickhelp")
2636 (synopsis "Popup documentation for completion candidates")
2637 (description "@code{company-quickhelp} shows documentation for the
2638 completion candidate when using the Company text completion framework.")
2639 (license license:gpl3+)))
2640
2641 (define-public emacs-multiple-cursors
2642 (package
2643 (name "emacs-multiple-cursors")
2644 (version "1.4.0")
2645 (source
2646 (origin
2647 (method url-fetch)
2648 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2649 "archive/" version ".tar.gz"))
2650 (file-name (string-append name "-" version ".tar.gz"))
2651 (sha256
2652 (base32
2653 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2654 (build-system emacs-build-system)
2655 (home-page "https://github.com/magnars/multiple-cursors.el")
2656 (synopsis "Multiple cursors for Emacs")
2657 (description
2658 "This package adds support to Emacs for editing text with multiple
2659 simultaneous cursors.")
2660 (license license:gpl3+)))
2661
2662 (define-public typo
2663 (package
2664 (name "emacs-typo")
2665 (version "1.1")
2666 (home-page "https://github.com/jorgenschaefer/typoel")
2667 (source (origin
2668 (method git-fetch)
2669 (uri (git-reference
2670 (url home-page)
2671 (commit (string-append "v" version))))
2672 (sha256
2673 (base32
2674 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2675 (file-name (string-append name "-" version))))
2676 (build-system emacs-build-system)
2677 (synopsis "Minor mode for typographic editing")
2678 (description
2679 "This package provides two Emacs modes, @code{typo-mode} and
2680 @code{typo-global-mode}. These modes automatically insert Unicode characters
2681 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2682 automatically inserts a Unicode opening or closing quotation mark, depending
2683 on context.")
2684 (license license:gpl3+)))
2685
2686 (define-public emacs-scheme-complete
2687 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2688 (package
2689 (name "emacs-scheme-complete")
2690 (version (string-append "20151223." (string-take commit 8)))
2691 (source
2692 (origin
2693 (file-name (string-append name "-" version))
2694 (method git-fetch)
2695 (uri (git-reference
2696 (url "https://github.com/ashinn/scheme-complete.git")
2697 (commit commit)))
2698 (sha256
2699 (base32
2700 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2701 (patches
2702 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2703 (build-system emacs-build-system)
2704 (home-page "https://github.com/ashinn/scheme-complete")
2705 (synopsis "Smart tab completion for Scheme in Emacs")
2706 (description
2707 "This file provides a single function, @code{scheme-smart-complete},
2708 which you can use for intelligent, context-sensitive completion for any Scheme
2709 implementation in Emacs. To use it just load this file and bind that function
2710 to a key in your preferred mode.")
2711 (license license:public-domain))))
2712
2713 (define-public emacs-mit-scheme-doc
2714 (package
2715 (name "emacs-mit-scheme-doc")
2716 (version "20140203")
2717 (source
2718 (origin
2719 (modules '((guix build utils)))
2720 (snippet
2721 ;; keep only file of interest
2722 '(begin
2723 (for-each delete-file '("dot-emacs.el" "Makefile"))
2724 (install-file "6.945-config/mit-scheme-doc.el" ".")
2725 (delete-file-recursively "6.945-config")))
2726 (file-name (string-append name "-" version ".tar.bz2"))
2727 (method url-fetch)
2728 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2729 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2730 (sha256
2731 (base32
2732 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2733 (build-system emacs-build-system)
2734 (inputs `(("mit-scheme" ,mit-scheme)))
2735 (arguments
2736 `(#:phases
2737 (modify-phases %standard-phases
2738 (add-after 'unpack 'configure-doc
2739 (lambda* (#:key inputs #:allow-other-keys)
2740 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2741 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2742 "mit-scheme-"
2743 ,(package-version mit-scheme))))
2744 (substitute* "mit-scheme-doc.el"
2745 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2746 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2747 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2748 (synopsis "MIT-Scheme documentation lookup for Emacs")
2749 (description
2750 "This package provides a set of Emacs functions to search definitions of
2751 identifiers in the MIT-Scheme documentation.")
2752 (license license:gpl2+)))
2753
2754 (define-public emacs-constants
2755 (package
2756 (name "emacs-constants")
2757 (version "2.6")
2758 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
2759 (source
2760 (origin
2761 (file-name (string-append name "-" version ".tar.gz"))
2762 (method url-fetch)
2763 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2764 "/archive/v" version ".tar.gz"))
2765 (sha256
2766 (base32
2767 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
2768 (build-system emacs-build-system)
2769 (synopsis "Enter definition of constants into an Emacs buffer")
2770 (description
2771 "This package provides functions for inserting the definition of natural
2772 constants and units into an Emacs buffer.")
2773 (license license:gpl2+)))
2774
2775 (define-public emacs-tagedit
2776 (package
2777 (name "emacs-tagedit")
2778 (version "1.4.0")
2779 (source
2780 (origin
2781 (method url-fetch)
2782 (uri (string-append "https://github.com/magnars/tagedit/"
2783 "archive/" version ".tar.gz"))
2784 (file-name (string-append name "-" version ".tar.gz"))
2785 (sha256
2786 (base32
2787 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2788 (build-system emacs-build-system)
2789 (propagated-inputs
2790 `(("emacs-s" ,emacs-s)
2791 ("emacs-dash" ,emacs-dash)))
2792 (home-page "https://github.com/magnars/tagedit")
2793 (synopsis "Some paredit-like features for html-mode")
2794 (description
2795 "This package provides a collection of paredit-like functions for editing
2796 in @code{html-mode}.")
2797 (license license:gpl3+)))
2798
2799 (define-public emacs-slime
2800 (package
2801 (name "emacs-slime")
2802 (version "2.20")
2803 (source
2804 (origin
2805 (file-name (string-append name "-" version ".tar.gz"))
2806 (method url-fetch)
2807 (uri (string-append
2808 "https://github.com/slime/slime/archive/v"
2809 version ".tar.gz"))
2810 (sha256
2811 (base32
2812 "086lq5y4pvj9wihy0si02xxvyzpzz8mcg3hz1cvy9zxlyjwzr1gk"))))
2813 (build-system emacs-build-system)
2814 (native-inputs
2815 `(("texinfo" ,texinfo)))
2816 (arguments
2817 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
2818 #:exclude '("^slime-tests.el" "^contrib/test/"
2819 "^contrib/Makefile$" "^contrib/README.md$")
2820 #:phases
2821 (modify-phases %standard-phases
2822 (add-before 'install 'configure
2823 (lambda* _
2824 (emacs-substitute-variables "slime.el"
2825 ("inferior-lisp-program" "sbcl"))
2826 #t))
2827 (add-before 'install 'install-doc
2828 (lambda* (#:key outputs #:allow-other-keys)
2829 (let* ((out (assoc-ref outputs "out"))
2830 (info-dir (string-append out "/share/info"))
2831 (doc-dir (string-append out "/share/doc/"
2832 ,name "-" ,version))
2833 (doc-files '("doc/slime-refcard.pdf"
2834 "README.md" "NEWS" "PROBLEMS"
2835 "CONTRIBUTING.md")))
2836 (with-directory-excursion "doc"
2837 (substitute* "Makefile"
2838 (("infodir=/usr/local/info")
2839 (string-append "infodir=" info-dir)))
2840 (system* "make" "html/index.html")
2841 (system* "make" "slime.info")
2842 (install-file "slime.info" info-dir)
2843 (copy-recursively "html" (string-append doc-dir "/html")))
2844 (for-each (lambda (f)
2845 (install-file f doc-dir)
2846 (delete-file f))
2847 doc-files)
2848 (delete-file-recursively "doc")
2849 #t))))))
2850 (home-page "https://github.com/slime/slime")
2851 (synopsis "Superior Lisp Interaction Mode for Emacs")
2852 (description
2853 "SLIME extends Emacs with support for interactive programming in
2854 Common Lisp. The features are centered around @command{slime-mode},
2855 an Emacs minor mode that complements the standard @command{lisp-mode}.
2856 While lisp-mode supports editing Lisp source files, @command{slime-mode}
2857 adds support for interacting with a running Common Lisp process
2858 for compilation, debugging, documentation lookup, and so on.")
2859 (license license:gpl2+)))
2860
2861 (define-public emacs-popup
2862 (package
2863 (name "emacs-popup")
2864 (version "0.5.3")
2865 (source (origin
2866 (method url-fetch)
2867 (uri (string-append
2868 "https://github.com/auto-complete/popup-el/archive/v"
2869 version ".tar.gz"))
2870 (file-name (string-append name "-" version ".tar.gz"))
2871 (sha256
2872 (base32
2873 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
2874 (build-system emacs-build-system)
2875 (home-page "https://github.com/auto-complete/popup-el")
2876 (synopsis "Visual Popup User Interface for Emacs")
2877 (description
2878 "Popup.el is a visual popup user interface library for Emacs.
2879 This provides a basic API and common UI widgets such as popup tooltips
2880 and popup menus.")
2881 (license license:gpl3+)))
2882
2883 (define-public emacs-god-mode
2884 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
2885 (revision "1"))
2886 (package
2887 (name "emacs-god-mode")
2888 (version (string-append "20151005.925."
2889 revision "-" (string-take commit 9)))
2890 (source
2891 (origin
2892 (method git-fetch)
2893 (uri (git-reference
2894 (url "https://github.com/chrisdone/god-mode.git")
2895 (commit commit)))
2896 (file-name (string-append name "-" version "-checkout"))
2897 (sha256
2898 (base32
2899 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
2900 (build-system emacs-build-system)
2901 (home-page "https://github.com/chrisdone/god-mode")
2902 (synopsis "Minor mode for entering commands without modifier keys")
2903 (description
2904 "This package provides a global minor mode for entering Emacs commands
2905 without modifier keys. It's similar to Vim's separation of commands and
2906 insertion mode. When enabled all keys are implicitly prefixed with
2907 @samp{C-} (among other helpful shortcuts).")
2908 (license license:gpl3+))))
2909
2910 (define-public emacs-jinja2-mode
2911 (package
2912 (name "emacs-jinja2-mode")
2913 (version "0.2")
2914 (source
2915 (origin
2916 (method url-fetch)
2917 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
2918 "archive/v" version ".tar.gz"))
2919 (file-name (string-append name "-" version ".tar.gz"))
2920 (sha256
2921 (base32
2922 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
2923 (build-system emacs-build-system)
2924 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
2925 (synopsis "Major mode for jinja2")
2926 (description
2927 "Emacs major mode for jinja2 with: syntax highlighting,
2928 sgml/html integration, and indentation (working with sgml).")
2929 (license license:gpl3+)))
2930
2931 (define-public emacs-rfcview
2932 (package
2933 (name "emacs-rfcview")
2934 (version "0.13")
2935 (home-page "http://www.loveshack.ukfsn.org/emacs")
2936 (source (origin
2937 (method url-fetch)
2938 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
2939 (sha256
2940 (base32
2941 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
2942 (build-system emacs-build-system)
2943 (synopsis "Prettify Request for Comments (RFC) documents")
2944 (description "The Internet Engineering Task Force (IETF) and the Internet
2945 Society (ISOC) publish various Internet-related protocols and specifications
2946 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
2947 documents. RFCs and STDs are published in a simple text form. This package
2948 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
2949 read these documents in Emacs. It prettifies the text and adds
2950 hyperlinks/menus for easier navigation. It also provides functions for
2951 browsing the index of RFC documents and fetching them from remote servers or
2952 local directories.")
2953 (license license:gpl3+)))
2954
2955 (define-public emacs-ffap-rfc-space
2956 (package
2957 (name "emacs-ffap-rfc-space")
2958 (version "12")
2959 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
2960 (source (origin
2961 (method url-fetch)
2962 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
2963 (sha256
2964 (base32
2965 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
2966 (build-system emacs-build-system)
2967 (synopsis "Make ffap recognize an RFC with a space before its number")
2968 (description "The Internet Engineering Task Force (IETF) and the
2969 Internet Society (ISOC) publish various Internet-related protocols and
2970 specifications as \"Request for Comments\" (RFC) documents. The
2971 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
2972 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
2973 and load the appropriate RFC from a remote server. However, it fails
2974 to recognize a name like \"RFC 1234\". This package enhances ffap so
2975 that it correctly finds RFCs even when a space appears before the
2976 number.")
2977 (license license:gpl3+)))
2978
2979 (define-public emacs-org-bullets
2980 (package
2981 (name "emacs-org-bullets")
2982 (version "0.2.4")
2983 (source
2984 (origin
2985 (method url-fetch)
2986 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
2987 version ".tar.gz"))
2988 (file-name (string-append name "-" version ".tar.gz"))
2989 (sha256
2990 (base32
2991 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
2992 (build-system emacs-build-system)
2993 (home-page "https://github.com/sabof/org-bullets")
2994 (synopsis "Show bullets in org-mode as UTF-8 characters")
2995 (description
2996 "This package provides an Emacs minor mode causing bullets in
2997 @code{org-mode} to be rendered as UTF-8 characters.")
2998 (license license:gpl3+)))
2999
3000 (define-public emacs-org-pomodoro
3001 (package
3002 (name "emacs-org-pomodoro")
3003 (version "2.1.0")
3004 (source
3005 (origin
3006 (method url-fetch)
3007 (uri (string-append
3008 "https://github.com/lolownia/org-pomodoro/archive/"
3009 version ".tar.gz"))
3010 (file-name (string-append name "-" version ".tar.gz"))
3011 (sha256
3012 (base32
3013 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3014 (build-system emacs-build-system)
3015 (propagated-inputs
3016 `(("emacs-alert" ,emacs-alert)))
3017 (home-page "https://github.com/lolownia/org-pomodoro")
3018 (synopsis "Pomodoro technique for org-mode")
3019 (description "@code{emacs-org-pomodoro} adds very basic support for
3020 Pomodoro technique in Emacs org-mode.
3021
3022 Run @code{M-x org-pomodoro} for the task at point or select one of the
3023 last tasks that you clocked time for. Each clocked-in pomodoro starts
3024 a timer of 25 minutes and after each pomodoro a break timer of 5
3025 minutes is started automatically. Every 4 breaks a long break is
3026 started with 20 minutes. All values are customizable.")
3027 (license license:gpl3+)))
3028
3029 (define-public emacs-org-trello
3030 (package
3031 (name "emacs-org-trello")
3032 (version "0.8.0")
3033 (source (origin
3034 (method url-fetch)
3035 (uri (string-append
3036 "https://github.com/org-trello/org-trello/archive/"
3037 version ".tar.gz"))
3038 (file-name (string-append name "-" version ".tar.gz"))
3039 (sha256
3040 (base32
3041 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
3042 (build-system emacs-build-system)
3043 (propagated-inputs
3044 `(("emacs-dash" ,emacs-dash)
3045 ("emacs-deferred" ,emacs-deferred)
3046 ("emacs-f" ,emacs-f)
3047 ("emacs-helm" ,emacs-helm)
3048 ("emacs-request" ,emacs-request)
3049 ("emacs-s" ,emacs-s)))
3050 (home-page "https://org-trello.github.io")
3051 (synopsis "Emacs minor mode for interacting with Trello")
3052 (description "This package provides an Emacs minor mode to extend
3053 @code{org-mode} with Trello abilities. Trello is an online project
3054 organizer.")
3055 (license license:gpl3+)))
3056
3057 (define-public emacs-zenburn-theme
3058 (package
3059 (name "emacs-zenburn-theme")
3060 (version "2.5")
3061 (source (origin
3062 (method url-fetch)
3063 (uri (string-append
3064 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3065 version ".tar.gz"))
3066 (file-name (string-append name "-" version ".tar.gz"))
3067 (sha256
3068 (base32
3069 "03kfhzgbbbl8ivpzzky6qxw4j9mmp452m1sk7wikxmcalfnix0gn"))))
3070 (build-system emacs-build-system)
3071 (home-page "https://github.com/bbatsov/zenburn-emacs")
3072 (synopsis "Low contrast color theme for Emacs")
3073 (description
3074 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3075 It is built on top of the custom theme support in Emacs 24 or later.")
3076 (license license:gpl3+)))
3077
3078 (define-public emacs-solarized-theme
3079 (package
3080 (name "emacs-solarized-theme")
3081 (version "1.2.2")
3082 (source (origin
3083 (method url-fetch)
3084 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3085 "archive/v" version ".tar.gz"))
3086 (file-name (string-append name "-" version ".tar.gz"))
3087 (sha256
3088 (base32
3089 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3090 (build-system emacs-build-system)
3091 (propagated-inputs
3092 `(("emacs-dash" ,emacs-dash)))
3093 (home-page "https://github.com/bbatsov/solarized-emacs")
3094 (synopsis "Port of the Solarized theme for Emacs")
3095 (description
3096 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3097 package provides a light and a dark variant.")
3098 (license license:gpl3+)))
3099
3100 (define-public emacs-ahungry-theme
3101 (package
3102 (name "emacs-ahungry-theme")
3103 (version "1.10.0")
3104 (source
3105 (origin (method url-fetch)
3106 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3107 version ".tar"))
3108 (sha256
3109 (base32
3110 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3111 (build-system emacs-build-system)
3112 (home-page "https://github.com/ahungry/color-theme-ahungry")
3113 (synopsis "Ahungry color theme for Emacs")
3114 (description "Ahungry theme for Emacs provides bright and bold colors.
3115 If you load it from a terminal, you will be able to make use of the
3116 transparent background. If you load it from a GUI, it will default to a
3117 dark background.")
3118 (license license:gpl3+)))
3119
3120 (define-public emacs-2048-game
3121 (package
3122 (name "emacs-2048-game")
3123 (version "20151026.1233")
3124 (source
3125 (origin
3126 (method url-fetch)
3127 (uri (string-append "https://melpa.org/packages/2048-game-"
3128 version ".el"))
3129 (sha256
3130 (base32
3131 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3132 (build-system emacs-build-system)
3133 (home-page "https://bitbucket.org/zck/2048.el")
3134 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3135 (description
3136 "This program is an implementation of 2048 for Emacs.
3137 The goal of this game is to create a tile with value 2048. The size of the
3138 board and goal value can be customized.")
3139 (license license:gpl3+)))
3140
3141 (define-public emacs-base16-theme
3142 (package
3143 (name "emacs-base16-theme")
3144 (version "2.1")
3145 (source
3146 (origin
3147 (method url-fetch)
3148 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3149 version ".tar"))
3150 (sha256
3151 (base32
3152 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3153 (build-system emacs-build-system)
3154 (home-page "https://github.com/belak/base16-emacs")
3155 (synopsis "Base16 color themes for Emacs")
3156 (description
3157 "Base16 provides carefully chosen syntax highlighting and a default set
3158 of sixteen colors suitable for a wide range of applications. Base16 is not a
3159 single theme but a set of guidelines with numerous implementations.")
3160 (license license:expat)))
3161
3162 (define-public emacs-smartparens
3163 (package
3164 (name "emacs-smartparens")
3165 (version "1.11.0")
3166 (source (origin
3167 (method url-fetch)
3168 (uri (string-append
3169 "https://github.com/Fuco1/smartparens/archive/"
3170 version ".tar.gz"))
3171 (file-name (string-append name "-" version ".tar.gz"))
3172 (sha256
3173 (base32
3174 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3175 (build-system emacs-build-system)
3176 (propagated-inputs
3177 `(("emacs-dash" ,emacs-dash)
3178 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3179 (home-page "https://github.com/Fuco1/smartparens")
3180 (synopsis "Paredit-like insertion, wrapping and navigation with user
3181 defined pairs")
3182 (description
3183 "Smartparens is a minor mode for Emacs that deals with parens pairs
3184 and tries to be smart about it. It started as a unification effort to
3185 combine functionality of several existing packages in a single,
3186 compatible and extensible way to deal with parentheses, delimiters, tags
3187 and the like. Some of these packages include autopair, textmate,
3188 wrap-region, electric-pair-mode, paredit and others. With the basic
3189 features found in other packages it also brings many improvements as
3190 well as completely new features.")
3191 (license license:gpl3+)))
3192
3193 (define-public emacs-highlight-symbol
3194 (package
3195 (name "emacs-highlight-symbol")
3196 (version "1.3")
3197 (source (origin
3198 (method url-fetch)
3199 (uri (string-append
3200 "https://github.com/nschum/highlight-symbol.el/archive/"
3201 version ".tar.gz"))
3202 (file-name (string-append name "-" version ".tar.gz"))
3203 (sha256
3204 (base32
3205 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3206 (build-system emacs-build-system)
3207 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3208 (synopsis "Automatic and manual symbol highlighting for Emacs")
3209 (description
3210 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3211 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3212 the symbol at point highlighted.
3213
3214 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3215 @code{highlight-symbol-next-in-defun} and
3216 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3217 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3218 bindings @code{M-p} and @code{M-p} for navigation. When
3219 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3220 regardless of @code{highlight-symbol-idle-delay}.
3221
3222 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3223 (license license:gpl2+)))
3224
3225 (define-public emacs-hl-todo
3226 (package
3227 (name "emacs-hl-todo")
3228 (version "1.8.0")
3229 (source (origin
3230 (method url-fetch)
3231 (uri (string-append
3232 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3233 version "/hl-todo.el"))
3234 (file-name (string-append "hl-todo-" version ".el"))
3235 (sha256
3236 (base32
3237 "0g0h9v4572p7mcird8wsj1c41haf60krslm6mlpi4mdbh248kv6z"))))
3238 (build-system emacs-build-system)
3239 (home-page "https://github.com/tarsius/hl-todo")
3240 (synopsis "Emacs mode to highlight TODO and similar keywords")
3241 (description
3242 "This package provides an Emacs mode to highlight TODO and similar
3243 keywords in comments and strings. This package also provides commands for
3244 moving to the next or previous keyword and to invoke @code{occur} with a
3245 regexp that matches all known keywords.")
3246 (license license:gpl3+)))
3247
3248 (define-public emacs-perspective
3249 (package
3250 (name "emacs-perspective")
3251 (version "1.12")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (string-append "https://github.com/nex3/perspective-el/"
3256 "archive/" version ".tar.gz"))
3257 (file-name (string-append name "-" version ".tar.gz"))
3258 (sha256
3259 (base32
3260 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3261 (build-system emacs-build-system)
3262 (home-page "https://github.com/nex3/perspective-el")
3263 (synopsis "Switch between named \"perspectives\"")
3264 (description
3265 "This package provides tagged workspaces in Emacs, similar to workspaces in
3266 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3267 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3268 perspective is composed of a window configuration and a set of buffers.
3269 Switching to a perspective activates its window configuration, and when in a
3270 perspective only its buffers are available by default.")
3271 ;; This package is released under the same license as Emacs (GPLv3+) or
3272 ;; the Expat license.
3273 (license license:gpl3+)))
3274
3275 (define-public emacs-test-simple
3276 (package
3277 (name "emacs-test-simple")
3278 (version "1.3.0")
3279 (source
3280 (origin
3281 (method url-fetch)
3282 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3283 version ".el"))
3284 (sha256
3285 (base32
3286 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3287 (build-system emacs-build-system)
3288 (home-page "https://github.com/rocky/emacs-test-simple")
3289 (synopsis "Simple unit test framework for Emacs Lisp")
3290 (description
3291 "Test Simple is a simple unit test framework for Emacs Lisp. It
3292 alleviates the need for context macros, enclosing specifications or required
3293 test tags. It supports both interactive and non-interactive use.")
3294 (license license:gpl3+)))
3295
3296 (define-public emacs-load-relative
3297 (package
3298 (name "emacs-load-relative")
3299 (version "1.3")
3300 (source
3301 (origin
3302 (method url-fetch)
3303 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3304 version ".el"))
3305 (sha256
3306 (base32
3307 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3308 (build-system emacs-build-system)
3309 (home-page "http://github.com/rocky/emacs-load-relative")
3310 (synopsis "Emacs Lisp relative file loading related functions")
3311 (description
3312 "Provides functions which facilitate writing multi-file Emacs packages
3313 and running from the source tree without having to \"install\" code or fiddle
3314 with @{load-path}.
3315
3316 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3317 another (presumably currently running) Emacs Lisp file.")
3318 (license license:gpl3+)))
3319
3320 (define-public emacs-loc-changes
3321 (package
3322 (name "emacs-loc-changes")
3323 (version "1.2")
3324 (source
3325 (origin
3326 (method url-fetch)
3327 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3328 version ".el"))
3329 (sha256
3330 (base32
3331 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3332 (build-system emacs-build-system)
3333 (home-page "https://github.com/rocky/emacs-loc-changes")
3334 (synopsis "Keeps track of positions even after buffer changes")
3335 (description
3336 "This Emacs package provides a mean to track important buffer positions
3337 after buffer changes.")
3338 (license license:gpl3+)))
3339
3340 (define-public emacs-realgud
3341 (package
3342 (name "emacs-realgud")
3343 (version "1.4.5")
3344 (source
3345 (origin
3346 (method url-fetch)
3347 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3348 version ".tar"))
3349 (sha256
3350 (base32
3351 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))))
3352 (build-system emacs-build-system)
3353 (arguments
3354 `(#:tests? #t
3355 #:phases
3356 (modify-phases %standard-phases
3357 (add-after 'set-emacs-load-path 'fix-autogen-script
3358 (lambda _
3359 (substitute* "autogen.sh"
3360 (("./configure") "sh configure"))))
3361 (add-after 'fix-autogen-script 'autogen
3362 (lambda _
3363 (setenv "CONFIG_SHELL" "sh")
3364 (invoke "sh" "autogen.sh")))
3365 (add-after 'fix-autogen-script 'set-home
3366 (lambda _
3367 (setenv "HOME" (getenv "TMPDIR"))))
3368 (add-before 'patch-el-files 'remove-realgud-pkg.el
3369 (lambda _
3370 ;; XXX: This file is auto-generated at some point and causes
3371 ;; substitute* to crash during the `patch-el-files' phase with:
3372 ;; ERROR: In procedure stat: No such file or directory:
3373 ;; "./realgud-pkg.el"
3374 (delete-file "./realgud-pkg.el")
3375 ;; FIXME: `patch-el-files' crashes on this file with error:
3376 ;; unable to locate "bashdb".
3377 (delete-file "./test/test-regexp-bashdb.el"))))
3378 #:include (cons* ".*\\.el$" %default-include)))
3379 (native-inputs
3380 `(("autoconf" ,autoconf)
3381 ("automake" ,automake)
3382 ("emacs-test-simple" ,emacs-test-simple)))
3383 (propagated-inputs
3384 `(("emacs-load-relative" ,emacs-load-relative)
3385 ("emacs-loc-changes" ,emacs-loc-changes)))
3386 (home-page "https://github.com/realgud/realgud/")
3387 (synopsis
3388 "Modular front-end for interacting with external debuggers")
3389 (description
3390 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3391 with external debuggers. It integrates various debuggers such as gdb, pdb,
3392 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3393 sources. Unlike GUD, it also supports running multiple debug sessions in
3394 parallel.")
3395 (license license:gpl3+)))
3396
3397 (define-public emacs-request
3398 (package
3399 (name "emacs-request")
3400 (version "0.3.0")
3401 (source (origin
3402 (method git-fetch)
3403 (uri (git-reference
3404 (url "https://github.com/tkf/emacs-request.git")
3405 (commit (string-append "v" version))))
3406 (file-name (string-append name "-" version "-checkout"))
3407 (sha256
3408 (base32
3409 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3410 (build-system emacs-build-system)
3411 (propagated-inputs
3412 `(("emacs-deferred" ,emacs-deferred)))
3413 (home-page "https://github.com/tkf/emacs-request")
3414 (synopsis "Package for speaking HTTP in Emacs Lisp")
3415 (description "This package provides a HTTP request library with multiple
3416 backends. It supports url.el which is shipped with Emacs and the curl command
3417 line program.")
3418 (license license:gpl3+)))
3419
3420 (define-public emacs-rudel
3421 (package
3422 (name "emacs-rudel")
3423 (version "0.3.1")
3424 (source
3425 (origin
3426 (method url-fetch)
3427 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3428 version ".tar"))
3429 (sha256
3430 (base32
3431 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3432 (build-system emacs-build-system)
3433 (home-page "http://rudel.sourceforge.net/")
3434 (synopsis "Collaborative editing framework")
3435 (description
3436 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3437 is to share buffers with other users in order to edit the contents of those
3438 buffers collaboratively. Rudel supports multiple backends to enable
3439 communication with other collaborative editors using different protocols,
3440 though currently Obby (for use with the Gobby editor) is the only
3441 fully-functional one.")
3442 (license license:gpl3+)))
3443
3444 (define-public emacs-hydra
3445 (package
3446 (name "emacs-hydra")
3447 (version "0.14.0")
3448 (source
3449 (origin
3450 (method url-fetch)
3451 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
3452 version ".tar.gz"))
3453 (file-name (string-append name "-" version ".tar.gz"))
3454 (sha256
3455 (base32
3456 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8"))))
3457 (build-system emacs-build-system)
3458 (home-page "https://github.com/abo-abo/hydra")
3459 (synopsis "Make Emacs bindings that stick around")
3460 (description
3461 "This package can be used to tie related commands into a family of short
3462 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3463 the prefixed binding), all the heads can be called in succession with only a
3464 short extension. Any binding that isn't the Hydra's head vanquishes the
3465 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3466 serve its original purpose, calling the command assigned to it. This makes
3467 the Hydra very seamless; it's like a minor mode that disables itself
3468 automatically.")
3469 (license license:gpl3+)))
3470
3471 (define-public emacs-ivy
3472 (package
3473 (name "emacs-ivy")
3474 (version "0.10.0")
3475 (source
3476 (origin
3477 (method git-fetch)
3478 (uri (git-reference
3479 (url "https://github.com/abo-abo/swiper.git")
3480 (commit version)))
3481 (file-name (string-append name "-" version "-checkout"))
3482 (sha256
3483 (base32
3484 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
3485 (build-system emacs-build-system)
3486 (arguments
3487 `(#:phases
3488 (modify-phases %standard-phases
3489 (add-after 'install 'install-doc
3490 (lambda* (#:key outputs #:allow-other-keys)
3491 (let* ((out (assoc-ref outputs "out"))
3492 (info (string-append out "/share/info")))
3493 (with-directory-excursion "doc"
3494 (unless (zero? (system* "makeinfo" "ivy.texi"))
3495 (error "makeinfo failed"))
3496 (install-file "ivy.info" info))))))))
3497 (propagated-inputs
3498 `(("emacs-hydra" ,emacs-hydra)))
3499 (native-inputs
3500 `(("texinfo" ,texinfo)))
3501 (home-page "http://oremacs.com/swiper/")
3502 (synopsis "Incremental vertical completion for Emacs")
3503 (description
3504 "This package provides @code{ivy-read} as an alternative to
3505 @code{completing-read} and similar functions. No attempt is made to determine
3506 the best candidate. Instead, the user can navigate candidates with
3507 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3508 splitting the input text by spaces and re-building it into a regular
3509 expression.")
3510 (license license:gpl3+)))
3511
3512 (define-public emacs-avy
3513 (package
3514 (name "emacs-avy")
3515 (version "0.4.0")
3516 (source
3517 (origin
3518 (method url-fetch)
3519 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3520 version ".tar.gz"))
3521 (file-name (string-append name "-" version ".tar.gz"))
3522 (sha256
3523 (base32
3524 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3525 (build-system emacs-build-system)
3526 (home-page "https://github.com/abo-abo/avy")
3527 (synopsis "Tree-based completion for Emacs")
3528 (description
3529 "This package provides a generic completion method based on building a
3530 balanced decision tree with each candidate being a leaf. To traverse the tree
3531 from the root to a desired leaf, typically a sequence of @code{read-key} can
3532 be used.
3533
3534 In order for @code{read-key} to make sense, the tree needs to be visualized
3535 appropriately, with a character at each branch node. So this completion
3536 method works only for things that you can see on your screen, all at once,
3537 such as the positions of characters, words, line beginnings, links, or
3538 windows.")
3539 (license license:gpl3+)))
3540
3541 (define-public emacs-ace-window
3542 (package
3543 (name "emacs-ace-window")
3544 (version "0.9.0")
3545 (source
3546 (origin
3547 (method url-fetch)
3548 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3549 version ".tar.gz"))
3550 (file-name (string-append name "-" version ".tar.gz"))
3551 (sha256
3552 (base32
3553 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3554 (build-system emacs-build-system)
3555 (propagated-inputs
3556 `(("emacs-avy" ,emacs-avy)))
3557 (home-page "https://github.com/abo-abo/ace-window")
3558 (synopsis "Quickly switch windows in Emacs")
3559 (description
3560 "@code{ace-window} is meant to replace @code{other-window}.
3561 In fact, when there are only two windows present, @code{other-window} is
3562 called. If there are more, each window will have its first character
3563 highlighted. Pressing that character will switch to that window.")
3564 (license license:gpl3+)))
3565
3566 (define-public emacs-iedit
3567 (package
3568 (name "emacs-iedit")
3569 (version "0.9.9.9")
3570 (source
3571 (origin
3572 (method url-fetch)
3573 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3574 version ".tar.gz"))
3575 (file-name (string-append name "-" version ".tar.gz"))
3576 (sha256
3577 (base32
3578 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3579 (build-system emacs-build-system)
3580 (home-page "http://www.emacswiki.org/emacs/Iedit")
3581 (synopsis "Edit multiple regions in the same way simultaneously")
3582 (description
3583 "This package is an Emacs minor mode and allows you to edit one
3584 occurrence of some text in a buffer (possibly narrowed) or region, and
3585 simultaneously have other occurrences edited in the same way.
3586
3587 You can also use Iedit mode as a quick way to temporarily show only the buffer
3588 lines that match the current text being edited. This gives you the effect of
3589 a temporary @code{keep-lines} or @code{occur}.")
3590 (license license:gpl3+)))
3591
3592 (define-public emacs-zoutline
3593 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
3594 (revision "0"))
3595 (package
3596 (name "emacs-zoutline")
3597 (version (git-version "0.1" revision commit))
3598 (home-page "https://github.com/abo-abo/zoutline")
3599 (source (origin
3600 (method git-fetch)
3601 (uri (git-reference (url home-page) (commit commit)))
3602 (sha256
3603 (base32
3604 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
3605 (file-name (git-file-name name version))))
3606 (build-system emacs-build-system)
3607 (synopsis "Simple outline library")
3608 (description
3609 "This library provides helpers for outlines. Outlines allow users to
3610 navigate code in a tree-like fashion.")
3611 (license license:gpl3+))))
3612
3613 (define-public emacs-lispy
3614 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
3615 ;; since.
3616 (let ((commit "a7e1cf742e72199cc75aa5e1e686991ba4a23bc4")
3617 (revision "0"))
3618 (package
3619 (name "emacs-lispy")
3620 (version (git-version "0.26.0" revision commit))
3621 (home-page "https://github.com/abo-abo/lispy")
3622 (source (origin
3623 (method git-fetch)
3624 (uri (git-reference (url home-page) (commit commit)))
3625 (sha256
3626 (base32
3627 "0qg85gz5akayvhb5fmn1qx7s9847gry4g20xcnq8llr839lq28dl"))
3628 (file-name (git-file-name name version))))
3629 (build-system emacs-build-system)
3630 (propagated-inputs
3631 `(("emacs-ace-window" ,emacs-ace-window)
3632 ("emacs-iedit" ,emacs-iedit)
3633 ("emacs-ivy" ,emacs-ivy)
3634 ("emacs-hydra" ,emacs-hydra)
3635 ("emacs-zoutline" ,emacs-zoutline)))
3636 (synopsis "Modal S-expression editing")
3637 (description
3638 "Due to the structure of Lisp syntax it's very rare for the programmer
3639 to want to insert characters right before \"(\" or right after \")\". Thus
3640 unprefixed printable characters can be used to call commands when the point is
3641 at one of these special locations. Lispy provides unprefixed keybindings for
3642 S-expression editing when point is at the beginning or end of an
3643 S-expression.")
3644 (license license:gpl3+))))
3645
3646 (define-public emacs-lispyville
3647 ;; Later versions need a more recent Evil, with an evil-define-key*
3648 ;; supporting nil for the state.
3649 (let ((commit "b4291857ed6a49a67c4ea77522889ce51fb171ab")
3650 (revision "0"))
3651 (package
3652 (name "emacs-lispyville")
3653 (version (git-version "0.1" revision commit))
3654 (home-page "https://github.com/noctuid/lispyville")
3655 (source (origin
3656 (method git-fetch)
3657 (uri (git-reference (url home-page) (commit commit)))
3658 (sha256
3659 (base32
3660 "095zibzc3naknahdrnb59g9rbljy8wz9rkc7rf8avb3wxlwvxhm3"))
3661 (file-name (git-file-name name version))))
3662 (propagated-inputs
3663 `(("emacs-evil" ,emacs-evil)
3664 ("emacs-lispy" ,emacs-lispy)))
3665 (build-system emacs-build-system)
3666 (synopsis "Minor mode for integrating Evil with lispy")
3667 (description
3668 "LispyVille's main purpose is to provide a Lisp editing environment
3669 suited towards Evil users. It can serve as a minimal layer on top of lispy
3670 for better integration with Evil, but it does not require the use of lispy’s
3671 keybinding style. The provided commands allow for editing Lisp in normal
3672 state and will work even without lispy being enabled.")
3673 (license license:gpl3+))))
3674
3675 (define-public emacs-clojure-mode
3676 (package
3677 (name "emacs-clojure-mode")
3678 (version "5.6.1")
3679 (source (origin
3680 (method url-fetch)
3681 (uri (string-append
3682 "https://github.com/clojure-emacs/clojure-mode/archive/"
3683 version ".tar.gz"))
3684 (file-name (string-append name "-" version ".tar.gz"))
3685 (sha256
3686 (base32
3687 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
3688 (build-system emacs-build-system)
3689 (native-inputs
3690 `(("emacs-dash" ,emacs-dash)
3691 ("emacs-s" ,emacs-s)
3692 ("ert-runner" ,ert-runner)))
3693 (arguments
3694 `(#:tests? #t
3695 #:test-command '("ert-runner")))
3696 (home-page "https://github.com/clojure-emacs/clojure-mode")
3697 (synopsis "Major mode for Clojure code")
3698 (description
3699 "This Emacs package provides font-lock, indentation, navigation and basic
3700 refactoring for the @uref{http://clojure.org, Clojure programming language}.
3701 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
3702 (license license:gpl3+)))
3703
3704 (define-public emacs-epl
3705 (package
3706 (name "emacs-epl")
3707 (version "0.8")
3708 (source (origin
3709 (method url-fetch)
3710 (uri (string-append
3711 "https://github.com/cask/epl/archive/"
3712 version ".tar.gz"))
3713 (file-name (string-append name "-" version ".tar.gz"))
3714 (sha256
3715 (base32
3716 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
3717 (build-system emacs-build-system)
3718 (home-page "https://github.com/cask/epl")
3719 (synopsis "Emacs Package Library")
3720 (description
3721 "A package management library for Emacs, based on @code{package.el}.
3722
3723 The purpose of this library is to wrap all the quirks and hassle of
3724 @code{package.el} into a sane API.")
3725 (license license:gpl3+)))
3726
3727 (define-public emacs-queue
3728 (package
3729 (name "emacs-queue")
3730 (version "0.2")
3731 (source (origin
3732 (method url-fetch)
3733 (uri (string-append "https://elpa.gnu.org/packages/queue-"
3734 version ".el"))
3735 (sha256
3736 (base32
3737 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
3738 (build-system emacs-build-system)
3739 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
3740 (synopsis "Queue data structure for Emacs")
3741 (description
3742 "This Emacs library provides queue data structure. These queues can be
3743 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
3744 stack, i.e. elements can be added to the front or back of the queue, and can
3745 be removed from the front. This type of data structure is sometimes called an
3746 \"output-restricted deque\".")
3747 (license license:gpl3+)))
3748
3749 (define-public emacs-pkg-info
3750 (package
3751 (name "emacs-pkg-info")
3752 (version "0.6")
3753 (source (origin
3754 (method url-fetch)
3755 (uri (string-append
3756 "https://github.com/lunaryorn/pkg-info.el/archive/"
3757 version ".tar.gz"))
3758 (file-name (string-append name "-" version ".tar.gz"))
3759 (sha256
3760 (base32
3761 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
3762 (build-system emacs-build-system)
3763 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
3764 (home-page "https://github.com/lunaryorn/pkg-info.el")
3765 (synopsis "Information about Emacs packages")
3766 (description
3767 "This library extracts information from the installed Emacs packages.")
3768 (license license:gpl3+)))
3769
3770 (define-public emacs-spinner
3771 (package
3772 (name "emacs-spinner")
3773 (version "1.7.3")
3774 (source (origin
3775 (method url-fetch)
3776 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
3777 version ".el"))
3778 (sha256
3779 (base32
3780 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
3781 (build-system emacs-build-system)
3782 (home-page "https://github.com/Malabarba/spinner.el")
3783 (synopsis "Emacs mode-line spinner for operations in progress")
3784 (description
3785 "This Emacs package adds spinners and progress-bars to the mode-line for
3786 ongoing operations.")
3787 (license license:gpl3+)))
3788
3789 (define-public emacs-sparql-mode
3790 (package
3791 (name "emacs-sparql-mode")
3792 (version "2.0.1")
3793 (source (origin
3794 (method url-fetch)
3795 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
3796 "v" version ".tar.gz"))
3797 (file-name (string-append name "-" version ".tar.gz"))
3798 (sha256
3799 (base32
3800 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
3801 (build-system emacs-build-system)
3802 (home-page "https://github.com/ljos/sparql-mode")
3803 (synopsis "SPARQL mode for Emacs")
3804 (description "This package provides a major mode for Emacs that provides
3805 syntax highlighting for SPARQL. It also provides a way to execute queries
3806 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
3807 possible to query other endpoints like DBPedia.")
3808 (license license:gpl3+)))
3809
3810 (define-public emacs-better-defaults
3811 (package
3812 (name "emacs-better-defaults")
3813 (version "0.1.3")
3814 (source
3815 (origin
3816 (method url-fetch)
3817 (uri (string-append "https://github.com/technomancy/better-defaults"
3818 "/archive/" version ".tar.gz"))
3819 (file-name (string-append name "-" version ".tar.gz"))
3820 (sha256
3821 (base32
3822 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
3823 (build-system emacs-build-system)
3824 (home-page "https://github.com/technomancy/better-defaults")
3825 (synopsis "Better defaults for Emacs")
3826 (description
3827 "Better defaults attempts to address the most obvious deficiencies of the
3828 Emacs default configuration in uncontroversial ways that nearly everyone can
3829 agree upon.")
3830 (license license:gpl3+)))
3831
3832 (define-public emacs-eprime
3833 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
3834 (package
3835 (name "emacs-eprime")
3836 (version (string-append "20140513-" (string-take commit 7)))
3837 (source (origin
3838 (method url-fetch)
3839 (uri (string-append "https://raw.githubusercontent.com"
3840 "/AndrewHynes/eprime-mode/"
3841 commit "/eprime-mode.el"))
3842 (file-name (string-append "eprime-" version ".el"))
3843 (sha256
3844 (base32
3845 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
3846 (build-system emacs-build-system)
3847 (home-page "https://github.com/AndrewHynes/eprime-mode")
3848 (synopsis "E-prime checking mode for Emacs")
3849 (description "This package provides an E-prime checking mode for Emacs
3850 that highlights non-conforming text. The subset of the English language called
3851 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
3852 (license license:gpl3+))))
3853
3854 (define-public emacs-julia-mode
3855 ;; XXX: Upstream version remained stuck at 0.3. See
3856 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
3857 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
3858 (revision "1"))
3859 (package
3860 (name "emacs-julia-mode")
3861 (version (string-append "0.3-" revision "." (string-take commit 8)))
3862 (source
3863 (origin
3864 (method git-fetch)
3865 (uri (git-reference
3866 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
3867 (commit commit)))
3868 (file-name (string-append name "-" version "-checkout"))
3869 (sha256
3870 (base32
3871 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
3872 (build-system emacs-build-system)
3873 (arguments
3874 `(#:tests? #t
3875 #:test-command '("emacs" "--batch"
3876 "-l" "julia-mode-tests.el"
3877 "-f" "ert-run-tests-batch-and-exit")))
3878 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
3879 (synopsis "Major mode for Julia")
3880 (description "This Emacs package provides a mode for the Julia
3881 programming language.")
3882 (license license:expat))))
3883
3884 (define-public emacs-ess
3885 (package
3886 (name "emacs-ess")
3887 (version "16.10")
3888 (source (origin
3889 (method url-fetch)
3890 (uri (string-append "http://ess.r-project.org/downloads/ess/ess-"
3891 version ".tgz"))
3892 (sha256
3893 (base32
3894 "04m8lwp3ylh2vl7k2bjjs7mxbm64j4sdckqpvnm9k0qhaqf02pjk"))
3895 (modules '((guix build utils)))
3896 (snippet
3897 '(begin
3898 ;; Stop ESS from trying to bundle an external julia-mode.el.
3899 (substitute* "lisp/Makefile"
3900 (("^\tjulia-mode.elc\\\\\n") "")
3901 (("^all: \\$\\(ELC\\) ess-custom.el julia-mode.el")
3902 "all: $(ELC) ess-custom.el"))))))
3903 (build-system gnu-build-system)
3904 (arguments
3905 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
3906 `(#:make-flags (list (string-append "PREFIX=" %output)
3907 (string-append "ETCDIR=" %output "/"
3908 ,base-directory "/etc")
3909 (string-append "LISPDIR=" %output "/"
3910 ,base-directory))
3911 #:phases
3912 (modify-phases %standard-phases
3913 (delete 'configure)
3914 (add-before 'build 'more-shebang-patching
3915 (lambda* (#:key inputs #:allow-other-keys)
3916 (substitute* "Makeconf"
3917 (("SHELL = /bin/sh")
3918 (string-append "SHELL = " (which "sh"))))))
3919 ;; FIXME: the texlive-union insists on regenerating fonts. It stores
3920 ;; them in HOME, so it needs to be writeable.
3921 (add-before 'build 'set-HOME
3922 (lambda _ (setenv "HOME" "/tmp") #t))
3923 (replace 'check
3924 (lambda _
3925 (zero? (system* "make" "test"))))))))
3926 (inputs
3927 `(("emacs" ,emacs-minimal)
3928 ("r-minimal" ,r-minimal)))
3929 (native-inputs
3930 `(("perl" ,perl)
3931 ("texinfo" ,texinfo)
3932 ("texlive" ,(texlive-union (list texlive-latex-natbib
3933 texlive-latex-seminar
3934 texlive-latex-hyperref
3935 texlive-tex-texinfo)))))
3936 (home-page "https://ess.r-project.org/")
3937 (synopsis "Emacs mode for statistical analysis programs")
3938 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
3939 Emacs. It is designed to support editing of scripts and interaction with
3940 various statistical analysis programs such as R and OpenBUGS.")
3941 (license license:gpl2+)))
3942
3943 (define-public emacs-smex
3944 (package
3945 (name "emacs-smex")
3946 (version "3.0")
3947 (source (origin
3948 (method url-fetch)
3949 (uri (string-append "https://raw.githubusercontent.com"
3950 "/nonsequitur/smex/" version "/smex.el"))
3951 (file-name (string-append "smex-" version ".el"))
3952 (sha256
3953 (base32
3954 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
3955 (build-system emacs-build-system)
3956 (home-page "https://github.com/nonsequitur/smex/")
3957 (synopsis "M-x interface with Ido-style fuzzy matching")
3958 (description
3959 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
3960 convenient interface to your recently and most frequently used commands. And
3961 to all the other commands, too.")
3962 (license license:gpl3+)))
3963
3964 (define-public emacs-js2-mode
3965 (package
3966 (name "emacs-js2-mode")
3967 (version "20150909")
3968 (source (origin
3969 (method url-fetch)
3970 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
3971 version ".tar.gz"))
3972 (file-name (string-append name "-" version ".tar.gz"))
3973 (sha256
3974 (base32
3975 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
3976 (build-system emacs-build-system)
3977 (home-page "https://github.com/mooz/js2-mode/")
3978 (synopsis "Improved JavaScript editing mode for Emacs")
3979 (description
3980 "Js2-mode provides a JavaScript major mode for Emacs that is more
3981 advanced than the built-in javascript-mode. Features include accurate syntax
3982 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
3983 errors and strict-mode warnings, smart line-wrapping within comments and
3984 strings, and code folding.")
3985 (license license:gpl3+)))
3986
3987 (define-public emacs-markdown-mode
3988 (package
3989 (name "emacs-markdown-mode")
3990 (version "2.3")
3991 (source (origin
3992 (method url-fetch)
3993 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
3994 "/markdown-mode/v" version
3995 "/markdown-mode.el"))
3996 (file-name (string-append "markdown-mode-" version ".el"))
3997 (sha256
3998 (base32
3999 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4000 (build-system emacs-build-system)
4001 (home-page "http://jblevins.org/projects/markdown-mode/")
4002 (synopsis "Emacs Major mode for Markdown files")
4003 (description
4004 "Markdown-mode is a major mode for editing Markdown-formatted text files
4005 in Emacs.")
4006 (license license:gpl3+)))
4007
4008 (define-public emacs-edit-indirect
4009 (package
4010 (name "emacs-edit-indirect")
4011 (version "0.1.4")
4012 (source
4013 (origin
4014 (method url-fetch)
4015 (uri (string-append "https://github.com/Fanael/edit-indirect/archive/"
4016 version ".tar.gz"))
4017 (file-name (string-append name "-" version ".tar.gz"))
4018 (sha256
4019 (base32
4020 "07kr58rd1p5j764wminsssazr73hy51yw8iqcsv5z2dwgj7msv71"))))
4021 (build-system emacs-build-system)
4022 (home-page "https://github.com/Fanael/edit-indirect")
4023 (synopsis "Edit regions in separate buffers")
4024 (description "This package allows you to edit regions in separate buffers,
4025 like @code{org-edit-src-code} but for arbitrary regions.")
4026 (license license:gpl3+)))
4027
4028 (define-public emacs-projectile
4029 (package
4030 (name "emacs-projectile")
4031 (version "0.14.0")
4032 (source (origin
4033 (method url-fetch)
4034 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4035 "/projectile/v" version "/projectile.el"))
4036 (file-name (string-append "projectile-" version ".el"))
4037 (sha256
4038 (base32
4039 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
4040 (build-system emacs-build-system)
4041 (propagated-inputs
4042 `(("emacs-dash" ,emacs-dash)
4043 ("emacs-pkg-info" ,emacs-pkg-info)))
4044 (home-page "https://github.com/bbatsov/projectile")
4045 (synopsis "Manage and navigate projects in Emacs easily")
4046 (description
4047 "This library provides easy project management and navigation. The
4048 concept of a project is pretty basic - just a folder containing special file.
4049 Currently git, mercurial and bazaar repos are considered projects by default.
4050 If you want to mark a folder manually as a project just create an empty
4051 .projectile file in it.")
4052 (license license:gpl3+)))
4053
4054 (define-public emacs-elfeed
4055 (package
4056 (name "emacs-elfeed")
4057 (version "2.3.0")
4058 (source (origin
4059 (method url-fetch)
4060 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4061 version ".tar.gz"))
4062 (file-name (string-append name "-" version ".tar.gz"))
4063 (sha256
4064 (base32
4065 "1fd1mx0q1qb9vgdzls5ppxfriyid48blg8smgjspiazp7kxakzxv"))))
4066 (build-system emacs-build-system)
4067 (arguments
4068 `(#:tests? #t
4069 #:test-command '("make" "test")))
4070 (home-page "https://github.com/skeeto/elfeed")
4071 (synopsis "Atom/RSS feed reader for Emacs")
4072 (description
4073 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4074 and RSS, with a user interface inspired by notmuch.")
4075 (license license:gpl3+)))
4076
4077 (define-public emacs-rainbow-delimiters
4078 (package
4079 (name "emacs-rainbow-delimiters")
4080 (version "2.1.3")
4081 (source (origin
4082 (method url-fetch)
4083 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4084 "/rainbow-delimiters/" version
4085 "/rainbow-delimiters.el"))
4086 (file-name (string-append "rainbow-delimiters-" version ".el"))
4087 (sha256
4088 (base32
4089 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4090 (build-system emacs-build-system)
4091 (home-page "https://github.com/Fanael/rainbow-delimiters")
4092 (synopsis "Highlight brackets according to their depth")
4093 (description
4094 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4095 highlights parentheses, brackets, and braces according to their depth. Each
4096 successive level is highlighted in a different color, making it easy to spot
4097 matching delimiters, orient yourself in the code, and tell which statements
4098 are at a given level.")
4099 (license license:gpl3+)))
4100
4101 (define-public emacs-rainbow-identifiers
4102 (package
4103 (name "emacs-rainbow-identifiers")
4104 (version "0.2.2")
4105 (source (origin
4106 (method url-fetch)
4107 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4108 "/rainbow-identifiers/" version
4109 "/rainbow-identifiers.el"))
4110 (file-name (string-append "rainbow-identifiers-" version ".el"))
4111 (sha256
4112 (base32
4113 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4114 (build-system emacs-build-system)
4115 (home-page "https://github.com/Fanael/rainbow-identifiers")
4116 (synopsis "Highlight identifiers in source code")
4117 (description
4118 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4119 identifiers based on their names. Each identifier gets a color based on a hash
4120 of its name.")
4121 (license license:bsd-2)))
4122
4123 (define-public emacs-rainbow-mode
4124 (package
4125 (name "emacs-rainbow-mode")
4126 (version "0.13")
4127 (source (origin
4128 (method url-fetch)
4129 (uri (string-append
4130 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4131 (sha256
4132 (base32
4133 "1d3aamx6qgqqpqijwsr02ggwrh67gfink1bir0692alfkm3zdddl"))))
4134 (build-system emacs-build-system)
4135 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4136 (synopsis "Colorize color names in buffers")
4137 (description
4138 "This minor mode sets background color to strings that match color
4139 names, e.g. #0000ff is displayed in white with a blue background.")
4140 (license license:gpl3+)))
4141
4142 (define-public emacs-visual-fill-column
4143 (package
4144 (name "emacs-visual-fill-column")
4145 (version "1.11")
4146 (source (origin
4147 (method url-fetch)
4148 (uri (string-append "https://codeload.github.com/joostkremers/"
4149 "visual-fill-column/tar.gz/" version))
4150 (file-name (string-append name "-" version ".tar.gz"))
4151 (sha256
4152 (base32
4153 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4154 (build-system emacs-build-system)
4155 (home-page "https://github.com/joostkremers/visual-fill-column")
4156 (synopsis "Fill-column for visual-line-mode")
4157 (description
4158 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4159 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4160 wrapping lines at the window edge, which is the standard behaviour of
4161 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4162 @code{fill-column} is too large for the window, the text is wrapped at the
4163 window edge.")
4164 (license license:gpl3+)))
4165
4166 (define-public emacs-writeroom
4167 (package
4168 (name "emacs-writeroom")
4169 (version "3.7")
4170 (source (origin
4171 (method url-fetch)
4172 (uri (string-append
4173 "https://github.com/joostkremers/writeroom-mode/archive/"
4174 version ".tar.gz"))
4175 (file-name (string-append name "-" version ".tar.gz"))
4176 (sha256
4177 (base32
4178 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4179 (build-system emacs-build-system)
4180 (propagated-inputs
4181 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4182 (home-page "https://github.com/joostkremers/writeroom-mode")
4183 (synopsis "Distraction-free writing for Emacs")
4184 (description
4185 "This package defines a minor mode for distraction-free writing. Some of
4186 the default effects include entering fullscreen, deleting other windows of the
4187 current frame, disabling the mode line, and adding margins to the buffer that
4188 restrict the text width to 80 characters.")
4189 (license license:bsd-3)))
4190
4191 (define-public emacs-ido-completing-read+
4192 (package
4193 (name "emacs-ido-completing-read+")
4194 (version "3.12")
4195 (source (origin
4196 (method url-fetch)
4197 (uri (string-append "https://raw.githubusercontent.com"
4198 "/DarwinAwardWinner/ido-ubiquitous/v"
4199 version "/ido-completing-read+.el"))
4200 (file-name (string-append "ido-completing-read+-" version ".el"))
4201 (sha256
4202 (base32
4203 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4204 (build-system emacs-build-system)
4205 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4206 (synopsis "Replacement for completing-read using ido")
4207 (description
4208 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4209 Importantly, it detects edge cases that ordinary ido cannot handle and either
4210 adjusts them so ido can handle them, or else simply falls back to the standard
4211 Emacs completion function instead.")
4212 (license license:gpl3+)))
4213
4214 (define-public emacs-ido-ubiquitous
4215 (package
4216 (name "emacs-ido-ubiquitous")
4217 (version "3.12")
4218 (source (origin
4219 (method url-fetch)
4220 (uri (string-append "https://raw.githubusercontent.com"
4221 "/DarwinAwardWinner/ido-ubiquitous/v"
4222 version "/ido-ubiquitous.el"))
4223 (file-name (string-append "ido-ubiquitous-" version ".el"))
4224 (sha256
4225 (base32
4226 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4227 (build-system emacs-build-system)
4228 (propagated-inputs
4229 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4230 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4231 (synopsis "Use ido (nearly) everywhere")
4232 (description
4233 "Ido-ubiquitous enables ido-style completion for almost every function
4234 that uses the standard completion function completing-read.")
4235 (license license:gpl3+)))
4236
4237 (define-public emacs-yaml-mode
4238 (package
4239 (name "emacs-yaml-mode")
4240 (version "0.0.13")
4241 (source (origin
4242 (method url-fetch)
4243 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4244 "/yaml-mode/v" version "/yaml-mode.el"))
4245 (file-name (string-append "yaml-mode-" version ".el"))
4246 (sha256
4247 (base32
4248 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4249 (build-system emacs-build-system)
4250 (home-page "https://github.com/yoshiki/yaml-mode")
4251 (synopsis "Major mode for editing YAML files")
4252 (description
4253 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4254 serialization format. It was initially developed by Yoshiki Kurihara and many
4255 features were added by Marshall Vandegrift. As YAML and Python share the fact
4256 that indentation determines structure, this mode provides indentation and
4257 indentation command behavior very similar to that of python-mode.")
4258 (license license:gpl3+)))
4259
4260 (define-public emacs-web-mode
4261 (package
4262 (name "emacs-web-mode")
4263 (version "14")
4264 (source (origin
4265 (method url-fetch)
4266 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4267 "/web-mode/v" version "/web-mode.el"))
4268 (file-name (string-append "web-mode-" version ".el"))
4269 (sha256
4270 (base32
4271 "086hik5fmxg3kx74qmransx9cz961qd22d4m6ah2dw6cwaj1s3s5"))))
4272 (build-system emacs-build-system)
4273 (synopsis "Major mode for editing web templates")
4274 (description "Web-mode is an Emacs major mode for editing web templates
4275 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4276 client/server side engines). Web-mode is compatible with many template
4277 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4278 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4279 Dust.js, React/JSX, Angularjs, ejs, etc.")
4280 (home-page "http://web-mode.org/")
4281 (license license:gpl3+)))
4282
4283 (define-public emacs-wgrep
4284 (package
4285 (name "emacs-wgrep")
4286 (version "2.1.10")
4287 (source (origin
4288 (method url-fetch)
4289 (uri (string-append
4290 "https://github.com/mhayashi1120/Emacs-wgrep/archive/"
4291 version ".tar.gz"))
4292 (file-name (string-append name "-" version ".tar.gz"))
4293 (sha256
4294 (base32
4295 "1r2bpypar70xg6dsx12x1k74f39ww930rday7rgqpyknzsx1k4l1"))))
4296 (build-system emacs-build-system)
4297 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4298 (synopsis "Edit a grep buffer and apply those changes to the files")
4299 (description
4300 "Emacs wgrep allows you to edit a grep buffer and apply those changes to
4301 the file buffer.")
4302 (license license:gpl3+)))
4303
4304 (define-public emacs-helm
4305 (package
4306 (name "emacs-helm")
4307 (version "2.9.0")
4308 (source (origin
4309 (method url-fetch)
4310 (uri (string-append
4311 "https://github.com/" name "/helm/archive/v"
4312 version ".tar.gz"))
4313 (file-name (string-append name "-" version ".tar.gz"))
4314 (sha256
4315 (base32
4316 "1798gn0za11cxdbi436javfczv4abniccxcl0jppl463r8lzb8is"))))
4317 (build-system emacs-build-system)
4318 (propagated-inputs
4319 `(("emacs-async" ,emacs-async)
4320 ("emacs-popup" ,emacs-popup)))
4321 (home-page "https://emacs-helm.github.io/helm/")
4322 (synopsis "Incremental completion and selection narrowing
4323 framework for Emacs")
4324 (description "Helm is incremental completion and selection narrowing
4325 framework for Emacs. It will help steer you in the right direction when
4326 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4327 of @code{anything.el} originally written by Tamas Patrovic and can be
4328 considered to be its successor. Helm sets out to clean up the legacy code in
4329 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4330 not tied in the trap of backward compatibility.")
4331 (license license:gpl3+)))
4332
4333 (define-public emacs-helm-swoop
4334 (package
4335 (name "emacs-helm-swoop")
4336 (version "1.7.4")
4337 (source (origin
4338 (method url-fetch)
4339 (uri (string-append
4340 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4341 version
4342 ".tar.gz"))
4343 (file-name (string-append name "-" version ".tar.gz"))
4344 (sha256
4345 (base32
4346 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4347 (build-system emacs-build-system)
4348 (propagated-inputs
4349 `(("emacs-helm" ,emacs-helm)))
4350 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4351 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4352 (description
4353 "This package builds on the Helm interface to provide several commands
4354 for search-based navigation of buffers.")
4355 (license license:gpl2+)))
4356
4357 (define-public emacs-helm-projectile
4358 (package
4359 (name "emacs-helm-projectile")
4360 (version "0.14.0")
4361 (source (origin
4362 (method url-fetch)
4363 (uri (string-append
4364 "https://github.com/bbatsov/helm-projectile/archive/v"
4365 version
4366 ".tar.gz"))
4367 (file-name (string-append name "-" version ".tar.gz"))
4368 (sha256
4369 (base32
4370 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
4371 (build-system emacs-build-system)
4372 (propagated-inputs
4373 `(("emacs-dash" ,emacs-dash)
4374 ("emacs-helm" ,emacs-helm)
4375 ("emacs-projectile" ,emacs-projectile)))
4376 (home-page "https://github.com/bbatsov/helm-projectile")
4377 (synopsis "Helm integration for Projectile")
4378 (description
4379 "This Emacs library provides a Helm interface for Projectile.")
4380 (license license:gpl3+)))
4381
4382 (define-public emacs-helm-make
4383 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
4384 (revision "1"))
4385 (package
4386 (name "emacs-helm-make")
4387 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
4388 (source
4389 (origin
4390 (method git-fetch)
4391 (uri (git-reference
4392 (url "https://github.com/abo-abo/helm-make.git")
4393 (commit commit)))
4394 (file-name (string-append name "-" version "-checkout"))
4395 (sha256
4396 (base32
4397 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
4398 (build-system emacs-build-system)
4399 (propagated-inputs
4400 `(("emacs-helm" ,emacs-helm)
4401 ("emacs-projectile" ,emacs-projectile)))
4402 (home-page "https://github.com/abo-abo/helm-make")
4403 (synopsis "Select a Makefile target with helm")
4404 (description "@code{helm-make} or @code{helm-make-projectile} will give
4405 you a @code{helm} selection of directory Makefile's targets. Selecting a
4406 target will call @code{compile} on it.")
4407 (license license:gpl3+))))
4408
4409 (define-public emacs-cider
4410 (package
4411 (name "emacs-cider")
4412 (version "0.15.1")
4413 (source (origin
4414 (method url-fetch)
4415 (uri (string-append
4416 "https://github.com/clojure-emacs/cider/archive/v"
4417 version ".tar.gz"))
4418 (file-name (string-append name "-" version ".tar.gz"))
4419 (sha256
4420 (base32
4421 "1j5hlmi14ypszv1f9nvq0jjlz7i742flg0ny3055l7i4x089xx6g"))))
4422 (build-system emacs-build-system)
4423 (arguments
4424 '(#:exclude ; Don't exclude 'cider-test.el'.
4425 '("^\\.dir-locals\\.el$" "^test/")))
4426 (propagated-inputs
4427 `(("emacs-clojure-mode" ,emacs-clojure-mode)
4428 ("emacs-spinner" ,emacs-spinner)
4429 ("emacs-pkg-info" ,emacs-pkg-info)
4430 ("emacs-queue" ,emacs-queue)))
4431 (home-page "https://cider.readthedocs.org/")
4432 (synopsis "Clojure development environment for Emacs")
4433 (description
4434 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
4435 provide an interactive development experience similar to the one you'd get
4436 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
4437 Geiser) and Smalltalk.
4438
4439 CIDER is the successor to the now deprecated combination of using SLIME +
4440 swank-clojure for Clojure development.
4441
4442 There are plenty of differences between CIDER and SLIME, but the core ideas
4443 are pretty much the same (and SLIME served as the principle inspiration for
4444 CIDER).")
4445 (license license:gpl3+)))
4446
4447 ;; There hasn't been a tag or release since 2015, so we take the latest
4448 ;; commit.
4449 (define-public emacs-sly
4450 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
4451 (revision "1"))
4452 (package
4453 (name "emacs-sly")
4454 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
4455 (source
4456 (origin
4457 (method git-fetch)
4458 (uri (git-reference
4459 (url "https://github.com/joaotavora/sly.git")
4460 (commit commit)))
4461 (file-name (git-file-name name version))
4462 (sha256
4463 (base32
4464 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
4465 (build-system emacs-build-system)
4466 (arguments
4467 `(#:include (cons "^lib\\/" %default-include)
4468 #:phases
4469 ;; The package provides autoloads.
4470 (modify-phases %standard-phases
4471 (delete 'make-autoloads))))
4472 (home-page "https://github.com/joaotavora/sly")
4473 (synopsis "Sylvester the Cat's Common Lisp IDE")
4474 (description
4475 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
4476 contains the following improvements over it:
4477
4478 @enumerate
4479 @item Completely redesigned REPL based on Emacs's own full-featured
4480 @code{comint.el}
4481 @item Live code annotations via a new @code{sly-stickers} contrib
4482 @item Consistent interactive button interface. Everything can be copied to
4483 the REPL.
4484 @item Multiple inspectors with independent history
4485 @item Regexp-capable @code{M-x sly-apropos}
4486 @item Contribs are first class SLY citizens and enabled by default
4487 @item Use ASDF to loads contribs on demand.
4488 @end enumerate
4489
4490 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
4491 xref, etc...) are still available, but with better integration.")
4492 (license license:gpl3+))))
4493
4494 (define-public emacs-lua-mode
4495 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
4496 (revision "1"))
4497 (package
4498 (name "emacs-lua-mode")
4499 (version (string-append "20151025." revision "-" (string-take commit 9)))
4500 (home-page "https://github.com/immerrr/lua-mode/")
4501 (source (origin
4502 (method git-fetch)
4503 (uri (git-reference
4504 (url home-page)
4505 (commit commit)))
4506 (file-name (string-append name "-" version ".checkout"))
4507 (sha256
4508 (base32
4509 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
4510 (build-system emacs-build-system)
4511 (synopsis "Major mode for lua")
4512 (description
4513 "This Emacs package provides a mode for @uref{https://www.lua.org/,
4514 Lua programing language}.")
4515 (license license:gpl2+))))
4516
4517 (define-public emacs-ebuild-mode
4518 (package
4519 (name "emacs-ebuild-mode")
4520 (version "1.37")
4521 (source (origin
4522 (method url-fetch)
4523 (uri (string-append
4524 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
4525 "-" version ".tar.xz"))
4526 (file-name (string-append name "-" version ".tar.xz"))
4527 (sha256
4528 (base32
4529 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
4530 (build-system emacs-build-system)
4531 (home-page "https://devmanual.gentoo.org")
4532 (synopsis "Major modes for Gentoo package files")
4533 (description
4534 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
4535 news items, openrc and runscripts.")
4536 (license license:gpl2+)))
4537
4538 (define-public emacs-evil
4539 (package
4540 (name "emacs-evil")
4541 (version "1.2.13")
4542 (source
4543 (origin
4544 (method url-fetch)
4545 (uri (string-append "https://github.com/emacs-evil/evil/archive/"
4546 version ".tar.gz"))
4547 (file-name (string-append name "-" version ".tar.gz"))
4548 (sha256
4549 (base32
4550 "1z63zsxmsc6mh74wv6065carwqmgs7b7lz5044s12xvgsjfbwi8h"))))
4551 (build-system emacs-build-system)
4552 (propagated-inputs
4553 `(("emacs-undo-tree" ,emacs-undo-tree)
4554 ("emacs-goto-chg" ,emacs-goto-chg)))
4555 (home-page "https://github.com/emacs-evil/evil")
4556 (synopsis "Extensible Vi layer for Emacs")
4557 (description
4558 "Evil is an extensible vi layer for Emacs. It emulates the
4559 main features of Vim, and provides facilities for writing custom
4560 extensions.")
4561 (license license:gpl3+)))
4562
4563 (define-public emacs-evil-collection
4564 (let ((commit "f40704a57fd33b4bfad64147a2b771fc8961fdfc")
4565 (revision "1"))
4566 (package
4567 (name "emacs-evil-collection")
4568 (version (git-version "20180425" revision commit))
4569 (source (origin
4570 (method git-fetch)
4571 (uri (git-reference
4572 (url "https://github.com/emacs-evil/evil-collection")
4573 (commit commit)))
4574 (file-name (string-append name "-" version "-checkout"))
4575 (sha256
4576 (base32
4577 "0qn19k0f3isnbi1hkmcf3qjxbyvp23m5ak5ny7623qgwb2nwz1l5"))))
4578 (build-system emacs-build-system)
4579 (propagated-inputs
4580 `(("emacs-evil" ,emacs-evil)))
4581 (home-page "https://github.com/emacs-evil/evil-collection")
4582 (synopsis "Collection of Evil bindings for many major and minor modes")
4583 (description "This is a collection of Evil bindings for the parts of
4584 Emacs that Evil does not cover properly by default, such as @code{help-mode},
4585 @code{M-x calendar}, Eshell and more.")
4586 (license license:gpl3+))))
4587
4588 (define-public emacs-goto-chg
4589 (package
4590 (name "emacs-goto-chg")
4591 (version "1.6")
4592 (source
4593 (origin
4594 (method url-fetch)
4595 ;; There is no versioned source.
4596 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
4597 (file-name (string-append "goto-chg-" version ".el"))
4598 (sha256
4599 (base32
4600 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
4601 (build-system emacs-build-system)
4602 ;; There is no other home page.
4603 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
4604 (synopsis "Go to the last change in the Emacs buffer")
4605 (description
4606 "This package provides @code{M-x goto-last-change} command that goes to
4607 the point of the most recent edit in the current Emacs buffer. When repeated,
4608 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
4609 used for reverse direction.")
4610 (license license:gpl2+)))
4611
4612 (define-public emacs-monroe
4613 (package
4614 (name "emacs-monroe")
4615 (version "0.3.1")
4616 (source
4617 (origin
4618 (method url-fetch)
4619 (uri (string-append "https://github.com/sanel/monroe/archive/"
4620 version ".tar.gz"))
4621 (file-name (string-append name "-" version ".tar.gz"))
4622 (sha256
4623 (base32
4624 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
4625 (build-system emacs-build-system)
4626 (home-page "https://github.com/sanel/monroe")
4627 (synopsis "Clojure nREPL client for Emacs")
4628 (description
4629 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
4630 distribution, primarily targeting Clojure users")
4631 (license license:gpl3+)))
4632
4633 (define-public emacs-writegood-mode
4634 (package
4635 (name "emacs-writegood-mode")
4636 (version "2.0.2")
4637 (home-page "https://github.com/bnbeckwith/writegood-mode")
4638 (source (origin
4639 (method git-fetch)
4640 (uri (git-reference
4641 (url home-page)
4642 (commit (string-append "v" version))))
4643 (sha256
4644 (base32
4645 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
4646 (file-name (string-append name "-checkout"))))
4647 (build-system emacs-build-system)
4648 (synopsis "Polish up poor writing on the fly")
4649 (description
4650 "This minor mode tries to find and highlight problems with your writing
4651 in English as you type. It primarily detects \"weasel words\" and abuse of
4652 passive voice.")
4653 (license license:gpl3+)))
4654
4655 (define-public emacs-neotree
4656 (package
4657 (name "emacs-neotree")
4658 (version "0.5.2")
4659 (home-page "https://github.com/jaypei/emacs-neotree")
4660 (source (origin
4661 (method url-fetch)
4662 (uri (string-append
4663 "https://github.com/jaypei/" name
4664 "/archive/" version ".tar.gz"))
4665 (sha256
4666 (base32
4667 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
4668 (file-name (string-append name "-" version ".tar.gz"))))
4669 (build-system emacs-build-system)
4670 (synopsis "Folder tree view for Emacs")
4671 (description "This Emacs package provides a folder tree view.")
4672 (license license:gpl3+)))
4673
4674 (define-public emacs-org
4675 (package
4676 (name "emacs-org")
4677 ;; emacs-org-contrib inherits from this package. Please update its sha256
4678 ;; checksum as well.
4679 (version "9.1.11")
4680 (source (origin
4681 (method url-fetch)
4682 (uri (string-append "http://elpa.gnu.org/packages/org-"
4683 version ".tar"))
4684 (sha256
4685 (base32
4686 "0i27g5qbkfqbxhgiz917pjwkxg3rwid99d0ickwx43bzq0zi7c1m"))))
4687 (build-system emacs-build-system)
4688 (home-page "https://orgmode.org/")
4689 (synopsis "Outline-based notes management and organizer")
4690 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4691 lists, and project planning with a fast and effective plain-text system. It
4692 also is an authoring system with unique support for literate programming and
4693 reproducible research.")
4694 (license license:gpl3+)))
4695
4696 (define-public emacs-org-contrib
4697 (package
4698 (inherit emacs-org)
4699 (name "emacs-org-contrib")
4700 (version "20180423")
4701 (source (origin
4702 (method url-fetch)
4703 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
4704 version ".tar"))
4705 (sha256
4706 (base32
4707 "1aggvdy74q8p79xyc19zring5gjvlzp6lbsq8ar319zkmcjrapqd"))))
4708 (arguments
4709 `(#:modules ((guix build emacs-build-system)
4710 (guix build utils)
4711 (guix build emacs-utils)
4712 (ice-9 ftw)
4713 (srfi srfi-1))
4714 #:phases
4715 (modify-phases %standard-phases
4716 (add-after 'install 'delete-org-files
4717 (lambda* (#:key inputs outputs #:allow-other-keys)
4718 (let* ((out (assoc-ref outputs "out"))
4719 (org (assoc-ref inputs "emacs-org"))
4720 (contrib-files
4721 (map basename (find-files out)))
4722 (org+contrib-files
4723 (map basename (find-files org)))
4724 (duplicates (lset-intersection
4725 string=? contrib-files org+contrib-files)))
4726 (with-directory-excursion
4727 (string-append
4728 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
4729 (for-each delete-file duplicates))
4730 #t))))))
4731 (propagated-inputs
4732 `(("emacs-org" ,emacs-org)))
4733 (synopsis "Contributed packages to Org mode")
4734 (description "Org is an Emacs mode for keeping notes, maintaining TODO
4735 lists, and project planning with a fast and effective plain-text system.
4736
4737 This package is equivalent to org-plus-contrib, but only includes additional
4738 files that you would find in @file{contrib/} from the git repository.")))
4739
4740 (define-public emacs-flx
4741 (package
4742 (name "emacs-flx")
4743 (version "0.6.1")
4744 (source
4745 (origin
4746 (method url-fetch)
4747 (uri (string-append "https://github.com/lewang/"
4748 "flx/archive/v" version ".tar.gz"))
4749 (sha256
4750 (base32
4751 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
4752 (file-name (string-append name "-" version ".tar.gz"))))
4753 (build-system emacs-build-system)
4754 (home-page "https://github.com/lewang/flx")
4755 (synopsis "Fuzzy matching for Emacs")
4756 (description
4757 "Flx provides fuzzy matching for emacs a la sublime text.
4758 The sorting algorithm is a balance between word beginnings (abbreviation)
4759 and contiguous matches (substring). The longer the substring match,
4760 the higher it scores. This maps well to how we think about matching.
4761 Flx has support for ido (interactively do things) through flx-ido.")
4762 (license license:gpl3+)))
4763
4764 (define-public emacs-cyberpunk-theme
4765 (package
4766 (name "emacs-cyberpunk-theme")
4767 (version "1.19")
4768 (source
4769 (origin
4770 (method url-fetch)
4771 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
4772 "archive/" version ".tar.gz"))
4773 (sha256
4774 (base32
4775 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
4776 (file-name (string-append name "-" version ".tar.gz"))))
4777 (build-system emacs-build-system)
4778 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
4779 (synopsis "Cyberpunk theme for emacs built-in color theme support")
4780 (description
4781 "Cyberpunk color theme for the emacs 24+ built-in color theme support
4782 known loosely as deftheme. Many mode-specific customizations are included.")
4783 (license license:gpl3+)))
4784
4785 (define-public emacs-danneskjold-theme
4786 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
4787 (revision "1"))
4788 (package
4789 (name "emacs-danneskjold-theme")
4790 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4791 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
4792 (source
4793 (origin
4794 (method git-fetch)
4795 (uri (git-reference
4796 (url home-page)
4797 (commit commit)))
4798 (file-name (string-append name "-" version "-checkout"))
4799 (sha256
4800 (base32
4801 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
4802 (build-system emacs-build-system)
4803 (arguments
4804 `(#:phases
4805 (modify-phases %standard-phases
4806 (add-after 'unpack 'delete-screenshots
4807 (lambda _
4808 (delete-file-recursively "screenshots") #t)))))
4809 (synopsis "High-contrast Emacs theme")
4810 (description
4811 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
4812 (license license:gpl3+))))
4813
4814 (define-public emacs-dream-theme
4815 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
4816 (revision "1"))
4817 (package
4818 (name "emacs-dream-theme")
4819 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
4820 (source
4821 (origin
4822 (method git-fetch)
4823 (uri (git-reference
4824 (url "https://github.com/djcb/dream-theme")
4825 (commit commit)))
4826 (file-name (string-append name "-" version "-checkout"))
4827 (sha256
4828 (base32
4829 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
4830 (build-system emacs-build-system)
4831 (home-page "https://github.com/djcb/dream-theme")
4832 (synopsis "High-contrast Emacs theme")
4833 (description
4834 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
4835 by zenburn, sinburn and similar themes, but slowly diverging from them.")
4836 (license license:gpl3+))))
4837
4838 (define-public emacs-auto-complete
4839 (package
4840 (name "emacs-auto-complete")
4841 (version "1.5.1")
4842 (source
4843 (origin
4844 (method url-fetch)
4845 (uri (string-append "https://github.com/auto-complete/"
4846 "auto-complete/archive/v" version ".tar.gz"))
4847 (sha256
4848 (base32
4849 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
4850 (file-name (string-append name "-" version ".tar.gz"))))
4851 (build-system emacs-build-system)
4852 (propagated-inputs
4853 `(("emacs-popup" ,emacs-popup)))
4854 (home-page "https://github.com/auto-complete/auto-complete")
4855 (synopsis "Intelligent auto-completion extension for Emacs")
4856 (description
4857 "Auto-Complete is an intelligent auto-completion extension for Emacs.
4858 It extends the standard Emacs completion interface and provides an environment
4859 that allows users to concentrate more on their own work. Its features are:
4860 a visual interface, reduce overhead of completion by using statistic method,
4861 extensibility.")
4862 (license license:gpl3+)))
4863
4864 (define-public m17n-db
4865 (package
4866 (name "m17n-db")
4867 (version "1.7.0")
4868 (source
4869 (origin
4870 (method url-fetch)
4871 (uri (string-append "mirror://savannah/m17n/m17n-db-"
4872 version ".tar.gz"))
4873 (sha256
4874 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
4875 (build-system gnu-build-system)
4876 (inputs
4877 `(("gettext" ,gettext-minimal)))
4878 (arguments
4879 `(#:configure-flags
4880 (list (string-append "--with-charmaps="
4881 (assoc-ref %build-inputs "libc")
4882 "/share/i18n/charmaps"))))
4883 ;; With `guix lint' the home-page URI returns a small page saying
4884 ;; that your browser does not handle frames. This triggers the "URI
4885 ;; returns suspiciously small file" warning.
4886 (home-page "https://www.nongnu.org/m17n/")
4887 (synopsis "Multilingual text processing library (database)")
4888 (description "The m17n library realizes multilingualization of
4889 many aspects of applications. The m17n library represents
4890 multilingual text as an object named M-text. M-text is a string with
4891 attributes called text properties, and designed to substitute for
4892 string in C. Text properties carry any information required to input,
4893 display and edit the text.
4894
4895 This package contains the library database.")
4896 (license license:lgpl2.1+)))
4897
4898 (define-public m17n-lib
4899 (package
4900 (name "m17n-lib")
4901 (version "1.7.0")
4902 (source
4903 (origin
4904 (method url-fetch)
4905 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
4906 version ".tar.gz"))
4907 (sha256
4908 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
4909 (build-system gnu-build-system)
4910 (inputs
4911 `(("fribidi" ,fribidi)
4912 ("gd" ,gd)
4913 ("libotf" ,libotf)
4914 ("libxft" ,libxft)
4915 ("libxml2" ,libxml2)
4916 ("m17n-db" ,m17n-db)))
4917 (arguments
4918 `(#:parallel-build? #f))
4919 ;; With `guix lint' the home-page URI returns a small page saying
4920 ;; that your browser does not handle frames. This triggers the "URI
4921 ;; returns suspiciously small file" warning.
4922 (home-page "https://www.nongnu.org/m17n/")
4923 (synopsis "Multilingual text processing library (runtime)")
4924 (description "The m17n library realizes multilingualization of
4925 many aspects of applications. The m17n library represents
4926 multilingual text as an object named M-text. M-text is a string with
4927 attributes called text properties, and designed to substitute for
4928 string in C. Text properties carry any information required to input,
4929 display and edit the text.
4930
4931 This package contains the library runtime.")
4932 (license license:lgpl2.1+)))
4933
4934 (define-public emacs-nginx-mode
4935 (package
4936 (name "emacs-nginx-mode")
4937 (version "1.1.4")
4938 (source
4939 (origin
4940 (method url-fetch)
4941 (uri (string-append
4942 "https://github.com/ajc/nginx-mode/archive/v"
4943 version ".tar.gz"))
4944 (file-name (string-append name "-" version ".tar.gz"))
4945 (sha256
4946 (base32
4947 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
4948 (build-system emacs-build-system)
4949 (home-page "https://github.com/ajc/nginx-mode")
4950 (synopsis "Emacs major mode for editing nginx config files")
4951 (description "This package provides an Emacs major mode for
4952 editing nginx config files.")
4953 (license license:gpl2+)))
4954
4955 (define-public emacs-stream
4956 (package
4957 (name "emacs-stream")
4958 (version "2.2.0")
4959 (home-page "https://github.com/NicolasPetton/stream")
4960 (source
4961 (origin
4962 (method url-fetch)
4963 (file-name (string-append name "-" version ".tar.gz"))
4964 (uri (string-append home-page "/archive/"version ".tar.gz"))
4965 (sha256
4966 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
4967 (build-system emacs-build-system)
4968 (synopsis "Implementation of streams for Emacs")
4969 (description "This library provides an implementation of streams for Emacs.
4970 Streams are implemented as delayed evaluation of cons cells.")
4971 (license license:gpl3+)))
4972
4973 (define-public emacs-el-search
4974 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
4975 (revision "1"))
4976 (package
4977 (name "emacs-el-search")
4978 ;; No ufficial release.
4979 (version (string-append "0.0-" revision "." (string-take commit 7)))
4980 (home-page "https://github.com/emacsmirror/el-search")
4981 (source
4982 (origin
4983 (method git-fetch)
4984 (file-name (string-append name "-" version ".tar.gz"))
4985 (uri (git-reference
4986 (commit commit)
4987 (url (string-append home-page ".git"))))
4988 (sha256
4989 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
4990 (build-system emacs-build-system)
4991 (inputs `(("emacs-stream" ,emacs-stream)))
4992 (synopsis "Expression based interactive search for emacs-lisp-mode")
4993 (description "This package provides expression based interactive search
4994 procedures for emacs-lisp-mode.")
4995 (license license:gpl3+))))
4996
4997 (define-public emacs-ht
4998 (package
4999 (name "emacs-ht")
5000 (version "2.1")
5001 (source
5002 (origin
5003 (method url-fetch)
5004 (uri (string-append
5005 "https://github.com/Wilfred/ht.el/archive/"
5006 version ".tar.gz"))
5007 (file-name (string-append name "-" version ".tar.gz"))
5008 (sha256
5009 (base32
5010 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5011 (build-system emacs-build-system)
5012 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5013 (home-page "https://github.com/Wilfred/ht.el")
5014 (synopsis "Hash table library for Emacs")
5015 (description
5016 "This package simplifies the use of hash tables in elisp. It also
5017 provides functions to convert hash tables from and to alists and plists.")
5018 (license license:gpl3+)))
5019
5020 (define-public emacs-log4e
5021 (package
5022 (name "emacs-log4e")
5023 (version "0.3.0")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (string-append
5028 "https://github.com/aki2o/log4e/archive/v"
5029 version ".tar.gz"))
5030 (file-name (string-append name "-" version ".tar.gz"))
5031 (sha256
5032 (base32
5033 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5034 (build-system emacs-build-system)
5035 (arguments
5036 `(#:phases
5037 (modify-phases %standard-phases
5038 (add-after 'unpack 'remove-tests
5039 ;; Guile builder complains about null characters in some
5040 ;; strings of test files. Remove "test" directory (it is not
5041 ;; needed anyway).
5042 (lambda _
5043 (delete-file-recursively "test"))))))
5044 (home-page "https://github.com/aki2o/log4e")
5045 (synopsis "Logging framework for elisp")
5046 (description
5047 "This package provides a logging framework for elisp. It allows
5048 you to deal with multiple log levels.")
5049 (license license:gpl3+)))
5050
5051 (define-public emacs-gntp
5052 (package
5053 (name "emacs-gntp")
5054 (version "0.1")
5055 (source
5056 (origin
5057 (method url-fetch)
5058 (uri (string-append
5059 "https://github.com/tekai/gntp.el/archive/v"
5060 version ".tar.gz"))
5061 (file-name (string-append name "-" version ".tar.gz"))
5062 (sha256
5063 (base32
5064 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5065 (build-system emacs-build-system)
5066 (home-page "https://github.com/tekai/gntp.el")
5067 (synopsis "Growl Notification Protocol for Emacs")
5068 (description
5069 "This package implements the Growl Notification Protocol GNTP
5070 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5071 It is incomplete as it only lets you send but not receive
5072 notifications.")
5073 (license license:bsd-3)))
5074
5075 (define-public emacs-alert
5076 (package
5077 (name "emacs-alert")
5078 (version "1.2")
5079 (source
5080 (origin
5081 (method url-fetch)
5082 (uri (string-append
5083 "https://github.com/jwiegley/alert/archive/v"
5084 version ".tar.gz"))
5085 (file-name (string-append name "-" version ".tar.gz"))
5086 (sha256
5087 (base32
5088 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5089 (build-system emacs-build-system)
5090 (propagated-inputs
5091 `(("emacs-gntp" ,emacs-gntp)
5092 ("emacs-log4e" ,emacs-log4e)))
5093 (home-page "https://github.com/jwiegley/alert")
5094 (synopsis "Growl-style notification system for Emacs")
5095 (description
5096 "Alert is a Growl-workalike for Emacs which uses a common notification
5097 interface and multiple, selectable \"styles\", whose use is fully
5098 customizable by the user.")
5099 (license license:gpl2+)))
5100
5101 (define-public emacs-mu4e-alert
5102 (package
5103 (name "emacs-mu4e-alert")
5104 (version "1.0")
5105 (source
5106 (origin
5107 (method url-fetch)
5108 (uri (string-append
5109 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5110 version ".tar.gz"))
5111 (file-name (string-append name "-" version ".tar.gz"))
5112 (sha256
5113 (base32
5114 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
5115 (build-system emacs-build-system)
5116 (propagated-inputs
5117 `(("emacs-alert" ,emacs-alert)
5118 ("emacs-s" ,emacs-s)
5119 ("emacs-ht" ,emacs-ht)
5120 ("mu" ,mu)))
5121 (home-page "https://github.com/iqbalansari/mu4e-alert")
5122 (synopsis "Desktop notification for mu4e")
5123 (description
5124 "This package provides desktop notifications for mu4e.
5125 Additionally it can display the number of unread emails in the
5126 mode-line.")
5127 (license license:gpl3+)))
5128
5129 (define-public emacs-pretty-mode
5130 (package
5131 (name "emacs-pretty-mode")
5132 (version "2.0.3")
5133 (source
5134 (origin
5135 (method url-fetch)
5136 (uri (string-append "https://github.com/akatov/pretty-mode/"
5137 "archive/" version ".tar.gz"))
5138 (file-name (string-append name "-" version ".tar.gz"))
5139 (sha256
5140 (base32
5141 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5142 (build-system emacs-build-system)
5143 (home-page "https://github.com/akatov/pretty-mode")
5144 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5145 (description
5146 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5147 (license license:gpl3+)))
5148
5149 (define-public emacs-yasnippet
5150 (package
5151 (name "emacs-yasnippet")
5152 (version "0.12.2")
5153 (source (origin
5154 (method url-fetch)
5155 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5156 "archive/" version ".tar.gz"))
5157 (file-name (string-append name "-" version ".tar.gz"))
5158 (sha256
5159 (base32
5160 "01jabaz0g67bsziayrxgv74px55fx4nlrcl0csl8f1by2102pwc5"))
5161 (modules '((guix build utils)))
5162 (snippet
5163 '(begin
5164 ;; YASnippet expects a "snippets" subdirectory in the same
5165 ;; directory as yasnippet.el, but we don't install it
5166 ;; because it's a git submodule pointing to an external
5167 ;; repository. Adjust `yas-snippet-dirs' to prevent
5168 ;; warnings about a missing directory.
5169 (substitute* "yasnippet.el"
5170 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5171 "))\n"))))))
5172 (build-system emacs-build-system)
5173 (home-page "https://github.com/joaotavora/yasnippet")
5174 (synopsis "Yet another snippet extension for Emacs")
5175 (description
5176 "YASnippet is a template system for Emacs. It allows you to type an
5177 abbreviation and automatically expand it into function templates.")
5178 (license license:gpl3+)))
5179
5180 (define-public emacs-yasnippet-snippets
5181 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5182 (revision "1"))
5183 (package
5184 (name "emacs-yasnippet-snippets")
5185 (version (string-append "1-" revision "." (string-take commit 8)))
5186 (source
5187 (origin
5188 (method git-fetch)
5189 (uri (git-reference
5190 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5191 (commit commit)))
5192 (file-name (string-append name "-" version "-checkout"))
5193 (sha256
5194 (base32
5195 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5196 (build-system trivial-build-system)
5197 (arguments
5198 `(#:modules ((ice-9 ftw)
5199 (ice-9 regex)
5200 (guix build utils))
5201 #:builder
5202 (begin
5203 (use-modules (ice-9 ftw)
5204 (ice-9 regex)
5205 (guix build utils))
5206 (with-directory-excursion (assoc-ref %build-inputs "source")
5207 (for-each (lambda (dir)
5208 (copy-recursively
5209 dir
5210 (string-append %output
5211 "/share/emacs/yasnippet-snippets/"
5212 dir)))
5213 (scandir "." (lambda (fname)
5214 (and (string-match "-mode$" fname)
5215 (directory-exists? fname)))))))))
5216 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5217 (synopsis "Collection of YASnippet snippets for many languages")
5218 (description
5219 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5220 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5221 To make YASnippet aware of these snippets, add the above directory to
5222 @code{yas-snippet-dirs}.")
5223 (license license:expat))))
5224
5225 (define-public emacs-helm-c-yasnippet
5226 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5227 (revision "1"))
5228 (package
5229 (name "emacs-helm-c-yasnippet")
5230 (version (string-append "0.6.7" "-" revision "."
5231 (string-take commit 7)))
5232 (source (origin
5233 (method git-fetch)
5234 (uri (git-reference
5235 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5236 (commit commit)))
5237 (file-name (string-append name "-" version "-checkout"))
5238 (sha256
5239 (base32
5240 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5241 (build-system emacs-build-system)
5242 (propagated-inputs
5243 `(("emacs-helm" ,emacs-helm)
5244 ("emacs-yasnippet" ,emacs-yasnippet)))
5245 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5246 (synopsis "Helm integration for Yasnippet")
5247 (description "This Emacs library provides Helm interface for
5248 Yasnippet.")
5249 (license license:gpl2+))))
5250
5251 (define-public emacs-helm-system-packages
5252 (let ((commit "986b7bd360a705053500c4ce2c9bea03dd7b24a6")
5253 (revision "1"))
5254 (package
5255 (name "emacs-helm-system-packages")
5256 (version (git-version "1.9.0" revision commit))
5257 (source (origin
5258 (method git-fetch)
5259 (uri (git-reference
5260 (url "https://github.com/emacs-helm/helm-system-packages")
5261 (commit commit)))
5262 (file-name (string-append name "-" version "-checkout"))
5263 (sha256
5264 (base32
5265 "19iklhpxgh5xx6h4dysf58nd46lmyb46xj601lf7kbwl6yq0y61f"))))
5266 (build-system emacs-build-system)
5267 (propagated-inputs
5268 `(("emacs-helm" ,emacs-helm)))
5269 (home-page "https://github.com/emacs-helm/helm-system-packages")
5270 (synopsis "Helm System Packages is an interface to your package manager")
5271 (description "List all available packages in Helm (with installed
5272 packages displayed in their own respective face). Fuzzy-search, mark and
5273 execute the desired action over any selections of packages: Install,
5274 uninstall, display packages details (in Org Mode) or insert details at point,
5275 find files owned by packages... And much more, including performing all the
5276 above over the network.")
5277 (license license:gpl3+))))
5278
5279 (define-public emacs-memoize
5280 (package
5281 (name "emacs-memoize")
5282 (version "1.1")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (string-append
5287 "https://github.com/skeeto/emacs-memoize/archive/"
5288 version ".tar.gz"))
5289 (file-name (string-append name "-" version ".tar.gz"))
5290 (sha256
5291 (base32
5292 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
5293 (build-system emacs-build-system)
5294 (arguments
5295 `(#:tests? #t
5296 #:test-command '("emacs" "--batch"
5297 "-l" "memoize-test.el"
5298 "-f" "ert-run-tests-batch-and-exit")))
5299 (home-page "https://github.com/skeeto/emacs-memoize")
5300 (synopsis "Emacs lisp memoization library")
5301 (description "@code{emacs-memoize} is an Emacs library for
5302 memoizing functions.")
5303 (license license:unlicense)))
5304
5305 (define-public emacs-linum-relative
5306 (package
5307 (name "emacs-linum-relative")
5308 (version "0.5")
5309 (source
5310 (origin
5311 (method url-fetch)
5312 (uri (string-append
5313 "https://github.com/coldnew/linum-relative/archive/"
5314 version ".tar.gz"))
5315 (file-name (string-append name "-" version ".tar.gz"))
5316 (sha256
5317 (base32
5318 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5319 (build-system emacs-build-system)
5320 (home-page "https://github.com/coldnew/linum-relative")
5321 (synopsis "Relative line numbering for Emacs")
5322 (description "@code{emacs-linum-relative} displays the relative line
5323 number on the left margin in Emacs.")
5324 (license license:gpl2+)))
5325
5326 (define-public emacs-idle-highlight
5327 (package
5328 (name "emacs-idle-highlight")
5329 (version "1.1.3")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (string-append
5334 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5335 version ".tar.gz"))
5336 (file-name (string-append name "-" version ".tar.gz"))
5337 (sha256
5338 (base32
5339 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5340 (build-system emacs-build-system)
5341 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5342 (synopsis "Highlights all occurrences of the word the point is on")
5343 (description
5344 "This Emacs package provides @code{idle-highlight-mode} that sets
5345 an idle timer to highlight all occurrences in the buffer of the word under
5346 the point.")
5347 (license license:gpl3+)))
5348
5349 (define-public emacs-ox-twbs
5350 (package
5351 (name "emacs-ox-twbs")
5352 (version "1.1.1")
5353 (source
5354 (origin
5355 (method url-fetch)
5356 (uri (string-append
5357 "https://github.com/marsmining/ox-twbs/archive/v"
5358 version ".tar.gz"))
5359 (file-name (string-append name "-" version ".tar.gz"))
5360 (sha256
5361 (base32
5362 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5363 (build-system emacs-build-system)
5364 (home-page "https://github.com/marsmining/ox-twbs")
5365 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5366 (description
5367 "This Emacs package outputs your org-mode docs with a simple, clean and
5368 modern look. It implements a new HTML back-end for exporting org-mode docs as
5369 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5370 jQuery and Bootstrap resources included via osscdn.")
5371 (license license:gpl3+)))
5372
5373 (define-public emacs-highlight-sexp
5374 (package
5375 (name "emacs-highlight-sexp")
5376 (version "1.0")
5377 (source
5378 (origin
5379 (method url-fetch)
5380 (uri (string-append
5381 "https://github.com/daimrod/highlight-sexp/archive/v"
5382 version ".tar.gz"))
5383 (file-name (string-append name "-" version ".tar.gz"))
5384 (sha256
5385 (base32
5386 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
5387 (build-system emacs-build-system)
5388 (home-page "https://github.com/daimrod/highlight-sexp")
5389 (synopsis "Minor mode that highlights the s-exp at the current position")
5390 (description
5391 "This Emacs package highlights the s-exp at the current position.")
5392 (license license:gpl3+)))
5393
5394 (define-public emacs-highlight-stages
5395 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
5396 (revision "1"))
5397 (package
5398 (name "emacs-highlight-stages")
5399 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
5400 (source
5401 (origin
5402 (method git-fetch)
5403 (uri (git-reference
5404 (url "https://github.com/zk-phi/highlight-stages.git")
5405 (commit commit)))
5406 (file-name (string-append name "-" version "-checkout"))
5407 (sha256
5408 (base32
5409 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
5410 (patches
5411 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
5412 (build-system emacs-build-system)
5413 (home-page "https://github.com/wigust/highlight-stages")
5414 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
5415 (description "@code{highlight-stages} provides an Emacs minor mode that
5416 highlights quasi-quoted expressions.")
5417 (license license:gpl3+))))
5418
5419 (define-public emacspeak
5420 (package
5421 (name "emacspeak")
5422 (version "47.0")
5423 (source
5424 (origin
5425 (method url-fetch)
5426 (uri (string-append
5427 "https://github.com/tvraman/emacspeak/releases/download/"
5428 version "/emacspeak-" version ".tar.bz2"))
5429 (sha256
5430 (base32
5431 "0xbcc266x752y68s3g096m161irzvsqym3axzqn8rb276a8x55n7"))))
5432 (build-system gnu-build-system)
5433 (arguments
5434 '(#:make-flags (list (string-append "prefix="
5435 (assoc-ref %outputs "out")))
5436 #:phases
5437 (modify-phases %standard-phases
5438 (replace 'configure
5439 (lambda _
5440 ;; Configure Emacspeak according to etc/install.org.
5441 (setenv "SHELL" (which "sh"))
5442 (zero? (system* "make" "config"))))
5443 (add-after 'build 'build-espeak
5444 (lambda _
5445 (zero? (system* "make" "espeak"))))
5446 (replace 'install
5447 (lambda* (#:key outputs #:allow-other-keys)
5448 (let* ((out (assoc-ref outputs "out"))
5449 (bin (string-append out "/bin"))
5450 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
5451 (info (string-append out "/share/info")))
5452 ;; According to etc/install.org, the Emacspeak directory should
5453 ;; be copied to its installation destination.
5454 (for-each
5455 (lambda (file)
5456 (copy-recursively file (string-append lisp "/" file)))
5457 '("etc" "info" "lisp" "media" "servers" "sounds" "stumpwm"
5458 "xsl"))
5459 ;; Make sure emacspeak is loaded from the correct directory.
5460 (substitute* "etc/emacspeak.sh"
5461 (("exec emacs.*$")
5462 (string-append "exec emacs -l " lisp
5463 "/lisp/emacspeak-setup.el $CL_ALL")))
5464 ;; Install the convenient startup script.
5465 (mkdir-p bin)
5466 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
5467 #t))
5468 (add-after 'install 'wrap-program
5469 (lambda* (#:key inputs outputs #:allow-other-keys)
5470 (let* ((out (assoc-ref outputs "out"))
5471 (emacspeak (string-append out "/bin/emacspeak"))
5472 (espeak (string-append (assoc-ref inputs "espeak")
5473 "/bin/espeak")))
5474 ;; The environment variable DTK_PROGRAM tells emacspeak what
5475 ;; program to use for speech.
5476 (wrap-program emacspeak
5477 `("DTK_PROGRAM" ":" prefix (,espeak)))
5478 #t))))
5479 #:tests? #f)) ; no check target
5480 (inputs
5481 `(("espeak" ,espeak)
5482 ("tcl" ,tcl)
5483 ("tclx" ,tclx)))
5484 (native-inputs `(("emacs" ,emacs-minimal)))
5485 (home-page "http://emacspeak.sourceforge.net")
5486 (synopsis "Audio desktop interface for Emacs")
5487 (description
5488 "Emacspeak is a speech interface that allows visually impaired users to
5489 interact independently and efficiently with the computer. Audio formatting
5490 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
5491 allows Emacspeak to produce rich aural presentations of electronic information.
5492 By seamlessly blending all aspects of the Internet such as Web-surfing and
5493 messaging, Emacspeak speech-enables local and remote information via a
5494 consistent and well-integrated user interface.")
5495 (license license:gpl2+)))
5496
5497 (define-public emacs-adaptive-wrap
5498 (package
5499 (name "emacs-adaptive-wrap")
5500 (version "0.5.1")
5501 (source (origin
5502 (method url-fetch)
5503 (uri (string-append
5504 "http://elpa.gnu.org/packages/adaptive-wrap-"
5505 version ".el"))
5506 (sha256
5507 (base32
5508 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
5509 (build-system emacs-build-system)
5510 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
5511 (synopsis "Smart line-wrapping with wrap-prefix")
5512 (description
5513 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
5514 minor mode which sets the wrap-prefix property on the fly so that
5515 single-long-line paragraphs get word-wrapped in a way similar to what
5516 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
5517 actually changing the buffer's text.")
5518 (license license:gpl3+)))
5519
5520 (define-public emacs-diff-hl
5521 (package
5522 (name "emacs-diff-hl")
5523 (version "1.8.4")
5524 (source
5525 (origin
5526 (method url-fetch)
5527 (uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
5528 version ".tar"))
5529 (sha256
5530 (base32
5531 "0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
5532 (build-system emacs-build-system)
5533 (home-page "https://github.com/dgutov/diff-hl")
5534 (synopsis
5535 "Highlight uncommitted changes using VC")
5536 (description
5537 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
5538 window (using the fringe, by default), allows you to jump between
5539 the hunks and revert them selectively.")
5540 (license license:gpl3+)))
5541
5542 (define-public emacs-diminish
5543 (package
5544 (name "emacs-diminish")
5545 (version "0.45")
5546 (source
5547 (origin
5548 (method url-fetch)
5549 (uri (string-append
5550 "https://github.com/myrjola/diminish.el/archive/v"
5551 version ".tar.gz"))
5552 (file-name (string-append name "-" version ".tar.gz"))
5553 (sha256
5554 (base32
5555 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
5556 (build-system emacs-build-system)
5557 (home-page "https://github.com/myrjola/diminish.el")
5558 (synopsis "Diminish minor modes with no modeline display")
5559 (description "@code{emacs-diminish} implements hiding or
5560 abbreviation of the mode line displays (lighters) of minor modes.")
5561 (license license:gpl2+)))
5562
5563 (define-public emacs-use-package
5564 (package
5565 (name "emacs-use-package")
5566 (version "2.3")
5567 (source
5568 (origin
5569 (method url-fetch)
5570 (uri (string-append
5571 "https://github.com/jwiegley/use-package/archive/"
5572 version ".tar.gz"))
5573 (file-name (string-append name "-" version ".tar.gz"))
5574 (sha256
5575 (base32
5576 "0x4h136jb3imyli6zsh7dyzjrra6pv0v6b0yk94jdng3rdfcmsf5"))))
5577 (build-system emacs-build-system)
5578 (propagated-inputs
5579 `(("emacs-diminish" ,emacs-diminish)))
5580 (arguments
5581 ;; Tests fail in this release, but have been fixed in
5582 ;; upstream commit 7956d40eed57d6c06bef36ebc174cf57d934e30d
5583 `(#:tests? #f
5584 #:test-command '("emacs" "--batch"
5585 "-l" "use-package-tests.el"
5586 "-f" "ert-run-tests-batch-and-exit")))
5587 (home-page "https://github.com/jwiegley/use-package")
5588 (synopsis "Declaration for simplifying your .emacs")
5589 (description "The use-package macro allows you to isolate package
5590 configuration in your @file{.emacs} file in a way that is both
5591 performance-oriented and tidy.")
5592 (license license:gpl2+)))
5593
5594 (define-public emacs-strace-mode
5595 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
5596 (revision "1"))
5597 (package
5598 (name "emacs-strace-mode")
5599 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
5600 (source (origin
5601 (method git-fetch)
5602 (uri (git-reference
5603 (url "https://github.com/pkmoore/strace-mode")
5604 (commit commit)))
5605 (file-name (string-append name "-" version "-checkout"))
5606 (sha256
5607 (base32
5608 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
5609 (build-system emacs-build-system)
5610 (home-page "https://github.com/pkmoore/strace-mode")
5611 (synopsis "Emacs major mode to highlight strace outputs")
5612 (description "@code{emacs-strace-mode} provides an Emacs major mode
5613 highlighting strace outputs.")
5614 (license license:gpl3+))))
5615
5616 (define-public emacs-default-encrypt
5617 (package
5618 (name "emacs-default-encrypt")
5619 (version "4.3")
5620 (source
5621 (origin
5622 (method url-fetch)
5623 (uri (string-append
5624 "https://www.informationelle-selbstbestimmung-im-internet.de"
5625 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
5626 (file-name (string-append "jl-encrypt-" version ".el"))
5627 (sha256
5628 (base32
5629 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
5630 (build-system emacs-build-system)
5631 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
5632 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
5633 (description
5634 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
5635 automatically encrypts messages that you send (e.g., email) when public keys
5636 for all recipients are available, and it protects you from accidentally
5637 sending un-encrypted messages. It can also be configured to automatically
5638 sign messages that you send. For details and instructions on how to use
5639 DefaultEncrypt, please refer to the home page or read the comments in the
5640 source file, @file{jl-encrypt.el}.")
5641 (license license:gpl3+)))
5642
5643 (define-public emacs-htmlize
5644 (package
5645 (name "emacs-htmlize")
5646 (version "1.51")
5647 (source
5648 (origin
5649 (method url-fetch)
5650 (uri (string-append
5651 "https://github.com/hniksic/emacs-htmlize/archive/release/"
5652 version ".tar.gz"))
5653 (file-name (string-append name "-" version ".tar.gz"))
5654 (sha256
5655 (base32
5656 "1fy1lybzrxl8a8r88f6p19nz8ygmvcxhxbnymkxh7jqaz25viwld"))))
5657 (build-system emacs-build-system)
5658 (home-page "https://github.com/hniksic/emacs-htmlize")
5659 (synopsis "Convert buffer text and decorations to HTML")
5660 (description "@code{emacs-htmlize} converts the buffer text and
5661 the associated decorations to HTML. Output to CSS, inline CSS and
5662 fonts is supported.")
5663 (license license:gpl2+)))
5664
5665 (define-public emacs-xmlgen
5666 (package
5667 (name "emacs-xmlgen")
5668 (version "0.5")
5669 (source
5670 (origin
5671 (method url-fetch)
5672 (uri (string-append
5673 "https://github.com/philjackson/xmlgen/archive/"
5674 version ".tar.gz"))
5675 (file-name (string-append name "-" version ".tar.gz"))
5676 (sha256
5677 (base32
5678 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
5679 (build-system emacs-build-system)
5680 (arguments
5681 `(#:tests? #t
5682 #:test-command '("emacs" "--batch"
5683 "-l" "xmlgen-test.el"
5684 "-f" "ert-run-tests-batch-and-exit")))
5685 (home-page "https://github.com/philjackson/xmlgen")
5686 (synopsis "S-expression to XML domain specific language (DSL) in
5687 Emacs Lisp")
5688 (description "@code{emacs-xmlgen} provides S-expression to XML
5689 conversion for Emacs Lisp.")
5690 (license license:gpl2+)))
5691
5692 (define-public emacs-cdlatex
5693 (package
5694 (name "emacs-cdlatex")
5695 (version "4.7")
5696 (source
5697 (origin
5698 (method url-fetch)
5699 (uri (string-append
5700 "https://github.com/cdominik/cdlatex/archive/"
5701 version ".tar.gz"))
5702 (file-name (string-append name "-" version ".tar.gz"))
5703 (sha256
5704 (base32
5705 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
5706 (build-system emacs-build-system)
5707 (propagated-inputs
5708 `(("emacs-auctex" ,emacs-auctex)))
5709 (home-page "https://github.com/cdominik/cdlatex")
5710 (synopsis "Fast Emacs input methods for LaTeX environments and
5711 math")
5712 (description "CDLaTeX is an Emacs minor mode supporting fast
5713 insertion of environment templates and math in LaTeX. Similar
5714 commands are also offered as part of the AUCTeX package, but it is not
5715 the same - CDLaTeX focuses on speediness for inserting LaTeX
5716 constructs.")
5717 (license license:gpl3+)))
5718
5719 (define-public emacs-cnfonts
5720 (package
5721 (name "emacs-cnfonts")
5722 (version "0.9.1")
5723 (source (origin
5724 (method url-fetch)
5725 (uri (string-append
5726 "https://github.com/tumashu/cnfonts/archive/v"
5727 version ".tar.gz"))
5728 (file-name (string-append name "-" version ".tar.gz"))
5729 (sha256
5730 (base32
5731 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
5732 (build-system emacs-build-system)
5733 (home-page "https://github.com/tumashu/cnfonts")
5734 (synopsis "Emacs Chinese fonts setup tool")
5735 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
5736 configuration of Chinese fonts.")
5737 (license license:gpl2+)))
5738
5739 (define-public emacs-php-mode
5740 (package
5741 (name "emacs-php-mode")
5742 (version "20171225.342")
5743 (source (origin
5744 (method url-fetch)
5745 (uri (string-append
5746 "https://melpa.org/packages/php-mode-"
5747 version ".tar"))
5748 (sha256
5749 (base32
5750 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
5751 (build-system emacs-build-system)
5752 (home-page "https://github.com/ejmr/php-mode")
5753 (synopsis "Major mode for editing PHP code")
5754 (description "@code{php-mode} is a major mode for editing PHP source
5755 code. It's an extension of C mode; thus it inherits all C mode's navigation
5756 functionality. But it colors according to the PHP grammar and indents
5757 according to the PEAR coding guidelines. It also includes a couple handy
5758 IDE-type features such as documentation search and a source and class
5759 browser.")
5760 (license license:gpl3+)))
5761
5762 (define-public emacs-pos-tip
5763 (package
5764 (name "emacs-pos-tip")
5765 (version "0.4.6")
5766 (source (origin
5767 (method url-fetch)
5768 (uri (string-append
5769 "https://github.com/pitkali/pos-tip/archive/"
5770 version ".tar.gz"))
5771 (file-name (string-append name "-" version ".tar.gz"))
5772 (sha256
5773 (base32
5774 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
5775 (build-system emacs-build-system)
5776 ;; The following functions and variables needed by emacs-pos-tip are
5777 ;; not included in emacs-minimal:
5778 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
5779 (arguments `(#:emacs ,emacs))
5780 (home-page "https://github.com/pitkali/pos-tip")
5781 (synopsis "Show tooltip at point")
5782 (description "The standard library tooltip.el provides a function for
5783 displaying a tooltip at the mouse position. However, locating a tooltip at an
5784 arbitrary buffer position in a window is not easy. Pos-tip provides such a
5785 function to be used by other frontend programs.")
5786 (license license:gpl2+)))
5787
5788 (define-public emacs-pyim-basedict
5789 (package
5790 (name "emacs-pyim-basedict")
5791 (version "0.3.1")
5792 (source (origin
5793 (method url-fetch)
5794 (uri (string-append
5795 "https://github.com/tumashu/pyim-basedict/archive/v"
5796 version ".tar.gz"))
5797 (file-name (string-append name "-" version ".tar.gz"))
5798 (sha256
5799 (base32
5800 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
5801 (build-system emacs-build-system)
5802 (home-page "https://github.com/tumashu/pyim-basedict")
5803 (synopsis "Input method dictionary of pyim")
5804 (description "Pyim-basedict is the default pinyin input method dictionary,
5805 containing words from the rime project.")
5806 (license license:gpl2+)))
5807
5808 (define-public emacs-pyim
5809 (package
5810 (name "emacs-pyim")
5811 (version "1.6.4")
5812 (source (origin
5813 (method url-fetch)
5814 (uri (string-append
5815 "https://github.com/tumashu/pyim/archive/v"
5816 version ".tar.gz"))
5817 (file-name (string-append name "-" version ".tar.gz"))
5818 (sha256
5819 (base32
5820 "0hfg8q9hcjifvnlghw2g94dfxfirms2psq2ghqb28fhkf0lks13r"))))
5821 (build-system emacs-build-system)
5822 (propagated-inputs
5823 `(("emacs-async" ,emacs-async)
5824 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
5825 ("emacs-popup" ,emacs-popup)
5826 ("emacs-pos-tip" ,emacs-pos-tip)))
5827 (home-page "https://github.com/tumashu/pyim")
5828 (synopsis "Chinese input method")
5829 (description "Chinese input method which supports quanpin, shuangpin, wubi
5830 and cangjie.")
5831 (license license:gpl2+)))
5832
5833 (define-public emacs-el2org
5834 (package
5835 (name "emacs-el2org")
5836 (version "0.6.0")
5837 (source (origin
5838 (method url-fetch)
5839 (uri (string-append
5840 "https://github.com/tumashu/el2org/archive/v"
5841 version ".tar.gz"))
5842 (file-name (string-append name "-" version ".tar.gz"))
5843 (sha256
5844 (base32
5845 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
5846 (build-system emacs-build-system)
5847 (home-page "https://github.com/tumashu/el2org")
5848 (synopsis "Convert Emacs-lisp file to org file")
5849 (description "El2org is a simple tool, which can convert Emacs-lisp file
5850 to org file, you can use this tool to write orgify commentary.")
5851 (license license:gpl2+)))
5852
5853 (define-public emacs-mustache
5854 (package
5855 (name "emacs-mustache")
5856 (version "0.23")
5857 (source (origin
5858 (method url-fetch)
5859 (uri (string-append
5860 "https://github.com/Wilfred/mustache.el/archive/"
5861 version ".tar.gz"))
5862 (file-name (string-append name "-" version ".tar.gz"))
5863 (sha256
5864 (base32
5865 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
5866 (build-system emacs-build-system)
5867 (propagated-inputs
5868 `(("emacs-dash" ,emacs-dash)
5869 ("emacs-ht" ,emacs-ht)
5870 ("emacs-s" ,emacs-s)))
5871 (home-page "https://github.com/Wilfred/mustache.el")
5872 (synopsis "Mustache templating library for Emacs")
5873 (description "Mustache templating library for Emacs, mustache is
5874 a simple web template system, which is described as a logic-less system
5875 because it lacks any explicit control flow statements, both looping and
5876 conditional evaluation can be achieved using section tags processing lists
5877 and lambdas.")
5878 (license license:gpl3+)))
5879
5880 (define-public emacs-org2web
5881 (package
5882 (name "emacs-org2web")
5883 (version "0.9.1")
5884 (source (origin
5885 (method url-fetch)
5886 (uri (string-append
5887 "https://github.com/tumashu/org2web/archive/v"
5888 version ".tar.gz"))
5889 (file-name (string-append name "-" version ".tar.gz"))
5890 (sha256
5891 (base32
5892 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
5893 (build-system emacs-build-system)
5894 (propagated-inputs
5895 `(("emacs-dash" ,emacs-dash)
5896 ("emacs-el2org" ,emacs-el2org)
5897 ("emacs-ht" ,emacs-ht)
5898 ("emacs-mustache" ,emacs-mustache)
5899 ("emacs-simple-httpd" ,emacs-simple-httpd)))
5900 (home-page "https://github.com/tumashu/org2web")
5901 (synopsis "Static site generator based on org-mode ")
5902 (description "Org2web is a static site generator based on org-mode,
5903 which code derived from Kelvin H's org-page.")
5904 (license license:gpl2+)))
5905
5906 (define-public emacs-xelb
5907 (package
5908 (name "emacs-xelb")
5909 (version "0.14")
5910 (source (origin
5911 (method url-fetch)
5912 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
5913 version ".tar"))
5914 (sha256
5915 (base32
5916 "09flnbjy9ck784kprz036rwg9qk45hpv0w5hz3pz3zhwyk57fv74"))))
5917 (build-system emacs-build-system)
5918 ;; The following functions and variables needed by emacs-xelb are
5919 ;; not included in emacs-minimal:
5920 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
5921 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
5922 ;; x-display-pixel-width, x-display-pixel-height
5923 (arguments
5924 `(#:emacs ,emacs
5925 #:phases
5926 (modify-phases %standard-phases
5927 (add-after 'unpack 'regenerate-el-files
5928 (lambda* (#:key inputs #:allow-other-keys)
5929 (zero? (system* "make"
5930 (string-append "PROTO_PATH="
5931 (assoc-ref inputs "xcb-proto")
5932 "/share/xcb")
5933 (string-append "EMACS_BIN="
5934 (assoc-ref inputs "emacs")
5935 "/bin/emacs -Q"))))))))
5936 (native-inputs `(("xcb-proto" ,xcb-proto)))
5937 (home-page "https://github.com/ch11ng/xelb")
5938 (synopsis "X protocol Emacs Lisp binding")
5939 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
5940 X11 protocol based on the XML description files from the XCB project. It
5941 features an object-oriented API and permits a certain degree of concurrency.
5942 It should enable you to implement low-level X11 applications.")
5943 (license license:gpl3+)))
5944
5945 (define-public emacs-exwm
5946 (package
5947 (name "emacs-exwm")
5948 (version "0.18")
5949 (synopsis "Emacs X window manager")
5950 (source (origin
5951 (method url-fetch)
5952 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
5953 version ".tar"))
5954 (sha256
5955 (base32
5956 "1shz5bf4v4gg3arjaaldics5qkg3aiiaf3ngys8lb6qyxhcpvh6q"))))
5957 (build-system emacs-build-system)
5958 (propagated-inputs
5959 `(("emacs-xelb" ,emacs-xelb)))
5960 (inputs
5961 `(("xhost" ,xhost)
5962 ("dbus" ,dbus)))
5963 ;; The following functions and variables needed by emacs-exwm are
5964 ;; not included in emacs-minimal:
5965 ;; scroll-bar-mode, fringe-mode
5966 ;; x-display-pixel-width, x-display-pixel-height
5967 (arguments
5968 `(#:emacs ,emacs
5969 #:phases
5970 (modify-phases %standard-phases
5971 (add-after 'build 'install-xsession
5972 (lambda* (#:key inputs outputs #:allow-other-keys)
5973 (let* ((out (assoc-ref outputs "out"))
5974 (xsessions (string-append out "/share/xsessions"))
5975 (bin (string-append out "/bin"))
5976 (exwm-executable (string-append bin "/exwm")))
5977 ;; Add a .desktop file to xsessions
5978 (mkdir-p xsessions)
5979 (mkdir-p bin)
5980 (with-output-to-file
5981 (string-append xsessions "/exwm.desktop")
5982 (lambda _
5983 (format #t "[Desktop Entry]~@
5984 Name=~a~@
5985 Comment=~a~@
5986 Exec=~a~@
5987 TryExec=~@*~a~@
5988 Type=Application~%" ,name ,synopsis exwm-executable)))
5989 ;; Add a shell wrapper to bin
5990 (with-output-to-file exwm-executable
5991 (lambda _
5992 (format #t "#!~a ~@
5993 ~a +SI:localuser:$USER ~@
5994 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
5995 (string-append (assoc-ref inputs "bash") "/bin/sh")
5996 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
5997 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
5998 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
5999 '(cond
6000 ((file-exists-p "~/.exwm")
6001 (load-file "~/.exwm"))
6002 ((not (featurep 'exwm))
6003 (require 'exwm)
6004 (require 'exwm-config)
6005 (exwm-config-default)
6006 (message (concat "exwm configuration not found. "
6007 "Falling back to default configuration...")))))))
6008 (chmod exwm-executable #o555)
6009 #t))))))
6010 (home-page "https://github.com/ch11ng/exwm")
6011 (description "EXWM is a full-featured tiling X window manager for Emacs
6012 built on top of XELB.")
6013 (license license:gpl3+)))
6014
6015 (define-public emacs-switch-window
6016 (package
6017 (name "emacs-switch-window")
6018 (version "1.5.1")
6019 (source (origin
6020 (method url-fetch)
6021 (uri (string-append
6022 "https://github.com/dimitri/switch-window/archive/v"
6023 version ".tar.gz"))
6024 (file-name (string-append name "-" version ".tar.gz"))
6025 (sha256
6026 (base32
6027 "07f99apxscwvsp2bjxsbi462c433kcglrjh6xl0gyafs1nvvvnd8"))))
6028 (build-system emacs-build-system)
6029 (home-page "https://github.com/dimitri/switch-window")
6030 (synopsis "Emacs window switch tool")
6031 (description "Switch-window is an emacs window switch tool, which
6032 offer a visual way to choose a window to switch to, delete, split or
6033 other operations.")
6034 (license license:wtfpl2)))
6035
6036 (define-public emacs-exwm-x
6037 (package
6038 (name "emacs-exwm-x")
6039 (version "1.8.1")
6040 (synopsis "Derivative window manager based on EXWM")
6041 (source (origin
6042 (method url-fetch)
6043 (uri (string-append
6044 "https://github.com/tumashu/exwm-x/archive/v"
6045 version ".tar.gz"))
6046 (file-name (string-append name "-" version ".tar.gz"))
6047 (sha256
6048 (base32
6049 "0ali1100aacq4zbvcck80h51pvw204jlxhn4aikkqq4ngbx03kkr"))))
6050 (build-system emacs-build-system)
6051 (propagated-inputs
6052 `(("emacs-exwm" ,emacs-exwm)
6053 ("emacs-switch-window" ,emacs-switch-window)
6054 ("emacs-ivy" ,emacs-ivy)
6055 ("emacs-use-package" ,emacs-use-package)))
6056 (inputs
6057 `(("xhost" ,xhost)
6058 ("dbus" ,dbus)))
6059 ;; Need emacs instead of emacs-minimal,
6060 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6061 (arguments
6062 `(#:emacs ,emacs
6063 #:phases
6064 (modify-phases %standard-phases
6065 (add-after 'build 'install-xsession
6066 (lambda* (#:key inputs outputs #:allow-other-keys)
6067 (let* ((out (assoc-ref outputs "out"))
6068 (xsessions (string-append out "/share/xsessions"))
6069 (bin (string-append out "/bin"))
6070 (exwm-executable (string-append bin "/exwm-x")))
6071 ;; Add a .desktop file to xsessions
6072 (mkdir-p xsessions)
6073 (mkdir-p bin)
6074 (with-output-to-file
6075 (string-append xsessions "/exwm-x.desktop")
6076 (lambda _
6077 (format #t "[Desktop Entry]~@
6078 Name=~a~@
6079 Comment=~a~@
6080 Exec=~a~@
6081 TryExec=~@*~a~@
6082 Type=Application~%" ,name ,synopsis exwm-executable)))
6083 ;; Add a shell wrapper to bin
6084 (with-output-to-file exwm-executable
6085 (lambda _
6086 (format #t "#!~a ~@
6087 ~a +SI:localuser:$USER ~@
6088 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6089 (string-append (assoc-ref inputs "bash") "/bin/sh")
6090 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6091 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6092 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6093 '(require 'exwmx-loader))))
6094 (chmod exwm-executable #o555)
6095 #t))))))
6096 (home-page "https://github.com/tumashu/exwm-x")
6097 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6098 on mouse-control.")
6099 (license license:gpl3+)))
6100
6101 (define-public emacs-gnuplot
6102 (package
6103 (name "emacs-gnuplot")
6104 (version "0.7.0")
6105 (source
6106 (origin
6107 (method url-fetch)
6108 (uri (string-append
6109 "https://github.com/bruceravel/gnuplot-mode/archive/"
6110 version ".tar.gz"))
6111 (file-name (string-append name "-" version ".tar.gz"))
6112 (sha256
6113 (base32
6114 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6115 (build-system gnu-build-system)
6116 (native-inputs `(("emacs" ,emacs-minimal)))
6117 (arguments
6118 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6119 "/gnuplot-" version)))
6120 `(#:modules ((guix build gnu-build-system)
6121 (guix build utils)
6122 (guix build emacs-utils))
6123 #:imported-modules (,@%gnu-build-system-modules
6124 (guix build emacs-utils))
6125 #:configure-flags
6126 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6127 "/bin/emacs")
6128 (string-append "--with-lispdir=" %output ,elisp-dir))
6129 #:phases
6130 (modify-phases %standard-phases
6131 (add-after 'install 'generate-autoloads
6132 (lambda* (#:key outputs #:allow-other-keys)
6133 (emacs-generate-autoloads
6134 "gnuplot"
6135 (string-append (assoc-ref outputs "out") ,elisp-dir))
6136 #t))))))
6137 (home-page "https://github.com/bruceravel/gnuplot-mode")
6138 (synopsis "Emacs major mode for interacting with gnuplot")
6139 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6140 with gnuplot.")
6141 (license license:gpl2+)))
6142
6143 (define-public emacs-transpose-frame
6144 (package
6145 (name "emacs-transpose-frame")
6146 (version "0.1.0")
6147 (source
6148 (origin
6149 (method url-fetch)
6150 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
6151 (file-name (string-append "transpose-frame-" version ".el"))
6152 (sha256
6153 (base32
6154 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6155 (build-system emacs-build-system)
6156 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6157 (synopsis "Transpose window arrangement in current frame")
6158 (description "@code{emacs-transpose-frame} provides some interactive
6159 functions which allows users to transpose windows arrangement in currently
6160 selected frame.")
6161 (license license:bsd-2)))
6162
6163 (define-public emacs-key-chord
6164 (package
6165 (name "emacs-key-chord")
6166 (version "0.6")
6167 (source
6168 (origin
6169 (method url-fetch)
6170 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6171 (file-name (string-append "key-chord-" version ".el"))
6172 (sha256
6173 (base32
6174 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6175 (build-system emacs-build-system)
6176 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6177 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6178 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6179 mode for binding key chords to commands. A key chord is defined as two keys
6180 pressed simultaneously or a single key quickly pressed twice.")
6181 (license license:gpl2+)))
6182
6183 (define-public emacs-evil-surround
6184 (package
6185 (name "emacs-evil-surround")
6186 (version "1.0.0")
6187 (source
6188 (origin
6189 (method url-fetch)
6190 (uri (string-append
6191 "https://github.com/timcharper/evil-surround/archive/v"
6192 version ".tar.gz"))
6193 (file-name (string-append name "-" version ".tar.gz"))
6194 (sha256
6195 (base32
6196 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6197 (build-system emacs-build-system)
6198 (propagated-inputs
6199 `(("emacs-evil" ,emacs-evil)))
6200 (home-page "https://github.com/timcharper/evil-surround")
6201 (synopsis "Easily modify surrounding parantheses and quotes")
6202 (description "@code{emacs-evil-surround} allows easy deletion, change and
6203 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6204 (license license:gpl3+)))
6205
6206 (define-public emacs-evil-commentary
6207 (package
6208 (name "emacs-evil-commentary")
6209 (version "2.1.1")
6210 (source
6211 (origin
6212 (method url-fetch)
6213 (uri (string-append
6214 "https://github.com/linktohack/evil-commentary/archive/v"
6215 version ".tar.gz"))
6216 (file-name (string-append name "-" version ".tar.gz"))
6217 (sha256
6218 (base32
6219 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6220 (build-system emacs-build-system)
6221 (propagated-inputs
6222 `(("emacs-evil" ,emacs-evil)))
6223 (home-page "https://github.com/linktohack/evil-commentary")
6224 (synopsis "Comment out code in evil mode")
6225 (description "@code{emacs-evil-commentary} adds keybindings to easily
6226 comment out lines of code in evil mode. It provides @code{gcc} to comment out
6227 lines, and @code{gc} to comment out the target of a motion.")
6228 (license license:gpl3+)))
6229
6230 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6231 ;; therefore cannot be run
6232 (define-public emacs-ansi
6233 (package
6234 (name "emacs-ansi")
6235 (version "0.4.1")
6236 (source
6237 (origin
6238 (method url-fetch)
6239 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6240 version ".tar.gz"))
6241 (file-name (string-append name "-" version ".tar.gz"))
6242 (sha256
6243 (base32
6244 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6245 (build-system emacs-build-system)
6246 (propagated-inputs
6247 `(("emacs-dash" ,emacs-dash)
6248 ("emacs-s" ,emacs-s)))
6249 (home-page "https://github.com/rejeep/ansi.el")
6250 (synopsis "Convert strings to ANSI")
6251 (description "@code{emacs-ansi} defines functions that turns simple
6252 strings to ANSI strings. Turning a string into an ANSI string can be to add
6253 color to a text, add color in the background of a text or adding a style, such
6254 as bold, underscore or italic.")
6255 (license license:gpl3+)))
6256
6257 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
6258 ;; therefore cannot be run
6259 (define-public emacs-commander
6260 (package
6261 (name "emacs-commander")
6262 (version "0.7.0")
6263 (source
6264 (origin
6265 (method url-fetch)
6266 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6267 version ".tar.gz"))
6268 (file-name (string-append name "-" version ".tar.gz"))
6269 (sha256
6270 (base32
6271 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6272 (build-system emacs-build-system)
6273 (propagated-inputs
6274 `(("emacs-dash" ,emacs-dash)
6275 ("emacs-f" ,emacs-f)
6276 ("emacs-s" ,emacs-s)))
6277 (home-page "https://github.com/rejeep/commander.el")
6278 (synopsis "Emacs command line parser")
6279 (description "@code{emacs-commander} provides command line parsing for
6280 Emacs.")
6281 (license license:gpl3+)))
6282
6283 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6284 ;; cannot be run
6285 (define-public ert-runner
6286 (package
6287 (name "ert-runner")
6288 (version "0.7.0")
6289 (source
6290 (origin
6291 (method url-fetch)
6292 (uri (string-append "https://github.com/rejeep/ert-runner.el/archive/v"
6293 version ".tar.gz"))
6294 (file-name (string-append name "-" version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "1657nck9i96a4xgl8crfqq0s8gflzp21pkkzwg6m3z5npjxklgwp"))))
6298 (build-system emacs-build-system)
6299 (inputs
6300 `(("emacs-ansi" ,emacs-ansi)
6301 ("emacs-commander" ,emacs-commander)
6302 ("emacs-dash" ,emacs-dash)
6303 ("emacs-f" ,emacs-f)
6304 ("emacs-s" ,emacs-s)
6305 ("emacs-shut-up" ,emacs-shut-up)))
6306 (arguments
6307 `(#:phases
6308 (modify-phases %standard-phases
6309 (add-after 'install 'install-executable
6310 (lambda* (#:key inputs outputs #:allow-other-keys)
6311 (let ((out (assoc-ref outputs "out")))
6312 (substitute* "bin/ert-runner"
6313 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6314 (string-append "ERT_RUNNER=\"" out
6315 "/share/emacs/site-lisp/guix.d/"
6316 ,name "-" ,version)))
6317 (install-file "bin/ert-runner" (string-append out "/bin"))
6318 (wrap-program (string-append out "/bin/ert-runner")
6319 (list "EMACSLOADPATH" ":" 'prefix
6320 (string-split (getenv "EMACSLOADPATH") #\:)))
6321 #t))))
6322 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6323 (home-page "https://github.com/rejeep/ert-runner.el")
6324 (synopsis "Opinionated Ert testing workflow")
6325 (description "@code{ert-runner} is a tool for Emacs projects tested
6326 using ERT. It assumes a certain test structure setup and can therefore make
6327 running tests easier.")
6328 (license license:gpl3+)))
6329
6330 (define-public emacs-disable-mouse
6331 (package
6332 (name "emacs-disable-mouse")
6333 (version "0.2")
6334 (source
6335 (origin
6336 (method url-fetch)
6337 (uri (string-append
6338 "https://github.com/purcell/disable-mouse/archive/"
6339 version ".tar.gz"))
6340 (file-name (string-append name "-" version ".tar.gz"))
6341 (sha256
6342 (base32
6343 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
6344 (build-system emacs-build-system)
6345 (home-page "https://github.com/purcell/disable-mouse")
6346 (synopsis "Disable mouse commands globally")
6347 (description
6348 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
6349 pair of minor modes which suppress all mouse events by intercepting them and
6350 running a customisable handler command (@code{ignore} by default). ")
6351 (license license:gpl3+)))
6352
6353 (define-public emacs-json-reformat
6354 (package
6355 (name "emacs-json-reformat")
6356 (version "0.0.6")
6357 (source
6358 (origin
6359 (method url-fetch)
6360 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
6361 version ".tar.gz"))
6362 (file-name (string-append name "-" version ".tar.gz"))
6363 (sha256
6364 (base32
6365 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
6366 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
6367 (build-system emacs-build-system)
6368 (propagated-inputs
6369 `(("emacs-undercover" ,emacs-undercover)))
6370 (native-inputs
6371 `(("emacs-dash" ,emacs-dash)
6372 ("emacs-shut-up" ,emacs-shut-up)
6373 ("ert-runner" ,ert-runner)))
6374 (arguments
6375 `(#:tests? #t
6376 #:test-command '("ert-runner")))
6377 (home-page "https://github.com/gongo/json-reformat")
6378 (synopsis "Reformatting tool for JSON")
6379 (description "@code{json-reformat} provides a reformatting tool for
6380 @url{http://json.org/, JSON}.")
6381 (license license:gpl3+)))
6382
6383 (define-public emacs-json-snatcher
6384 (package
6385 (name "emacs-json-snatcher")
6386 (version "1.0.0")
6387 (source
6388 (origin
6389 (method url-fetch)
6390 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
6391 version ".tar.gz"))
6392 (file-name (string-append name "-" version ".tar.gz"))
6393 (sha256
6394 (base32
6395 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
6396 (build-system emacs-build-system)
6397 (home-page "https://github.com/sterlingg/json-snatcher")
6398 (synopsis "Grabs the path to JSON values in a JSON file")
6399 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
6400 a @url{http://json.org/, JSON} file.")
6401 (license license:gpl3+)))
6402
6403 (define-public emacs-json-mode
6404 (package
6405 (name "emacs-json-mode")
6406 (version "1.7.0")
6407 (source
6408 (origin
6409 (method url-fetch)
6410 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
6411 "v" version ".tar.gz"))
6412 (file-name (string-append name "-" version ".tar.gz"))
6413 (sha256
6414 (base32
6415 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
6416 (build-system emacs-build-system)
6417 (propagated-inputs
6418 `(("emacs-json-reformat" ,emacs-json-reformat)
6419 ("emacs-json-snatcher" ,emacs-json-snatcher)))
6420 (home-page "https://github.com/joshwnj/json-mode")
6421 (synopsis "Major mode for editing JSON files")
6422 (description "@code{json-mode} extends the builtin js-mode syntax
6423 highlighting.")
6424 (license license:gpl3+)))
6425
6426 (define-public emacs-restclient
6427 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
6428 (revision "1")) ;Guix package revision,
6429 ;upstream doesn't have official releases
6430 (package
6431 (name "emacs-restclient")
6432 (version (string-append revision "."
6433 (string-take commit 7)))
6434 (source (origin
6435 (method git-fetch)
6436 (uri (git-reference
6437 (url "https://github.com/pashky/restclient.el.git")
6438 (commit commit)))
6439 (sha256
6440 (base32
6441 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
6442 (file-name (git-file-name name version))))
6443 (build-system emacs-build-system)
6444 (propagated-inputs
6445 `(("emacs-helm" ,emacs-helm)))
6446 (home-page "https://github.com/pashky/restclient.el")
6447 (synopsis "Explore and test HTTP REST webservices")
6448 (description
6449 "This tool allows for testing and exploration of HTTP REST Web services
6450 from within Emacs. Restclient runs queries from a plan-text query sheet,
6451 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
6452 (license license:public-domain))))
6453
6454 (define-public emacs-eimp
6455 (let ((version "1.4.0")
6456 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
6457 (revision "1"))
6458 (package
6459 (name "emacs-eimp")
6460 (version (git-version version revision commit))
6461 (source
6462 (origin
6463 (method git-fetch)
6464 (uri (git-reference
6465 (url "https://github.com/nicferrier/eimp.git")
6466 (commit commit)))
6467 (file-name (git-file-name name version))
6468 (sha256
6469 (base32
6470 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
6471 (build-system emacs-build-system)
6472 (arguments
6473 `(#:phases
6474 (modify-phases %standard-phases
6475 (add-after 'unpack 'configure
6476 (lambda* (#:key inputs #:allow-other-keys)
6477 (let ((imagemagick (assoc-ref inputs "imagemagick")))
6478 ;; eimp.el is read-only in git.
6479 (chmod "eimp.el" #o644)
6480 (emacs-substitute-variables "eimp.el"
6481 ("eimp-mogrify-program"
6482 (string-append imagemagick "/bin/mogrify"))))
6483 #t)))))
6484 (inputs
6485 `(("imagemagick" ,imagemagick)))
6486 (home-page "https://github.com/nicferrier/eimp")
6487 (synopsis "Interactive image manipulation utility for Emacs")
6488 (description "@code{emacs-eimp} allows interactive image manipulation
6489 from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
6490 the actual transformations.")
6491 (license license:gpl2+))))
6492
6493 (define-public emacs-dired-hacks
6494 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
6495 (revision "1"))
6496 (package
6497 (name "emacs-dired-hacks")
6498 (version (string-append "0.0.1-" revision "."
6499 (string-take commit 7)))
6500 (source (origin
6501 (method git-fetch)
6502 (uri (git-reference
6503 (url "https://github.com/Fuco1/dired-hacks.git")
6504 (commit commit)))
6505 (file-name (string-append name "-" version "-checkout"))
6506 (sha256
6507 (base32
6508 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
6509 (build-system emacs-build-system)
6510 (propagated-inputs
6511 `(("emacs-dash" ,emacs-dash)
6512 ("emacs-eimp" ,emacs-eimp)
6513 ("emacs-f" ,emacs-f)
6514 ("emacs-s" ,emacs-s)))
6515 (home-page "https://github.com/Fuco1/dired-hacks")
6516 (synopsis
6517 "Collection of useful dired additions")
6518 (description
6519 "Collection of Emacs dired mode additions:
6520 @itemize
6521 @item dired-avfs
6522 @item dired-columns
6523 @item dired-filter
6524 @item dired-hacks-utils
6525 @item dired-images
6526 @item dired-list
6527 @item dired-narrow
6528 @item dired-open
6529 @item dired-rainbow
6530 @item dired-ranger
6531 @item dired-subtree
6532 @item dired-tagsistant
6533 @end itemize\n")
6534 (license license:gpl3+))))
6535
6536 (define-public emacs-which-key
6537 (package
6538 (name "emacs-which-key")
6539 (version "3.0.2")
6540 (source
6541 (origin
6542 (method url-fetch)
6543 (uri (string-append
6544 "https://github.com/justbur/emacs-which-key/archive/v"
6545 version ".tar.gz"))
6546 (sha256
6547 (base32
6548 "1xvd70cwq9n31f28viyjxmr3nn8l153gsy6scpszvgvjxkiikv24"))
6549 (file-name (string-append name "-" version ".tar.gz"))))
6550 (build-system emacs-build-system)
6551 (arguments
6552 `(#:tests? #t
6553 #:test-command '("emacs" "--batch"
6554 "-l" "which-key-tests.el"
6555 "-f" "ert-run-tests-batch-and-exit")))
6556 (home-page "https://github.com/justbur/emacs-which-key")
6557 (synopsis "Display available key bindings in popup")
6558 (description
6559 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
6560 bindings following your currently entered incomplete command (a prefix) in a
6561 popup. For example, after enabling the minor mode if you enter C-x and wait
6562 for the default of 1 second, the minibuffer will expand with all of the
6563 available key bindings that follow C-x (or as many as space allows given your
6564 settings).")
6565 (license license:gpl3+)))
6566
6567 (define-public emacs-ws-butler
6568 (package
6569 (name "emacs-ws-butler")
6570 (version "0.6")
6571 (source (origin
6572 (method git-fetch)
6573 (uri (git-reference
6574 (url "https://github.com/lewang/ws-butler.git")
6575 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
6576 (file-name (string-append name "-" version "-checkout"))
6577 (sha256
6578 (base32
6579 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
6580 (build-system emacs-build-system)
6581 (native-inputs
6582 `(("ert-runner" ,ert-runner)))
6583 (arguments
6584 `(#:tests? #t
6585 #:test-command '("ert-runner" "tests")))
6586 (home-page "https://github.com/lewang/ws-butler")
6587 (synopsis "Trim spaces from end of lines")
6588 (description
6589 "This Emacs package automatically and unobtrusively trims whitespace
6590 characters from end of lines.")
6591 (license license:gpl3+)))
6592
6593 (define-public emacs-org-edit-latex
6594 (package
6595 (name "emacs-org-edit-latex")
6596 (version "0.8.0")
6597 (source
6598 (origin
6599 (method url-fetch)
6600 (uri (string-append
6601 "https://github.com/et2010/org-edit-latex/archive/v"
6602 version ".tar.gz"))
6603 (file-name (string-append name "-" version ".tar.gz"))
6604 (sha256
6605 (base32
6606 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
6607 (build-system emacs-build-system)
6608 (propagated-inputs
6609 `(("emacs-auctex" ,emacs-auctex)
6610 ;; The version of org in Emacs 25.2 is not sufficient, because the
6611 ;; `org-latex-make-preamble' function is required.
6612 ("emacs-org" ,emacs-org)))
6613 (home-page "https://github.com/et2010/org-edit-latex")
6614 (synopsis "Edit a latex fragment just like editing a src block")
6615 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
6616 It lets you edit a latex fragment in a dedicated buffer just like editing a
6617 src block.")
6618 (license license:gpl3+)))
6619
6620 (define-public emacs-emamux
6621 (package
6622 (name "emacs-emamux")
6623 (version "0.14")
6624 (source (origin
6625 (method url-fetch)
6626 (uri (string-append
6627 "https://github.com/syohex/emacs-emamux/archive/"
6628 version ".tar.gz"))
6629 (file-name (string-append name "-" version ".tar.gz"))
6630 (sha256
6631 (base32
6632 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
6633 (build-system emacs-build-system)
6634 (home-page "https://github.com/syohex/emacs-emamux")
6635 (synopsis "Manipulate Tmux from Emacs")
6636 (description
6637 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
6638 multiplexer.")
6639 (license license:gpl3+)))
6640
6641 (define-public emacs-rpm-spec-mode
6642 (package
6643 (name "emacs-rpm-spec-mode")
6644 (version "0.16")
6645 (source
6646 (origin
6647 (method url-fetch)
6648 ;; URI has the Fedora release number instead of the version
6649 ;; number. This will have to updated manually every new release.
6650 (uri (string-append
6651 "https://src.fedoraproject.org/cgit/rpms"
6652 "/emacs-rpm-spec-mode.git/snapshot"
6653 "/emacs-rpm-spec-mode-f26.tar.gz"))
6654 (sha256
6655 (base32
6656 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
6657 (build-system emacs-build-system)
6658 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
6659 (synopsis "Emacs major mode for editing RPM spec files")
6660 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
6661 editing RPM spec files.")
6662 (license license:gpl2+)))
6663
6664 (define-public emacs-git-messenger
6665 (package
6666 (name "emacs-git-messenger")
6667 (version "0.18")
6668 (source
6669 (origin
6670 (method url-fetch)
6671 (uri (string-append
6672 "https://github.com/syohex/emacs-git-messenger/archive/"
6673 version ".tar.gz"))
6674 (file-name (string-append name "-" version ".tar.gz"))
6675 (sha256
6676 (base32
6677 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
6678 (build-system emacs-build-system)
6679 (propagated-inputs
6680 `(("emacs-popup" ,emacs-popup)))
6681 (arguments
6682 `(#:tests? #t
6683 #:test-command '("emacs" "--batch" "-l" "test/test.el"
6684 "-f" "ert-run-tests-batch-and-exit")))
6685 (home-page "https://github.com/syohex/emacs-git-messenger")
6686 (synopsis "Popup commit message at current line")
6687 (description "@code{emacs-git-messenger} provides
6688 @code{git-messenger:popup-message}, a function that when called, will popup
6689 the last git commit message for the current line. This uses git-blame
6690 internally.")
6691 (license license:gpl3+)))
6692
6693 (define-public emacs-gitpatch
6694 (package
6695 (name "emacs-gitpatch")
6696 (version "0.5.0")
6697 (source
6698 (origin
6699 (method url-fetch)
6700 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
6701 "v" version ".tar.gz"))
6702 (file-name (string-append name "-" version ".tar.gz"))
6703 (sha256
6704 (base32
6705 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
6706 (build-system emacs-build-system)
6707 (home-page "https://github.com/tumashu/gitpatch")
6708 (synopsis "Mail git patch from Emacs")
6709 (description "@code{emacs-gitpatch} lets users easily send git patches,
6710 created by @code{git format-patch}, from @code{magit}, @code{dired} and
6711 @code{ibuffer} buffers.")
6712 (license license:gpl3+)))
6713
6714 (define-public emacs-erc-hl-nicks
6715 (package
6716 (name "emacs-erc-hl-nicks")
6717 (version "1.3.2")
6718 (source
6719 (origin
6720 (method url-fetch)
6721 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
6722 "/archive/" version ".tar.gz"))
6723 (file-name (string-append name "-" version ".tar.gz"))
6724 (sha256
6725 (base32
6726 "01svpl9bps5kx4y1wnymakxya2cznqmlynvqv2r500wpnbxczrbs"))))
6727 (build-system emacs-build-system)
6728 (synopsis "Nickname highlighting for Emacs ERC")
6729 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
6730 client for Emacs. The main features are:
6731 @itemize
6732 @item Auto-colorizes nicknames without having to specify colors
6733 @item Ignores certain characters that IRC clients add to nicknames to avoid
6734 duplicates (nickname, nickname’, nickname\", etc.)
6735 @item Attempts to produce colors with a sufficient amount of contrast between
6736 the nick color and the background color
6737 @end itemize\n")
6738 (home-page "https://github.com/leathekd/erc-hl-nicks")
6739 (license license:gpl3+)))
6740
6741 (define-public emacs-engine-mode
6742 (package
6743 (name "emacs-engine-mode")
6744 (version "2.0.0")
6745 (source
6746 (origin
6747 (method url-fetch)
6748 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
6749 "v" version ".tar.gz"))
6750 (file-name (string-append name "-" version ".tar.gz"))
6751 (sha256
6752 (base32
6753 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
6754 (build-system emacs-build-system)
6755 (synopsis "Minor mode for defining and querying search engines")
6756 (description "@code{engine-mode} is a global minor mode for Emacs. It
6757 enables you to easily define search engines, bind them to keybindings, and
6758 query them from the comfort of your editor.")
6759 (home-page "https://github.com/hrs/engine-mode")
6760 (license license:gpl3+)))
6761
6762 (define-public emacs-prop-menu
6763 (package
6764 (name "emacs-prop-menu")
6765 (version "0.1.2")
6766 (source
6767 (origin
6768 (method url-fetch)
6769 (uri (string-append
6770 "http://stable.melpa.org/packages/prop-menu-"
6771 version ".el"))
6772 (sha256
6773 (base32
6774 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
6775 (build-system emacs-build-system)
6776 (home-page
6777 "https://github.com/david-christiansen/prop-menu-el")
6778 (synopsis
6779 "Create and display a context menu based on text and overlay properties")
6780 (description
6781 "This is a library for computing context menus based on text
6782 properties and overlays. The intended use is to have tools that
6783 annotate source code and others that use these annotations, without
6784 requiring a direct coupling between them, but maintaining
6785 discoverability.
6786
6787 Major modes that wish to use this library should first define an
6788 appropriate value for @code{prop-menu-item-functions}. Then, they should
6789 bind @code{prop-menu-by-completing-read} to an appropriate
6790 key. Optionally, a mouse pop-up can be added by binding
6791 @code{prop-menu-show-menu} to a mouse event.")
6792 (license license:gpl3+)))
6793
6794 (define-public emacs-idris-mode
6795 (package
6796 (name "emacs-idris-mode")
6797 (version "0.9.19")
6798 (source
6799 (origin
6800 (method url-fetch)
6801 (uri (string-append
6802 "http://stable.melpa.org/packages/idris-mode-"
6803 version ".tar"))
6804 (sha256
6805 (base32
6806 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
6807 (build-system emacs-build-system)
6808 (propagated-inputs
6809 `(("emacs-prop-menu" ,emacs-prop-menu)))
6810 (home-page
6811 "https://github.com/idris-hackers/idris-mode")
6812 (synopsis "Major mode for editing Idris code")
6813 (description
6814 "This is an Emacs mode for editing Idris code. It requires the latest
6815 version of Idris, and some features may rely on the latest Git version of
6816 Idris.")
6817 (license license:gpl3+)))
6818
6819 (define-public emacs-browse-at-remote
6820 (let ((commit "31dcf77d7c89a12f230e2b2332585db2c44530ef")
6821 (revision "1"))
6822 (package
6823 (name "emacs-browse-at-remote")
6824 (version (string-append "0.9.0-" revision "."
6825 (string-take commit 7)))
6826 (source (origin
6827 (method git-fetch)
6828 (uri (git-reference
6829 (url "https://github.com/rmuslimov/browse-at-remote.git")
6830 (commit commit)))
6831 (file-name (string-append name "-" version "-checkout"))
6832 (patches
6833 (search-patches "emacs-browse-at-remote-cgit-gnu.patch"))
6834 (sha256
6835 (base32
6836 "017cb8lf7zbg0jmr7zxzd7d5kz2jy35cvw5vcpdmq1fdr3wqwkgj"))))
6837 (build-system emacs-build-system)
6838 (propagated-inputs
6839 `(("emacs-f" ,emacs-f)
6840 ("emacs-s" ,emacs-s)))
6841 (native-inputs
6842 `(("ert-runner" ,ert-runner)))
6843 (arguments
6844 `(#:tests? #t
6845 #:test-command '("ert-runner")))
6846 (home-page "https://github.com/rmuslimov/browse-at-remote")
6847 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
6848 (description
6849 "This Emacs package allows you to open a target page on
6850 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
6851 It supports dired buffers and opens them in tree mode at destination.")
6852 (license license:gpl3+))))
6853
6854 (define-public emacs-tiny
6855 (package
6856 (name "emacs-tiny")
6857 (version "0.2.1")
6858 (source
6859 (origin
6860 (method url-fetch)
6861 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
6862 (sha256
6863 (base32
6864 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
6865 (build-system emacs-build-system)
6866 (home-page "https://github.com/abo-abo/tiny")
6867 (synopsis "Quickly generate linear ranges in Emacs")
6868 (description
6869 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
6870 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
6871 proficiency is an advantage, since you can transform your numeric range with
6872 an elisp expression.")
6873 (license license:gpl3+)))
6874
6875 (define-public emacs-emojify
6876 (package
6877 (name "emacs-emojify")
6878 (version "0.4")
6879 (source
6880 (origin
6881 (method url-fetch)
6882 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
6883 "releases/download/v" version "/emojify-"
6884 version ".tar"))
6885 (sha256
6886 (base32
6887 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
6888 (build-system emacs-build-system)
6889 (arguments
6890 `(#:phases
6891 (modify-phases %standard-phases
6892 (add-after 'install 'install-data
6893 (lambda* (#:key outputs #:allow-other-keys)
6894 (copy-recursively "data"
6895 (string-append (assoc-ref outputs "out")
6896 "/share/emacs/site-lisp/guix.d/"
6897 "emojify-" ,version "/data"))
6898 #t)))))
6899 (propagated-inputs
6900 `(("emacs-ht" ,emacs-ht)))
6901 (home-page "https://github.com/iqbalansari/emacs-emojify")
6902 (synopsis "Display emojis in Emacs")
6903 (description "This package displays emojis in Emacs similar to how Github,
6904 Slack, and other websites do. It can display plain ASCII like @code{:)} as
6905 well as Github-style emojis like @code{:smile:}. It provides a minor mode
6906 @code{emojify-mode} to enable the display of emojis in a buffer.")
6907 (license license:gpl3+)))
6908
6909 (define-public emacs-websocket
6910 (package
6911 (name "emacs-websocket")
6912 (version "1.10")
6913 (source
6914 (origin
6915 (method git-fetch)
6916 (uri (git-reference
6917 (url "https://github.com/ahyatt/emacs-websocket.git")
6918 (commit version)))
6919 (file-name (string-append name "-" version "-checkout"))
6920 (sha256
6921 (base32
6922 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
6923 (build-system emacs-build-system)
6924 (home-page "http://elpa.gnu.org/packages/websocket.html")
6925 (synopsis "Emacs WebSocket client and server")
6926 (description "This is an Elisp library for WebSocket clients to talk to
6927 WebSocket servers, and for WebSocket servers to accept connections from
6928 WebSocket clients. This library is designed to be used by other library
6929 writers, to write applications that use WebSockets, and is not useful by
6930 itself.")
6931 (license license:gpl3+)))
6932
6933 (define-public emacs-oauth2
6934 (package
6935 (name "emacs-oauth2")
6936 (version "0.11")
6937 (source
6938 (origin
6939 (method url-fetch)
6940 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
6941 version ".el"))
6942 (sha256
6943 (base32
6944 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
6945 (build-system emacs-build-system)
6946 (home-page "http://elpa.gnu.org/packages/oauth2.html")
6947 (synopsis "OAuth 2.0 authorization protocol implementation")
6948 (description
6949 "This package provides an Elisp implementation of the OAuth 2.0 draft.
6950 The main entry point is @code{oauth2-auth-and-store} which will return a token
6951 structure. This token structure can be then used with
6952 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
6953 retrieve any data that need OAuth authentication to be accessed. If the token
6954 needs to be refreshed, the code handles it automatically and stores the new
6955 value of the access token.")
6956 (license license:gpl3+)))
6957
6958 (define-public emacs-circe
6959 (package
6960 (name "emacs-circe")
6961 (version "2.6")
6962 (source
6963 (origin
6964 (method git-fetch)
6965 (uri (git-reference
6966 (url "https://github.com/jorgenschaefer/circe.git")
6967 (commit (string-append "v" version))))
6968 (file-name (string-append name "-" version "-checkout"))
6969 (sha256
6970 (base32
6971 "19h3983zy3f15cgs86irvbdzz55qyjm48qd7gjlzcxplr7vnnh0j"))))
6972 (build-system emacs-build-system)
6973 ;; In order to securely connect to an IRC server using TLS, Circe requires
6974 ;; the GnuTLS binary.
6975 (propagated-inputs
6976 `(("gnutls" ,gnutls)))
6977 (home-page "https://github.com/jorgenschaefer/circe")
6978 (synopsis "Client for IRC in Emacs")
6979 (description "Circe is a Client for IRC in Emacs. It integrates well with
6980 the rest of the editor, using standard Emacs key bindings and indicating
6981 activity in channels in the status bar so it stays out of your way unless you
6982 want to use it.")
6983 (license license:gpl3+)))
6984
6985 (define-public emacs-slack
6986 (let ((commit "d90395482d26175ce38fd935e978c428be8af9a0")
6987 (revision "4"))
6988 (package
6989 (name "emacs-slack")
6990 (version (string-append "0-" revision "." (string-take commit 7)))
6991 (source (origin
6992 (method git-fetch)
6993 (uri (git-reference
6994 (url "https://github.com/yuya373/emacs-slack.git")
6995 (commit commit)))
6996 (file-name (string-append name "-" version "-checkout"))
6997 (sha256
6998 (base32
6999 "14f6wjcbl09cfd3yngr6m1k1d4nr764im666mbnqbk9nmqf50nib"))))
7000 (build-system emacs-build-system)
7001 (propagated-inputs
7002 `(("emacs-alert" ,emacs-alert)
7003 ("emacs-emojify" ,emacs-emojify)
7004 ("emacs-request" ,emacs-request)
7005 ("emacs-websocket" ,emacs-websocket)
7006 ("emacs-oauth2" ,emacs-oauth2)
7007 ("emacs-circe" ,emacs-circe)))
7008 (home-page "https://github.com/yuya373/emacs-slack")
7009 (synopsis "Slack client for Emacs")
7010 (description "This package provides an Emacs client for the Slack
7011 messaging service.")
7012 (license license:gpl3+))))
7013
7014 (define-public emacs-bash-completion
7015 (package
7016 (name "emacs-bash-completion")
7017 (version "2.0.0")
7018 (source
7019 (origin
7020 (method url-fetch)
7021 (uri (string-append
7022 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7023 version ".tar.gz"))
7024 (file-name (string-append name "-" version ".tar.gz"))
7025 (sha256
7026 (base32
7027 "0mkci4a1fy8z4cmry8mx5vsx4f16a8r454slnh7lqzidnhfi63hj"))))
7028 (inputs `(("bash" ,bash)))
7029 (build-system emacs-build-system)
7030 (arguments
7031 `(#:phases
7032 (modify-phases %standard-phases
7033 (add-before 'install 'configure
7034 (lambda* (#:key inputs #:allow-other-keys)
7035 (let ((bash (assoc-ref inputs "bash")))
7036 (emacs-substitute-variables "bash-completion.el"
7037 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7038 #t)))))
7039 (home-page "https://github.com/szermatt/emacs-bash-completion")
7040 (synopsis "BASH completion for the shell buffer")
7041 (description
7042 "@code{bash-completion} defines dynamic completion hooks for shell-mode
7043 and shell-command prompts that are based on bash completion.")
7044 (license license:gpl2+)))
7045
7046 (define-public emacs-easy-kill
7047 (package
7048 (name "emacs-easy-kill")
7049 (version "0.9.3")
7050 (source (origin
7051 (method url-fetch)
7052 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7053 version ".tar"))
7054 (sha256
7055 (base32
7056 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7057 (build-system emacs-build-system)
7058 (home-page "https://github.com/leoliu/easy-kill")
7059 (synopsis "Kill and mark things easily in Emacs")
7060 (description
7061 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7062 let users kill or mark things easily.")
7063 (license license:gpl3+)))
7064
7065 (define-public emacs-csv-mode
7066 (package
7067 (name "emacs-csv-mode")
7068 (version "1.7")
7069 (source
7070 (origin
7071 (method url-fetch)
7072 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7073 version ".el"))
7074 (sha256
7075 (base32
7076 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7077 (build-system emacs-build-system)
7078 (home-page
7079 "http://elpa.gnu.org/packages/csv-mode.html")
7080 (synopsis
7081 "Major mode for editing comma/char separated values")
7082 (description
7083 "This Emacs package implements CSV mode, a major mode for editing records
7084 in a generalized CSV (character-separated values) format.")
7085 (license license:gpl3+)))
7086
7087 (define-public emacs-transmission
7088 (package
7089 (name "emacs-transmission")
7090 (version "0.12.1")
7091 (source (origin
7092 (method url-fetch)
7093 (uri (string-append
7094 "https://github.com/holomorph/transmission/archive/"
7095 version ".tar.gz"))
7096 (file-name (string-append name "-" version ".tar.gz"))
7097 (sha256
7098 (base32
7099 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
7100 (build-system emacs-build-system)
7101 (home-page "https://github.com/holomorph/transmission")
7102 (synopsis "Emacs interface to a Transmission session")
7103 (description "This package provides an Emacs interface to interact with a
7104 running session of the Transmission Bittorrent client.
7105
7106 Features:
7107
7108 @itemize
7109 @item List, add, start/stop, verify, remove torrents.
7110 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
7111 @item Navigate to the corresponding file list, torrent info, peer info
7112 contexts.
7113 @item Toggle downloading and set priorities for individual files.
7114 @end itemize\n")
7115 (license license:gpl3+)))
7116
7117 (define-public emacs-polymode
7118 ;; There hasn't been a proper release.
7119 (let ((commit "0340f5e7e55235832e59673f027cc79a23cbdcd6")
7120 (revision "1"))
7121 (package
7122 (name "emacs-polymode")
7123 (version (string-append "1.0-" revision "." (string-take commit 7)))
7124 (source (origin
7125 (method git-fetch)
7126 (uri (git-reference
7127 (url "https://github.com/vspinu/polymode.git")
7128 (commit commit)))
7129 (file-name (string-append name "-" version "-checkout"))
7130 (sha256
7131 (base32
7132 "057cybkq3cy07n5s332k071sjiky3mziy003lza4rh75mgqkwhmh"))))
7133 (build-system emacs-build-system)
7134 (arguments
7135 `(#:include (cons* "^modes/.*\\.el$" %default-include)
7136 #:phases
7137 (modify-phases %standard-phases
7138 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
7139 (lambda _
7140 (setenv "EMACSLOADPATH"
7141 (string-append (getenv "EMACSLOADPATH")
7142 ":" (getcwd) "/modes" ":")))))))
7143 (home-page "https://github.com/vspinu/polymode")
7144 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
7145 (description "Polymode is an Emacs package that offers generic support
7146 for multiple major modes inside a single Emacs buffer. It is lightweight,
7147 object oriented and highly extensible. Creating a new polymode typically
7148 takes only a few lines of code. Polymode also provides extensible facilities
7149 for external literate programming tools for exporting, weaving and tangling.")
7150 (license license:gpl3+))))
7151
7152 (define-public eless
7153 (package
7154 (name "eless")
7155 (version "0.3")
7156 (source (origin
7157 (method url-fetch)
7158 (uri (string-append
7159 "https://github.com/kaushalmodi/eless/archive/"
7160 "v" version ".tar.gz"))
7161 (file-name (string-append name "-" version ".tar.gz"))
7162 (sha256
7163 (base32
7164 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7165 (build-system trivial-build-system)
7166 (inputs
7167 `(("bash" ,bash)))
7168 (native-inputs
7169 `(("tar" ,tar)
7170 ("gzip" ,gzip)))
7171 (arguments
7172 `(#:modules ((guix build utils))
7173 #:builder
7174 (begin
7175 (use-modules (guix build utils))
7176 (setenv "PATH" (string-append
7177 (assoc-ref %build-inputs "tar") "/bin" ":"
7178 (assoc-ref %build-inputs "gzip") "/bin"))
7179 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
7180 (chdir (string-append "eless" "-" ,version))
7181 (substitute* "eless" (("/usr/bin/env bash")
7182 (string-append (assoc-ref %build-inputs "bash")
7183 "/bin/bash")))
7184 (install-file "eless" (string-append %output "/bin"))
7185 (install-file "doc/eless.info" (string-append %output "/share/info"))
7186 #t)))
7187 (home-page "https://github.com/kaushalmodi/eless")
7188 (synopsis "Use Emacs as a paginator")
7189 (description "@code{eless} provides a combination of Bash script
7190 and a minimal Emacs view-mode.
7191
7192 Feautures:
7193
7194 @itemize
7195 @item Independent of a user’s Emacs config.
7196 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7197 @item Not require an Emacs server to be already running.
7198 @item Syntax highlighting.
7199 @item Org-mode file rendering.
7200 @item @code{man} page viewer.
7201 @item Info viewer.
7202 @item Dired, wdired, (batch edit symbolic links).
7203 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
7204 @item Filter log files lines matching a regexp.
7205 @item Auto-revert log files similar to @code{tail -f}.
7206 @item Quickly change frame and font sizes.
7207 @end itemize\n")
7208 (license license:expat)))
7209
7210 (define-public emacs-evil-matchit
7211 (package
7212 (name "emacs-evil-matchit")
7213 (version "2.2.6")
7214 (source
7215 (origin
7216 (method url-fetch)
7217 (uri (string-append
7218 "https://github.com/redguardtoo/evil-matchit/archive/"
7219 version ".tar.gz"))
7220 (file-name (string-append name "-" version ".tar.gz"))
7221 (sha256
7222 (base32
7223 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
7224 (build-system emacs-build-system)
7225 (propagated-inputs
7226 `(("emacs-evil" ,emacs-evil)))
7227 (home-page "https://github.com/redguardtoo/evil-matchit")
7228 (synopsis "Vim matchit ported into Emacs")
7229 (description
7230 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7231 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7232 (license license:gpl3+)))
7233
7234 (define-public emacs-evil-smartparens
7235 (package
7236 (name "emacs-evil-smartparens")
7237 (version "0.4.0")
7238 (source
7239 (origin
7240 (method url-fetch)
7241 (uri (string-append
7242 "https://github.com/expez/evil-smartparens/archive/"
7243 version ".tar.gz"))
7244 (file-name (string-append name "-" version ".tar.gz"))
7245 (sha256
7246 (base32
7247 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7248 (build-system emacs-build-system)
7249 (propagated-inputs
7250 `(("emacs-evil" ,emacs-evil)
7251 ("emacs-smartparens" ,emacs-smartparens)))
7252 (home-page "https://github.com/expez/evil-smartparens")
7253 (synopsis "Emacs Evil integration for Smartparens")
7254 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7255 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7256 emulates Vim features and provides Vim-like key bindings.")
7257 (license license:gpl3+)))
7258
7259 (define-public emacs-evil-quickscope
7260 (package
7261 (name "emacs-evil-quickscope")
7262 (version "0.1.4")
7263 (source
7264 (origin
7265 (method url-fetch)
7266 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7267 version ".tar.gz"))
7268 (file-name (string-append name "-" version ".tar.gz"))
7269 (sha256
7270 (base32
7271 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
7272 (build-system emacs-build-system)
7273 (propagated-inputs
7274 `(("emacs-evil" ,emacs-evil)))
7275 (arguments
7276 `(#:tests? #t
7277 #:test-command '("emacs" "--batch"
7278 "-l" "evil-quickscope-tests.el"
7279 "-f" "ert-run-tests-batch-and-exit")))
7280 (home-page "https://github.com/blorbx/evil-quickscope")
7281 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
7282 (description "@code{emacs-evil-quickscope} highlights targets for Evil
7283 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
7284 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
7285 features and provides Vim-like key bindings.")
7286 (license license:gpl3+)))
7287
7288 (define-public emacs-bongo
7289 (package
7290 (name "emacs-bongo")
7291 (version "1.0")
7292 (source
7293 (origin
7294 (method url-fetch)
7295 (uri (string-append
7296 "https://github.com/dbrock/bongo/archive/"
7297 version ".tar.gz"))
7298 (file-name (string-append name "-" version ".tar.gz"))
7299 (sha256
7300 (base32
7301 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
7302 (build-system emacs-build-system)
7303 (home-page "https://github.com/dbrock/bongo")
7304 (synopsis "Media player for Emacs")
7305 (description
7306 "This package provides a flexible media player for Emacs. @code{Bongo}
7307 supports multiple backends such as @code{vlc}, @code{mpg123},
7308 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
7309 @code{afplay}.")
7310 (license license:gpl2+)))
7311
7312 (define-public groovy-emacs-modes
7313 (package
7314 (name "groovy-emacs-modes")
7315 (version "2.0")
7316 (source (origin
7317 (method url-fetch)
7318 (uri (string-append
7319 "https://github.com/Groovy-Emacs-Modes/" name
7320 "/archive/" version ".tar.gz"))
7321 (file-name (string-append name "-" version ".tar.gz"))
7322 (sha256
7323 (base32
7324 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
7325 (build-system emacs-build-system)
7326 (propagated-inputs
7327 `(("emacs-s" ,emacs-s)))
7328 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
7329 (synopsis "Groovy related modes for Emacs")
7330 (description
7331 "This package provides @code{groovy-mode} for syntax highlighing in
7332 Groovy source files, REPL integration with run-groovy and Grails project
7333 navigation with the grails mode.")
7334 (license license:gpl3+)))
7335
7336 (define-public org-tree-slide
7337 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
7338 (revision "0"))
7339 (package
7340 (name "emacs-org-tree-slide")
7341 (version (git-version "0.1" revision commit))
7342 (home-page "https://github.com/takaxp/org-tree-slide")
7343 (source (origin
7344 (method git-fetch)
7345 (uri (git-reference (url home-page) (commit commit)))
7346 (sha256
7347 (base32
7348 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
7349 (file-name (git-file-name name version))))
7350 (build-system emacs-build-system)
7351 (synopsis "Presentation tool for org-mode")
7352 (description
7353 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
7354 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
7355 @kbd{C-<} to jump to the next and previous slide.")
7356 (license license:gpl3+))))
7357
7358 (define-public emacs-scratch-el
7359 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
7360 (revision "1"))
7361 (package
7362 (name "emacs-scratch-el")
7363 (version (git-version "1.2" revision commit))
7364 (source (origin
7365 (method git-fetch)
7366 (uri (git-reference
7367 (url "https://github.com/ieure/scratch-el.git")
7368 (commit commit)))
7369 (file-name (git-file-name name version))
7370 (sha256
7371 (base32
7372 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
7373 (build-system emacs-build-system)
7374 (native-inputs
7375 `(("texinfo" ,texinfo)))
7376 (arguments
7377 '(#:phases
7378 (modify-phases %standard-phases
7379 (add-after 'install 'install-doc
7380 (lambda* (#:key outputs #:allow-other-keys)
7381 (unless (invoke "makeinfo" "scratch.texi")
7382 (error "makeinfo failed"))
7383 (install-file "scratch.info"
7384 (string-append (assoc-ref outputs "out")
7385 "/share/info"))
7386 #t)))))
7387 (home-page "https://github.com/ieure/scratch-el/")
7388 (synopsis "Create scratch buffers with the same mode as current buffer")
7389 (description "Scratch is an extension to Emacs that enables one to create
7390 scratch buffers that are in the same mode as the current buffer. This is
7391 notably useful when working on code in some language; you may grab code into a
7392 scratch buffer, and, by virtue of this extension, do so using the Emacs
7393 formatting rules for that language.")
7394 (license license:bsd-2))))
7395
7396 (define-public emacs-kv
7397 (package
7398 (name "emacs-kv")
7399 (version "0.0.19")
7400 (source
7401 (origin
7402 (method git-fetch)
7403 (uri (git-reference
7404 (url "https://github.com/nicferrier/emacs-kv.git")
7405 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
7406 (file-name (string-append name "-" version "-checkout"))
7407 (sha256
7408 (base32
7409 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
7410 (build-system emacs-build-system)
7411 (arguments
7412 `(#:tests? #t
7413 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
7414 "-f" "ert-run-tests-batch-and-exit")))
7415 (home-page "https://github.com/nicferrier/emacs-kv")
7416 (synopsis "Key/Value data structures library for Emacs Lisp")
7417 (description "@code{emacs-kv} is a collection of tools for dealing with
7418 key/value data structures such as plists, alists and hash-tables in Emacs
7419 Lisp.")
7420 (license license:gpl3+)))
7421
7422 (define-public emacs-esxml
7423 (package
7424 (name "emacs-esxml")
7425 (version "0.3.4")
7426 (source (origin
7427 (method git-fetch)
7428 (uri (git-reference
7429 (url "https://github.com/tali713/esxml.git")
7430 (commit version)))
7431 (file-name (git-file-name name version))
7432 (sha256
7433 (base32
7434 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
7435 (build-system emacs-build-system)
7436 (arguments
7437 `(#:phases
7438 (modify-phases %standard-phases
7439 (add-after 'unpack 'fix-sources
7440 (lambda _
7441 ;; See: https://github.com/tali713/esxml/pull/28.
7442 (substitute* "css-lite.el"
7443 ((";;; main interface")
7444 (string-append ";;; main interface\n"
7445 "(require 'cl-lib)"))
7446 (("mapcan")
7447 "cl-mapcan")
7448 (("',\\(cl-mapcan #'process-css-rule rules\\)")
7449 "(cl-mapcan #'process-css-rule ',rules)"))
7450 (substitute* "esxml-form.el"
7451 ((",esxml-form-field-defn")
7452 "#'esxml-form-field-defn"))
7453 ;; See: https://github.com/tali713/esxml/issues/25
7454 (delete-file "esxpath.el")
7455 #t)))))
7456 (propagated-inputs
7457 `(("emacs-kv" ,emacs-kv)))
7458 (home-page "https://github.com/tali713/esxml/")
7459 (synopsis "SXML for EmacsLisp")
7460 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
7461 Simply, this is the easiest way to write HTML or XML in Lisp. This library
7462 uses the native form of XML representation as used by many libraries already
7463 included within Emacs. See @code{esxml-to-xml} for a concise description of
7464 the format.")
7465 (license license:gpl3+)))
7466
7467 (define-public emacs-nov-el
7468 (package
7469 (name "emacs-nov-el")
7470 (version "0.2.2")
7471 (source (origin
7472 (method git-fetch)
7473 (uri (git-reference
7474 (url "https://github.com/wasamasa/nov.el.git")
7475 (commit version)))
7476 (file-name (git-file-name name version))
7477 (sha256
7478 (base32
7479 "03s0qjvwk1f7y3i4wh2p5y3z4hdv00adgz8za3vphzc0q8i1kjzb"))))
7480 (build-system emacs-build-system)
7481 (arguments
7482 `(#:phases
7483 (modify-phases %standard-phases
7484 (add-after 'unpack 'embed-path-to-unzip
7485 (lambda _
7486 (substitute* "nov.el"
7487 (("\\(executable-find \"unzip\"\\)")
7488 (string-append "\"" (which "unzip") "\"")))
7489 #t)))))
7490 (propagated-inputs
7491 `(("emacs-dash" ,emacs-dash)
7492 ("emacs-esxml" ,emacs-esxml)))
7493 (inputs
7494 `(("unzip" ,unzip)))
7495 (home-page "https://github.com/wasamasa/nov.el/")
7496 (synopsis "Major mode for reading EPUBs in Emacs")
7497 (description "@code{nov.el} provides a major mode for reading EPUB
7498 documents.
7499
7500 Features:
7501
7502 @itemize
7503 @item Basic navigation (jump to TOC, previous/next chapter)
7504 @item Remembering and restoring the last read position
7505 @item Jump to next chapter when scrolling beyond end
7506 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
7507 @item Hyperlinks to internal and external targets
7508 @item Supports textual and image documents
7509 @item View source of document files
7510 @item Metadata display
7511 @item Image rescaling
7512 @end itemize
7513 ")
7514 (license license:gpl3+)))
7515
7516 (define-public epipe
7517 (package
7518 (name "epipe")
7519 (version "0.1.0")
7520 (source
7521 (origin
7522 (method url-fetch)
7523 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
7524 version ".tar.gz"))
7525 (file-name (string-append name "-" version ".tar.gz"))
7526 (sha256
7527 (base32
7528 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
7529 (build-system trivial-build-system)
7530 (inputs
7531 `(("bash" ,bash)
7532 ("perl" ,perl)))
7533 (native-inputs
7534 `(("tar" ,tar)
7535 ("gzip" ,gzip)))
7536 (arguments
7537 `(#:modules
7538 ((guix build utils))
7539 #:builder
7540 (begin
7541 (use-modules (guix build utils))
7542 ;; Extract source
7543 (setenv "PATH" (string-append
7544 (assoc-ref %build-inputs "tar") "/bin" ":"
7545 (assoc-ref %build-inputs "gzip") "/bin"))
7546 (system* "tar" "xvf" (assoc-ref %build-inputs "source"))
7547 (chdir (string-append ,name "-" ,version))
7548 ;; Patch shebangs
7549 (substitute* "epipe"
7550 (("/usr/bin/env bash")
7551 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
7552 (patch-shebang "epipe.pl"
7553 (list (string-append (assoc-ref %build-inputs "perl")
7554 "/bin")))
7555 ;; Installation
7556 (for-each (lambda (file)
7557 (install-file file (string-append %output "/bin")))
7558 '("epipe" "epipe.pl"))
7559 #t)))
7560 (home-page "https://github.com/cute-jumper/epipe")
7561 (synopsis "Pipe to the @code{emacsclient}")
7562 (description "@code{epipe} provides an utility to use your editor in
7563 the pipeline, featuring the support for running @code{emacsclient}.")
7564 (license license:gpl3+)))
7565
7566 (define-public emacs-hcl-mode
7567 (package
7568 (name "emacs-hcl-mode")
7569 (version "0.03")
7570 (source
7571 (origin
7572 (method url-fetch)
7573 (uri (string-append
7574 "https://github.com/syohex/emacs-hcl-mode/archive/"
7575 version ".tar.gz"))
7576 (file-name (string-append name "-" version ".tar.gz"))
7577 (sha256
7578 (base32
7579 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
7580 (build-system emacs-build-system)
7581 (home-page "https://github.com/syohex/emacs-hcl-mode")
7582 (synopsis "Major mode for the Hashicorp Configuration Language")
7583 (description
7584 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
7585 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
7586 highlighting and indentation support.")
7587 (license license:gpl3+)))
7588
7589 (define-public emacs-terraform-mode
7590 (package
7591 (name "emacs-terraform-mode")
7592 (version "0.06")
7593 (source
7594 (origin
7595 (method url-fetch)
7596 (uri (string-append
7597 "https://github.com/syohex/emacs-terraform-mode/archive/"
7598 version ".tar.gz"))
7599 (file-name (string-append name "-" version ".tar.gz"))
7600 (sha256
7601 (base32
7602 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
7603 (build-system emacs-build-system)
7604 (propagated-inputs
7605 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
7606 (home-page "https://github.com/syohex/emacs-terraform-mode")
7607 (synopsis "Major mode for Terraform")
7608 (description
7609 "@code{emacs-terraform-mode} provides a major mode for working with
7610 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
7611 functionality is inherited from @code{hcl-mode}.")
7612 (license license:gpl3+)))
7613
7614 (define-public emacs-exec-path-from-shell
7615 (package
7616 (name "emacs-exec-path-from-shell")
7617 (version "1.11")
7618 (source
7619 (origin
7620 (method url-fetch)
7621 (uri (string-append
7622 "https://stable.melpa.org/packages/exec-path-from-shell-"
7623 version ".el"))
7624 (sha256
7625 (base32
7626 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
7627 (build-system emacs-build-system)
7628 (home-page "https://github.com/purcell/exec-path-from-shell")
7629 (synopsis "Get environment variables such as @var{PATH} from the shell")
7630 (description
7631 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
7632 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
7633 the like work as expected on systems on which Emacs is not guaranteed to
7634 inherit a login shell's environment variables. It also allows other
7635 environment variables to be retrieved from the shell, so that Emacs will see
7636 the same values you get in a terminal.")
7637 (license license:gpl3+)))
7638
7639 (define-public emacs-deft
7640 (package
7641 (name "emacs-deft")
7642 (version "0.8")
7643 (source
7644 (origin
7645 (method url-fetch)
7646 (uri (string-append "https://stable.melpa.org/packages/deft-"
7647 version ".el"))
7648 (sha256
7649 (base32
7650 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
7651 (build-system emacs-build-system)
7652 (home-page "https://jblevins.org/projects/deft/")
7653 (synopsis "Quickly browse, filter, and edit plain text notes")
7654 (description
7655 "Deft is an Emacs mode for quickly browsing, filtering, and editing
7656 directories of plain text notes, inspired by Notational Velocity.")
7657 (license license:bsd-3)))
7658
7659 (define-public emacs-anzu
7660 (package
7661 (name "emacs-anzu")
7662 (version "0.62")
7663 (source
7664 (origin
7665 (method url-fetch)
7666 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
7667 version ".tar.gz"))
7668 (file-name (string-append name "-" version ".tar.gz"))
7669 (sha256
7670 (base32
7671 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
7672 (build-system emacs-build-system)
7673 (home-page "https://github.com/syohex/emacs-anzu")
7674 (synopsis "Show number of matches in mode-line while searching")
7675 (description
7676 "Anzu provides a minor mode which displays \"current match/total
7677 matches\" in the mode line in various search modes. This is an Emacs port of
7678 Anzu.zim.")
7679 (license license:gpl3+)))
7680
7681 (define-public emacs-emmet-mode
7682 (package
7683 (name "emacs-emmet-mode")
7684 (version "1.0.8")
7685 (source (origin
7686 (method url-fetch)
7687 (uri (string-append "https://github.com/smihica/emmet-mode"
7688 "/archive/" version ".tar.gz"))
7689 (file-name (string-append name "-" version ".tar.gz"))
7690 (sha256
7691 (base32
7692 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
7693 (build-system emacs-build-system)
7694 (home-page "https://github.com/smihica/emmet-mode")
7695 (synopsis "Unofficial Emmet's support for Emacs")
7696 (description
7697 "Unfold CSS-selector-like expressions to markup. It is intended to be
7698 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
7699 (license license:gpl3+)))
7700
7701 (define-public emacs-ergoemacs-mode
7702 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
7703 (revision "1"))
7704 (package
7705 (name "emacs-ergoemacs-mode")
7706 (version (git-version "5.16.10.12" revision commit))
7707 (source
7708 (origin
7709 (method git-fetch)
7710 (uri (git-reference
7711 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
7712 (commit commit)))
7713 (sha256
7714 (base32
7715 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
7716 (build-system emacs-build-system)
7717 (propagated-inputs
7718 `(("emacs-undo-tree" ,emacs-undo-tree)))
7719 (home-page "https://ergoemacs.github.io/")
7720 (synopsis "Emacs mode based on common modern interface and ergonomics")
7721 (description
7722 "This package provides an efficient Emacs keybinding set based on
7723 statistics of command frequency, and supports common shortcuts for open,
7724 close, copy, cut, paste, undo, redo.")
7725 (license license:gpl3+))))
7726
7727 (define-public emacs-password-store
7728 (package
7729 (name "emacs-password-store")
7730 (version "1.7.1")
7731 (source (origin
7732 (method url-fetch)
7733 (uri
7734 (string-append "https://git.zx2c4.com/password-store/snapshot/"
7735 "password-store-" version ".tar.xz"))
7736 (sha256
7737 (base32
7738 "0scqkpll2q8jhzcgcsh9kqz0gwdpvynivqjmmbzax2irjfaiklpn"))))
7739 (build-system emacs-build-system)
7740 (arguments
7741 `(#:phases
7742 (modify-phases %standard-phases
7743 (add-after 'unpack 'extract-el-file
7744 (lambda _
7745 (copy-file "contrib/emacs/password-store.el" "password-store.el")
7746 (delete-file-recursively "contrib")
7747 (delete-file-recursively "man")
7748 (delete-file-recursively "src")
7749 (delete-file-recursively "tests"))))))
7750 (propagated-inputs
7751 `(("emacs-f" ,emacs-f)
7752 ("emacs-s" ,emacs-s)
7753 ("password-store" ,password-store)))
7754 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
7755 (synopsis "Password store (pass) support for Emacs")
7756 (description
7757 "This package provides functions for working with pass (\"the
7758 standard Unix password manager\").")
7759 (license license:gpl2+)))
7760
7761 (define-public emacs-pass
7762 (package
7763 (name "emacs-pass")
7764 (version "1.7")
7765 (source (origin
7766 (method url-fetch)
7767 (uri (string-append
7768 "https://github.com/NicolasPetton/pass/archive/"
7769 version ".tar.gz"))
7770 (sha256
7771 (base32
7772 "0zlx9v6z0q3w9qhq9bq6vb7sli4c9x7qccm2wq55j0nw7bwy2yvj"))
7773 (file-name (string-append name "-" version ".tar.gz"))))
7774 (build-system emacs-build-system)
7775 (propagated-inputs
7776 `(("emacs-password-store" ,emacs-password-store)
7777 ("emacs-f" ,emacs-f)))
7778 (home-page "https://github.com/NicolasPetton/pass")
7779 (synopsis "Major mode for @file{password-store.el}")
7780 (description "This is a major mode for managing password-store (pass)
7781 keychains. The keychain entries are displayed in a directory-like structure
7782 and can be consulted and modified.")
7783 (license license:gpl3+)))
7784
7785 (define-public emacs-evil-anzu
7786 (package
7787 (name "emacs-evil-anzu")
7788 (version "0.03")
7789 (source
7790 (origin
7791 (method url-fetch)
7792 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
7793 "/archive/" version ".tar.gz"))
7794 (file-name (string-append name "-" version ".tar.gz"))
7795 (sha256
7796 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
7797 (build-system emacs-build-system)
7798 (propagated-inputs
7799 `(("emacs-evil" ,emacs-evil)
7800 ("emacs-anzu" ,emacs-anzu)))
7801 (home-page "https://github.com/syohex/emacs-evil-anzu")
7802 (synopsis "Anzu for evil-mode")
7803 (description "@code{anzu} provides a minor mode that displays the current
7804 match and total match information in the mode-line in various search modes.")
7805 (license license:gpl3+)))
7806
7807 (define-public emacs-pg
7808 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
7809 (package
7810 (name "emacs-pg")
7811 (version (git-version "0.1" "1" commit))
7812 (source (origin
7813 (method git-fetch)
7814 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
7815 (commit commit)))
7816 (file-name (git-file-name name version))
7817 (sha256
7818 (base32
7819 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
7820 (build-system emacs-build-system)
7821 (home-page "https://github.com/cbbrowne/pg.el")
7822 (synopsis "Emacs Lisp interface for PostgreSQL")
7823 (description
7824 "This package provides an Emacs Lisp interface for PostgreSQL.")
7825 (license license:gpl3+))))
7826
7827 (define-public emacs-cl-generic
7828 (package
7829 (name "emacs-cl-generic")
7830 (version "0.3")
7831 (source
7832 (origin
7833 (method url-fetch)
7834 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
7835 version ".el"))
7836 (sha256
7837 (base32
7838 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
7839 (build-system emacs-build-system)
7840 (home-page "https://elpa.gnu.org/packages/seq.html")
7841 (synopsis
7842 "Forward @code{cl-generic} compatibility for Emacs before version 25")
7843 (description "This package provides a subset of the features of the
7844 @code{cl-generic} package introduced in Emacs-25, for use on previous
7845 @code{emacsen}.")
7846 (license license:gpl3+)))
7847
7848 (define-public emacs-finalize
7849 (package
7850 (name "emacs-finalize")
7851 (version "2.0.0")
7852 (source
7853 (origin
7854 (method url-fetch)
7855 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
7856 version ".tar.gz"))
7857 (file-name (string-append name "-" version ".tar.gz"))
7858 (sha256
7859 (base32
7860 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
7861 (build-system emacs-build-system)
7862 (propagated-inputs
7863 `(("emacs-cl-generic" ,emacs-cl-generic)))
7864 (home-page "https://github.com/skeeto/elisp-finalize")
7865 (synopsis "Finalizers for Emacs Lisp")
7866 (description
7867 "This package will allows to immediately run a callback (a finalizer)
7868 after its registered lisp object has been garbage collected. This allows for
7869 extra resources, such as buffers and processes, to be cleaned up after the
7870 object has been freed.")
7871 (license license:unlicense)))
7872
7873 (define-public emacs-emacsql
7874 (package
7875 (name "emacs-emacsql")
7876 (version "2.0.3")
7877 (source
7878 (origin
7879 (method url-fetch)
7880 (uri (string-append "https://github.com/skeeto/emacsql/archive/"
7881 version ".tar.gz"))
7882 (file-name (string-append name "-" version ".tar.gz"))
7883 (sha256
7884 (base32
7885 "04hfjdgl1zc7jysgjc7d7d3xqpr7q1q9gsmzffjd91ii3hpqjgx6"))))
7886 (build-system emacs-build-system)
7887 (arguments
7888 `(#:modules ((guix build emacs-build-system)
7889 (guix build utils)
7890 (guix build emacs-utils)
7891 (srfi srfi-26))
7892 #:phases
7893 (modify-phases %standard-phases
7894 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
7895 (add-before 'install 'patch-elisp-shell-shebangs
7896 (lambda _
7897 (substitute* (find-files "." "\\.el")
7898 (("/bin/sh") (which "sh")))
7899 #t))
7900 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
7901 (lambda _
7902 (setenv "SHELL" "sh")))
7903 (add-after 'setenv-shell 'build-emacsql-sqlite
7904 (lambda _
7905 (invoke "make" "binary" "CC=gcc")))
7906 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
7907 ;; This build phase installs emacs-emacsql binary.
7908 (lambda* (#:key outputs #:allow-other-keys)
7909 (install-file "sqlite/emacsql-sqlite"
7910 (string-append (assoc-ref outputs "out")
7911 "/bin"))
7912 #t))
7913 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
7914 ;; This build phase removes interactive prompts
7915 ;; and makes sure Emacs look for binaries in the right places.
7916 (lambda* (#:key outputs #:allow-other-keys)
7917 (let ((file "emacsql-sqlite.el"))
7918 (chmod file #o644)
7919 (emacs-substitute-sexps file
7920 ;; Avoid interactive prompts.
7921 ("(defvar emacsql-sqlite-user-prompted" 't)
7922 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
7923 ("(executable-find" (which "gcc"))
7924 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
7925 ;; in the right place.
7926 ("(defvar emacsql-sqlite-executable"
7927 (string-append (assoc-ref outputs "out")
7928 "/bin/emacsql-sqlite"))))))
7929 (replace 'install
7930 (lambda* (#:key outputs #:allow-other-keys)
7931 (let* ((out (assoc-ref outputs "out")))
7932 (install-file "sqlite/emacsql-sqlite"
7933 (string-append out "/bin"))
7934 (for-each (cut install-file <>
7935 (string-append out "/share/emacs/site-lisp/guix.d/"
7936 "emacsql" "-" ,version))
7937 (find-files "." "\\.elc*$")))
7938 #t)))))
7939 (inputs
7940 `(("emacs-minimal" ,emacs-minimal)
7941 ("mysql" ,mysql)
7942 ("postgresql" ,postgresql)))
7943 (propagated-inputs
7944 `(("emacs-finalize" ,emacs-finalize)
7945 ("emacs-pg" ,emacs-pg)))
7946 (home-page "https://github.com/skeeto/emacsql")
7947 (synopsis "Emacs high-level SQL database front-end")
7948 (description "Any readable Lisp value can be stored as a value in EmacSQL,
7949 including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
7950 has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
7951 object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
7952 (license license:gpl3+)))
7953
7954 (define-public emacs-closql
7955 (package
7956 (name "emacs-closql")
7957 (version "0.5.1")
7958 (source
7959 (origin
7960 (method url-fetch)
7961 (uri (string-append "https://github.com/emacscollective/closql/archive/"
7962 "v" version ".tar.gz"))
7963 (file-name (string-append name "-" version ".tar.gz"))
7964 (sha256
7965 (base32
7966 "0wa6r0kgbb7f19039p5f3di4dvrvxfgpd8bkam94fca7jvzj536c"))))
7967 (build-system emacs-build-system)
7968 (propagated-inputs
7969 `(("emacs-emacsql" ,emacs-emacsql)))
7970 (home-page "https://github.com/emacscollective/closql")
7971 (synopsis "Store EIEIO objects using EmacSQL")
7972 (description
7973 "This package allows to store uniform EIEIO objects in an EmacSQL
7974 database. SQLite is used as backend. This library imposes some restrictions
7975 on what kind of objects can be stored; it isn't intended to store arbitrary
7976 objects. All objects have to share a common superclass and subclasses cannot
7977 add any additional instance slots.")
7978 (license license:gpl3)))
7979
7980 (define-public emacs-epkg
7981 ;; The release version is to old for the current database scheme.
7982 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
7983 (package
7984 (name "emacs-epkg")
7985 (version (git-version "3.0.0" "1" commit))
7986 (source
7987 (origin
7988 (method git-fetch)
7989 (uri (git-reference
7990 (url "https://github.com/emacscollective/epkg.git")
7991 (commit commit)))
7992 (file-name (git-file-name name version))
7993 (sha256
7994 (base32
7995 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
7996 (build-system emacs-build-system)
7997 (propagated-inputs
7998 `(("emacs-closql" ,emacs-closql)
7999 ("emacs-dash" ,emacs-dash)))
8000 (home-page "https://emacsmirror.net")
8001 (synopsis "Browse the Emacsmirror package database")
8002 (description "This package provides access to a local copy of the
8003 Emacsmirror package database. It provides low-level functions for querying
8004 the database and a @file{package.el} user interface for browsing the database.
8005 Epkg itself is not a package manager.
8006
8007 Getting a local copy:
8008
8009 @example
8010 git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8011 cd ~/.emacs.d/epkgs
8012 git submodule init
8013 git config --global url.https://github.com/.insteadOf git@@github.com:
8014 git submodule update
8015 @end example
8016
8017 Some submodule may be missing. In this case Git will prompt for a GitHub user
8018 name and password. To skip it press a @key{Return} key.
8019
8020 You could get a Epkg package list by invoking @code{epkg-list-packages} in
8021 Emacs.")
8022 (license license:gpl3+))))
8023
8024 (define-public emacs-elisp-slime-nav
8025 (package
8026 (name "emacs-elisp-slime-nav")
8027 (version "0.9")
8028 (source
8029 (origin
8030 (method url-fetch)
8031 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8032 version ".tar.gz"))
8033 (file-name (string-append name "-" version ".tar.gz"))
8034 (sha256
8035 (base32
8036 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8037 (build-system emacs-build-system)
8038 (home-page "https://github.com/purcell/elisp-slime-nav")
8039 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8040 (description
8041 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8042 in @code{emacs-lisp-mode}, together with an elisp equivalent of
8043 @code{slime-describe-symbol}.")
8044 (license license:gpl3+)))
8045
8046 (define-public emacs-dedicated
8047 (package
8048 (name "emacs-dedicated")
8049 (version "1.0.0")
8050 (source (origin
8051 (method url-fetch)
8052 (uri (string-append
8053 "https://github.com/emacsorphanage/dedicated/archive/"
8054 version
8055 ".tar.gz"))
8056 (sha256
8057 (base32
8058 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8059 (file-name (string-append name "-" version ".tar.gz"))))
8060 (build-system emacs-build-system)
8061 (home-page "https://github.com/emacsorphanage/dedicated")
8062 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8063 (description
8064 "This simple Emacs minor mode allows you to toggle a window's
8065 \"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8066 files into that window. This can be quite handy since many commands will use
8067 another window to show results (compilation mode, starting info, and so on).
8068 A dedicated window won't be used for such a purpose. For details, please read
8069 the source file.")
8070 (license license:gpl2+)))
8071
8072 (define-public emacs-nnreddit
8073 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8074 (revision "1"))
8075 (package
8076 (name "emacs-nnreddit")
8077 (version (string-append "0.0.1-" revision "."
8078 (string-take commit 7)))
8079 (source (origin
8080 (method git-fetch)
8081 (uri (git-reference
8082 (url "https://github.com/paul-issartel/nnreddit.git")
8083 (commit commit)))
8084 (file-name (string-append name "-" version "-checkout"))
8085 (sha256
8086 (base32
8087 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8088 (build-system emacs-build-system)
8089 (home-page "https://github.com/paul-issartel/nnreddit")
8090 (synopsis "Reddit backend for the Gnus newsreader")
8091 (description "@url{https://www.reddit.com} backend for the Gnus
8092 newsreader.")
8093 (license license:gpl3+))))
8094
8095 (define-public emacs-makey
8096 (package
8097 (name "emacs-makey")
8098 (version "0.3")
8099 (source
8100 (origin
8101 (method url-fetch)
8102 (uri (string-append "https://github.com/mickeynp/makey/archive/"
8103 version ".tar.gz"))
8104 (file-name (string-append name "-" version ".tar.gz"))
8105 (sha256
8106 (base32
8107 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
8108 (build-system emacs-build-system)
8109 (home-page "https://github.com/mickeynp/makey")
8110 (synopsis "Emacs interactive command-line mode")
8111 (description
8112 "This package provides an Emacs interactive command-line mode.")
8113 (license license:gpl3+)))
8114
8115 (define-public emacs-outorg
8116 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
8117 (package
8118 (name "emacs-outorg")
8119 (version (git-version "2.0" "1" commit))
8120 (source
8121 (origin
8122 (method git-fetch)
8123 (uri (git-reference
8124 (url "https://github.com/alphapapa/outorg")
8125 (commit commit)))
8126 (file-name (git-file-name name version))
8127 (sha256
8128 (base32
8129 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
8130 (build-system emacs-build-system)
8131 (home-page "https://github.com/alphapapa/outorg")
8132 (synopsis "Org-style comment editing")
8133 (description "Outorg is for editing comment-sections of source-code
8134 files in temporary Org-mode buffers. It turns conventional
8135 literate-programming upside-down in that the default mode is the
8136 programming-mode, and special action has to be taken to switch to the
8137 text-mode (i.e. Org-mode).")
8138 (license license:gpl3+))))
8139
8140 (define-public emacs-outshine
8141 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
8142 (package
8143 (name "emacs-outshine")
8144 (version (git-version "2.0" "1" commit))
8145 (source (origin
8146 (method git-fetch)
8147 (uri (git-reference
8148 (url "https://github.com/alphapapa/outshine.git")
8149 (commit commit)))
8150 (file-name (git-file-name name version))
8151 (sha256
8152 (base32
8153 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
8154 (build-system emacs-build-system)
8155 (propagated-inputs
8156 `(("emacs-outorg" ,emacs-outorg)))
8157 (home-page "https://github.com/alphapapa/outshine")
8158 (synopsis "Emacs outline with outshine")
8159 (description "Outshine attempts to bring the look and feel of
8160 @code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
8161 of @code{outline-minor-mode} (@code{org-mode} itself derives from
8162 outline-mode), so there is no such thing like an outshine mode, only
8163 @code{outline-minor-mode} with outshine extensions loaded.")
8164 (license license:gpl3+))))
8165
8166 (define-public emacs-parsebib
8167 (package
8168 (name "emacs-parsebib")
8169 (version "2.3.1")
8170 (source
8171 (origin
8172 (method url-fetch)
8173 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
8174 version ".tar.gz"))
8175 (file-name (string-append name "-" version ".tar.gz"))
8176 (sha256
8177 (base32
8178 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
8179 (build-system emacs-build-system)
8180 (home-page "https://github.com/joostkremers/parsebib")
8181 (synopsis "Library for parsing bib files")
8182 (description
8183 "This package provides an Emacs library for parsing bib files.")
8184 (license license:gpl3+)))
8185
8186 (define-public emacs-biblio
8187 (package
8188 (name "emacs-biblio")
8189 (version "0.1")
8190 (source
8191 (origin
8192 (method url-fetch)
8193 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
8194 version ".tar.gz"))
8195 (file-name (string-append name "-" version ".tar.gz"))
8196 (sha256
8197 (base32
8198 "109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
8199 (build-system emacs-build-system)
8200 (home-page "https://github.com/cpitclaudel/biblio.el")
8201 (synopsis "Browse and import bibliographic references")
8202 (description "This package provides an extensible Emacs package for
8203 browsing and fetching references.
8204
8205 @file{biblio.el} makes it easy to browse and gather bibliographic references
8206 and publications from various sources, by keywords or by DOI. References are
8207 automatically fetched from well-curated sources, and formatted as BibTeX.")
8208 (license license:gpl3+)))
8209
8210 (define-public emacs-helm-bibtex
8211 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
8212 (revision "1"))
8213 (package
8214 (name "emacs-helm-bibtex")
8215 (version (string-append "2.0.0" "-" revision "."
8216 (string-take commit 7)))
8217 (source
8218 (origin
8219 (method git-fetch)
8220 (uri (git-reference
8221 (url "https://github.com/tmalsburg/helm-bibtex.git")
8222 (commit commit)))
8223 (file-name (string-append name "-" version "-checkout"))
8224 (sha256
8225 (base32
8226 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
8227 (build-system emacs-build-system)
8228 (propagated-inputs
8229 `(("emacs-helm" ,emacs-helm)
8230 ("emacs-parsebib" ,emacs-parsebib)
8231 ("emacs-s" ,emacs-s)
8232 ("emacs-dash" ,emacs-dash)
8233 ("emacs-f" ,emacs-f)
8234 ("emacs-biblio" ,emacs-biblio)))
8235 (home-page "https://github.com/tmalsburg/helm-bibtex")
8236 (synopsis "Bibliography manager based on Helm")
8237 (description "This package provides bibliography manager for Emacs,
8238 based on Helm and the bibtex-completion backend.
8239
8240 Key features:
8241
8242 @itemize
8243 @item Quick access to your bibliography from within Emacs
8244 @item Powerful search capabilities
8245 @item Provides instant search results as you type
8246 @item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
8247 @item Open the PDFs, URLs, or DOIs associated with an entry
8248 @item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
8249 BibTeX entries, or plain text references at point, attach PDFs to emails
8250 @item Support for note taking
8251 @item Quick access to online bibliographic databases such as Pubmed,
8252 arXiv, Google Scholar, Library of Congress, etc.
8253 @item Imports BibTeX entries from CrossRef and other sources.
8254 @end itemize\n")
8255 (license license:gpl3+))))
8256
8257 (define-public emacs-ewmctrl
8258 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf")
8259 (revision "1"))
8260 (package
8261 (name "emacs-ewmctrl")
8262 (version (string-append "0.0.1" "-" revision "."
8263 (string-take commit 7)))
8264 (source
8265 (origin
8266 (method git-fetch)
8267 (uri (git-reference
8268 (url "https://github.com/flexibeast/ewmctrl.git")
8269 (commit commit)))
8270 (file-name (string-append name "-" version "-checkout"))
8271 (sha256
8272 (base32
8273 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
8274 (build-system emacs-build-system)
8275 (home-page "https://github.com/flexibeast/ewmctrl")
8276 (synopsis "Emacs interface to @code{wmctrl}")
8277 (description "@code{ewmctrl} provides an Emacs interface to
8278 @code{wmctrl} command-line window-management program.")
8279 (license license:gpl3+))))
8280
8281 (define-public emacs-helm-gtags
8282 (package
8283 (name "emacs-helm-gtags")
8284 (version "1.5.6")
8285 (source (origin
8286 (method url-fetch)
8287 (uri (string-append
8288 "https://github.com/syohex/emacs-helm-gtags/archive/"
8289 version ".tar.gz"))
8290 (file-name (string-append name "-" version ".tar.gz"))
8291 (sha256
8292 (base32
8293 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
8294 (build-system emacs-build-system)
8295 (home-page "https://github.com/syohex/emacs-helm-gtags")
8296 (synopsis "Emacs Helm interface to GNU Global")
8297 (description
8298 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
8299 (license license:gpl3+)))
8300
8301 (define-public emacs-list-utils
8302 (package
8303 (name "emacs-list-utils")
8304 (version "0.4.4")
8305 (source
8306 (origin
8307 (method url-fetch)
8308 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
8309 "v" version ".tar.gz"))
8310 (file-name (string-append name "-" version ".tar.gz"))
8311 (sha256
8312 (base32
8313 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
8314 (build-system emacs-build-system)
8315 (home-page "https://github.com/rolandwalker/list-utils")
8316 (synopsis "List-manipulation utility functions")
8317 (description "This package provides a list manipulation library for Emacs.")
8318 (license license:gpl3+)))
8319
8320 (define-public emacs-move-text
8321 (package
8322 (name "emacs-move-text")
8323 (version "2.0.8")
8324 (source
8325 (origin
8326 (method url-fetch)
8327 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
8328 version ".tar.gz"))
8329 (file-name (string-append name "-" version ".tar.gz"))
8330 (sha256
8331 (base32
8332 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
8333 (build-system emacs-build-system)
8334 (home-page "https://github.com/emacsfodder/move-text")
8335 (synopsis "Move current line or region with M-up or M-down")
8336 (description "This package provide functions to move the current line
8337 using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
8338 region instead.")
8339 (license license:gpl3+)))
8340
8341 (define-public emacs-validate
8342 (package
8343 (name "emacs-validate")
8344 (version "1.0.5")
8345 (source (origin
8346 (method url-fetch)
8347 (uri (string-append "https://github.com/Malabarba/validate.el"
8348 "/archive/" version ".tar.gz"))
8349 (file-name (string-append name "-" version ".tar.gz"))
8350 (sha256
8351 (base32
8352 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
8353 (build-system emacs-build-system)
8354 (home-page "https://github.com/Malabarba/validate.el")
8355 (synopsis "Emacs library for scheme validation")
8356 (description "This Emacs library provides two functions that perform
8357 schema validation.")
8358 (license license:gpl3+)))
8359
8360 (define-public emacs-load-relative
8361 (let ((commit "738896e3da491b35399178ed2c6bc92cc728d119")
8362 (revision "1"))
8363 (package
8364 (name "emacs-load-relative")
8365 (version (string-append "0.0.1" "-" revision "."
8366 (string-take commit 7)))
8367 (source
8368 (origin
8369 (method git-fetch)
8370 (uri (git-reference
8371 (url "https://github.com/rocky/emacs-load-relative")
8372 (commit commit)))
8373 (file-name (string-append name "-" version "-checkout"))
8374 (sha256
8375 (base32
8376 "1rpy5mfncncl6gqgg53d3g25g1700g4b9bivd4c0cfcv5dbxhp73"))))
8377 (build-system emacs-build-system)
8378 (home-page "https://github.com/rocky/emacs-load-relative")
8379 (synopsis "Relative loads for Emacs Lisp files")
8380 (description "@code{load-relative} allows to write small Emacs
8381 functions or modules in a larger multi-file Emacs package and
8382 facilitate running from the source tree without having to install the
8383 code or fiddle with evil @code{load-path}.")
8384 (license license:gpl3+))))
8385
8386 (define-public emacs-rainbow-blocks
8387 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
8388 (package
8389 (name "emacs-rainbow-blocks")
8390 (version (git-version "1.0.0" "1" commit))
8391 (source (origin
8392 (method git-fetch)
8393 (uri (git-reference
8394 (url "https://github.com/istib/rainbow-blocks.git")
8395 (commit commit)))
8396 (file-name (git-file-name name version))
8397 (sha256
8398 (base32
8399 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
8400 (build-system emacs-build-system)
8401 (home-page "https://github.com/istib/rainbow-blocks")
8402 (synopsis "Highlight sexp blocks")
8403 (description "Rainbow-blocks is an Emacs mode that highlights blocks
8404 made of parentheses, brackets, and braces according to their depth. Each
8405 successive level is highlighted in a different color. This makes it easy to
8406 orient yourself in the code, and tell which statements are at a given level.")
8407 (license license:gpl3+))))
8408
8409 (define-public emacs-hierarchy
8410 (package
8411 (name "emacs-hierarchy")
8412 (version "0.7.0")
8413 (source
8414 (origin
8415 (method url-fetch)
8416 (uri (string-append
8417 "https://github.com/DamienCassou/hierarchy/archive/"
8418 "v" version ".tar.gz"))
8419 (file-name (string-append name "-" version ".tar.gz"))
8420 (sha256
8421 (base32
8422 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
8423 (build-system emacs-build-system)
8424 (home-page "https://github.com/DamienCassou/hierarchy")
8425 (synopsis "Library to create and display hierarchy structures")
8426 (description "This package provides an Emacs library to create, query,
8427 navigate and display hierarchy structures.")
8428 (license license:gpl3+)))
8429
8430 (define-public emacs-tree-mode
8431 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
8432 (revision "1"))
8433 (package
8434 (name "emacs-tree-mode")
8435 (version (string-append "0.0.1" "-" revision "."
8436 (string-take commit 7)))
8437 (source
8438 (origin
8439 (method git-fetch)
8440 (uri (git-reference
8441 (url "https://github.com/emacsorphanage/tree-mode.git")
8442 (commit commit)))
8443 (file-name (string-append name "-" version "-checkout"))
8444 (sha256
8445 (base32
8446 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
8447 (build-system emacs-build-system)
8448 (home-page "https://github.com/emacsorphanage/tree-mode")
8449 (synopsis "Emacs mode to manage tree widgets")
8450 (description
8451 "This package provides an Emacs library to manage tree widgets.")
8452 (license license:gpl3+))))
8453
8454 (define-public emacs-md4rd
8455 (let ((commit "be0fc4951b2d1f5194ffa1fcaac706dbac560500")
8456 (revision "1"))
8457 (package
8458 (name "emacs-md4rd")
8459 (version (string-append "0.0.1" "-" revision "."
8460 (string-take commit 7)))
8461 (source (origin
8462 (method git-fetch)
8463 (uri (git-reference
8464 (url "https://github.com/ahungry/md4rd.git")
8465 (commit commit)))
8466 (file-name (string-append name "-" version "-checkout"))
8467 (sha256
8468 (base32
8469 "1i93shx5x192gd7cl2r6gvcvhhwyi1k08abi5w3izv1hn3pmksgq"))))
8470 (propagated-inputs
8471 `(("emacs-hierarchy" ,emacs-hierarchy)
8472 ("emacs-request" ,emacs-request)
8473 ("emacs-dash" ,emacs-dash)
8474 ("emacs-s" ,emacs-s)
8475 ("emacs-tree-mode" ,emacs-tree-mode)))
8476 (build-system emacs-build-system)
8477 (home-page "https://github.com/ahungry/md4rd")
8478 (synopsis "Emacs Mode for Reddit")
8479 (description
8480 "This package allows to read Reddit from within Emacs interactively.")
8481 (license license:gpl3+))))
8482
8483 (define-public emacs-pulseaudio-control
8484 (let ((commit "08c59e1dc45ec96edb62f34036e82cf5f14c0e8b")
8485 (revision "1"))
8486 (package
8487 (name "emacs-pulseaudio-control")
8488 (version (string-append "0.0.1" "-" revision "."
8489 (string-take commit 7)))
8490 (source
8491 (origin
8492 (method git-fetch)
8493 (uri (git-reference
8494 (url "https://github.com/flexibeast/pulseaudio-control.git")
8495 (commit commit)))
8496 (file-name (string-append name "-" version "-checkout"))
8497 (sha256
8498 (base32
8499 "10cgg1r00kz2fsnnryvzay5pf8s1pwb1dzlds1fbjdnyfvdgammv"))))
8500 (build-system emacs-build-system)
8501 (home-page "https://github.com/flexibeast/pulseaudio-control")
8502 (synopsis "Control @code{pulseaudio} from Emacs")
8503 (description
8504 "This package allows to control @code{pulseaudio} from Emacs.")
8505 (license license:gpl3+))))
8506
8507 (define-public emacs-datetime
8508 (package
8509 (name "emacs-datetime")
8510 (version "0.3")
8511 (source (origin
8512 (method url-fetch)
8513 (uri (string-append
8514 "https://github.com/doublep/datetime/archive/"
8515 version ".tar.gz"))
8516 (file-name (string-append name "-" version ".tar.gz"))
8517 (sha256
8518 (base32
8519 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
8520 (build-system emacs-build-system)
8521 (home-page "https://github.com/doublep/datetime/")
8522 (synopsis "Library to work with dates in Emacs")
8523 (description "Parsing, formatting, matching and recoding
8524 timestamps and date-time format strings library for Emacs.")
8525 (license license:gpl3+)))
8526
8527 (define-public emacs-org-mind-map
8528 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
8529 (revision "1"))
8530 (package
8531 (name "emacs-org-mind-map")
8532 (version (string-append "0.0.1" "-" revision "."
8533 (string-take commit 7)))
8534 (source
8535 (origin
8536 (method git-fetch)
8537 (uri (git-reference
8538 (url "https://github.com/theodorewiles/org-mind-map.git")
8539 (commit commit)))
8540 (file-name (string-append name "-" version "-checkout"))
8541 (sha256
8542 (base32
8543 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
8544 (propagated-inputs
8545 `(("emacs-dash" ,emacs-dash)))
8546 (build-system emacs-build-system)
8547 (home-page "https://github.com/theodorewiles/org-mind-map")
8548 (synopsis "Create Graphviz directed graphs from Org files")
8549 (description
8550 "This package creates Graphviz directed graphs from Org files.")
8551 (license license:gpl3+))))
8552
8553 (define-public emacs-npm-mode
8554 (package
8555 (name "emacs-npm-mode")
8556 (version "0.6.0")
8557 (source
8558 (origin
8559 (method url-fetch)
8560 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
8561 version ".tar.gz"))
8562 (file-name (string-append name "-" version ".tar.gz"))
8563 (sha256
8564 (base32
8565 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
8566 (build-system emacs-build-system)
8567 (home-page "https://github.com/mojochao/npm-mode")
8568 (synopsis "Minor mode for working with @code{npm} projects")
8569 (description
8570 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
8571 (license license:gpl3+)))
8572
8573 (define-public emacs-seq
8574 (package
8575 (name "emacs-seq")
8576 (version "2.20")
8577 (source
8578 (origin
8579 (method url-fetch)
8580 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
8581 (sha256
8582 (base32
8583 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
8584 (build-system emacs-build-system)
8585 (home-page "http://elpa.gnu.org/packages/seq.html")
8586 (synopsis "Sequence manipulation functions")
8587 (description "Sequence-manipulation functions that complement basic
8588 functions provided by @file{subr.el}.")
8589 (license license:gpl3+)))
8590
8591 (define-public emacs-itail
8592 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
8593 (revision "1"))
8594 (package
8595 (name "emacs-itail")
8596 (version (string-append "0.0.1" "-" revision "."
8597 (string-take commit 7)))
8598 (source
8599 (origin
8600 (method git-fetch)
8601 (uri (git-reference
8602 (url "https://github.com/re5et/itail.git")
8603 (commit commit)))
8604 (file-name (string-append name "-" version "-checkout"))
8605 (sha256
8606 (base32
8607 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
8608 (build-system emacs-build-system)
8609 (home-page "https://github.com/re5et/itail")
8610 (synopsis "Interactive @code{tail} Emacs mode")
8611 (description "@code{itail} provides interactive @code{tail} mode
8612 that allows you to filter the tail with unix pipes and highlight the
8613 contents of the tailed file. Works locally or on remote files using
8614 tramp.")
8615 (license license:gpl3+))))
8616
8617 (define-public emacs-loop
8618 (package
8619 (name "emacs-loop")
8620 (version "1.3")
8621 (source
8622 (origin
8623 (method url-fetch)
8624 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
8625 version ".tar.gz"))
8626 (file-name (string-append name "-" version ".tar.gz"))
8627 (sha256
8628 (base32
8629 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
8630 (build-system emacs-build-system)
8631 (home-page "https://github.com/Wilfred/loop.el")
8632 (synopsis "Imperative loop structures for Emacs")
8633 (description "Loop structures familiar to users of other languages. This
8634 library adds a selection of popular loop structures as well as break and
8635 continue.")
8636 (license license:gpl3+)))
8637
8638 (define-public emacs-elisp-refs
8639 (package
8640 (name "emacs-elisp-refs")
8641 (version "1.2")
8642 (source
8643 (origin
8644 (method url-fetch)
8645 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
8646 version ".tar.gz"))
8647 (file-name (string-append name "-" version ".tar.gz"))
8648 (sha256
8649 (base32
8650 "0fj6wphwrvbslw46w7wgdk3b4bfr312ygj3lbgr9qw63lpqw26nl"))))
8651 (build-system emacs-build-system)
8652 (propagated-inputs
8653 `(("emacs-dash" ,emacs-dash)
8654 ("emacs-f" ,emacs-f)
8655 ("emacs-list-utils" ,emacs-list-utils)
8656 ("emacs-loop" ,emacs-loop)
8657 ("emacs-s" ,emacs-s)))
8658 (home-page "https://github.com/Wilfred/elisp-refs")
8659 (synopsis "Find callers of elisp functions or macros")
8660 (description "Find references to functions, macros or variables. Unlike a
8661 dumb text search, @code{elisp-refs} actually parses the code, so it's never
8662 confused by comments or @code{foo-bar} matching @code{foo}.")
8663 (license license:gpl3+)))
8664
8665 (define-public emacs-crux
8666 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
8667 (revision "1"))
8668 (package
8669 (name "emacs-crux")
8670 (version (string-append "0.3.0" "-" revision "."
8671 (string-take commit 7)))
8672 (source
8673 (origin
8674 (method git-fetch)
8675 (uri (git-reference
8676 (url "https://github.com/bbatsov/crux.git")
8677 (commit commit)))
8678 (file-name (string-append name "-" version "-checkout"))
8679 (sha256
8680 (base32
8681 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
8682 (build-system emacs-build-system)
8683 (home-page "https://github.com/bbatsov/crux")
8684 (synopsis "Collection of useful functions for Emacs")
8685 (description
8686 "@code{crux} provides a collection of useful functions for Emacs.")
8687 (license license:gpl3+))))
8688
8689 (define-public emacs-edit-server
8690 (package
8691 (name "emacs-edit-server")
8692 (version "1.13")
8693 (source
8694 (origin
8695 (method url-fetch)
8696 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
8697 "v" version ".tar.gz"))
8698 (file-name (string-append name "-" version ".tar.gz"))
8699 (sha256
8700 (base32
8701 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
8702 (build-system emacs-build-system)
8703 (arguments
8704 `(#:phases
8705 (modify-phases %standard-phases
8706 (add-after 'unpack 'chdir-elisp
8707 ;; Elisp directory is not in root of the source.
8708 (lambda _
8709 (chdir "servers"))))))
8710 (home-page "https://github.com/stsquad/emacs_chrome")
8711 (synopsis "Server that responds to edit requests from Chromium")
8712 (description
8713 "This package provides an edit server to respond to requests from Emacs.")
8714 (license license:gpl3+)))
8715
8716 (define-public emacs-m-buffer-el
8717 (package
8718 (name "emacs-m-buffer-el")
8719 (version "0.15")
8720 (source
8721 (origin
8722 (method url-fetch)
8723 (uri (string-append "https://github.com/phillord/m-buffer-el"
8724 "/archive/" "v" version ".tar.gz"))
8725 (file-name (string-append name "-" version ".tar.gz"))
8726 (sha256
8727 (base32
8728 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
8729 (arguments
8730 `(#:phases
8731 (modify-phases %standard-phases
8732 (add-before 'install 'check
8733 (lambda* (#:key inputs #:allow-other-keys)
8734 (zero? (system* "emacs" "--batch" "-L" "."
8735 "-l" "test/m-buffer-test.el"
8736 "-l" "test/m-buffer-at-test.el"
8737 "-f" "ert-run-tests-batch-and-exit")))))))
8738 (build-system emacs-build-system)
8739 (home-page "https://github.com/phillord/m-buffer-el")
8740 (synopsis "List oriented buffer operations for Emacs")
8741 (description "@code{m-buffer} provides a set of list-orientated functions
8742 for operating over the contents of Emacs buffers.")
8743 (license license:gpl3+)))
8744
8745 (define-public emacs-let-alist
8746 (package
8747 (name "emacs-let-alist")
8748 (version "1.0.5")
8749 (source
8750 (origin
8751 (method url-fetch)
8752 (uri (string-append
8753 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
8754 (sha256
8755 (base32
8756 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
8757 (build-system emacs-build-system)
8758 (home-page "https://elpa.gnu.org/packages/let-alist.html")
8759 (synopsis "Easily let-bind values of an assoc-list by their names")
8760 (description "This package offers a single macro, @code{let-alist}. This
8761 macro takes a first argument (whose value must be an alist) and a body.")
8762 (license license:gpl3+)))
8763
8764 (define-public emacs-esup
8765 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
8766 (revision "1"))
8767 (package
8768 (name "emacs-esup")
8769 (version (string-append "0.6" "-" revision "."
8770 (string-take commit 7)))
8771 (source
8772 (origin
8773 (method git-fetch)
8774 (uri (git-reference
8775 (url "https://github.com/jschaf/esup.git")
8776 (commit commit)))
8777 (file-name (string-append name "-" version "-checkout"))
8778 (sha256
8779 (base32
8780 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
8781 ;; TODO: Add tests
8782 (build-system emacs-build-system)
8783 (home-page "https://github.com/jschaf/esup")
8784 (synopsis "Emacs start up profiler")
8785 (description "Benchmark Emacs Startup time without ever leaving
8786 your Emacs.")
8787 (license license:gpl2+))))
8788
8789 (define-public emacs-sourcemap
8790 (package
8791 (name "emacs-sourcemap")
8792 (version "0.03")
8793 (source
8794 (origin
8795 (method url-fetch)
8796 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
8797 version ".tar.gz"))
8798 (file-name (string-append name "-" version ".tar.gz"))
8799 (sha256
8800 (base32
8801 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
8802 (build-system emacs-build-system)
8803 (home-page "https://github.com/syohex/emacs-sourcemap")
8804 (synopsis "Sourcemap parser")
8805 (description "Sourcemap parser")
8806 (license license:gpl3+)))
8807
8808 (define-public emacs-macrostep
8809 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
8810 (package
8811 (name "emacs-macrostep")
8812 (version (git-version "0.9" "1" commit))
8813 (source (origin
8814 (method git-fetch)
8815 (uri (git-reference
8816 (url "https://github.com/joddie/macrostep.git")
8817 (commit commit)))
8818 (file-name (string-append name "-" version "-checkout"))
8819 (sha256
8820 (base32
8821 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
8822 (build-system emacs-build-system)
8823 (arguments
8824 '(#:phases
8825 (modify-phases %standard-phases
8826 (add-before 'check 'remove-test
8827 ;; Fails because of requirement ‘/bin/sh’.
8828 (lambda _
8829 (let ((file "macrostep-test.el"))
8830 (chmod file #o644)
8831 (emacs-batch-edit-file file
8832 `(progn (progn (goto-char (point-min))
8833 (re-search-forward
8834 "(ert-deftest macrostep-expand-c-macros")
8835 (beginning-of-line)
8836 (kill-sexp))
8837 (basic-save-buffer))))))
8838 (add-before 'install 'check
8839 (lambda _
8840 (invoke "emacs" "--batch" "-L" "."
8841 "-l" "macrostep-test.el"
8842 "-f" "ert-run-tests-batch-and-exit"))))))
8843 (home-page "https://github.com/joddie/macrostep")
8844 (synopsis "Interactive macro-expander for Emacs")
8845 (description "@code{macrostep} is an Emacs minor mode for interactively
8846 stepping through the expansion of macros in Emacs Lisp source code. It lets
8847 you see exactly what happens at each step of the expansion process by
8848 pretty-printing the expanded forms inline in the source buffer, which is
8849 temporarily read-only while macro expansions are visible. You can expand and
8850 collapse macro forms one step at a time, and evaluate or instrument the
8851 expansions for debugging with Edebug as normal (but see “Bugs and known
8852 limitations”, below). Single-stepping through the expansion is particularly
8853 useful for debugging macros that expand into another macro form. These can be
8854 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
8855 until the top-level form is no longer a macro call.")
8856 (license license:gpl3+))))
8857
8858 (define-public emacs-parent-mode
8859 (package
8860 (name "emacs-parent-mode")
8861 (version "2.3")
8862 (source
8863 (origin
8864 (method url-fetch)
8865 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
8866 version ".tar.gz"))
8867 (file-name (string-append name "-" version ".tar.gz"))
8868 (sha256
8869 (base32
8870 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
8871 (build-system emacs-build-system)
8872 (home-page "https://github.com/Fanael/parent-mode")
8873 (synopsis "Get major mode's parent modes")
8874 (description "Get major mode's parent modes")
8875 (license license:gpl3+)))
8876
8877 (define-public emacs-lacarte
8878 (package
8879 (name "emacs-lacarte")
8880 (version "0.1")
8881 (source (origin
8882 (method url-fetch)
8883 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
8884 (sha256
8885 (base32
8886 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
8887 (build-system emacs-build-system)
8888 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
8889 (synopsis "Execute menu items as commands, with completion")
8890 (description "Execute menu items as commands, with completion.")
8891 (license license:gpl3)))
8892
8893 (define-public emacs-company-lua
8894 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
8895 (package
8896 (name "emacs-company-lua")
8897 (version (git-version "0.1" "1" commit))
8898 (source
8899 (origin
8900 (method git-fetch)
8901 (uri (git-reference
8902 (url "https://github.com/ptrv/company-lua.git")
8903 (commit commit)))
8904 (file-name (git-file-name name version))
8905 (sha256
8906 (base32
8907 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
8908 (build-system emacs-build-system)
8909 (propagated-inputs
8910 `(("emacs-company" ,emacs-company)
8911 ("emacs-s" ,emacs-s)
8912 ("emacs-f" ,emacs-f)
8913 ("emacs-lua-mode" ,emacs-lua-mode)))
8914 (home-page "https://github.com/ptrv/company-lua")
8915 (synopsis "Company backend for Lua")
8916 (description
8917 "This package provides Company backend for Lua programming language.")
8918 (license license:gpl3+))))
8919
8920 (define-public emacs-beginend
8921 (package
8922 (name "emacs-beginend")
8923 (version "2.0.0")
8924 (source
8925 (origin
8926 (method url-fetch)
8927 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
8928 "v" version ".tar.gz"))
8929 (file-name (string-append name "-" version ".tar.gz"))
8930 (sha256
8931 (base32
8932 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
8933 ;; TODO: Run tests.
8934 (build-system emacs-build-system)
8935 (inputs
8936 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
8937 (home-page "https://github.com/DamienCassou/beginend")
8938 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
8939 (description "@code{beginend} redefines @code{M-<} and @code{M->}
8940 keybindings for Emacs modes so that point moves to meaningful
8941 locations. Redefined keys are still accessible by pressing the same
8942 key again.")
8943 (license license:gpl3+)))
8944
8945 (define-public emacs-mbsync
8946 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
8947 (revision "1"))
8948 (package
8949 (name "emacs-mbsync")
8950 (version (string-append "0.0.1" "-" revision "."
8951 (string-take commit 7)))
8952 (source
8953 (origin
8954 (method git-fetch)
8955 (uri (git-reference
8956 (url "https://github.com/dimitri/mbsync-el.git")
8957 (commit commit)))
8958 (file-name (string-append name "-" version "-checkout"))
8959 (sha256
8960 (base32
8961 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
8962 (build-system emacs-build-system)
8963 (home-page "https://github.com/dimitri/mbsync-el")
8964 (synopsis "Interface to mbsync for Emacs")
8965 (description "This package allows to call the @code{mbsync} from
8966 within Emacs.")
8967 (license license:gpl3+))))
8968
8969 (define-public emacs-ibuffer-projectile
8970 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
8971 (revision "1"))
8972 (package
8973 (name "emacs-ibuffer-projectile")
8974 (version (string-append "0.2" "-" revision "."
8975 (string-take commit 7)))
8976 (source
8977 (origin
8978 (method git-fetch)
8979 (uri (git-reference
8980 (url "https://github.com/purcell/ibuffer-projectile.git")
8981 (commit commit)))
8982 (file-name (string-append name "-" version "-checkout"))
8983 (sha256
8984 (base32
8985 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
8986 (build-system emacs-build-system)
8987 (propagated-inputs
8988 `(("emacs-projectile" ,emacs-projectile)))
8989 (home-page "https://github.com/purcell/ibuffer-projectile")
8990 (synopsis "Group ibuffer's list by projectile root")
8991 (description "Adds functionality to Emacs @code{ibuffer} for
8992 grouping buffers by their projectile root directory.")
8993 (license license:gpl3+))))
8994
8995 (define-public emacs-helm-mode-manager
8996 (package
8997 (name "emacs-helm-mode-manager")
8998 (version "1.0.0")
8999 (source
9000 (origin
9001 (method url-fetch)
9002 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9003 "archive/" version ".tar.gz"))
9004 (file-name (string-append name "-" version ".tar.gz"))
9005 (sha256
9006 (base32
9007 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9008 (build-system emacs-build-system)
9009 (propagated-inputs
9010 `(("emacs-helm" ,emacs-helm)))
9011 (home-page "https://github.com/istib/helm-mode-manager/")
9012 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9013 (description "This package provides a Helm interface for toggling Emacs
9014 major or minor mode.
9015
9016 @itemize
9017 @item @code{helm-switch-major-mode} list of all major modes
9018 @item @code{helm-enable-minor-mode} list of all inactive minor modes
9019 @item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9020 @end itemize\n
9021
9022 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9023 documentation.")
9024 (license license:gpl3+)))
9025
9026 (define-public emacs-hy-mode
9027 (package
9028 (name "emacs-hy-mode")
9029 (version "1.0.2")
9030 (source
9031 (origin
9032 (method url-fetch)
9033 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9034 "v" version ".tar.gz"))
9035 (file-name (string-append name "-" version ".tar.gz"))
9036 (sha256
9037 (base32
9038 "0sbga36zkyhzrzcczsyjzll7b9qsa215pnlw51m4li2irm23jh17"))))
9039 (build-system emacs-build-system)
9040 (propagated-inputs
9041 `(("emacs-dash" ,emacs-dash)
9042 ("emacs-s" ,emacs-s)))
9043 (home-page "https://github.com/hylang/hy-mode")
9044 (synopsis "Major mode for Hylang")
9045 (description "This package provides a major mode for Hylang.")
9046 (license license:gpl3+)))
9047
9048 (define-public emacs-web-beautify
9049 (package
9050 (name "emacs-web-beautify")
9051 (version "0.3.2")
9052 (source
9053 (origin
9054 (method url-fetch)
9055 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9056 version ".tar.gz"))
9057 (file-name (string-append name "-" version ".tar.gz"))
9058 (sha256
9059 (base32
9060 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9061 (build-system emacs-build-system)
9062 (home-page "https://github.com/yasuyk/web-beautify")
9063 (synopsis "Format HTML, CSS and JavaScript, JSON")
9064 (description "This package provides an Emacs functions to format HTML,
9065 CSS, JavaScript, JSON.")
9066 (license license:gpl3+)))
9067
9068 (define-public emacs-helm-shell-history
9069 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9070 (package
9071 (name "emacs-helm-shell-history")
9072 (version (git-version "0.1" "1" commit))
9073 (source
9074 (origin
9075 (method git-fetch)
9076 (uri (git-reference
9077 (url "https://github.com/yuutayamada/helm-shell-history.git")
9078 (commit commit)))
9079 (file-name (git-file-name name version))
9080 (sha256
9081 (base32
9082 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9083 (build-system emacs-build-system)
9084 (arguments
9085 '(#:phases
9086 (modify-phases %standard-phases
9087 (add-before 'check 'patch-helm-shell-history-file
9088 (lambda _
9089 (let ((file "helm-shell-history.el"))
9090 (chmod file #o644)
9091 (emacs-substitute-sexps file
9092 ("(defvar helm-shell-history-file"
9093 `(expand-file-name "~/.bash_history"))))
9094 #t)))))
9095 (home-page "https://github.com/yuutayamada/helm-shell-history")
9096 (synopsis "Find shell history with Emacs Helm")
9097 (description "This package provides an Emacs Helm interface to search
9098 throw a shell history.")
9099 (license license:gpl3+))))
9100
9101 (define-public emacs-discover-my-major
9102 (package
9103 (name "emacs-discover-my-major")
9104 (version "1.0")
9105 (source
9106 (origin
9107 (method url-fetch)
9108 (uri
9109 (string-append "https://github.com/steckerhalter/discover-my-major"
9110 "/archive/" version ".tar.gz"))
9111 (file-name (string-append name "-" version ".tar.gz"))
9112 (sha256
9113 (base32
9114 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
9115 (build-system emacs-build-system)
9116 (propagated-inputs
9117 `(("emacs-makey" ,emacs-makey)))
9118 (home-page "https://github.com/steckerhalter/discover-my-major")
9119 (synopsis "Discover key bindings for the current Emacs major mode")
9120 (description "This package provides allows to discover key bindings and
9121 their meaning for the current Emacs major-mode.")
9122 (license license:gpl3+)))
9123
9124 (define-public emacs-org-ref
9125 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
9126 (revision "1"))
9127 (package
9128 (name "emacs-org-ref")
9129 (version (string-append "1.1.1" "-" revision "."
9130 (string-take commit 7)))
9131 (source
9132 (origin
9133 (method git-fetch)
9134 (uri (git-reference
9135 (url "https://github.com/jkitchin/org-ref.git")
9136 (commit commit)))
9137 (file-name (string-append name "-" version "-checkout"))
9138 (sha256
9139 (base32
9140 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
9141 (build-system emacs-build-system)
9142 (propagated-inputs
9143 `(("emacs-dash" ,emacs-dash)
9144 ("emacs-helm" ,emacs-helm)
9145 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
9146 ("emacs-ivy" ,emacs-ivy)
9147 ("emacs-hydra" ,emacs-hydra)
9148 ("emacs-key-chord" ,emacs-key-chord)
9149 ("emacs-s" ,emacs-s)
9150 ("emacs-f" ,emacs-f)
9151 ("emacs-pdf-tools" ,emacs-pdf-tools)))
9152 (home-page "https://github.com/jkitchin/org-ref")
9153 (synopsis "Citations, cross-references and bibliographies in org-mode")
9154 (description
9155 "Lisp code to setup bibliography, cite, ref and label org-mode links.
9156 Also sets up reftex and helm for org-mode citations. The links are
9157 clickable and do things that are useful.
9158
9159 The default setup uses helm-bibtex.
9160
9161 You should really read org-ref.org in this package for details.")
9162 (license license:gpl3+))))
9163
9164 (define-public emacs-add-hooks
9165 (package
9166 (name "emacs-add-hooks")
9167 (version "3.1.1")
9168 (source (origin
9169 (method url-fetch)
9170 (uri (string-append
9171 "https://github.com/nickmccurdy/add-hooks/archive/"
9172 version ".tar.gz"))
9173 (file-name (string-append name "-" version ".tar.gz"))
9174 (sha256
9175 (base32
9176 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
9177 (build-system emacs-build-system)
9178 (home-page "https://github.com/nickmccurdy/add-hooks/")
9179 (synopsis "Emacs function for setting multiple hooks")
9180 (description "This package provides a @code{add-hooks} function tidies up
9181 duplicate hook and function names further into a single declarative call.")
9182 (license license:gpl3+)))
9183
9184 (define-public emacs-fancy-narrow
9185 (package
9186 (name "emacs-fancy-narrow")
9187 (version "0.9.5")
9188 (source
9189 (origin
9190 (method url-fetch)
9191 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
9192 version ".tar.gz"))
9193 (file-name (string-append name "-" version ".tar.gz"))
9194 (sha256
9195 (base32
9196 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
9197 (build-system emacs-build-system)
9198 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
9199 (synopsis "Immitate narrow-to-region with more eye-candy")
9200 (description "Unlike narrow-to-region, which completely hides text outside
9201 the narrowed region, this package simply deemphasizes the text, makes it
9202 readonly, and makes it unreachable. This leads to a much more natural
9203 feeling, where the region stays static (instead of being brutally moved to a
9204 blank slate) and is clearly highlighted with respect to the rest of the
9205 buffer.")
9206 (license license:gpl2+)))