gnu: emacs-bui: Update to 1.2.0.
[jackhill/guix/guix.git] / gnu / packages / emacs.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
3 ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
4 ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2014, 2015, 2016, 2017, 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, 2018 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, 2018 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 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
38 ;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
39 ;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
40 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
41 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
42 ;;;
43 ;;; This file is part of GNU Guix.
44 ;;;
45 ;;; GNU Guix is free software; you can redistribute it and/or modify it
46 ;;; under the terms of the GNU General Public License as published by
47 ;;; the Free Software Foundation; either version 3 of the License, or (at
48 ;;; your option) any later version.
49 ;;;
50 ;;; GNU Guix is distributed in the hope that it will be useful, but
51 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
52 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
53 ;;; GNU General Public License for more details.
54 ;;;
55 ;;; You should have received a copy of the GNU General Public License
56 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
57
58 (define-module (gnu packages emacs)
59 #:use-module ((guix licenses) #:prefix license:)
60 #:use-module (guix packages)
61 #:use-module (guix download)
62 #:use-module (guix git-download)
63 #:use-module (guix gexp)
64 #:use-module (guix monads)
65 #:use-module (guix store)
66 #:use-module (guix build-system gnu)
67 #:use-module (guix build-system emacs)
68 #:use-module (guix build-system glib-or-gtk)
69 #:use-module (guix build-system trivial)
70 #:use-module (gnu packages)
71 #:use-module (gnu packages audio)
72 #:use-module (gnu packages bash)
73 #:use-module (gnu packages cmake)
74 #:use-module (gnu packages code)
75 #:use-module (gnu packages databases)
76 #:use-module (gnu packages guile)
77 #:use-module (gnu packages gtk)
78 #:use-module (gnu packages gnome)
79 #:use-module (gnu packages ncurses)
80 #:use-module (gnu packages python)
81 #:use-module (gnu packages tex)
82 #:use-module (gnu packages texinfo)
83 #:use-module (gnu packages tcl)
84 #:use-module (gnu packages tls)
85 #:use-module (gnu packages pkg-config)
86 #:use-module (gnu packages xorg)
87 #:use-module (gnu packages lesstif)
88 #:use-module (gnu packages image)
89 #:use-module (gnu packages linux)
90 #:use-module (gnu packages version-control)
91 #:use-module (gnu packages imagemagick)
92 #:use-module (gnu packages w3m)
93 #:use-module (gnu packages wget)
94 #:use-module (gnu packages autotools)
95 #:use-module (gnu packages base)
96 #:use-module (gnu packages compression)
97 #:use-module (gnu packages xml)
98 #:use-module (gnu packages glib)
99 #:use-module (gnu packages acl)
100 #:use-module (gnu packages mail)
101 #:use-module (gnu packages package-management)
102 #:use-module (gnu packages perl)
103 #:use-module (gnu packages pdf)
104 #:use-module (gnu packages scheme)
105 #:use-module (gnu packages statistics)
106 #:use-module (gnu packages xiph)
107 #:use-module (gnu packages mp3)
108 #:use-module (gnu packages gettext)
109 #:use-module (gnu packages fribidi)
110 #:use-module (gnu packages gd)
111 #:use-module (gnu packages fontutils)
112 #:use-module (gnu packages password-utils)
113 #:use-module (gnu packages pulseaudio)
114 #:use-module (gnu packages xdisorg)
115 #:use-module (gnu packages shells)
116 #:use-module (gnu packages gnupg)
117 #:use-module (guix utils)
118 #:use-module (srfi srfi-1)
119 #:use-module (ice-9 match))
120
121 (define-public emacs
122 (package
123 (name "emacs")
124 (version "26.1")
125 (source (origin
126 (method url-fetch)
127 (uri (string-append "mirror://gnu/emacs/emacs-"
128 version ".tar.xz"))
129 (sha256
130 (base32
131 "0b6k1wq44rc8gkvxhi1bbjxbz3cwg29qbq8mklq2az6p1hjgrx0w"))
132 (patches (search-patches "emacs-exec-path.patch"
133 "emacs-fix-scheme-indent-function.patch"
134 "emacs-source-date-epoch.patch"))
135 (modules '((guix build utils)))
136 (snippet
137 ;; Delete the bundled byte-compiled elisp files and
138 ;; generated autoloads.
139 '(with-directory-excursion "lisp"
140 (for-each delete-file
141 (append (find-files "." "\\.elc$")
142 (find-files "." "loaddefs\\.el$")
143 ;; This is the only "autoloads" file that
144 ;; does not have "*loaddefs.el" name.
145 '("eshell/esh-groups.el")))
146
147 ;; Make sure Tramp looks for binaries in the right places on
148 ;; remote GuixSD machines, where 'getconf PATH' returns
149 ;; something bogus.
150 (substitute* "net/tramp-sh.el"
151 ;; Patch the line after "(defcustom tramp-remote-path".
152 (("\\(tramp-default-remote-path")
153 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
154 "~/.guix-profile/bin" "~/.guix-profile/sbin"
155 "/run/current-system/profile/bin"
156 "/run/current-system/profile/sbin")))
157
158 ;; Make sure Man looks for C header files in the right
159 ;; places.
160 (substitute* "man.el"
161 (("\"/usr/local/include\"" line)
162 (string-join
163 (list line
164 "\"~/.guix-profile/include\""
165 "\"/var/guix/profiles/system/profile/include\"")
166 " ")))
167 #t))))
168 (build-system glib-or-gtk-build-system)
169 (arguments
170 `(#:tests? #f ; no check target
171 #:phases
172 (modify-phases %standard-phases
173 (add-before 'configure 'fix-/bin/pwd
174 (lambda _
175 ;; Use `pwd', not `/bin/pwd'.
176 (substitute* (find-files "." "^Makefile\\.in$")
177 (("/bin/pwd")
178 "pwd"))
179 #t))
180 (add-after 'install 'install-site-start
181 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
182 ;; provided by Guix and installed in
183 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
184 ;; automatically found.
185 (lambda* (#:key inputs outputs #:allow-other-keys)
186 (let* ((out (assoc-ref outputs "out"))
187 (lisp-dir (string-append out "/share/emacs/site-lisp")))
188 (copy-file (assoc-ref inputs "guix-emacs.el")
189 (string-append lisp-dir "/guix-emacs.el"))
190 (with-output-to-file (string-append lisp-dir "/site-start.el")
191 (lambda ()
192 (display
193 (string-append "(when (require 'guix-emacs nil t)\n"
194 " (guix-emacs-autoload-packages))\n"))))
195 #t))))))
196 (inputs
197 `(("gnutls" ,gnutls)
198 ("ncurses" ,ncurses)
199
200 ;; TODO: Add the optional dependencies.
201 ("libx11" ,libx11)
202 ("gtk+" ,gtk+)
203 ("libxft" ,libxft)
204 ("libtiff" ,libtiff)
205 ("giflib" ,giflib)
206 ("libjpeg" ,libjpeg)
207 ("imagemagick" ,imagemagick)
208 ("acl" ,acl)
209
210 ;; When looking for libpng `configure' links with `-lpng -lz', so we
211 ;; must also provide zlib as an input.
212 ("libpng" ,libpng)
213 ("zlib" ,zlib)
214
215 ("librsvg" ,librsvg)
216 ("libxpm" ,libxpm)
217 ("libxml2" ,libxml2)
218 ("libice" ,libice)
219 ("libsm" ,libsm)
220 ("alsa-lib" ,alsa-lib)
221 ("dbus" ,dbus)
222
223 ;; multilingualization support
224 ("libotf" ,libotf)
225 ("m17n-lib" ,m17n-lib)))
226 (native-inputs
227 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
228 ("pkg-config" ,pkg-config)
229 ("texinfo" ,texinfo)))
230
231 (native-search-paths
232 (list (search-path-specification
233 (variable "INFOPATH")
234 (files '("share/info")))))
235
236 (home-page "https://www.gnu.org/software/emacs/")
237 (synopsis "The extensible, customizable, self-documenting text editor")
238 (description
239 "GNU Emacs is an extensible and highly customizable text editor. It is
240 based on an Emacs Lisp interpreter with extensions for text editing. Emacs
241 has been extended in essentially all areas of computing, giving rise to a
242 vast array of packages supporting, e.g., email, IRC and XMPP messaging,
243 spreadsheets, remote server editing, and much more. Emacs includes extensive
244 documentation on all aspects of the system, from basic editing to writing
245 large Lisp programs. It has full Unicode support for nearly all human
246 languages.")
247 (license license:gpl3+)))
248
249 (define-public emacs-minimal
250 ;; This is the version that you should use as an input to packages that just
251 ;; need to byte-compile .el files.
252 (package (inherit emacs)
253 (name "emacs-minimal")
254 (synopsis "The extensible text editor (used only for byte-compilation)")
255 (build-system gnu-build-system)
256 (arguments
257 `(#:configure-flags (list "--with-gnutls=no")
258 ,@(substitute-keyword-arguments (package-arguments emacs)
259 ((#:phases phases)
260 `(modify-phases ,phases
261 (delete 'install-site-start))))))
262 (inputs
263 `(("ncurses" ,ncurses)))
264 (native-inputs
265 `(("pkg-config" ,pkg-config)))))
266
267 (define-public emacs-no-x
268 (package (inherit emacs)
269 (name "emacs-no-x")
270 (synopsis "The extensible, customizable, self-documenting text
271 editor (console only)")
272 (build-system gnu-build-system)
273 (inputs (fold alist-delete
274 (package-inputs emacs)
275 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
276 "imagemagick" "libpng" "librsvg" "libxpm" "libice"
277 "libsm"
278
279 ;; These depend on libx11, so remove them as well.
280 "libotf" "m17n-lib" "dbus")))))
281
282 (define-public emacs-no-x-toolkit
283 (package (inherit emacs)
284 (name "emacs-no-x-toolkit")
285 (synopsis "The extensible, customizable, self-documenting text
286 editor (without an X toolkit)" )
287 (build-system gnu-build-system)
288 (inputs (append `(("inotify-tools" ,inotify-tools))
289 (alist-delete "gtk+" (package-inputs emacs))))
290 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
291 (package-arguments emacs)))))
292
293 (define-public guile-emacs
294 (package (inherit emacs)
295 (name "guile-emacs")
296 (version "20150512.41120e0")
297 (source (origin
298 (method git-fetch)
299 (uri (git-reference
300 (url "git://git.hcoop.net/git/bpt/emacs.git")
301 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
302 (file-name (string-append name "-" version "-checkout"))
303 (patches (search-patches "guile-emacs-fix-configure.patch"))
304 (sha256
305 (base32
306 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
307 (native-inputs
308 `(("autoconf" ,autoconf)
309 ("automake" ,automake)
310 ("guile" ,guile-for-guile-emacs)
311 ,@(package-native-inputs emacs)))
312 (arguments
313 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
314 #:parallel-build? #f
315 ;; Tests aren't passing for now.
316 #:tests? #f
317 ,@(package-arguments emacs))
318 ((#:phases phases)
319 `(modify-phases ,phases
320 (add-after 'unpack 'autogen
321 (lambda _
322 (invoke "sh" "autogen.sh")))
323 ;; Build sometimes fails: deps/dispnew.d: No such file or directory
324 (add-before 'build 'make-deps-dir
325 (lambda _
326 (invoke "mkdir" "-p" "src/deps")))))))))
327
328 \f
329 ;;;
330 ;;; Emacs hacking.
331 ;;;
332
333 (define-public geiser
334 (package
335 (name "geiser")
336 (version "0.10")
337 (source (origin
338 (method url-fetch)
339 (uri (string-append "mirror://savannah/geiser/" version
340 "/geiser-" version ".tar.gz"))
341 (sha256
342 (base32
343 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
344 (build-system gnu-build-system)
345 (arguments
346 '(#:phases
347 (modify-phases %standard-phases
348 (add-after 'install 'post-install
349 (lambda* (#:key outputs #:allow-other-keys)
350 (symlink "geiser-install.el"
351 (string-append (assoc-ref outputs "out")
352 "/share/emacs/site-lisp/"
353 "geiser-autoloads.el"))
354 #t)))))
355 (inputs `(("guile" ,guile-2.2)))
356 (native-inputs `(("emacs" ,emacs-minimal)))
357 (home-page "https://nongnu.org/geiser/")
358 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
359 (description
360 "Geiser is a collection of Emacs major and minor modes that conspire with
361 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
362 continuously running Scheme interpreter takes the center of the stage in
363 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
364 implementation, Emacs and, ultimately, the schemer, giving them access to live
365 metadata.")
366 (license license:bsd-3)))
367
368 (define-public paredit
369 (package
370 (name "emacs-paredit")
371 (version "24")
372 (source (origin
373 (method url-fetch)
374 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
375 version ".el"))
376 (sha256
377 (base32
378 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
379 (build-system emacs-build-system)
380 (home-page "http://mumble.net/~campbell/emacs/paredit/")
381 (synopsis "Emacs minor mode for editing parentheses")
382 (description
383 "ParEdit (paredit.el) is a minor mode for performing structured editing
384 of S-expression data. The typical example of this would be Lisp or Scheme
385 source code.
386
387 ParEdit helps **keep parentheses balanced** and adds many keys for moving
388 S-expressions and moving around in S-expressions. Its behavior can be jarring
389 for those who may want transient periods of unbalanced parentheses, such as
390 when typing parentheses directly or commenting out code line by line.")
391 (license license:gpl3+)))
392
393 (define-public git-modes
394 (package
395 (name "emacs-git-modes")
396 (version "1.2.8")
397 (source (origin
398 (method url-fetch)
399 (uri (string-append
400 "https://github.com/magit/git-modes/archive/"
401 version ".tar.gz"))
402 (file-name (string-append name "-" version ".tar.gz"))
403 (sha256
404 (base32
405 "0h49f68yn0q4lg054adqii4qja1z2pzybm7nf4kvpq7fzjrzgv1q"))))
406 (build-system emacs-build-system)
407 (home-page "https://github.com/magit/git-modes")
408 (synopsis "Emacs major modes for Git configuration files")
409 (description
410 "This package provides Emacs major modes for editing various Git
411 configuration files, such as .gitattributes, .gitignore, and .git/config.")
412 (license license:gpl3+)))
413
414 (define-public git-modes/old-name
415 (deprecated-package "git-modes" git-modes))
416
417 (define-public emacs-with-editor
418 (package
419 (name "emacs-with-editor")
420 (version "2.7.3")
421 (source (origin
422 (method url-fetch)
423 (uri (string-append
424 "https://github.com/magit/with-editor/archive/v"
425 version ".tar.gz"))
426 (file-name (string-append name "-" version ".tar.gz"))
427 (sha256
428 (base32
429 "1ln2s0kckzkv50qmr6x1kb2j30cfjii0vs6lpghg7ff4lav8jqgh"))))
430 (build-system emacs-build-system)
431 (propagated-inputs
432 `(("emacs-dash" ,emacs-dash)))
433 (home-page "https://github.com/magit/with-editor")
434 (synopsis "Emacs library for using Emacsclient as EDITOR")
435 (description
436 "This package provides an Emacs library to use the Emacsclient as
437 @code{$EDITOR} of child processes, making sure they know how to call home.
438 For remote processes a substitute is provided, which communicates with Emacs
439 on stdout instead of using a socket as the Emacsclient does.")
440 (license license:gpl3+)))
441
442 (define-public magit
443 (package
444 (name "magit")
445 (version "2.13.0")
446 (source (origin
447 (method url-fetch)
448 (uri (string-append
449 "https://github.com/magit/magit/releases/download/"
450 version "/" name "-" version ".tar.gz"))
451 (sha256
452 (base32
453 "1ygaah3dd3nxpyd17297xgvdcgr7pgzzwlmpnmchki0kiwgg3sbc"))))
454 (build-system gnu-build-system)
455 (native-inputs `(("texinfo" ,texinfo)
456 ("emacs" ,emacs-minimal)))
457 (inputs
458 `(("git" ,git)
459 ("perl" ,perl)))
460 (propagated-inputs
461 `(("dash" ,emacs-dash)
462 ("ghub" ,emacs-ghub)
463 ("magit-popup" ,emacs-magit-popup)
464 ("with-editor" ,emacs-with-editor)))
465 (arguments
466 `(#:test-target "test"
467 #:tests? #f ; tests are not included in the release
468
469 #:make-flags
470 (list (string-append "PREFIX=" %output)
471 ;; Don't put .el files in a sub-directory.
472 (string-append "lispdir=" %output "/share/emacs/site-lisp")
473 (string-append "DASH_DIR="
474 (assoc-ref %build-inputs "dash")
475 "/share/emacs/site-lisp/guix.d/dash-"
476 ,(package-version emacs-dash))
477 (string-append "GHUB_DIR="
478 (assoc-ref %build-inputs "ghub")
479 "/share/emacs/site-lisp/guix.d/ghub-"
480 ,(package-version emacs-ghub))
481 (string-append "MAGIT_POPUP_DIR="
482 (assoc-ref %build-inputs "magit-popup")
483 "/share/emacs/site-lisp/guix.d/magit-popup-"
484 ,(package-version emacs-magit-popup))
485 (string-append "WITH_EDITOR_DIR="
486 (assoc-ref %build-inputs "with-editor")
487 "/share/emacs/site-lisp/guix.d/with-editor-"
488 ,(package-version emacs-with-editor)))
489
490 #:phases
491 (modify-phases %standard-phases
492 (delete 'configure)
493 (add-before
494 'build 'patch-exec-paths
495 (lambda* (#:key inputs #:allow-other-keys)
496 (let ((perl (assoc-ref inputs "perl")))
497 (substitute* "lisp/magit-sequence.el"
498 (("perl") (string-append perl "/bin/perl")))
499 #t))))))
500 (home-page "https://magit.vc/")
501 (synopsis "Emacs interface for the Git version control system")
502 (description
503 "With Magit, you can inspect and modify your Git repositories with Emacs.
504 You can review and commit the changes you have made to the tracked files, for
505 example, and you can browse the history of past changes. There is support for
506 cherry picking, reverting, merging, rebasing, and other common Git
507 operations.")
508 (license license:gpl3+)))
509
510 (define-public magit-svn
511 (package
512 (name "magit-svn")
513 (version "2.2.0")
514 (source (origin
515 (method url-fetch)
516 (uri (string-append
517 "https://github.com/magit/magit-svn/archive/"
518 version ".tar.gz"))
519 (file-name (string-append name "-" version ".tar.gz"))
520 (sha256
521 (base32
522 "1c3n377v436zaxamlsz04y1ahdhp96x1vd43zaryv4y10m02ba47"))))
523 (build-system trivial-build-system)
524 (native-inputs `(("emacs" ,emacs-minimal)
525 ("tar" ,tar)
526 ("gzip" ,gzip)))
527 (propagated-inputs `(("dash" ,emacs-dash)
528 ("with-editor" ,emacs-with-editor)
529 ("magit" ,magit)))
530 (arguments
531 `(#:modules ((guix build utils)
532 (guix build emacs-utils))
533
534 #:builder
535 (begin
536 (use-modules (guix build utils)
537 (guix build emacs-utils))
538
539 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
540 "/bin/tar"))
541 (PATH (string-append (assoc-ref %build-inputs "gzip")
542 "/bin"))
543 (emacs (string-append (assoc-ref %build-inputs "emacs")
544 "/bin/emacs"))
545 (magit (string-append (assoc-ref %build-inputs "magit")
546 "/share/emacs/site-lisp"))
547 (dash (string-append (assoc-ref %build-inputs "dash")
548 "/share/emacs/site-lisp/guix.d/dash-"
549 ,(package-version emacs-dash)))
550 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
551 "/share/emacs/site-lisp/guix.d/with-editor-"
552 ,(package-version emacs-with-editor)))
553 (source (assoc-ref %build-inputs "source"))
554 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
555 (setenv "PATH" PATH)
556 (invoke tar "xvf" source)
557
558 (install-file (string-append ,name "-" ,version "/magit-svn.el")
559 lisp-dir)
560
561 (with-directory-excursion lisp-dir
562 (parameterize ((%emacs emacs))
563 (emacs-generate-autoloads ,name lisp-dir)
564 (setenv "EMACSLOADPATH"
565 (string-append ":" magit ":" dash ":" with-editor))
566 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
567 #t))))
568 (home-page "https://github.com/magit/magit-svn")
569 (synopsis "Git-SVN extension to Magit")
570 (description
571 "This package is an extension to Magit, the Git Emacs mode, providing
572 support for Git-SVN.")
573 (license license:gpl3+)))
574
575 (define-public emacs-magit-popup
576 (package
577 (name "emacs-magit-popup")
578 (version "2.12.3")
579 (source (origin
580 (method url-fetch)
581 (uri (string-append
582 "https://github.com/magit/magit-popup/archive/v"
583 version ".tar.gz"))
584 (file-name (string-append name "-" version ".tar.gz"))
585 (sha256
586 (base32
587 "1kz6vj67awkwf9y2wj6m3l2him3znm08z6bkdvnmfr6rwd96dr39"))))
588 (build-system emacs-build-system)
589 (arguments
590 `(#:phases
591 (modify-phases %standard-phases
592 (add-before 'install 'make-info
593 (lambda _
594 (invoke "make" "info"))))))
595 (native-inputs
596 `(("texinfo" ,texinfo)))
597 (propagated-inputs
598 `(("emacs-dash" ,emacs-dash)))
599 (home-page "https://github.com/magit/magit-popup")
600 (synopsis "Define prefix-infix-suffix command combos")
601 (description
602 "This library implements a generic interface for toggling switches and
603 setting options and then invoking an Emacs command which does something with
604 these arguments. The prototypical use is for the command to call an external
605 process, passing on the arguments as command line arguments.")
606 (license license:gpl3+)))
607
608 (define-public emacs-ghub
609 (package
610 (name "emacs-ghub")
611 (version "2.0.1")
612 (source (origin
613 (method url-fetch)
614 (uri (string-append
615 "https://github.com/magit/ghub/archive/v"
616 version ".tar.gz"))
617 (file-name (string-append name "-" version ".tar.gz"))
618 (sha256
619 (base32
620 "0d0qj5r1bm2aidi61rigrdaycxnyb7y1ivb3h8rpvvapsf8sk7z0"))))
621 (build-system emacs-build-system)
622 (arguments
623 `(#:phases
624 (modify-phases %standard-phases
625 (add-before 'install 'make-info
626 (lambda _
627 (invoke "make" "info"))))))
628 (native-inputs
629 `(("texinfo" ,texinfo)))
630 (home-page "https://github.com/magit/ghub")
631 (synopsis "Emacs client library for Github API and Gitlab API")
632 (description
633 "This package provides 2 files: @file{ghub.el} and @file{glab.el},
634 which are the libraries that provide basic support for using the Github and
635 Gitlab APIs from Emacs packages. It abstracts access to API resources using
636 only a handful of functions that are not resource-specific.")
637 (license license:gpl3+)))
638
639 (define-public haskell-mode
640 (package
641 (name "haskell-mode")
642 (version "16.1")
643 (source (origin
644 (method url-fetch)
645 (file-name (string-append name "-" version ".tar.gz"))
646 (uri (string-append
647 "https://github.com/haskell/haskell-mode/archive/v"
648 version ".tar.gz"))
649 (sha256
650 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))
651 (patches
652 (search-patches ; backport test failure fixes
653 "haskell-mode-unused-variables.patch"
654 "haskell-mode-make-check.patch"))))
655 (inputs
656 `(("emacs-el-search" ,emacs-el-search) ; for tests
657 ("emacs-stream" ,emacs-stream))) ; for tests
658 (propagated-inputs
659 `(("emacs-dash" ,emacs-dash)))
660 (native-inputs
661 `(("emacs" ,emacs-minimal)
662 ("texinfo" ,texinfo)))
663 (build-system gnu-build-system)
664 (arguments
665 `(#:make-flags (list (string-append "EMACS="
666 (assoc-ref %build-inputs "emacs")
667 "/bin/emacs"))
668 #:modules ((ice-9 match)
669 (srfi srfi-26)
670 ,@%gnu-build-system-modules)
671 #:phases
672 (modify-phases %standard-phases
673 (delete 'configure)
674 (add-before
675 'build 'pre-build
676 (lambda* (#:key inputs #:allow-other-keys)
677 (define (el-dir store-dir)
678 (match (find-files store-dir "\\.el$")
679 ((f1 f2 ...) (dirname f1))
680 (_ "")))
681
682 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
683 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
684
685 (setenv "SHELL" "sh")
686 (setenv "EMACSLOADPATH"
687 (string-concatenate
688 (map (match-lambda
689 (((? emacs-prefix? name) . dir)
690 (string-append (el-dir dir) ":"))
691 (_ ""))
692 inputs)))
693 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
694 ;; embed filename to fix test failure
695 (let ((file "tests/haskell-cabal-tests.el"))
696 (substitute* file
697 (("\\(buffer-file-name\\)")
698 (format #f "(or (buffer-file-name) ~s)" file))))
699 #t)))
700 (replace
701 'install
702 (lambda* (#:key outputs #:allow-other-keys)
703 (let* ((out (assoc-ref outputs "out"))
704 (el-dir (string-append out "/share/emacs/site-lisp"))
705 (doc (string-append
706 out "/share/doc/haskell-mode-" ,version))
707 (info (string-append out "/share/info")))
708 (define (copy-to-dir dir files)
709 (for-each (lambda (f)
710 (install-file f dir))
711 files))
712
713 (with-directory-excursion "doc"
714 (invoke "makeinfo" "haskell-mode.texi")
715 (install-file "haskell-mode.info" info))
716 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
717 (copy-to-dir el-dir (find-files "." "\\.elc?"))
718 ;; These are part of other packages.
719 (with-directory-excursion el-dir
720 (for-each delete-file '("dash.el" "ert.el")))
721 #t))))))
722 (home-page "https://github.com/haskell/haskell-mode")
723 (synopsis "Haskell mode for Emacs")
724 (description
725 "This is an Emacs mode for editing, debugging and developing Haskell
726 programs.")
727 (license license:gpl3+)))
728
729 (define-public flycheck
730 (package
731 (name "emacs-flycheck")
732 (version "31")
733 (source (origin
734 (method url-fetch)
735 (uri (string-append
736 "https://github.com/flycheck/flycheck/releases/download/"
737 version "/flycheck-" version ".tar"))
738 (sha256
739 (base32
740 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
741 (modules '((guix build utils)))
742 (snippet `(begin
743 ;; Change 'flycheck-version' so that it does not
744 ;; attempt to get its version from pkg-info.el.
745 (substitute* "flycheck.el"
746 (("\\(pkg-info-version-info 'flycheck\\)")
747 (string-append "\"" ,version "\"")))
748 #t))))
749 (build-system emacs-build-system)
750 (propagated-inputs
751 `(("emacs-dash" ,emacs-dash)))
752 (home-page "https://www.flycheck.org")
753 (synopsis "On-the-fly syntax checking")
754 (description
755 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
756 replacement for the older Flymake extension which is part of GNU Emacs, with
757 many improvements and additional features.
758
759 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
760 checking for over 30 programming and markup languages with more than 70
761 different tools. It highlights errors and warnings inline in the buffer, and
762 provides an optional IDE-like error list.")
763 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
764
765 \f
766 ;;;
767 ;;; Web browsing.
768 ;;;
769
770 (define-public emacs-w3m
771 ;; Emacs-w3m follows a "rolling release" model from its CVS repo. We could
772 ;; use CVS, sure, but instead we choose to use this Git mirror described on
773 ;; the home page as an "unofficial" mirror.
774 (let ((commit "0dd5691f46d314a84da63f3a7277d721815811a2"))
775 (package
776 (name "emacs-w3m")
777 (version (git-version "1.5" "0" commit))
778 (source (origin
779 (method git-fetch)
780 (uri (git-reference
781 (url "https://github.com/ecbrown/emacs-w3m")
782 (commit commit)))
783 (sha256
784 (base32
785 "02xalyxbrkgl4n8nj7xxkmsbm6lshhwdc8bzs2l4wz3hkpgkj7x4"))))
786 (build-system gnu-build-system)
787 (native-inputs `(("autoconf" ,autoconf)
788 ("texinfo" ,texinfo)
789 ("emacs" ,emacs-minimal)))
790 (inputs `(("w3m" ,w3m)
791 ("imagemagick" ,imagemagick)))
792 (arguments
793 `(#:modules ((guix build gnu-build-system)
794 (guix build utils)
795 (guix build emacs-utils))
796 #:imported-modules (,@%gnu-build-system-modules
797 (guix build emacs-utils))
798 #:configure-flags
799 (let ((out (assoc-ref %outputs "out")))
800 (list (string-append "--with-lispdir="
801 out "/share/emacs/site-lisp")
802 (string-append "--with-icondir="
803 out "/share/images/emacs-w3m")
804 ;; Leave .el files uncompressed, otherwise GC can't
805 ;; identify run-time dependencies. See
806 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
807 "--without-compress-install"))
808 #:tests? #f ; no check target
809 #:phases
810 (modify-phases %standard-phases
811 (add-after 'unpack 'autoconf
812 (lambda _
813 (invoke "autoconf")))
814 (add-before 'configure 'support-emacs!
815 (lambda _
816 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
817 ;; unsupported.
818 (substitute* "configure"
819 (("EMACS_FLAVOR=unsupported")
820 "EMACS_FLAVOR=emacs"))
821 #t))
822 (add-before 'build 'patch-exec-paths
823 (lambda* (#:key inputs outputs #:allow-other-keys)
824 (let ((out (assoc-ref outputs "out"))
825 (w3m (assoc-ref inputs "w3m"))
826 (imagemagick (assoc-ref inputs "imagemagick"))
827 (coreutils (assoc-ref inputs "coreutils")))
828 (make-file-writable "w3m.el")
829 (emacs-substitute-variables "w3m.el"
830 ("w3m-command" (string-append w3m "/bin/w3m"))
831 ("w3m-touch-command"
832 (string-append coreutils "/bin/touch"))
833 ("w3m-icon-directory"
834 (string-append out "/share/images/emacs-w3m")))
835 (make-file-writable "w3m-image.el")
836 (emacs-substitute-variables "w3m-image.el"
837 ("w3m-imagick-convert-program"
838 (string-append imagemagick "/bin/convert"))
839 ("w3m-imagick-identify-program"
840 (string-append imagemagick "/bin/identify")))
841 #t)))
842 (replace 'install
843 (lambda* (#:key outputs #:allow-other-keys)
844 (invoke "make" "install" "install-icons")
845 (with-directory-excursion
846 (string-append (assoc-ref outputs "out")
847 "/share/emacs/site-lisp")
848 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
849 (symlink "w3m-load.el" "w3m-autoloads.el")
850 #t))))))
851 (home-page "http://emacs-w3m.namazu.org/")
852 (synopsis "Simple Web browser for Emacs based on w3m")
853 (description
854 "Emacs-w3m is an emacs interface for the w3m web browser.")
855 (license license:gpl2+))))
856
857 (define-public emacs-wget
858 (package
859 (name "emacs-wget")
860 (version "0.5.0")
861 (source (origin
862 (method url-fetch)
863 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
864 version ".orig.tar.gz"))
865 (sha256
866 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
867 (build-system gnu-build-system)
868 (inputs `(("wget" ,wget)))
869 (native-inputs `(("emacs" ,emacs-minimal)))
870 (arguments
871 `(#:modules ((guix build gnu-build-system)
872 (guix build utils)
873 (guix build emacs-utils))
874 #:imported-modules (,@%gnu-build-system-modules
875 (guix build emacs-utils))
876 #:tests? #f ; no check target
877 #:phases
878 (modify-phases %standard-phases
879 (replace 'configure
880 (lambda* (#:key outputs #:allow-other-keys)
881 (substitute* "Makefile"
882 (("/usr/local") (assoc-ref outputs "out"))
883 (("/site-lisp/emacs-wget") "/site-lisp"))
884 #t))
885 (add-before 'build 'patch-exec-paths
886 (lambda* (#:key inputs outputs #:allow-other-keys)
887 (let ((wget (assoc-ref inputs "wget")))
888 (emacs-substitute-variables "wget.el"
889 ("wget-command" (string-append wget "/bin/wget"))))
890 #t))
891 (add-after 'install 'post-install
892 (lambda* (#:key outputs #:allow-other-keys)
893 (emacs-generate-autoloads
894 "wget" (string-append (assoc-ref outputs "out")
895 "/share/emacs/site-lisp/"))
896 #t)))))
897 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
898 (synopsis "Simple file downloader for Emacs based on wget")
899 (description
900 "Emacs-wget is an emacs interface for the wget file downloader.")
901 (license license:gpl2+)))
902
903 \f
904 ;;;
905 ;;; Multimedia.
906 ;;;
907
908 (define-public emms
909 (package
910 (name "emacs-emms")
911 (version "5.0")
912 (source (origin
913 (method url-fetch)
914 (uri (string-append "mirror://gnu/emms/emms-"
915 version ".tar.gz"))
916 (sha256
917 (base32
918 "08f9lj77jlk96grqgjsv63s2i8ywvp4wvnmgmhnslwyx2lsdxza3"))
919 (modules '((guix build utils)))
920 (snippet
921 '(begin
922 (substitute* "Makefile"
923 (("/usr/bin/install-info")
924 ;; No need to use 'install-info' since it would create a
925 ;; useless 'dir' file.
926 "true")
927 (("^INFODIR=.*")
928 ;; Install Info files to $out/share/info, not $out/info.
929 "INFODIR := $(PREFIX)/share/info\n")
930 (("/site-lisp/emms")
931 ;; Install directly in share/emacs/site-lisp, not in a
932 ;; sub-directory.
933 "/site-lisp")
934 (("^all: (.*)\n" _ rest)
935 ;; Build 'emms-print-metadata'.
936 (string-append "all: " rest " emms-print-metadata\n")))
937 #t))))
938 (build-system gnu-build-system)
939 (arguments
940 `(#:modules ((guix build gnu-build-system)
941 (guix build utils)
942 (guix build emacs-utils)
943 (ice-9 ftw))
944 #:imported-modules (,@%gnu-build-system-modules
945 (guix build emacs-utils))
946
947 #:phases
948 (modify-phases %standard-phases
949 (replace 'configure
950 (lambda* (#:key inputs outputs #:allow-other-keys)
951 (let ((out (assoc-ref outputs "out"))
952 (flac (assoc-ref inputs "flac"))
953 (vorbis (assoc-ref inputs "vorbis-tools"))
954 (alsa (assoc-ref inputs "alsa-utils"))
955 (mpg321 (assoc-ref inputs "mpg321"))
956 (mp3info (assoc-ref inputs "mp3info"))
957 (opus (assoc-ref inputs "opus-tools")))
958 ;; Specify the installation directory.
959 (substitute* "Makefile"
960 (("PREFIX=.*$")
961 (string-append "PREFIX := " out "\n")))
962
963 (setenv "SHELL" (which "sh"))
964 (setenv "CC" "gcc")
965
966 ;; Specify the absolute file names of the various
967 ;; programs so that everything works out-of-the-box.
968 (with-directory-excursion "lisp"
969 (emacs-substitute-variables
970 "emms-player-mpg321-remote.el"
971 ("emms-player-mpg321-remote-command"
972 (string-append mpg321 "/bin/mpg321")))
973 (substitute* "emms-player-simple.el"
974 (("\"ogg123\"")
975 (string-append "\"" vorbis "/bin/ogg123\"")))
976 (substitute* "emms-player-simple.el"
977 (("\"mpg321\"")
978 (string-append "\"" mpg321 "/bin/mpg321\"")))
979 (emacs-substitute-variables "emms-info-ogginfo.el"
980 ("emms-info-ogginfo-program-name"
981 (string-append vorbis "/bin/ogginfo")))
982 (emacs-substitute-variables "emms-info-opusinfo.el"
983 ("emms-info-opusinfo-program-name"
984 (string-append opus "/bin/opusinfo")))
985 (emacs-substitute-variables "emms-info-libtag.el"
986 ("emms-info-libtag-program-name"
987 (string-append out "/bin/emms-print-metadata")))
988 (emacs-substitute-variables "emms-info-mp3info.el"
989 ("emms-info-mp3info-program-name"
990 (string-append mp3info "/bin/mp3info")))
991 (emacs-substitute-variables "emms-info-metaflac.el"
992 ("emms-info-metaflac-program-name"
993 (string-append flac "/bin/metaflac")))
994 (emacs-substitute-variables "emms-source-file.el"
995 ("emms-source-file-gnu-find" (which "find")))
996 (substitute* "emms-volume-amixer.el"
997 (("\"amixer\"")
998 (string-append "\"" alsa "/bin/amixer\"")))
999 (substitute* "emms-tag-editor.el"
1000 (("\"mp3info\"")
1001 (string-append "\"" mp3info "/bin/mp3info\"")))))))
1002 (add-before 'install 'pre-install
1003 (lambda* (#:key outputs #:allow-other-keys)
1004 ;; The 'install' rule expects the target directories to exist.
1005 (let* ((out (assoc-ref outputs "out"))
1006 (bin (string-append out "/bin"))
1007 (man1 (string-append out "/share/man/man1")))
1008 (mkdir-p bin)
1009 (mkdir-p man1)
1010
1011 ;; Ensure that files are not rejected by gzip
1012 (let ((early-1980 315619200)) ; 1980-01-02 UTC
1013 (ftw "." (lambda (file stat flag)
1014 (unless (<= early-1980 (stat:mtime stat))
1015 (utime file early-1980 early-1980))
1016 #t)))
1017 #t)))
1018 (add-after 'install 'post-install
1019 (lambda* (#:key outputs #:allow-other-keys)
1020 (let ((out (assoc-ref outputs "out")))
1021 (symlink "emms-auto.el"
1022 (string-append out "/share/emacs/site-lisp/"
1023 "emms-autoloads.el")))
1024 #t)))
1025 #:tests? #f))
1026 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
1027 ("texinfo" ,texinfo)))
1028 (inputs `(("alsa-utils" ,alsa-utils)
1029 ("flac" ,flac) ;for metaflac
1030 ("vorbis-tools" ,vorbis-tools)
1031 ("mpg321" ,mpg321)
1032 ("taglib" ,taglib)
1033 ("mp3info" ,mp3info)
1034 ("opus-tools" ,opus-tools)))
1035 (properties '((upstream-name . "emms")))
1036 (synopsis "Emacs Multimedia System")
1037 (description
1038 "EMMS is the Emacs Multimedia System. It is a small front-end which
1039 can control one of the supported external players. Thus, it supports
1040 whatever formats are supported by your music player. It also
1041 supports tagging and playlist management, all behind a clean and
1042 light user interface.")
1043 (home-page "https://www.gnu.org/software/emms/")
1044 (license license:gpl3+)))
1045
1046 (define-public emacs-emms-player-mpv
1047 ;; A new mpv backend is included in Emms from 5.0.
1048 (deprecated-package "emacs-emms-player-mpv" emms))
1049
1050 (define-public emacs-emms-mode-line-cycle
1051 (package
1052 (name "emacs-emms-mode-line-cycle")
1053 (version "0.2.5")
1054 (source
1055 (origin
1056 (method url-fetch)
1057 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
1058 "/archive/" version ".tar.gz"))
1059 (file-name (string-append name "-" version ".tar.gz"))
1060 (sha256
1061 (base32
1062 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
1063 (build-system emacs-build-system)
1064 (propagated-inputs
1065 `(("emms" ,emms)))
1066 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1067 (synopsis "Display the EMMS mode line as a ticker")
1068 (description
1069 "This is a minor mode for updating the EMMS mode-line string cyclically
1070 within a specified width. It is useful for displaying long track titles.")
1071 (license license:gpl3+)))
1072
1073 \f
1074 ;;;
1075 ;;; Miscellaneous.
1076 ;;;
1077
1078 (define-public bbdb
1079 (package
1080 (name "bbdb")
1081 (version "3.1.2")
1082 (source (origin
1083 (method url-fetch)
1084 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1085 version ".tar.gz"))
1086 (sha256
1087 (base32
1088 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1089 (modules '((guix build utils)))
1090 (snippet
1091 ;; We don't want to build and install the PDF.
1092 '(begin
1093 (substitute* "doc/Makefile.in"
1094 (("^doc_DATA = .*$")
1095 "doc_DATA =\n"))
1096 #t))))
1097 (build-system gnu-build-system)
1098 (arguments
1099 '(#:phases
1100 (modify-phases %standard-phases
1101 (add-after 'install 'post-install
1102 (lambda* (#:key outputs #:allow-other-keys)
1103 ;; Add an autoloads file with the right name for guix.el.
1104 (let* ((out (assoc-ref outputs "out"))
1105 (site (string-append out "/share/emacs/site-lisp")))
1106 (with-directory-excursion site
1107 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1108 #t)))))
1109 (native-inputs `(("emacs" ,emacs-minimal)))
1110 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1111 (synopsis "Contact management utility for Emacs")
1112 (description
1113 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1114 an address book for email and snail mail addresses, phone numbers and the
1115 like. It can be linked with various Emacs mail clients (Message and Mail
1116 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1117 (license license:gpl3+)))
1118
1119 (define-public emacs-aggressive-indent
1120 (package
1121 (name "emacs-aggressive-indent")
1122 (version "1.8.3")
1123 (source (origin
1124 (method url-fetch)
1125 (uri (string-append "https://elpa.gnu.org/packages/"
1126 "aggressive-indent-" version ".el"))
1127 (sha256
1128 (base32
1129 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1130 (build-system emacs-build-system)
1131 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1132 (synopsis "Minor mode to aggressively keep your code always indented")
1133 (description
1134 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1135 always indented. It reindents after every change, making it more reliable
1136 than @code{electric-indent-mode}.")
1137 (license license:gpl2+)))
1138
1139 (define-public emacs-ag
1140 (package
1141 (name "emacs-ag")
1142 (version "0.47")
1143 (source (origin
1144 (method url-fetch)
1145 (uri (string-append
1146 "https://github.com/Wilfred/ag.el/archive/"
1147 version ".tar.gz"))
1148 (file-name (string-append name "-" version ".tar.gz"))
1149 (sha256
1150 (base32
1151 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1152 (build-system emacs-build-system)
1153 (arguments
1154 `(#:phases
1155 (modify-phases %standard-phases
1156 (add-before 'install 'make-info
1157 (lambda _
1158 (with-directory-excursion "docs"
1159 (invoke "make" "info"))))
1160 (add-after 'install 'install-info
1161 (lambda* (#:key outputs #:allow-other-keys)
1162 (let* ((out (assoc-ref outputs "out"))
1163 (info (string-append out "/share/info")))
1164 (install-file "docs/_build/texinfo/agel.info" info)
1165 #t))))))
1166 (native-inputs
1167 `(("python-sphinx" ,python-sphinx)
1168 ("texinfo" ,texinfo)))
1169 (propagated-inputs
1170 `(("dash" ,emacs-dash)
1171 ("s" ,emacs-s)
1172 ;; We need to use 'ag' as the executable on remote systems.
1173 ("the-silver-searcher" ,the-silver-searcher)))
1174 (home-page "https://github.com/Wilfred/ag.el")
1175 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1176 (description "This package provides the ability to use the silver
1177 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1178 include version control system awareness, use of Perl compatible regular
1179 expressions, editing the search results directly and searching file names
1180 rather than the contents of files.")
1181 (license license:gpl3+)))
1182
1183 (define-public emacs-async
1184 (package
1185 (name "emacs-async")
1186 (home-page "https://github.com/jwiegley/emacs-async")
1187 (version "1.9.3")
1188 (source (origin
1189 (method git-fetch)
1190 (uri (git-reference
1191 (url home-page)
1192 (commit (string-append "v" version))))
1193 (file-name (git-file-name name version))
1194 (sha256
1195 (base32
1196 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
1197 (build-system emacs-build-system)
1198 (synopsis "Asynchronous processing in Emacs")
1199 (description
1200 "This package provides the ability to call asynchronous functions and
1201 processes. For example, it can be used to run dired commands (for copying,
1202 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1203 as a library for other Emacs packages.")
1204 (license license:gpl3+)))
1205
1206 (define-public emacs-auctex
1207 (package
1208 (name "emacs-auctex")
1209 (version "12.1.0")
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (string-append
1214 "https://elpa.gnu.org/packages/auctex-"
1215 version
1216 ".tar"))
1217 (sha256
1218 (base32
1219 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1220 (build-system emacs-build-system)
1221 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1222 ;; ('emacs-minimal' does not provide dbus).
1223 (arguments
1224 `(#:emacs ,emacs
1225 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1226 #:exclude '("^tests/" "^latex/README")))
1227 (native-inputs
1228 `(("perl" ,perl)))
1229 (home-page "https://www.gnu.org/software/auctex/")
1230 (synopsis "Integrated environment for TeX")
1231 (description
1232 "AUCTeX is a comprehensive customizable integrated environment for
1233 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1234 or XEmacs.")
1235 (license license:gpl3+)))
1236
1237 (define-public emacs-autothemer
1238 (package
1239 (name "emacs-autothemer")
1240 (version "0.2.2")
1241 (source
1242 (origin
1243 (method url-fetch)
1244 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1245 version ".tar.gz"))
1246 (file-name (string-append name "-" version ".tar.gz"))
1247 (sha256
1248 (base32
1249 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1250 (build-system emacs-build-system)
1251 (propagated-inputs
1252 `(("emacs-dash" ,emacs-dash)))
1253 (home-page "https://github.com/sebastiansturm/autothemer")
1254 (synopsis "Conveniently create Emacs themes")
1255 (description
1256 "Autothemer provides a thin layer on top of @code{deftheme} and
1257 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1258 a set of simplified face specifications and a user-supplied color palette")
1259 (license license:gpl3+)))
1260
1261 (define-public emacs-howm
1262 (package
1263 (name "emacs-howm")
1264 (version "1.4.4")
1265 (source
1266 (origin
1267 (method url-fetch)
1268 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1269 version ".tar.gz"))
1270 (sha256
1271 (base32
1272 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1273 (build-system gnu-build-system)
1274 (native-inputs
1275 `(("emacs" ,emacs-minimal)))
1276 (arguments
1277 `(#:configure-flags
1278 (list (string-append "--with-howmdir=" %output
1279 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1280 #:modules ((guix build gnu-build-system)
1281 ((guix build emacs-build-system) #:prefix emacs:)
1282 (guix build utils))
1283 #:imported-modules (,@%gnu-build-system-modules
1284 (guix build emacs-build-system)
1285 (guix build emacs-utils))
1286 #:phases
1287 (modify-phases %standard-phases
1288 (add-after 'rename-lispdir 'make-autoloads
1289 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1290 (home-page "http://howm.osdn.jp/")
1291 (synopsis "Note-taking tool for Emacs")
1292 (description "Howm is a note-taking tool for Emacs. Like
1293 code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1294 searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1295 (license license:gpl1+)))
1296
1297 (define-public emacs-calfw
1298 (package
1299 (name "emacs-calfw")
1300 (version "1.5")
1301 (source
1302 (origin
1303 (method url-fetch)
1304 (uri (string-append
1305 "https://github.com/kiwanami/emacs-calfw/archive/v"
1306 version ".tar.gz"))
1307 (file-name (string-append name "-" version ".tar.gz"))
1308 (sha256
1309 (base32
1310 "17ssg8gx66yp63nhygjq2r6kgl4h45cacmrxsxs9f0lrfcx37k0l"))))
1311 (build-system emacs-build-system)
1312 (propagated-inputs
1313 `(("emacs-howm" ,emacs-howm)))
1314 (home-page "https://github.com/kiwanami/emacs-calfw/")
1315 (synopsis "Calendar framework for Emacs")
1316 (description
1317 "This package displays a calendar view with various schedule data in the
1318 Emacs buffer.")
1319 (license license:gpl3+)))
1320
1321 (define-public emacs-direnv
1322 (package
1323 (name "emacs-direnv")
1324 (version "1.2.0")
1325 (source
1326 (origin
1327 (method url-fetch)
1328 (uri (string-append
1329 "https://github.com/wbolster/emacs-direnv/archive/"
1330 version ".tar.gz"))
1331 (file-name (string-append name "-" version ".tar.gz"))
1332 (sha256
1333 (base32
1334 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1335 (build-system emacs-build-system)
1336 (propagated-inputs
1337 `(("dash" ,emacs-dash)
1338 ("with-editor" ,emacs-with-editor)))
1339 (home-page "https://github.com/wbolster/emacs-direnv")
1340 (synopsis "Direnv integration for Emacs")
1341 (description
1342 "This package provides support for invoking direnv to get the environment
1343 for the current file and updating the environment within Emacs to match.
1344
1345 Direnv can be invoked manually, and a global minor mode is included that will
1346 update the environment when the active buffer changes.
1347
1348 Using emacs-direnv means that programs started from Emacs will use the
1349 environment set through Direnv.")
1350 (license license:gpl3+)))
1351
1352 (define-public emacs-ggtags
1353 (package
1354 (name "emacs-ggtags")
1355 (version "0.8.12")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1360 version ".el"))
1361 (sha256
1362 (base32
1363 "0ny3llk021g6r0s75xdm4hzpbxv393ddm2r6f2xdk8kqnq4gnirp"))))
1364 (build-system emacs-build-system)
1365 (home-page "https://github.com/leoliu/ggtags")
1366 (synopsis "Frontend to the GNU Global source code tagging system")
1367 (description "@code{ggtags} provides a frontend to the GNU Global source
1368 code tagging system.
1369
1370 Features:
1371
1372 @itemize
1373 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1374 @item Automatically update Global's tag files when needed with tuning for
1375 large source trees.
1376 @item Intuitive navigation among multiple matches with mode-line display of
1377 current match, total matches and exit status.
1378 @item Read tag with completion.
1379 @item Show definition at point.
1380 @item Jump to #include files.
1381 @item Support search history and saving a search to register/bookmark.
1382 @item Query replace.
1383 @item Manage Global's environment variables on a per-project basis.
1384 @item Highlight (definition) tag at point.
1385 @item Abbreviated display of file names.
1386 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1387 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1388 @code{pygments} backend.
1389 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1390 @code{cscope} etc.
1391 @item Support projects on remote hosts (e.g. via @code{tramp}).
1392 @item Support eldoc.
1393 @item Search @code{GTAGSLIBPATH} for references and symbols.
1394 @end itemize\n")
1395 (license license:gpl3+)))
1396
1397 (define-public emacs-go-mode
1398 (package
1399 (name "emacs-go-mode")
1400 (version "1.5.0")
1401 (source (origin
1402 (method url-fetch)
1403 (uri (string-append "https://github.com/dominikh/go-mode.el/"
1404 "archive/v" version ".tar.gz"))
1405 (file-name (string-append name "-" version ".tar.gz"))
1406 (sha256
1407 (base32
1408 "1adngbjyb8qnwg7n6r2y31djw9j6qf3b9fi63zd85035q7x4ljnm"))))
1409 (build-system emacs-build-system)
1410 (home-page "https://github.com/dominikh/go-mode.el")
1411 (synopsis "Go mode for Emacs")
1412 (description
1413 "This package provides go-mode, an Emacs mode for working with software
1414 written in the Go programming language.")
1415 (license license:bsd-3)))
1416
1417 (define-public emacs-google-maps
1418 (package
1419 (name "emacs-google-maps")
1420 (version "1.0.0")
1421 (source (origin
1422 (method url-fetch)
1423 (uri (string-append "https://github.com/jd/google-maps.el/"
1424 "archive/" version ".tar.gz"))
1425 (file-name (string-append name "-" version ".tar.gz"))
1426 (sha256
1427 (base32
1428 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1429 (build-system emacs-build-system)
1430 (home-page "https://github.com/jd/google-maps.el")
1431 (synopsis "Access Google Maps from Emacs")
1432 (description "The @code{google-maps} package allows to display Google
1433 Maps directly inside Emacs.")
1434 (license license:gpl3+)))
1435
1436 (define-public emacs-graphviz-dot-mode
1437 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1438 (revision "1"))
1439 (package
1440 (name "emacs-graphviz-dot-mode")
1441 (version (string-append "0.3.11-" revision "."
1442 (string-take commit 7)))
1443 (source (origin
1444 (method git-fetch)
1445 (uri (git-reference
1446 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1447 (commit commit)))
1448 (file-name (string-append name "-" version "-checkout"))
1449 (sha256
1450 (base32
1451 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1452 (build-system emacs-build-system)
1453 (arguments
1454 `(#:phases
1455 (modify-phases %standard-phases
1456 (add-before 'install 'make-info
1457 (lambda* (#:key inputs #:allow-other-keys)
1458 (with-directory-excursion "texinfo"
1459 (substitute* "Makefile"
1460 (("\\/usr\\/bin\\/gzip")
1461 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1462 (invoke "make"
1463 "clean"
1464 "info"
1465 (string-append "TEXINFODIR="
1466 (assoc-ref inputs "texinfo")
1467 "/bin")))))
1468 (add-after 'install 'install-info
1469 (lambda* (#:key outputs #:allow-other-keys)
1470 (let* ((out (assoc-ref outputs "out"))
1471 (info (string-append out "/share/info")))
1472 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1473 #t))))))
1474 (native-inputs
1475 `(("texinfo" ,texinfo)
1476 ("gzip" ,gzip)))
1477 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1478 (synopsis "Major mode for editing Graphviz Dot files")
1479 (description
1480 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1481 files using the dot syntax, and use Graphviz to convert these files to
1482 diagrams.")
1483 (license license:gpl2+))))
1484
1485 (define-public emacs-mmm-mode
1486 (package
1487 (name "emacs-mmm-mode")
1488 (version "0.5.5")
1489 (source
1490 (origin
1491 (method url-fetch)
1492 (uri (string-append
1493 "https://github.com/purcell/mmm-mode/archive/"
1494 version ".tar.gz"))
1495 (file-name (string-append name "-" version ".tar.gz"))
1496 (sha256
1497 (base32
1498 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
1499 (build-system gnu-build-system)
1500 (arguments
1501 '(#:phases
1502 (modify-phases %standard-phases
1503 (add-after 'unpack 'autogen
1504 (lambda _
1505 (invoke "sh" "autogen.sh"))))))
1506 (native-inputs
1507 `(("autoconf" ,autoconf)
1508 ("automake" ,automake)
1509 ("emacs" ,emacs-minimal)
1510 ("texinfo" ,texinfo)))
1511 (home-page "https://github.com/purcell/mmm-mode")
1512 (synopsis "Allow multiple major modes in an Emacs buffer")
1513 (description
1514 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1515 single buffer.")
1516 (license license:gpl3+)))
1517
1518 (define-public emacs-tablist
1519 (package
1520 (name "emacs-tablist")
1521 (version "0.70")
1522 (source (origin
1523 (method url-fetch)
1524 (uri (string-append
1525 "https://github.com/politza/tablist/archive/v"
1526 version ".tar.gz"))
1527 (file-name (string-append name "-" version ".tar.gz"))
1528 (sha256
1529 (base32
1530 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1531 (build-system emacs-build-system)
1532 (home-page "https://github.com/politza/tablist")
1533 (synopsis "Extension for @code{tabulated-list-mode}")
1534 (description "Tablist is the Emacs package that provides several
1535 additional features to @code{tabulated-list-mode}: it adds marks,
1536 filters, new key bindings and faces. It can be enabled by
1537 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1538 (license license:gpl3+)))
1539
1540 (define-public emacs-pdf-tools
1541 (package
1542 (name "emacs-pdf-tools")
1543 (version "0.80")
1544 (source (origin
1545 (method url-fetch)
1546 (uri (string-append
1547 "https://github.com/politza/pdf-tools/archive/v"
1548 version ".tar.gz"))
1549 (file-name (string-append name "-" version ".tar.gz"))
1550 (sha256
1551 (base32
1552 "06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
1553 (build-system gnu-build-system)
1554 (arguments
1555 `(#:tests? #f ; there are no tests
1556 #:modules ((guix build gnu-build-system)
1557 ((guix build emacs-build-system) #:prefix emacs:)
1558 (guix build utils)
1559 (guix build emacs-utils))
1560 #:imported-modules (,@%gnu-build-system-modules
1561 (guix build emacs-build-system)
1562 (guix build emacs-utils))
1563 #:phases
1564 (modify-phases %standard-phases
1565 ;; Build server side using 'gnu-build-system'.
1566 (add-after 'unpack 'enter-server-dir
1567 (lambda _ (chdir "server") #t))
1568 (add-after 'enter-server-dir 'autogen
1569 (lambda _
1570 (invoke "bash" "autogen.sh")))
1571
1572 ;; Build emacs side using 'emacs-build-system'.
1573 (add-after 'compress-documentation 'enter-lisp-dir
1574 (lambda _ (chdir "../lisp") #t))
1575 (add-after 'enter-lisp-dir 'emacs-patch-variables
1576 (lambda* (#:key outputs #:allow-other-keys)
1577 ;; Set path to epdfinfo program.
1578 (emacs-substitute-variables "pdf-info.el"
1579 ("pdf-info-epdfinfo-program"
1580 (string-append (assoc-ref outputs "out")
1581 "/bin/epdfinfo")))
1582 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1583 ;; upgrading" that pdf-tools tries to perform.
1584 (emacs-substitute-variables "pdf-tools.el"
1585 ("pdf-tools-handle-upgrades" '()))))
1586 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1587 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1588 (add-after 'emacs-set-emacs-load-path 'emacs-install
1589 (assoc-ref emacs:%standard-phases 'install))
1590 (add-after 'emacs-install 'emacs-build
1591 (assoc-ref emacs:%standard-phases 'build))
1592 (add-after 'emacs-install 'emacs-make-autoloads
1593 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1594 (native-inputs `(("autoconf" ,autoconf)
1595 ("automake" ,automake)
1596 ("pkg-config" ,pkg-config)
1597 ("emacs" ,emacs-minimal)))
1598 (inputs `(("poppler" ,poppler)
1599 ("cairo" ,cairo)
1600 ("glib" ,glib)
1601 ("libpng" ,libpng)
1602 ("zlib" ,zlib)))
1603 (propagated-inputs `(("tablist" ,emacs-tablist)))
1604 (synopsis "Emacs support library for PDF files")
1605 (description
1606 "PDF Tools is, among other things, a replacement of DocView for PDF
1607 files. The key difference is that pages are not pre-rendered by
1608 e.g. ghostscript and stored in the file-system, but rather created on-demand
1609 and stored in memory.")
1610 (home-page "https://github.com/politza/pdf-tools")
1611 (license license:gpl3+)))
1612
1613 (define-public emacs-dash
1614 (package
1615 (name "emacs-dash")
1616 (version "2.14.1")
1617 (source (origin
1618 (method git-fetch)
1619 (uri (git-reference
1620 (url "https://github.com/magnars/dash.el.git")
1621 (commit version)))
1622 (file-name (git-file-name name version))
1623 (sha256
1624 (base32
1625 "1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
1626 (build-system emacs-build-system)
1627 (arguments
1628 `(#:tests? #t
1629 #:test-command '("./run-tests.sh")))
1630 (home-page "https://github.com/magnars/dash.el")
1631 (synopsis "Modern list library for Emacs")
1632 (description "This package provides a modern list API library for Emacs.")
1633 (license license:gpl3+)))
1634
1635 (define-public emacs-bui
1636 (package
1637 (name "emacs-bui")
1638 (version "1.2.0")
1639 (source (origin
1640 (method git-fetch)
1641 (uri (git-reference
1642 (url "https://notabug.org/alezost/emacs-bui.git")
1643 (commit (string-append "v" version))))
1644 (file-name (string-append name "-" version "-checkout"))
1645 (sha256
1646 (base32
1647 "0ixia5s41f2nbal3wsixacbhbc0mk9yb75ir1amqakip30sq4apv"))))
1648 (build-system emacs-build-system)
1649 (propagated-inputs
1650 `(("dash" ,emacs-dash)))
1651 (home-page "https://notabug.org/alezost/emacs-bui")
1652 (synopsis "Buffer interface library for Emacs")
1653 (description
1654 "BUI (Buffer User Interface) is a library for making @code{list} and
1655 @code{info} interfaces to display an arbitrary data of the same
1656 type, for example: packages, buffers, files, etc.")
1657 (license license:gpl3+)))
1658
1659 (define-public emacs-guix
1660 (package
1661 (name "emacs-guix")
1662 (version "0.4.1.1")
1663 (source (origin
1664 (method url-fetch)
1665 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1666 "releases/emacs-guix-" version ".tar.gz"))
1667 (sha256
1668 (base32
1669 "0jbnrcazbks7h50rngpw5l40a6vn2794kb53cpva3yzdjmrc1955"))))
1670 (build-system gnu-build-system)
1671 (arguments
1672 `(#:configure-flags
1673 (let ((guix (assoc-ref %build-inputs "guix"))
1674 (geiser (assoc-ref %build-inputs "geiser"))
1675 (dash (assoc-ref %build-inputs "dash"))
1676 (bui (assoc-ref %build-inputs "bui"))
1677 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1678 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
1679 (site-lisp "/share/emacs/site-lisp"))
1680 (list (string-append "--with-guix-site-dir="
1681 (car (find-files (string-append guix
1682 "/share/guile/site")
1683 (lambda (file stat)
1684 (string-prefix?
1685 "2."
1686 (basename file)))
1687 #:directories? #t)))
1688 (string-append "--with-guix-site-ccache-dir="
1689 (car (find-files (string-append guix "/lib/guile")
1690 (lambda (file stat)
1691 (string-prefix?
1692 "2." (basename file)))
1693 #:directories? #t))
1694 "/site-ccache")
1695 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1696 (string-append "--with-dash-lispdir="
1697 dash site-lisp "/guix.d/dash-"
1698 ,(package-version emacs-dash))
1699 (string-append "--with-bui-lispdir="
1700 bui site-lisp "/guix.d/bui-"
1701 ,(package-version emacs-bui))
1702 (string-append "--with-editindirect-lispdir="
1703 edit-indirect site-lisp "/guix.d/edit-indirect-"
1704 ,(package-version emacs-edit-indirect))
1705 (string-append "--with-popup-lispdir="
1706 magit-popup site-lisp "/guix.d/magit-popup-"
1707 ,(package-version emacs-magit-popup))))))
1708 (native-inputs
1709 `(("pkg-config" ,pkg-config)
1710 ("emacs" ,emacs-minimal)))
1711 (inputs
1712 `(("guile" ,guile-2.2)
1713 ("guix" ,guix)))
1714 (propagated-inputs
1715 `(("geiser" ,geiser)
1716 ("dash" ,emacs-dash)
1717 ("bui" ,emacs-bui)
1718 ("edit-indirect" ,emacs-edit-indirect)
1719 ("magit-popup" ,emacs-magit-popup)))
1720 (home-page "https://emacs-guix.gitlab.io/website/")
1721 (synopsis "Emacs interface for GNU Guix")
1722 (description
1723 "Emacs-Guix provides a visual interface, tools and features for the GNU
1724 Guix package manager. Particularly, it allows you to do various package
1725 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1726 @code{M-x guix-help} command.")
1727 (license license:gpl3+)))
1728
1729 (define-public emacs-build-farm
1730 (package
1731 (name "emacs-build-farm")
1732 (version "0.2")
1733 (source (origin
1734 (method git-fetch)
1735 (uri (git-reference
1736 (url "https://gitlab.com/alezost-emacs/build-farm")
1737 (commit "fa7fa54901416fc5c216a5014394cbd73a61efc6")))
1738 (file-name (string-append name "-" version "-checkout"))
1739 (sha256
1740 (base32
1741 "1zw3pivma6cv9j7k7qm02jd6wnxmsc1v2mjcssd50im99zzrqflh"))))
1742 (build-system emacs-build-system)
1743 (propagated-inputs
1744 `(("bui" ,emacs-bui)
1745 ("magit-popup" ,emacs-magit-popup)))
1746 (home-page "https://gitlab.com/alezost-emacs/build-farm")
1747 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1748 (description
1749 "This Emacs package provides an interface for Hydra and
1750 Cuirass (build farms used by Nix and Guix). It allows you to look at
1751 various data related to the build farm projects, jobsets, builds and
1752 evaluations. The entry point is @code{M-x build-farm} command.")
1753 (license license:gpl3+)))
1754
1755 (define-public emacs-d-mode
1756 (package
1757 (name "emacs-d-mode")
1758 (version "2.0.9")
1759 (source (origin
1760 (method url-fetch)
1761 (uri (string-append
1762 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1763 "archive/" version ".tar.gz"))
1764 (file-name (string-append name "-" version ".tar.gz"))
1765 (sha256
1766 (base32
1767 "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
1768 (build-system emacs-build-system)
1769 (propagated-inputs
1770 `(("emacs-undercover" ,emacs-undercover)))
1771 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1772 (synopsis "Emacs major mode for editing D code")
1773 (description "This package provides an Emacs major mode for highlighting
1774 code written in the D programming language. This mode is currently known to
1775 work with Emacs 24 and 25.")
1776 (license license:gpl2+)))
1777
1778 (define-public emacs-keyfreq
1779 (package
1780 (name "emacs-keyfreq")
1781 (version "20160516.716")
1782 (source
1783 (origin
1784 (method url-fetch)
1785 (uri (string-append "http://melpa.org/packages/keyfreq-"
1786 version ".el"))
1787 (sha256
1788 (base32
1789 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1790 (build-system emacs-build-system)
1791 (home-page "https://github.com/dacap/keyfreq")
1792 (synopsis "Track Emacs command frequencies")
1793 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1794 a command.")
1795 (license license:gpl3+)))
1796
1797 (define-public emacs-olivetti
1798 (package
1799 (name "emacs-olivetti")
1800 (version "1.5.7")
1801 (source (origin
1802 (method url-fetch)
1803 (uri (string-append
1804 "https://stable.melpa.org/packages/olivetti-"
1805 version ".el"))
1806 (sha256
1807 (base32
1808 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1809 (build-system emacs-build-system)
1810 (home-page "https://github.com/rnkn/olivetti")
1811 (synopsis "Emacs minor mode for a nice writing environment")
1812 (description "This package provides an Emacs minor mode that puts writing
1813 in the center.")
1814 (license license:gpl3+)))
1815
1816 (define-public emacs-undo-tree
1817 (package
1818 (name "emacs-undo-tree")
1819 (version "0.6.6")
1820 (source (origin
1821 (method git-fetch)
1822 (uri (git-reference
1823 (url "http://dr-qubit.org/git/undo-tree.git")
1824 (commit (string-append "release/" version))))
1825 (file-name (string-append name "-" version "-checkout"))
1826 (sha256
1827 (base32
1828 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1829 (build-system emacs-build-system)
1830 (home-page "http://www.dr-qubit.org/emacs.php")
1831 (synopsis "Treat undo history as a tree")
1832 (description "Tree-like interface to Emacs undo system, providing
1833 graphical tree presentation of all previous states of buffer that
1834 allows easily move between them.")
1835 (license license:gpl3+)))
1836
1837 (define-public emacs-s
1838 (package
1839 (name "emacs-s")
1840 (version "1.12.0")
1841 (source (origin
1842 (method url-fetch)
1843 (uri (string-append
1844 "https://github.com/magnars/s.el/archive/"
1845 version ".tar.gz"))
1846 (file-name (string-append name "-" version ".tar.gz"))
1847 (sha256
1848 (base32
1849 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1850 (build-system emacs-build-system)
1851 (arguments
1852 `(#:tests? #t
1853 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
1854 #:test-command '("./run-tests.sh")))
1855 (home-page "https://github.com/magnars/s.el")
1856 (synopsis "Emacs string manipulation library")
1857 (description "This package provides an Emacs library for manipulating
1858 strings.")
1859 (license license:gpl3+)))
1860
1861 (define-public emacs-symon
1862 (package
1863 (name "emacs-symon")
1864 (version "20160630")
1865 (source
1866 (origin
1867 (method url-fetch)
1868 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1869 version ".tar.gz"))
1870 (file-name (string-append name "-" version ".tar.gz"))
1871 (sha256
1872 (base32
1873 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1874 (build-system emacs-build-system)
1875 (home-page "https://github.com/zk-phi/symon")
1876 (synopsis "Tiny graphical system monitor")
1877 (description
1878 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1879 (license license:gpl2+)))
1880
1881 (define-public emacs-sx
1882 (let ((version "20180212")
1883 (revision "1")
1884 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1885 (package
1886 (name "emacs-sx")
1887 (version (git-version version revision commit))
1888 (source
1889 (origin
1890 (method git-fetch)
1891 (uri (git-reference
1892 (url "https://github.com/vermiculus/sx.el")
1893 (commit commit)))
1894 (file-name (git-file-name name version))
1895 (sha256
1896 (base32
1897 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1898 (build-system emacs-build-system)
1899 (propagated-inputs
1900 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1901 (home-page "https://github.com/vermiculus/sx.el")
1902 (synopsis "Emacs StackExchange client")
1903 (description
1904 "Emacs StackExchange client. Ask and answer questions on
1905 Stack Overflow, Super User, and other StackExchange sites.")
1906 (license license:gpl3+))))
1907
1908 (define-public emacs-f
1909 (package
1910 (name "emacs-f")
1911 (version "0.20.0")
1912 (source (origin
1913 (method git-fetch)
1914 (uri (git-reference
1915 (url "https://github.com/rejeep/f.el.git")
1916 (commit (string-append "v" version))))
1917 (file-name (git-file-name name version))
1918 (sha256
1919 (base32
1920 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
1921 (build-system emacs-build-system)
1922 (propagated-inputs
1923 `(("emacs-s" ,emacs-s)
1924 ("emacs-dash" ,emacs-dash)))
1925 (home-page "https://github.com/rejeep/f.el")
1926 (synopsis "Emacs API for working with files and directories")
1927 (description "This package provides an Emacs library for working with
1928 files and directories.")
1929 (license license:gpl3+)))
1930
1931 (define-public emacs-git-gutter
1932 (package
1933 (name "emacs-git-gutter")
1934 (version "0.90")
1935 (source (origin
1936 (method url-fetch)
1937 (uri (string-append
1938 "https://github.com/syohex/" name "/archive/"
1939 version ".tar.gz"))
1940 (file-name (string-append name "-" version ".tar.gz"))
1941 (sha256
1942 (base32
1943 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1944 (build-system emacs-build-system)
1945 (home-page "https://github.com/syohex/emacs-git-gutter")
1946 (synopsis "See and manage hunks of text in a version control system")
1947 (description
1948 "This package is an Emacs minor mode for displaying and interacting with
1949 hunks of text managed in a version control system. Added modified and deleted
1950 areas can be indicated with symbols on the edge of the buffer, and commands
1951 can be used to move between and perform actions on these hunks.
1952
1953 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1954 display and behaviour is easily customisable.")
1955 (license license:gpl3+)))
1956
1957 (define-public emacs-git-timemachine
1958 (package
1959 (name "emacs-git-timemachine")
1960 (version "4.5")
1961 (source
1962 (origin
1963 (method url-fetch)
1964 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
1965 "/-/archive/" version
1966 "/git-timemachine-" version ".tar.gz"))
1967 (file-name (string-append name "-" version ".tar.gz"))
1968 (sha256
1969 (base32
1970 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
1971 (build-system emacs-build-system)
1972 (home-page "https://gitlab.com/pidu/git-timemachine")
1973 (synopsis "Step through historic versions of Git-controlled files")
1974 (description "This package enables you to step through historic versions
1975 of files under Git version control from within Emacs.")
1976 (license license:gpl3+)))
1977
1978 (define-public emacs-minitest
1979 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1980 (revision "1"))
1981 (package
1982 (name "emacs-minitest")
1983 (version (git-version "0.8.0" revision commit))
1984 (source (origin
1985 (method git-fetch)
1986 (uri (git-reference
1987 (url "https://github.com/arthurnn/minitest-emacs")
1988 (commit commit)))
1989 (file-name (git-file-name name commit))
1990 (sha256
1991 (base32
1992 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1993 (build-system emacs-build-system)
1994 (arguments
1995 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1996 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1997 (propagated-inputs
1998 `(("emacs-dash" ,emacs-dash)
1999 ("emacs-f" ,emacs-f)))
2000 (home-page "https://github.com/arthurnn/minitest-emacs")
2001 (synopsis "Emacs minitest mode")
2002 (description
2003 "The minitest mode provides commands to run the tests for the current
2004 file or line, as well as rerunning the previous tests, or all the tests for a
2005 project.
2006
2007 This package also includes relevant snippets for yasnippet.")
2008 (license license:expat))))
2009
2010 (define-public emacs-el-mock
2011 (package
2012 (name "emacs-el-mock")
2013 (version "1.25.1")
2014 (source
2015 (origin
2016 (method url-fetch)
2017 (uri (string-append "https://github.com/rejeep/el-mock.el/"
2018 "archive/v" version ".tar.gz"))
2019 (file-name (string-append name "-" version ".tar.gz"))
2020 (sha256
2021 (base32
2022 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
2023 (build-system emacs-build-system)
2024 (home-page "https://github.com/rejeep/el-mock.el")
2025 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2026 (description
2027 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2028 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2029 Expectations, but it can be used in other contexts.")
2030 (license license:gpl3+)))
2031
2032 (define-public emacs-espuds
2033 (package
2034 (name "emacs-espuds")
2035 (version "0.3.3")
2036 (source
2037 (origin
2038 (method url-fetch)
2039 (uri (string-append "https://github.com/ecukes/espuds/"
2040 "archive/v" version ".tar.gz"))
2041 (file-name (string-append name "-" version ".tar.gz"))
2042 (sha256
2043 (base32
2044 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
2045 (build-system emacs-build-system)
2046 (propagated-inputs
2047 `(("emacs-s" ,emacs-s)
2048 ("emacs-dash" ,emacs-dash)
2049 ("emacs-f" ,emacs-f)))
2050 (home-page "https://github.com/ecukes/espuds")
2051 (synopsis "Common step definitions for Ecukes")
2052 (description "Espuds is a collection of the most commonly used step
2053 definitions for testing with the Ecukes framework.")
2054 (license license:gpl3+)))
2055
2056 (define-public emacs-spark
2057 (let ((version "20160503") ; no proper tag, use date of commit
2058 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2059 (revision "1"))
2060 (package
2061 (name "emacs-spark")
2062 (version (git-version version revision commit))
2063 (source
2064 (origin
2065 (method git-fetch)
2066 (uri (git-reference
2067 (url "https://github.com/alvinfrancis/spark.git")
2068 (commit commit)))
2069 (file-name (git-file-name name version))
2070 (sha256
2071 (base32
2072 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2073 (build-system emacs-build-system)
2074 (home-page "https://github.com/alvinfrancis/spark")
2075 (synopsis "Sparkline generation library for Emacs Lisp")
2076 (description "@code{emacs-spark} is a sparkline generation library for
2077 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2078 port of @code{cl-spark} to Emacs Lisp.")
2079 (license license:expat))))
2080
2081 (define-public emacs-es-mode
2082 (package
2083 (name "emacs-es-mode")
2084 (version "4.3.0")
2085 (source (origin
2086 (method url-fetch)
2087 (uri (string-append
2088 "https://github.com/dakrone/es-mode/archive/"
2089 version ".tar.gz"))
2090 (file-name (string-append name "-" version ".tar.gz"))
2091 (sha256
2092 (base32
2093 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
2094 (build-system emacs-build-system)
2095 (propagated-inputs
2096 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2097 ;; to be rendered incorrectly
2098 `(("emacs-dash" ,emacs-dash)
2099 ("emacs-org" ,emacs-org)
2100 ("emacs-spark" ,emacs-spark)))
2101 (home-page "https://github.com/dakrone/es-mode")
2102 (synopsis "Major mode for editing Elasticsearch queries")
2103 (description "@code{es-mode} includes highlighting, completion and
2104 indentation support for Elasticsearch queries. Also supported are
2105 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2106 be processed through @code{jq}, or in the case of aggregations, can be
2107 rendered in to a table. In addition, there is an @code{es-command-center}
2108 mode, which displays information about Elasticsearch clusters.")
2109 (license license:gpl3+)))
2110
2111 (define-public emacs-expand-region
2112 (package
2113 (name "emacs-expand-region")
2114 (version "0.11.0")
2115 (source
2116 (origin
2117 (method url-fetch)
2118 (uri (string-append "https://github.com/magnars/expand-region.el"
2119 "/archive/" version ".tar.gz"))
2120 (file-name (string-append name "-" version ".tar.gz"))
2121 (sha256
2122 (base32
2123 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
2124 (build-system emacs-build-system)
2125 (home-page "https://github.com/magnars/expand-region.el")
2126 (synopsis "Increase selected region by semantic units")
2127 (description
2128 "Expand region increases the selected region by semantic units. Just
2129 keep pressing the key until it selects what you want. There's also
2130 @code{er/contract-region} if you expand too far.")
2131 (license license:gpl3+)))
2132
2133 (define-public emacs-fill-column-indicator
2134 (package
2135 (name "emacs-fill-column-indicator")
2136 (version "1.81")
2137 (source
2138 (origin
2139 (method url-fetch)
2140 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2141 "/archive/v" version ".tar.gz"))
2142 (file-name (string-append name "-" version ".tar.gz"))
2143 (sha256
2144 (base32
2145 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
2146 (build-system emacs-build-system)
2147 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2148 (synopsis "Graphically indicate the fill column")
2149 (description
2150 "Fill-column-indicator graphically indicates the location of the fill
2151 column by drawing a thin line down the length of the editing window.")
2152 (license license:gpl3+)))
2153
2154 (define-public emacs-grep-a-lot
2155 (package
2156 (name "emacs-grep-a-lot")
2157 (version "1.0.7")
2158 (source (origin
2159 (method git-fetch)
2160 (uri (git-reference
2161 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2162 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2163 (file-name (string-append name "-" version "-checkout"))
2164 (sha256
2165 (base32
2166 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2167 (build-system emacs-build-system)
2168 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2169 (synopsis "Enables multiple grep buffers in Emacs")
2170 (description
2171 "This Emacs package allows managing multiple grep buffers.")
2172 (license license:gpl3+)))
2173
2174 (define-public emacs-inf-ruby
2175 (package
2176 (name "emacs-inf-ruby")
2177 (version "2.5.1")
2178 (source
2179 (origin
2180 (method url-fetch)
2181 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2182 "archive/" version ".tar.gz"))
2183 (file-name (string-append name "-" version ".tar.gz"))
2184 (sha256
2185 (base32
2186 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2187 (build-system emacs-build-system)
2188 (home-page "https://github.com/nonsequitur/inf-ruby")
2189 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2190 (description
2191 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2192 for easy interaction with a ruby subprocess. Features include support for
2193 detecting specific uses of Ruby, e.g. when using rails, and using a
2194 appropriate console.")
2195 (license license:gpl3+)))
2196
2197 (define-public emacs-znc
2198 (package
2199 (name "emacs-znc")
2200 (version "0.0.2")
2201 (source
2202 (origin
2203 (method url-fetch)
2204 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2205 version ".el"))
2206 (sha256
2207 (base32
2208 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2209 (build-system emacs-build-system)
2210 (home-page "https://github.com/sshirokov/ZNC.el")
2211 (synopsis "Make ERC and ZNC get along better")
2212 (description
2213 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2214 IRC bouncer with ERC.")
2215 (license license:expat)))
2216
2217 (define-public emacs-shut-up
2218 (package
2219 (name "emacs-shut-up")
2220 (version "0.3.2")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (string-append "https://github.com/cask/shut-up/"
2225 "archive/v" version ".tar.gz"))
2226 (file-name (string-append name "-" version ".tar.gz"))
2227 (sha256
2228 (base32
2229 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2230 (build-system emacs-build-system)
2231 (home-page "https://github.com/cask/shut-up")
2232 (synopsis "Silence Emacs")
2233 (description "This package silences most output of Emacs when running an
2234 Emacs shell script.")
2235 (license license:expat)))
2236
2237 (define-public emacs-undercover
2238 (package
2239 (name "emacs-undercover")
2240 (version "0.6.0")
2241 (source
2242 (origin
2243 (method url-fetch)
2244 (uri (string-append "https://github.com/sviridov/undercover.el/"
2245 "archive/v" version ".tar.gz"))
2246 (file-name (string-append name "-" version ".tar.gz"))
2247 (sha256
2248 (base32
2249 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2250 (build-system emacs-build-system)
2251 (propagated-inputs
2252 `(("emacs-dash" ,emacs-dash)
2253 ("emacs-shut-up" ,emacs-shut-up)))
2254 (home-page "https://github.com/sviridov/undercover.el")
2255 (synopsis "Test coverage library for Emacs Lisp")
2256 (description
2257 "Undercover is a test coverage library for software written in Emacs
2258 Lisp.")
2259 (license license:expat)))
2260
2261 (define-public emacs-paren-face
2262 (package
2263 (name "emacs-paren-face")
2264 (version "1.0.0")
2265 (source
2266 (origin
2267 (method url-fetch)
2268 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2269 version ".tar.gz"))
2270 (file-name (string-append name "-" version ".tar.gz"))
2271 (sha256
2272 (base32
2273 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2274 (build-system emacs-build-system)
2275 (home-page "https://github.com/tarsius/paren-face")
2276 (synopsis "Face for parentheses in lisp modes")
2277 (description
2278 "This library defines a face named @code{parenthesis} used just for
2279 parentheses. The intended purpose of this face is to make parentheses less
2280 visible in Lisp code by dimming them. Lispers probably don't need to be
2281 constantly made aware of the existence of the parentheses. Dimming them might
2282 be even more useful for people new to lisp who have not yet learned to
2283 subconsciously blend out the parentheses.")
2284 (license license:gpl3+)))
2285
2286 (define-public emacs-page-break-lines
2287 (package
2288 (name "emacs-page-break-lines")
2289 (version "0.11")
2290 (source
2291 (origin
2292 (method url-fetch)
2293 (uri (string-append "https://github.com/purcell/page-break-lines/"
2294 "archive/" version ".tar.gz"))
2295 (file-name (string-append name "-" version ".tar.gz"))
2296 (sha256
2297 (base32
2298 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2299 (build-system emacs-build-system)
2300 (home-page "https://github.com/purcell/page-break-lines")
2301 (synopsis "Display page breaks as tidy horizontal lines")
2302 (description
2303 "This library provides a global mode which displays form feed characters
2304 as horizontal rules.")
2305 (license license:gpl3+)))
2306
2307 (define-public emacs-simple-httpd
2308 (package
2309 (name "emacs-simple-httpd")
2310 (version "1.4.6")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2315 "archive/" version ".tar.gz"))
2316 (file-name (string-append name "-" version ".tar.gz"))
2317 (sha256
2318 (base32
2319 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2320 (build-system emacs-build-system)
2321 (home-page "https://github.com/skeeto/emacs-http-server")
2322 (synopsis "HTTP server in pure Emacs Lisp")
2323 (description
2324 "This package provides a simple HTTP server written in Emacs Lisp to
2325 serve files and directory listings.")
2326 (license license:unlicense)))
2327
2328 (define-public emacs-skewer-mode
2329 (package
2330 (name "emacs-skewer-mode")
2331 (version "1.6.2")
2332 (source
2333 (origin
2334 (method url-fetch)
2335 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2336 version ".tar.gz"))
2337 (file-name (string-append name "-" version ".tar.gz"))
2338 (sha256
2339 (base32
2340 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2341 (build-system emacs-build-system)
2342 (propagated-inputs
2343 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2344 ("emacs-js2-mode" ,emacs-js2-mode)))
2345 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2346 (home-page "https://github.com/skeeto/skewer-mode")
2347 (synopsis "Live web development in Emacs")
2348 (description
2349 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2350 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2351 evaluated in the browser, just like Emacs does with an inferior Lisp process
2352 in Lisp modes.")
2353 (license license:unlicense)))
2354
2355 (define-public emacs-string-inflection
2356 (package
2357 (name "emacs-string-inflection")
2358 (version "1.0.6")
2359 (source (origin
2360 (method git-fetch)
2361 (uri (git-reference
2362 (url "https://github.com/akicho8/string-inflection")
2363 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2364 (file-name (string-append name "-" version "-checkout"))
2365 (sha256
2366 (base32
2367 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2368 (build-system emacs-build-system)
2369 (native-inputs
2370 `(("ert-runner" ,ert-runner)))
2371 (arguments
2372 `(#:tests? #t
2373 #:test-command '("ert-runner")))
2374 (home-page "https://github.com/akicho8/string-inflection")
2375 (synopsis "Convert symbol names between different naming conventions")
2376 (description
2377 "This Emacs package provides convenient methods for manipulating the
2378 naming style of a symbol. It supports different naming conventions such as:
2379
2380 @enumerate
2381 @item camel case
2382 @item Pascal case
2383 @item all upper case
2384 @item lower case separated by underscore
2385 @item etc...
2386 @end enumerate\n")
2387 (license license:gpl2+)))
2388
2389 (define-public emacs-stripe-buffer
2390 (package
2391 (name "emacs-stripe-buffer")
2392 (version "0.2.5")
2393 (source
2394 (origin
2395 (method url-fetch)
2396 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2397 "archive/" version ".tar.gz"))
2398 (file-name (string-append name "-" version ".tar.gz"))
2399 (sha256
2400 (base32
2401 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2402 (build-system emacs-build-system)
2403 (home-page "https://github.com/sabof/stripe-buffer/")
2404 (synopsis "Add stripes to list buffers")
2405 (description
2406 "This Emacs package adds faces to add stripes to list buffers and org
2407 tables.")
2408 (license license:gpl2+)))
2409
2410 (define-public emacs-rich-minority
2411 (package
2412 (name "emacs-rich-minority")
2413 (version "1.0.1")
2414 (source
2415 (origin
2416 (method url-fetch)
2417 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2418 "archive/" version ".tar.gz"))
2419 (file-name (string-append name "-" version ".tar.gz"))
2420 (sha256
2421 (base32
2422 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2423 (build-system emacs-build-system)
2424 (home-page "https://github.com/Malabarba/rich-minority")
2425 (synopsis "Clean-up and beautify the list of minor modes")
2426 (description
2427 "This Emacs package hides and/or highlights minor modes in the
2428 mode-line.")
2429 (license license:gpl2+)))
2430
2431 (define-public emacs-robe
2432 (package
2433 (name "emacs-robe")
2434 (version "0.8.1")
2435 (source
2436 (origin
2437 (method url-fetch)
2438 (uri (string-append "https://github.com/dgutov/robe/"
2439 "archive/" version ".tar.gz"))
2440 (file-name (string-append name "-" version ".tar.gz"))
2441 (sha256
2442 (base32
2443 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2444 (build-system emacs-build-system)
2445 (arguments
2446 '(#:include (cons "^lib\\/" %default-include)))
2447 (propagated-inputs
2448 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2449 (home-page "https://github.com/dgutov/robe")
2450 (synopsis "Ruby code assistance tool for Emacs")
2451 (description
2452 "Robe can provide information on loaded classes and modules in Ruby code,
2453 as well as where methods are defined. This allows the user to jump to method
2454 definitions, modules and classes, display method documentation and provide
2455 method and constant name completion.")
2456 (license license:gpl3+)))
2457
2458 (define-public emacs-rspec
2459 (package
2460 (name "emacs-rspec")
2461 (version "1.11")
2462 (source
2463 (origin
2464 (method url-fetch)
2465 (uri (string-append "https://github.com/pezra/rspec-mode/"
2466 "archive/v" version ".tar.gz"))
2467 (file-name (string-append name "-" version ".tar.gz"))
2468 (sha256
2469 (base32
2470 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2471 (build-system emacs-build-system)
2472 (home-page "https://github.com/pezra/rspec-mode")
2473 (synopsis "Provides a rspec mode for working with RSpec")
2474 (description
2475 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2476 verify the spec associated with the current buffer, or entire project, as well
2477 as moving between the spec files, and coresponding code files.
2478
2479 Also included are keybindings for spec files and Dired buffers, as well as
2480 snippets for yasnippet.")
2481 (license license:gpl3+)))
2482
2483 (define-public emacs-smart-mode-line
2484 (package
2485 (name "emacs-smart-mode-line")
2486 (version "2.10.1")
2487 (source
2488 (origin
2489 (method url-fetch)
2490 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2491 "archive/" version ".tar.gz"))
2492 (file-name (string-append name "-" version ".tar.gz"))
2493 (sha256
2494 (base32
2495 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
2496 (build-system emacs-build-system)
2497 (propagated-inputs
2498 `(("emacs-rich-minority" ,emacs-rich-minority)))
2499 (home-page "https://github.com/Malabarba/smart-mode-line")
2500 (synopsis "Color-coded smart mode-line")
2501 (description
2502 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2503 read from small to large monitors by using colors, a prefix feature, and smart
2504 truncation.")
2505 (license license:gpl2+)))
2506
2507 (define-public emacs-sr-speedbar
2508 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2509 (revision "0"))
2510 (package
2511 (name "emacs-sr-speedbar")
2512 (version (git-version "20161025" revision commit))
2513 (source
2514 (origin
2515 (method git-fetch)
2516 (uri (git-reference
2517 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2518 (commit commit)))
2519 (file-name (git-file-name name version))
2520 (sha256
2521 (base32
2522 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2523 (build-system emacs-build-system)
2524 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2525 (synopsis "Same frame Emacs @code{speedbar}")
2526 (description
2527 "This Emacs package allows you to show @code{M-x speedbar} in the
2528 same frame (in an extra window). You can customize the initial width of
2529 the speedbar window.")
2530 (license license:gpl3+))))
2531
2532 (define-public emacs-shell-switcher
2533 (package
2534 (name "emacs-shell-switcher")
2535 (version "1.0.1")
2536 (source
2537 (origin
2538 (method url-fetch)
2539 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2540 "/archive/v" version ".tar.gz"))
2541 (file-name (string-append name "-" version ".tar.gz"))
2542 (sha256
2543 (base32
2544 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2545 (build-system emacs-build-system)
2546 (home-page "https://github.com/DamienCassou/shell-switcher")
2547 (synopsis "Provide fast switching between shell buffers")
2548 (description
2549 "This package provides commands to quickly switch between shell buffers.")
2550 (license license:gpl3+)))
2551
2552 (define-public emacs-ob-ipython
2553 (package
2554 (name "emacs-ob-ipython")
2555 (version "20150704.8807064693")
2556 (source (origin
2557 (method git-fetch)
2558 (uri (git-reference
2559 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2560 (url "https://github.com/gregsexton/ob-ipython.git")))
2561 (file-name (string-append name "-" version "-checkout"))
2562 (sha256
2563 (base32
2564 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2565 (build-system emacs-build-system)
2566 (propagated-inputs
2567 `(("emacs-f" ,emacs-f)))
2568 (home-page "http://www.gregsexton.org")
2569 (synopsis "Org-Babel functions for IPython evaluation")
2570 (description "This package adds support to Org-Babel for evaluating Python
2571 source code using IPython.")
2572 (license license:gpl3+)))
2573
2574 (define-public emacs-debbugs
2575 (package
2576 (name "emacs-debbugs")
2577 (version "0.15")
2578 (source (origin
2579 (method url-fetch)
2580 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2581 version ".tar"))
2582 (sha256
2583 (base32
2584 "1x7jw2ldgkknyxg7x9fhnqkary691icnysmi3xw0g2fjrvllzhqw"))))
2585 (build-system emacs-build-system)
2586 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2587 (propagated-inputs
2588 `(("emacs-async" ,emacs-async)))
2589 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2590 (synopsis "Access the Debbugs bug tracker in Emacs")
2591 (description
2592 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2593 Tracker} from within Emacs.
2594
2595 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2596 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2597 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2598 @code{M-x debbugs-org} and related commands.
2599
2600 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2601 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2602 (license license:gpl3+)))
2603
2604 (define-public emacs-ert-expectations
2605 (package
2606 (name "emacs-ert-expectations")
2607 (version "0.2")
2608 (source
2609 (origin
2610 (method url-fetch)
2611 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2612 (sha256
2613 (base32
2614 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2615 (build-system emacs-build-system)
2616 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2617 (synopsis "Simple unit test framework for Emacs Lisp")
2618 (description "@code{emacs-ert-expectations} is a simple unit test
2619 framework for Emacs Lisp to be used with @code{ert}.")
2620 (license license:gpl3+)))
2621
2622 (define-public emacs-deferred
2623 (package
2624 (name "emacs-deferred")
2625 (version "0.5.1")
2626 (home-page "https://github.com/kiwanami/emacs-deferred")
2627 (source (origin
2628 (method git-fetch)
2629 (uri (git-reference
2630 (url home-page)
2631 (commit (string-append "v" version))))
2632 (sha256
2633 (base32
2634 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2635 (file-name (string-append name "-" version))))
2636 (build-system emacs-build-system)
2637 (arguments
2638 `(#:phases
2639 (modify-phases %standard-phases
2640 (add-after 'unpack 'set-shell
2641 ;; Setting the SHELL environment variable is required for the tests
2642 ;; to find sh.
2643 (lambda _
2644 (setenv "SHELL" (which "sh"))
2645 #t))
2646 (add-before 'check 'fix-makefile
2647 (lambda _
2648 (substitute* "Makefile"
2649 (("\\$\\(CASK\\) exec ") ""))
2650 #t)))
2651 #:tests? #t
2652 #:test-command '("make" "test")))
2653 (native-inputs
2654 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2655 ("emacs-undercover" ,emacs-undercover)
2656 ("ert-runner" ,ert-runner)))
2657 (synopsis "Simple asynchronous functions for Emacs Lisp")
2658 (description
2659 "The @code{deferred.el} library provides support for asynchronous tasks.
2660 The API is almost the same as that of
2661 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2662 for asynchronous tasks.")
2663 (license license:gpl3+)))
2664
2665 (define-public butler
2666 (package
2667 (name "emacs-butler")
2668 (version "0.2.4")
2669 (home-page "https://github.com/AshtonKem/Butler")
2670 (source (origin
2671 (method git-fetch)
2672 (uri (git-reference
2673 (url home-page)
2674 (commit version)))
2675 (sha256
2676 (base32
2677 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2678 (file-name (string-append name "-" version))))
2679 (build-system emacs-build-system)
2680 (propagated-inputs
2681 `(("emacs-deferred" ,emacs-deferred)))
2682 (synopsis "Emacs client for Jenkins")
2683 (description
2684 "Butler provides an interface to connect to Jenkins continuous
2685 integration servers. Users can specify a list of server in the
2686 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2687 view the build status of those servers' build jobs, and possibly to trigger
2688 build jobs.")
2689 (license license:gpl3+)))
2690
2691 (define-public emacs-company
2692 (package
2693 (name "emacs-company")
2694 (version "0.9.6")
2695 (source
2696 (origin
2697 (method url-fetch)
2698 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2699 version ".tar.gz"))
2700 (file-name (string-append name "-" version ".tar.gz"))
2701 (sha256
2702 (base32
2703 "0a7zvmfvxh9w67myvcj2511ayk0fvkm06cdg38y8khnsx63jrr4k"))))
2704 (build-system emacs-build-system)
2705 (arguments
2706 `(#:phases
2707 (modify-phases %standard-phases
2708 (add-before 'check 'fix-bin-dir
2709 (lambda _
2710 ;; The company-files-candidates-normal-root test looks
2711 ;; for the /bin directory, but the build environment has
2712 ;; no /bin directory. Modify the test to look for the
2713 ;; /tmp directory.
2714 (substitute* "test/files-tests.el"
2715 (("/bin/") "/tmp/"))
2716 #t)))
2717 #:tests? #t
2718 #:test-command '("make" "test-batch")))
2719 (home-page "http://company-mode.github.io/")
2720 (synopsis "Modular text completion framework")
2721 (description
2722 "Company is a modular completion mechanism. Modules for retrieving
2723 completion candidates are called back-ends, modules for displaying them are
2724 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2725 These are distributed in separate files and can be used individually.")
2726 (license license:gpl3+)))
2727
2728 (define-public emacs-company-quickhelp
2729 (package
2730 (name "emacs-company-quickhelp")
2731 (version "2.3.0")
2732 (source
2733 (origin
2734 (method url-fetch)
2735 (uri (string-append
2736 "https://github.com/expez/company-quickhelp/archive/"
2737 version ".tar.gz"))
2738 (file-name (string-append name "-" version ".tar.gz"))
2739 (sha256
2740 (base32
2741 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2742 (build-system emacs-build-system)
2743 (propagated-inputs
2744 `(("emacs-pos-tip" ,emacs-pos-tip)
2745 ("emacs-company" ,emacs-company)))
2746 (home-page "https://github.com/expez/company-quickhelp")
2747 (synopsis "Popup documentation for completion candidates")
2748 (description "@code{company-quickhelp} shows documentation for the
2749 completion candidate when using the Company text completion framework.")
2750 (license license:gpl3+)))
2751
2752 (define-public emacs-multiple-cursors
2753 (package
2754 (name "emacs-multiple-cursors")
2755 (version "1.4.0")
2756 (source
2757 (origin
2758 (method url-fetch)
2759 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2760 "archive/" version ".tar.gz"))
2761 (file-name (string-append name "-" version ".tar.gz"))
2762 (sha256
2763 (base32
2764 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2765 (build-system emacs-build-system)
2766 (home-page "https://github.com/magnars/multiple-cursors.el")
2767 (synopsis "Multiple cursors for Emacs")
2768 (description
2769 "This package adds support to Emacs for editing text with multiple
2770 simultaneous cursors.")
2771 (license license:gpl3+)))
2772
2773 (define-public typo
2774 (package
2775 (name "emacs-typo")
2776 (version "1.1")
2777 (home-page "https://github.com/jorgenschaefer/typoel")
2778 (source (origin
2779 (method git-fetch)
2780 (uri (git-reference
2781 (url home-page)
2782 (commit (string-append "v" version))))
2783 (sha256
2784 (base32
2785 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2786 (file-name (string-append name "-" version))))
2787 (build-system emacs-build-system)
2788 (synopsis "Minor mode for typographic editing")
2789 (description
2790 "This package provides two Emacs modes, @code{typo-mode} and
2791 @code{typo-global-mode}. These modes automatically insert Unicode characters
2792 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2793 automatically inserts a Unicode opening or closing quotation mark, depending
2794 on context.")
2795 (license license:gpl3+)))
2796
2797 (define-public emacs-scheme-complete
2798 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2799 (package
2800 (name "emacs-scheme-complete")
2801 (version (string-append "20151223." (string-take commit 8)))
2802 (source
2803 (origin
2804 (file-name (string-append name "-" version))
2805 (method git-fetch)
2806 (uri (git-reference
2807 (url "https://github.com/ashinn/scheme-complete.git")
2808 (commit commit)))
2809 (sha256
2810 (base32
2811 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2812 (patches
2813 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2814 (build-system emacs-build-system)
2815 (home-page "https://github.com/ashinn/scheme-complete")
2816 (synopsis "Smart tab completion for Scheme in Emacs")
2817 (description
2818 "This file provides a single function, @code{scheme-smart-complete},
2819 which you can use for intelligent, context-sensitive completion for any Scheme
2820 implementation in Emacs. To use it just load this file and bind that function
2821 to a key in your preferred mode.")
2822 (license license:public-domain))))
2823
2824 (define-public emacs-scel
2825 (let ((version "20170629")
2826 (revision "1")
2827 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
2828 (package
2829 (name "emacs-scel")
2830 (version (git-version version revision commit))
2831 (source
2832 (origin
2833 (method git-fetch)
2834 (uri (git-reference
2835 (url "https://github.com/supercollider/scel.git")
2836 (commit commit)))
2837 (file-name (string-append name "-" version "-checkout"))
2838 (sha256
2839 (base32
2840 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
2841 (build-system emacs-build-system)
2842 (arguments
2843 `(#:modules ((guix build emacs-build-system)
2844 ((guix build cmake-build-system) #:prefix cmake:)
2845 (guix build utils))
2846 #:imported-modules (,@%emacs-build-system-modules
2847 (guix build cmake-build-system))
2848 #:phases
2849 (modify-phases %standard-phases
2850 (add-after 'unpack 'configure
2851 (lambda* (#:key outputs #:allow-other-keys)
2852 (substitute* "el/CMakeLists.txt"
2853 (("share/emacs/site-lisp/SuperCollider")
2854 (string-append
2855 "share/emacs/site-lisp/guix.d/scel-" ,version)))
2856 ((assoc-ref cmake:%standard-phases 'configure)
2857 #:outputs outputs
2858 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
2859 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
2860 (lambda _
2861 (setenv "EMACSLOADPATH"
2862 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
2863 #t))
2864 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
2865 (inputs
2866 `(("supercollider" ,supercollider)))
2867 (native-inputs
2868 `(("cmake" ,cmake)))
2869 (home-page "https://github.com/supercollider/scel")
2870 (synopsis "SuperCollider Emacs interface")
2871 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
2872 SuperCollider is a platform for audio synthesis and algorithmic composition.")
2873 (license license:gpl2+))))
2874
2875 (define-public emacs-mit-scheme-doc
2876 (package
2877 (name "emacs-mit-scheme-doc")
2878 (version "20140203")
2879 (source
2880 (origin
2881 (modules '((guix build utils)))
2882 (snippet
2883 ;; keep only file of interest
2884 '(begin
2885 (for-each delete-file '("dot-emacs.el" "Makefile"))
2886 (install-file "6.945-config/mit-scheme-doc.el" ".")
2887 (delete-file-recursively "6.945-config")
2888 #t))
2889 (file-name (string-append name "-" version ".tar.bz2"))
2890 (method url-fetch)
2891 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2892 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2893 (sha256
2894 (base32
2895 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2896 (build-system emacs-build-system)
2897 (inputs `(("mit-scheme" ,mit-scheme)))
2898 (arguments
2899 `(#:phases
2900 (modify-phases %standard-phases
2901 (add-after 'unpack 'configure-doc
2902 (lambda* (#:key inputs #:allow-other-keys)
2903 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2904 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2905 "mit-scheme-"
2906 ,(package-version mit-scheme))))
2907 (substitute* "mit-scheme-doc.el"
2908 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2909 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2910 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2911 (synopsis "MIT-Scheme documentation lookup for Emacs")
2912 (description
2913 "This package provides a set of Emacs functions to search definitions of
2914 identifiers in the MIT-Scheme documentation.")
2915 (license license:gpl2+)))
2916
2917 (define-public emacs-constants
2918 (package
2919 (name "emacs-constants")
2920 (version "2.6")
2921 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
2922 (source
2923 (origin
2924 (file-name (string-append name "-" version ".tar.gz"))
2925 (method url-fetch)
2926 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2927 "/archive/v" version ".tar.gz"))
2928 (sha256
2929 (base32
2930 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
2931 (build-system emacs-build-system)
2932 (synopsis "Enter definition of constants into an Emacs buffer")
2933 (description
2934 "This package provides functions for inserting the definition of natural
2935 constants and units into an Emacs buffer.")
2936 (license license:gpl2+)))
2937
2938 (define-public emacs-tagedit
2939 (package
2940 (name "emacs-tagedit")
2941 (version "1.4.0")
2942 (source
2943 (origin
2944 (method url-fetch)
2945 (uri (string-append "https://github.com/magnars/tagedit/"
2946 "archive/" version ".tar.gz"))
2947 (file-name (string-append name "-" version ".tar.gz"))
2948 (sha256
2949 (base32
2950 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2951 (build-system emacs-build-system)
2952 (propagated-inputs
2953 `(("emacs-s" ,emacs-s)
2954 ("emacs-dash" ,emacs-dash)))
2955 (home-page "https://github.com/magnars/tagedit")
2956 (synopsis "Some paredit-like features for html-mode")
2957 (description
2958 "This package provides a collection of paredit-like functions for editing
2959 in @code{html-mode}.")
2960 (license license:gpl3+)))
2961
2962 (define-public emacs-slime
2963 (package
2964 (name "emacs-slime")
2965 (version "2.20")
2966 (source
2967 (origin
2968 (file-name (string-append name "-" version ".tar.gz"))
2969 (method url-fetch)
2970 (uri (string-append
2971 "https://github.com/slime/slime/archive/v"
2972 version ".tar.gz"))
2973 (sha256
2974 (base32
2975 "086lq5y4pvj9wihy0si02xxvyzpzz8mcg3hz1cvy9zxlyjwzr1gk"))))
2976 (build-system emacs-build-system)
2977 (native-inputs
2978 `(("texinfo" ,texinfo)))
2979 (arguments
2980 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
2981 #:exclude '("^slime-tests.el" "^contrib/test/"
2982 "^contrib/Makefile$" "^contrib/README.md$")
2983 #:phases
2984 (modify-phases %standard-phases
2985 (add-before 'install 'configure
2986 (lambda* _
2987 (emacs-substitute-variables "slime.el"
2988 ("inferior-lisp-program" "sbcl"))
2989 #t))
2990 (add-before 'install 'install-doc
2991 (lambda* (#:key outputs #:allow-other-keys)
2992 (let* ((out (assoc-ref outputs "out"))
2993 (info-dir (string-append out "/share/info"))
2994 (doc-dir (string-append out "/share/doc/"
2995 ,name "-" ,version))
2996 (doc-files '("doc/slime-refcard.pdf"
2997 "README.md" "NEWS" "PROBLEMS"
2998 "CONTRIBUTING.md")))
2999 (with-directory-excursion "doc"
3000 (substitute* "Makefile"
3001 (("infodir=/usr/local/info")
3002 (string-append "infodir=" info-dir)))
3003 (invoke "make" "html/index.html")
3004 (invoke "make" "slime.info")
3005 (install-file "slime.info" info-dir)
3006 (copy-recursively "html" (string-append doc-dir "/html")))
3007 (for-each (lambda (f)
3008 (install-file f doc-dir)
3009 (delete-file f))
3010 doc-files)
3011 (delete-file-recursively "doc")
3012 #t))))))
3013 (home-page "https://github.com/slime/slime")
3014 (synopsis "Superior Lisp Interaction Mode for Emacs")
3015 (description
3016 "SLIME extends Emacs with support for interactive programming in
3017 Common Lisp. The features are centered around @command{slime-mode},
3018 an Emacs minor mode that complements the standard @command{lisp-mode}.
3019 While lisp-mode supports editing Lisp source files, @command{slime-mode}
3020 adds support for interacting with a running Common Lisp process
3021 for compilation, debugging, documentation lookup, and so on.")
3022 (license license:gpl2+)))
3023
3024 (define-public emacs-popup
3025 (package
3026 (name "emacs-popup")
3027 (version "0.5.3")
3028 (source (origin
3029 (method url-fetch)
3030 (uri (string-append
3031 "https://github.com/auto-complete/popup-el/archive/v"
3032 version ".tar.gz"))
3033 (file-name (string-append name "-" version ".tar.gz"))
3034 (sha256
3035 (base32
3036 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
3037 (build-system emacs-build-system)
3038 (home-page "https://github.com/auto-complete/popup-el")
3039 (synopsis "Visual Popup User Interface for Emacs")
3040 (description
3041 "Popup.el is a visual popup user interface library for Emacs.
3042 This provides a basic API and common UI widgets such as popup tooltips
3043 and popup menus.")
3044 (license license:gpl3+)))
3045
3046 (define-public emacs-puppet-mode
3047 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3048 (revision "1"))
3049 (package
3050 (name "emacs-puppet-mode")
3051 ;; The last release, 0.3 was several years ago, and there have been many
3052 ;; commits since
3053 (version (git-version "0.3" revision commit))
3054 (source
3055 (origin
3056 (method url-fetch)
3057 (uri (string-append
3058 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3059 commit "/puppet-mode.el"))
3060 (sha256
3061 (base32
3062 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3063 (build-system emacs-build-system)
3064 (home-page "https://github.com/voxpupuli/puppet-mode")
3065 (synopsis "Emacs major mode for the Puppet configuration language")
3066 (description
3067 "This package provides support for the Puppet configuration language,
3068 including syntax highlighting, indentation of expressions and statements,
3069 linting of manifests and integration with Puppet Debugger.")
3070 ;; Also incorporates work covered by the Apache License, Version 2.0
3071 (license license:gpl3+))))
3072
3073 (define-public emacs-god-mode
3074 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3075 (revision "1"))
3076 (package
3077 (name "emacs-god-mode")
3078 (version (string-append "20151005.925."
3079 revision "-" (string-take commit 9)))
3080 (source
3081 (origin
3082 (method git-fetch)
3083 (uri (git-reference
3084 (url "https://github.com/chrisdone/god-mode.git")
3085 (commit commit)))
3086 (file-name (string-append name "-" version "-checkout"))
3087 (sha256
3088 (base32
3089 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3090 (build-system emacs-build-system)
3091 (home-page "https://github.com/chrisdone/god-mode")
3092 (synopsis "Minor mode for entering commands without modifier keys")
3093 (description
3094 "This package provides a global minor mode for entering Emacs commands
3095 without modifier keys. It's similar to Vim's separation of commands and
3096 insertion mode. When enabled all keys are implicitly prefixed with
3097 @samp{C-} (among other helpful shortcuts).")
3098 (license license:gpl3+))))
3099
3100 (define-public emacs-jinja2-mode
3101 (package
3102 (name "emacs-jinja2-mode")
3103 (version "0.2")
3104 (source
3105 (origin
3106 (method url-fetch)
3107 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
3108 "archive/v" version ".tar.gz"))
3109 (file-name (string-append name "-" version ".tar.gz"))
3110 (sha256
3111 (base32
3112 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
3113 (build-system emacs-build-system)
3114 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3115 (synopsis "Major mode for jinja2")
3116 (description
3117 "Emacs major mode for jinja2 with: syntax highlighting,
3118 sgml/html integration, and indentation (working with sgml).")
3119 (license license:gpl3+)))
3120
3121 (define-public emacs-rfcview
3122 (package
3123 (name "emacs-rfcview")
3124 (version "0.13")
3125 (home-page "http://www.loveshack.ukfsn.org/emacs")
3126 (source (origin
3127 (method url-fetch)
3128 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3129 (sha256
3130 (base32
3131 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3132 (build-system emacs-build-system)
3133 (synopsis "Prettify Request for Comments (RFC) documents")
3134 (description "The Internet Engineering Task Force (IETF) and the Internet
3135 Society (ISOC) publish various Internet-related protocols and specifications
3136 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3137 documents. RFCs and STDs are published in a simple text form. This package
3138 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3139 read these documents in Emacs. It prettifies the text and adds
3140 hyperlinks/menus for easier navigation. It also provides functions for
3141 browsing the index of RFC documents and fetching them from remote servers or
3142 local directories.")
3143 (license license:gpl3+)))
3144
3145 (define-public emacs-ffap-rfc-space
3146 (package
3147 (name "emacs-ffap-rfc-space")
3148 (version "12")
3149 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3150 (source (origin
3151 (method url-fetch)
3152 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3153 (sha256
3154 (base32
3155 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3156 (build-system emacs-build-system)
3157 (synopsis "Make ffap recognize an RFC with a space before its number")
3158 (description "The Internet Engineering Task Force (IETF) and the
3159 Internet Society (ISOC) publish various Internet-related protocols and
3160 specifications as \"Request for Comments\" (RFC) documents. The
3161 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3162 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3163 and load the appropriate RFC from a remote server. However, it fails
3164 to recognize a name like \"RFC 1234\". This package enhances ffap so
3165 that it correctly finds RFCs even when a space appears before the
3166 number.")
3167 (license license:gpl3+)))
3168
3169 (define-public emacs-org-bullets
3170 (package
3171 (name "emacs-org-bullets")
3172 (version "0.2.4")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
3177 version ".tar.gz"))
3178 (file-name (string-append name "-" version ".tar.gz"))
3179 (sha256
3180 (base32
3181 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
3182 (build-system emacs-build-system)
3183 (home-page "https://github.com/sabof/org-bullets")
3184 (synopsis "Show bullets in org-mode as UTF-8 characters")
3185 (description
3186 "This package provides an Emacs minor mode causing bullets in
3187 @code{org-mode} to be rendered as UTF-8 characters.")
3188 (license license:gpl3+)))
3189
3190 (define-public emacs-org-pomodoro
3191 (package
3192 (name "emacs-org-pomodoro")
3193 (version "2.1.0")
3194 (source
3195 (origin
3196 (method url-fetch)
3197 (uri (string-append
3198 "https://github.com/lolownia/org-pomodoro/archive/"
3199 version ".tar.gz"))
3200 (file-name (string-append name "-" version ".tar.gz"))
3201 (sha256
3202 (base32
3203 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3204 (build-system emacs-build-system)
3205 (propagated-inputs
3206 `(("emacs-alert" ,emacs-alert)))
3207 (home-page "https://github.com/lolownia/org-pomodoro")
3208 (synopsis "Pomodoro technique for org-mode")
3209 (description "@code{emacs-org-pomodoro} adds very basic support for
3210 Pomodoro technique in Emacs org-mode.
3211
3212 Run @code{M-x org-pomodoro} for the task at point or select one of the
3213 last tasks that you clocked time for. Each clocked-in pomodoro starts
3214 a timer of 25 minutes and after each pomodoro a break timer of 5
3215 minutes is started automatically. Every 4 breaks a long break is
3216 started with 20 minutes. All values are customizable.")
3217 (license license:gpl3+)))
3218
3219 (define-public emacs-org-trello
3220 (package
3221 (name "emacs-org-trello")
3222 (version "0.8.0")
3223 (source (origin
3224 (method url-fetch)
3225 (uri (string-append
3226 "https://github.com/org-trello/org-trello/archive/"
3227 version ".tar.gz"))
3228 (file-name (string-append name "-" version ".tar.gz"))
3229 (sha256
3230 (base32
3231 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
3232 (build-system emacs-build-system)
3233 (propagated-inputs
3234 `(("emacs-dash" ,emacs-dash)
3235 ("emacs-deferred" ,emacs-deferred)
3236 ("emacs-f" ,emacs-f)
3237 ("emacs-helm" ,emacs-helm)
3238 ("emacs-request" ,emacs-request)
3239 ("emacs-s" ,emacs-s)))
3240 (home-page "https://org-trello.github.io")
3241 (synopsis "Emacs minor mode for interacting with Trello")
3242 (description "This package provides an Emacs minor mode to extend
3243 @code{org-mode} with Trello abilities. Trello is an online project
3244 organizer.")
3245 (license license:gpl3+)))
3246
3247 (define-public emacs-atom-one-dark-theme
3248 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3249 (revision "0"))
3250 (package
3251 (name "emacs-atom-one-dark-theme")
3252 (version (git-version "0.4.0" revision commit))
3253 (source (origin
3254 (method git-fetch)
3255 (uri (git-reference
3256 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3257 (commit commit)))
3258 (sha256
3259 (base32
3260 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3261 (file-name (git-file-name name version))))
3262 (build-system emacs-build-system)
3263 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3264 (synopsis "Atom One Dark color theme for Emacs")
3265 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3266 (license license:gpl3+))))
3267
3268 (define-public emacs-zenburn-theme
3269 (package
3270 (name "emacs-zenburn-theme")
3271 (version "2.5")
3272 (source (origin
3273 (method url-fetch)
3274 (uri (string-append
3275 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3276 version ".tar.gz"))
3277 (file-name (string-append name "-" version ".tar.gz"))
3278 (sha256
3279 (base32
3280 "03kfhzgbbbl8ivpzzky6qxw4j9mmp452m1sk7wikxmcalfnix0gn"))))
3281 (build-system emacs-build-system)
3282 (home-page "https://github.com/bbatsov/zenburn-emacs")
3283 (synopsis "Low contrast color theme for Emacs")
3284 (description
3285 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3286 It is built on top of the custom theme support in Emacs 24 or later.")
3287 (license license:gpl3+)))
3288
3289 (define-public emacs-solarized-theme
3290 (package
3291 (name "emacs-solarized-theme")
3292 (version "1.2.2")
3293 (source (origin
3294 (method url-fetch)
3295 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3296 "archive/v" version ".tar.gz"))
3297 (file-name (string-append name "-" version ".tar.gz"))
3298 (sha256
3299 (base32
3300 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3301 (build-system emacs-build-system)
3302 (propagated-inputs
3303 `(("emacs-dash" ,emacs-dash)))
3304 (home-page "https://github.com/bbatsov/solarized-emacs")
3305 (synopsis "Port of the Solarized theme for Emacs")
3306 (description
3307 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3308 package provides a light and a dark variant.")
3309 (license license:gpl3+)))
3310
3311 (define-public emacs-ahungry-theme
3312 (package
3313 (name "emacs-ahungry-theme")
3314 (version "1.10.0")
3315 (source
3316 (origin (method url-fetch)
3317 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3318 version ".tar"))
3319 (sha256
3320 (base32
3321 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3322 (build-system emacs-build-system)
3323 (home-page "https://github.com/ahungry/color-theme-ahungry")
3324 (synopsis "Ahungry color theme for Emacs")
3325 (description "Ahungry theme for Emacs provides bright and bold colors.
3326 If you load it from a terminal, you will be able to make use of the
3327 transparent background. If you load it from a GUI, it will default to a
3328 dark background.")
3329 (license license:gpl3+)))
3330
3331 (define-public emacs-2048-game
3332 (package
3333 (name "emacs-2048-game")
3334 (version "20151026.1233")
3335 (source
3336 (origin
3337 (method url-fetch)
3338 (uri (string-append "https://melpa.org/packages/2048-game-"
3339 version ".el"))
3340 (sha256
3341 (base32
3342 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3343 (build-system emacs-build-system)
3344 (home-page "https://bitbucket.org/zck/2048.el")
3345 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3346 (description
3347 "This program is an implementation of 2048 for Emacs.
3348 The goal of this game is to create a tile with value 2048. The size of the
3349 board and goal value can be customized.")
3350 (license license:gpl3+)))
3351
3352 (define-public emacs-base16-theme
3353 (package
3354 (name "emacs-base16-theme")
3355 (version "2.1")
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3360 version ".tar"))
3361 (sha256
3362 (base32
3363 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3364 (build-system emacs-build-system)
3365 (home-page "https://github.com/belak/base16-emacs")
3366 (synopsis "Base16 color themes for Emacs")
3367 (description
3368 "Base16 provides carefully chosen syntax highlighting and a default set
3369 of sixteen colors suitable for a wide range of applications. Base16 is not a
3370 single theme but a set of guidelines with numerous implementations.")
3371 (license license:expat)))
3372
3373 (define-public emacs-smartparens
3374 (package
3375 (name "emacs-smartparens")
3376 (version "1.11.0")
3377 (source (origin
3378 (method url-fetch)
3379 (uri (string-append
3380 "https://github.com/Fuco1/smartparens/archive/"
3381 version ".tar.gz"))
3382 (file-name (string-append name "-" version ".tar.gz"))
3383 (sha256
3384 (base32
3385 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3386 (build-system emacs-build-system)
3387 (propagated-inputs
3388 `(("emacs-dash" ,emacs-dash)
3389 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3390 (home-page "https://github.com/Fuco1/smartparens")
3391 (synopsis "Paredit-like insertion, wrapping and navigation with user
3392 defined pairs")
3393 (description
3394 "Smartparens is a minor mode for Emacs that deals with parens pairs
3395 and tries to be smart about it. It started as a unification effort to
3396 combine functionality of several existing packages in a single,
3397 compatible and extensible way to deal with parentheses, delimiters, tags
3398 and the like. Some of these packages include autopair, textmate,
3399 wrap-region, electric-pair-mode, paredit and others. With the basic
3400 features found in other packages it also brings many improvements as
3401 well as completely new features.")
3402 (license license:gpl3+)))
3403
3404 (define-public emacs-highlight-symbol
3405 (package
3406 (name "emacs-highlight-symbol")
3407 (version "1.3")
3408 (source (origin
3409 (method url-fetch)
3410 (uri (string-append
3411 "https://github.com/nschum/highlight-symbol.el/archive/"
3412 version ".tar.gz"))
3413 (file-name (string-append name "-" version ".tar.gz"))
3414 (sha256
3415 (base32
3416 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3417 (build-system emacs-build-system)
3418 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3419 (synopsis "Automatic and manual symbol highlighting for Emacs")
3420 (description
3421 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3422 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3423 the symbol at point highlighted.
3424
3425 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3426 @code{highlight-symbol-next-in-defun} and
3427 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3428 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3429 bindings @code{M-p} and @code{M-p} for navigation. When
3430 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3431 regardless of @code{highlight-symbol-idle-delay}.
3432
3433 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3434 (license license:gpl2+)))
3435
3436 (define-public emacs-hl-todo
3437 (package
3438 (name "emacs-hl-todo")
3439 (version "1.8.0")
3440 (source (origin
3441 (method url-fetch)
3442 (uri (string-append
3443 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3444 version "/hl-todo.el"))
3445 (file-name (string-append "hl-todo-" version ".el"))
3446 (sha256
3447 (base32
3448 "0g0h9v4572p7mcird8wsj1c41haf60krslm6mlpi4mdbh248kv6z"))))
3449 (build-system emacs-build-system)
3450 (home-page "https://github.com/tarsius/hl-todo")
3451 (synopsis "Emacs mode to highlight TODO and similar keywords")
3452 (description
3453 "This package provides an Emacs mode to highlight TODO and similar
3454 keywords in comments and strings. This package also provides commands for
3455 moving to the next or previous keyword and to invoke @code{occur} with a
3456 regexp that matches all known keywords.")
3457 (license license:gpl3+)))
3458
3459 (define-public emacs-perspective
3460 (package
3461 (name "emacs-perspective")
3462 (version "1.12")
3463 (source
3464 (origin
3465 (method url-fetch)
3466 (uri (string-append "https://github.com/nex3/perspective-el/"
3467 "archive/" version ".tar.gz"))
3468 (file-name (string-append name "-" version ".tar.gz"))
3469 (sha256
3470 (base32
3471 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3472 (build-system emacs-build-system)
3473 (home-page "https://github.com/nex3/perspective-el")
3474 (synopsis "Switch between named \"perspectives\"")
3475 (description
3476 "This package provides tagged workspaces in Emacs, similar to workspaces in
3477 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3478 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3479 perspective is composed of a window configuration and a set of buffers.
3480 Switching to a perspective activates its window configuration, and when in a
3481 perspective only its buffers are available by default.")
3482 ;; This package is released under the same license as Emacs (GPLv3+) or
3483 ;; the Expat license.
3484 (license license:gpl3+)))
3485
3486 (define-public emacs-test-simple
3487 (package
3488 (name "emacs-test-simple")
3489 (version "1.3.0")
3490 (source
3491 (origin
3492 (method url-fetch)
3493 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3494 version ".el"))
3495 (sha256
3496 (base32
3497 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3498 (build-system emacs-build-system)
3499 (home-page "https://github.com/rocky/emacs-test-simple")
3500 (synopsis "Simple unit test framework for Emacs Lisp")
3501 (description
3502 "Test Simple is a simple unit test framework for Emacs Lisp. It
3503 alleviates the need for context macros, enclosing specifications or required
3504 test tags. It supports both interactive and non-interactive use.")
3505 (license license:gpl3+)))
3506
3507 (define-public emacs-load-relative
3508 (package
3509 (name "emacs-load-relative")
3510 (version "1.3")
3511 (source
3512 (origin
3513 (method url-fetch)
3514 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3515 version ".el"))
3516 (sha256
3517 (base32
3518 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3519 (build-system emacs-build-system)
3520 (home-page "http://github.com/rocky/emacs-load-relative")
3521 (synopsis "Emacs Lisp relative file loading related functions")
3522 (description
3523 "Provides functions which facilitate writing multi-file Emacs packages
3524 and running from the source tree without having to \"install\" code or fiddle
3525 with @{load-path}.
3526
3527 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3528 another (presumably currently running) Emacs Lisp file.")
3529 (license license:gpl3+)))
3530
3531 (define-public emacs-loc-changes
3532 (package
3533 (name "emacs-loc-changes")
3534 (version "1.2")
3535 (source
3536 (origin
3537 (method url-fetch)
3538 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3539 version ".el"))
3540 (sha256
3541 (base32
3542 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3543 (build-system emacs-build-system)
3544 (home-page "https://github.com/rocky/emacs-loc-changes")
3545 (synopsis "Keeps track of positions even after buffer changes")
3546 (description
3547 "This Emacs package provides a mean to track important buffer positions
3548 after buffer changes.")
3549 (license license:gpl3+)))
3550
3551 (define-public emacs-realgud
3552 (package
3553 (name "emacs-realgud")
3554 (version "1.4.5")
3555 (source
3556 (origin
3557 (method url-fetch)
3558 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3559 version ".tar"))
3560 (sha256
3561 (base32
3562 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))))
3563 (build-system emacs-build-system)
3564 (arguments
3565 `(#:tests? #t
3566 #:phases
3567 (modify-phases %standard-phases
3568 (add-after 'set-emacs-load-path 'fix-autogen-script
3569 (lambda _
3570 (substitute* "autogen.sh"
3571 (("./configure") "sh configure"))))
3572 (add-after 'fix-autogen-script 'autogen
3573 (lambda _
3574 (setenv "CONFIG_SHELL" "sh")
3575 (invoke "sh" "autogen.sh")))
3576 (add-after 'fix-autogen-script 'set-home
3577 (lambda _
3578 (setenv "HOME" (getenv "TMPDIR"))))
3579 (add-before 'patch-el-files 'remove-realgud-pkg.el
3580 (lambda _
3581 ;; XXX: This file is auto-generated at some point and causes
3582 ;; substitute* to crash during the `patch-el-files' phase with:
3583 ;; ERROR: In procedure stat: No such file or directory:
3584 ;; "./realgud-pkg.el"
3585 (delete-file "./realgud-pkg.el")
3586 ;; FIXME: `patch-el-files' crashes on this file with error:
3587 ;; unable to locate "bashdb".
3588 (delete-file "./test/test-regexp-bashdb.el"))))
3589 #:include (cons* ".*\\.el$" %default-include)))
3590 (native-inputs
3591 `(("autoconf" ,autoconf)
3592 ("automake" ,automake)
3593 ("emacs-test-simple" ,emacs-test-simple)))
3594 (propagated-inputs
3595 `(("emacs-load-relative" ,emacs-load-relative)
3596 ("emacs-loc-changes" ,emacs-loc-changes)))
3597 (home-page "https://github.com/realgud/realgud/")
3598 (synopsis
3599 "Modular front-end for interacting with external debuggers")
3600 (description
3601 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3602 with external debuggers. It integrates various debuggers such as gdb, pdb,
3603 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3604 sources. Unlike GUD, it also supports running multiple debug sessions in
3605 parallel.")
3606 (license license:gpl3+)))
3607
3608 (define-public emacs-request
3609 (package
3610 (name "emacs-request")
3611 (version "0.3.0")
3612 (source (origin
3613 (method git-fetch)
3614 (uri (git-reference
3615 (url "https://github.com/tkf/emacs-request.git")
3616 (commit (string-append "v" version))))
3617 (file-name (string-append name "-" version "-checkout"))
3618 (sha256
3619 (base32
3620 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3621 (build-system emacs-build-system)
3622 (propagated-inputs
3623 `(("emacs-deferred" ,emacs-deferred)))
3624 (home-page "https://github.com/tkf/emacs-request")
3625 (synopsis "Package for speaking HTTP in Emacs Lisp")
3626 (description "This package provides a HTTP request library with multiple
3627 backends. It supports url.el which is shipped with Emacs and the curl command
3628 line program.")
3629 (license license:gpl3+)))
3630
3631 (define-public emacs-rudel
3632 (package
3633 (name "emacs-rudel")
3634 (version "0.3.1")
3635 (source
3636 (origin
3637 (method url-fetch)
3638 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3639 version ".tar"))
3640 (sha256
3641 (base32
3642 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3643 (build-system emacs-build-system)
3644 (home-page "http://rudel.sourceforge.net/")
3645 (synopsis "Collaborative editing framework")
3646 (description
3647 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3648 is to share buffers with other users in order to edit the contents of those
3649 buffers collaboratively. Rudel supports multiple backends to enable
3650 communication with other collaborative editors using different protocols,
3651 though currently Obby (for use with the Gobby editor) is the only
3652 fully-functional one.")
3653 (license license:gpl3+)))
3654
3655 (define-public emacs-hydra
3656 (package
3657 (name "emacs-hydra")
3658 (version "0.14.0")
3659 (source
3660 (origin
3661 (method url-fetch)
3662 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
3663 version ".tar.gz"))
3664 (file-name (string-append name "-" version ".tar.gz"))
3665 (sha256
3666 (base32
3667 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8"))))
3668 (build-system emacs-build-system)
3669 (home-page "https://github.com/abo-abo/hydra")
3670 (synopsis "Make Emacs bindings that stick around")
3671 (description
3672 "This package can be used to tie related commands into a family of short
3673 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3674 the prefixed binding), all the heads can be called in succession with only a
3675 short extension. Any binding that isn't the Hydra's head vanquishes the
3676 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3677 serve its original purpose, calling the command assigned to it. This makes
3678 the Hydra very seamless; it's like a minor mode that disables itself
3679 automatically.")
3680 (license license:gpl3+)))
3681
3682 (define-public emacs-ivy
3683 (package
3684 (name "emacs-ivy")
3685 (version "0.10.0")
3686 (source
3687 (origin
3688 (method git-fetch)
3689 (uri (git-reference
3690 (url "https://github.com/abo-abo/swiper.git")
3691 (commit version)))
3692 (file-name (string-append name "-" version "-checkout"))
3693 (sha256
3694 (base32
3695 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
3696 (build-system emacs-build-system)
3697 (arguments
3698 `(#:phases
3699 (modify-phases %standard-phases
3700 (add-after 'install 'install-doc
3701 (lambda* (#:key outputs #:allow-other-keys)
3702 (let* ((out (assoc-ref outputs "out"))
3703 (info (string-append out "/share/info")))
3704 (with-directory-excursion "doc"
3705 (invoke "makeinfo" "ivy.texi")
3706 (install-file "ivy.info" info)
3707 #t)))))))
3708 (propagated-inputs
3709 `(("emacs-hydra" ,emacs-hydra)))
3710 (native-inputs
3711 `(("texinfo" ,texinfo)))
3712 (home-page "http://oremacs.com/swiper/")
3713 (synopsis "Incremental vertical completion for Emacs")
3714 (description
3715 "This package provides @code{ivy-read} as an alternative to
3716 @code{completing-read} and similar functions. No attempt is made to determine
3717 the best candidate. Instead, the user can navigate candidates with
3718 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3719 splitting the input text by spaces and re-building it into a regular
3720 expression.")
3721 (license license:gpl3+)))
3722
3723 (define-public emacs-ivy-yasnippet
3724 (let ((commit "59b32cf8cfb63df906822a17f6f5e8545dac38d4"))
3725 (package
3726 (name "emacs-ivy-yasnippet")
3727 (version (git-version "0.1" "1" commit))
3728 (source
3729 (origin
3730 (method git-fetch)
3731 (uri (git-reference
3732 (url "https://github.com/mkcms/ivy-yasnippet.git")
3733 (commit commit)))
3734 (file-name (git-file-name name version))
3735 (sha256
3736 (base32
3737 "0hghdlxkfwrglvc1nql2ikgp6jj0qdbfwc3yvpb19mrf26hwgp13"))))
3738 (build-system emacs-build-system)
3739 (propagated-inputs
3740 `(("emacs-ivy" ,emacs-ivy)
3741 ("emacs-yasnippet" ,emacs-yasnippet)
3742 ("emacs-dash" ,emacs-dash)))
3743 (home-page "https://github.com/mkcms/ivy-yasnippet")
3744 (synopsis "Preview @code{yasnippets} with @code{ivy}")
3745 (description "This package allows you to select @code{yasnippet}
3746 snippets using @code{ivy} completion. When current selection changes in the
3747 minibuffer, the snippet contents are temporarily expanded in the buffer. To
3748 use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
3749 @code{yas-minor-mode} first).")
3750 (license license:gpl3+))))
3751
3752 (define-public emacs-avy
3753 (package
3754 (name "emacs-avy")
3755 (version "0.4.0")
3756 (source
3757 (origin
3758 (method url-fetch)
3759 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3760 version ".tar.gz"))
3761 (file-name (string-append name "-" version ".tar.gz"))
3762 (sha256
3763 (base32
3764 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3765 (build-system emacs-build-system)
3766 (home-page "https://github.com/abo-abo/avy")
3767 (synopsis "Tree-based completion for Emacs")
3768 (description
3769 "This package provides a generic completion method based on building a
3770 balanced decision tree with each candidate being a leaf. To traverse the tree
3771 from the root to a desired leaf, typically a sequence of @code{read-key} can
3772 be used.
3773
3774 In order for @code{read-key} to make sense, the tree needs to be visualized
3775 appropriately, with a character at each branch node. So this completion
3776 method works only for things that you can see on your screen, all at once,
3777 such as the positions of characters, words, line beginnings, links, or
3778 windows.")
3779 (license license:gpl3+)))
3780
3781 (define-public emacs-ace-window
3782 (package
3783 (name "emacs-ace-window")
3784 (version "0.9.0")
3785 (source
3786 (origin
3787 (method url-fetch)
3788 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3789 version ".tar.gz"))
3790 (file-name (string-append name "-" version ".tar.gz"))
3791 (sha256
3792 (base32
3793 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3794 (build-system emacs-build-system)
3795 (propagated-inputs
3796 `(("emacs-avy" ,emacs-avy)))
3797 (home-page "https://github.com/abo-abo/ace-window")
3798 (synopsis "Quickly switch windows in Emacs")
3799 (description
3800 "@code{ace-window} is meant to replace @code{other-window}.
3801 In fact, when there are only two windows present, @code{other-window} is
3802 called. If there are more, each window will have its first character
3803 highlighted. Pressing that character will switch to that window.")
3804 (license license:gpl3+)))
3805
3806 (define-public emacs-iedit
3807 (package
3808 (name "emacs-iedit")
3809 (version "0.9.9.9")
3810 (source
3811 (origin
3812 (method url-fetch)
3813 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3814 version ".tar.gz"))
3815 (file-name (string-append name "-" version ".tar.gz"))
3816 (sha256
3817 (base32
3818 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3819 (build-system emacs-build-system)
3820 (home-page "http://www.emacswiki.org/emacs/Iedit")
3821 (synopsis "Edit multiple regions in the same way simultaneously")
3822 (description
3823 "This package is an Emacs minor mode and allows you to edit one
3824 occurrence of some text in a buffer (possibly narrowed) or region, and
3825 simultaneously have other occurrences edited in the same way.
3826
3827 You can also use Iedit mode as a quick way to temporarily show only the buffer
3828 lines that match the current text being edited. This gives you the effect of
3829 a temporary @code{keep-lines} or @code{occur}.")
3830 (license license:gpl3+)))
3831
3832 (define-public emacs-zoutline
3833 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
3834 (revision "0"))
3835 (package
3836 (name "emacs-zoutline")
3837 (version (git-version "0.1" revision commit))
3838 (home-page "https://github.com/abo-abo/zoutline")
3839 (source (origin
3840 (method git-fetch)
3841 (uri (git-reference (url home-page) (commit commit)))
3842 (sha256
3843 (base32
3844 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
3845 (file-name (git-file-name name version))))
3846 (build-system emacs-build-system)
3847 (synopsis "Simple outline library")
3848 (description
3849 "This library provides helpers for outlines. Outlines allow users to
3850 navigate code in a tree-like fashion.")
3851 (license license:gpl3+))))
3852
3853 (define-public emacs-lispy
3854 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
3855 ;; since.
3856 (let ((commit "c2a358a7a15fcf056a5b7461a8e690b481b03b80")
3857 (revision "0"))
3858 (package
3859 (name "emacs-lispy")
3860 (version (git-version "0.26.0" revision commit))
3861 (home-page "https://github.com/abo-abo/lispy")
3862 (source (origin
3863 (method git-fetch)
3864 (uri (git-reference (url home-page) (commit commit)))
3865 (sha256
3866 (base32
3867 "1g6756qqx2n4cx8jac6mlwayilsiyc5rz8nrqjnywvzc75xdinjd"))
3868 (file-name (git-file-name name version))))
3869 (build-system emacs-build-system)
3870 (propagated-inputs
3871 `(("emacs-ace-window" ,emacs-ace-window)
3872 ("emacs-iedit" ,emacs-iedit)
3873 ("emacs-ivy" ,emacs-ivy)
3874 ("emacs-hydra" ,emacs-hydra)
3875 ("emacs-zoutline" ,emacs-zoutline)))
3876 (synopsis "Modal S-expression editing")
3877 (description
3878 "Due to the structure of Lisp syntax it's very rare for the programmer
3879 to want to insert characters right before \"(\" or right after \")\". Thus
3880 unprefixed printable characters can be used to call commands when the point is
3881 at one of these special locations. Lispy provides unprefixed keybindings for
3882 S-expression editing when point is at the beginning or end of an
3883 S-expression.")
3884 (license license:gpl3+))))
3885
3886 (define-public emacs-lispyville
3887 ;; Later versions need a more recent Evil, with an evil-define-key*
3888 ;; supporting nil for the state.
3889 (let ((commit "b4291857ed6a49a67c4ea77522889ce51fb171ab")
3890 (revision "0"))
3891 (package
3892 (name "emacs-lispyville")
3893 (version (git-version "0.1" revision commit))
3894 (home-page "https://github.com/noctuid/lispyville")
3895 (source (origin
3896 (method git-fetch)
3897 (uri (git-reference (url home-page) (commit commit)))
3898 (sha256
3899 (base32
3900 "095zibzc3naknahdrnb59g9rbljy8wz9rkc7rf8avb3wxlwvxhm3"))
3901 (file-name (git-file-name name version))))
3902 (propagated-inputs
3903 `(("emacs-evil" ,emacs-evil)
3904 ("emacs-lispy" ,emacs-lispy)))
3905 (build-system emacs-build-system)
3906 (synopsis "Minor mode for integrating Evil with lispy")
3907 (description
3908 "LispyVille's main purpose is to provide a Lisp editing environment
3909 suited towards Evil users. It can serve as a minimal layer on top of lispy
3910 for better integration with Evil, but it does not require the use of lispy’s
3911 keybinding style. The provided commands allow for editing Lisp in normal
3912 state and will work even without lispy being enabled.")
3913 (license license:gpl3+))))
3914
3915 (define-public emacs-clojure-mode
3916 (package
3917 (name "emacs-clojure-mode")
3918 (version "5.6.1")
3919 (source (origin
3920 (method url-fetch)
3921 (uri (string-append
3922 "https://github.com/clojure-emacs/clojure-mode/archive/"
3923 version ".tar.gz"))
3924 (file-name (string-append name "-" version ".tar.gz"))
3925 (sha256
3926 (base32
3927 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
3928 (build-system emacs-build-system)
3929 (native-inputs
3930 `(("emacs-dash" ,emacs-dash)
3931 ("emacs-s" ,emacs-s)
3932 ("ert-runner" ,ert-runner)))
3933 (arguments
3934 `(#:tests? #t
3935 #:test-command '("ert-runner")))
3936 (home-page "https://github.com/clojure-emacs/clojure-mode")
3937 (synopsis "Major mode for Clojure code")
3938 (description
3939 "This Emacs package provides font-lock, indentation, navigation and basic
3940 refactoring for the @uref{http://clojure.org, Clojure programming language}.
3941 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
3942 (license license:gpl3+)))
3943
3944 (define-public emacs-epl
3945 (package
3946 (name "emacs-epl")
3947 (version "0.8")
3948 (source (origin
3949 (method url-fetch)
3950 (uri (string-append
3951 "https://github.com/cask/epl/archive/"
3952 version ".tar.gz"))
3953 (file-name (string-append name "-" version ".tar.gz"))
3954 (sha256
3955 (base32
3956 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
3957 (build-system emacs-build-system)
3958 (home-page "https://github.com/cask/epl")
3959 (synopsis "Emacs Package Library")
3960 (description
3961 "A package management library for Emacs, based on @code{package.el}.
3962
3963 The purpose of this library is to wrap all the quirks and hassle of
3964 @code{package.el} into a sane API.")
3965 (license license:gpl3+)))
3966
3967 (define-public emacs-queue
3968 (package
3969 (name "emacs-queue")
3970 (version "0.2")
3971 (source (origin
3972 (method url-fetch)
3973 (uri (string-append "https://elpa.gnu.org/packages/queue-"
3974 version ".el"))
3975 (sha256
3976 (base32
3977 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
3978 (build-system emacs-build-system)
3979 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
3980 (synopsis "Queue data structure for Emacs")
3981 (description
3982 "This Emacs library provides queue data structure. These queues can be
3983 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
3984 stack, i.e. elements can be added to the front or back of the queue, and can
3985 be removed from the front. This type of data structure is sometimes called an
3986 \"output-restricted deque\".")
3987 (license license:gpl3+)))
3988
3989 (define-public emacs-pkg-info
3990 (package
3991 (name "emacs-pkg-info")
3992 (version "0.6")
3993 (source (origin
3994 (method url-fetch)
3995 (uri (string-append
3996 "https://github.com/lunaryorn/pkg-info.el/archive/"
3997 version ".tar.gz"))
3998 (file-name (string-append name "-" version ".tar.gz"))
3999 (sha256
4000 (base32
4001 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
4002 (build-system emacs-build-system)
4003 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4004 (home-page "https://github.com/lunaryorn/pkg-info.el")
4005 (synopsis "Information about Emacs packages")
4006 (description
4007 "This library extracts information from the installed Emacs packages.")
4008 (license license:gpl3+)))
4009
4010 (define-public emacs-spinner
4011 (package
4012 (name "emacs-spinner")
4013 (version "1.7.3")
4014 (source (origin
4015 (method url-fetch)
4016 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
4017 version ".el"))
4018 (sha256
4019 (base32
4020 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
4021 (build-system emacs-build-system)
4022 (home-page "https://github.com/Malabarba/spinner.el")
4023 (synopsis "Emacs mode-line spinner for operations in progress")
4024 (description
4025 "This Emacs package adds spinners and progress-bars to the mode-line for
4026 ongoing operations.")
4027 (license license:gpl3+)))
4028
4029 (define-public emacs-sparql-mode
4030 (package
4031 (name "emacs-sparql-mode")
4032 (version "2.0.1")
4033 (source (origin
4034 (method url-fetch)
4035 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
4036 "v" version ".tar.gz"))
4037 (file-name (string-append name "-" version ".tar.gz"))
4038 (sha256
4039 (base32
4040 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
4041 (build-system emacs-build-system)
4042 (home-page "https://github.com/ljos/sparql-mode")
4043 (synopsis "SPARQL mode for Emacs")
4044 (description "This package provides a major mode for Emacs that provides
4045 syntax highlighting for SPARQL. It also provides a way to execute queries
4046 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4047 possible to query other endpoints like DBPedia.")
4048 (license license:gpl3+)))
4049
4050 (define-public emacs-better-defaults
4051 (package
4052 (name "emacs-better-defaults")
4053 (version "0.1.3")
4054 (source
4055 (origin
4056 (method url-fetch)
4057 (uri (string-append "https://github.com/technomancy/better-defaults"
4058 "/archive/" version ".tar.gz"))
4059 (file-name (string-append name "-" version ".tar.gz"))
4060 (sha256
4061 (base32
4062 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4063 (build-system emacs-build-system)
4064 (home-page "https://github.com/technomancy/better-defaults")
4065 (synopsis "Better defaults for Emacs")
4066 (description
4067 "Better defaults attempts to address the most obvious deficiencies of the
4068 Emacs default configuration in uncontroversial ways that nearly everyone can
4069 agree upon.")
4070 (license license:gpl3+)))
4071
4072 (define-public emacs-eprime
4073 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4074 (package
4075 (name "emacs-eprime")
4076 (version (string-append "20140513-" (string-take commit 7)))
4077 (source (origin
4078 (method url-fetch)
4079 (uri (string-append "https://raw.githubusercontent.com"
4080 "/AndrewHynes/eprime-mode/"
4081 commit "/eprime-mode.el"))
4082 (file-name (string-append "eprime-" version ".el"))
4083 (sha256
4084 (base32
4085 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4086 (build-system emacs-build-system)
4087 (home-page "https://github.com/AndrewHynes/eprime-mode")
4088 (synopsis "E-prime checking mode for Emacs")
4089 (description "This package provides an E-prime checking mode for Emacs
4090 that highlights non-conforming text. The subset of the English language called
4091 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4092 (license license:gpl3+))))
4093
4094 (define-public emacs-julia-mode
4095 ;; XXX: Upstream version remained stuck at 0.3. See
4096 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4097 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4098 (revision "1"))
4099 (package
4100 (name "emacs-julia-mode")
4101 (version (string-append "0.3-" revision "." (string-take commit 8)))
4102 (source
4103 (origin
4104 (method git-fetch)
4105 (uri (git-reference
4106 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4107 (commit commit)))
4108 (file-name (string-append name "-" version "-checkout"))
4109 (sha256
4110 (base32
4111 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4112 (build-system emacs-build-system)
4113 (arguments
4114 `(#:tests? #t
4115 #:test-command '("emacs" "--batch"
4116 "-l" "julia-mode-tests.el"
4117 "-f" "ert-run-tests-batch-and-exit")))
4118 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4119 (synopsis "Major mode for Julia")
4120 (description "This Emacs package provides a mode for the Julia
4121 programming language.")
4122 (license license:expat))))
4123
4124 (define-public emacs-ess
4125 (package
4126 (name "emacs-ess")
4127 (version "17.11")
4128 (source (origin
4129 (method url-fetch)
4130 (uri (string-append "https://github.com/emacs-ess/ESS/archive/v"
4131 version ".tar.gz"))
4132 (sha256
4133 (base32
4134 "0cbilbsiwvcyf6d5y24mymp57m3ana5dkzab3knfs83w4a3a4c5c"))
4135 (file-name (string-append name "-" version ".tar.gz"))
4136 (modules '((guix build utils)))
4137 (snippet
4138 '(begin
4139 ;; Stop ESS from trying to bundle an external julia-mode.el.
4140 (substitute* "lisp/Makefile"
4141 (("^\tjulia-mode.elc\\\\\n") "")
4142 (("^dist: all julia-mode.el")
4143 "dist: all"))
4144 ;; No need to build docs in so many formats. Also, skipping
4145 ;; pdf lets us not pull in texlive.
4146 (substitute* "doc/Makefile"
4147 (("all : info text html pdf")
4148 "all : info")
4149 (("install: install-info install-other-docs")
4150 "install: install-info"))
4151 ;; Test fails upstream
4152 (substitute* "test/ess-r-tests.el"
4153 (("ert-deftest ess-r-namespaced-eval-no-srcref-in-errors ()")
4154 "ert-deftest ess-r-namespaced-eval-no-srcref-in-errors () :expected-result :failed"))
4155 #t))))
4156 (build-system gnu-build-system)
4157 (arguments
4158 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
4159 `(#:make-flags (list (string-append "PREFIX=" %output)
4160 (string-append "ETCDIR=" %output "/"
4161 ,base-directory "/etc")
4162 (string-append "LISPDIR=" %output "/"
4163 ,base-directory))
4164 #:phases
4165 (modify-phases %standard-phases
4166 (delete 'configure)
4167 (add-before 'build 'more-shebang-patching
4168 (lambda* (#:key inputs #:allow-other-keys)
4169 (substitute* "Makeconf"
4170 (("SHELL = /bin/sh")
4171 (string-append "SHELL = " (which "sh"))))
4172 #t))
4173 (replace 'check
4174 (lambda _
4175 (invoke "make" "test")))))))
4176 (inputs
4177 `(("emacs" ,emacs-minimal)
4178 ("r-minimal" ,r-minimal)))
4179 (native-inputs
4180 `(("perl" ,perl)
4181 ("texinfo" ,texinfo)))
4182 (propagated-inputs
4183 `(("emacs-julia-mode" ,emacs-julia-mode)))
4184 (home-page "https://ess.r-project.org/")
4185 (synopsis "Emacs mode for statistical analysis programs")
4186 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
4187 Emacs. It is designed to support editing of scripts and interaction with
4188 various statistical analysis programs such as R, Julia, and JAGS.")
4189 (license license:gpl2+)))
4190
4191 (define-public emacs-smex
4192 (package
4193 (name "emacs-smex")
4194 (version "3.0")
4195 (source (origin
4196 (method url-fetch)
4197 (uri (string-append "https://raw.githubusercontent.com"
4198 "/nonsequitur/smex/" version "/smex.el"))
4199 (file-name (string-append "smex-" version ".el"))
4200 (sha256
4201 (base32
4202 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4203 (build-system emacs-build-system)
4204 (home-page "https://github.com/nonsequitur/smex/")
4205 (synopsis "M-x interface with Ido-style fuzzy matching")
4206 (description
4207 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4208 convenient interface to your recently and most frequently used commands. And
4209 to all the other commands, too.")
4210 (license license:gpl3+)))
4211
4212 (define-public emacs-js2-mode
4213 (package
4214 (name "emacs-js2-mode")
4215 (version "20150909")
4216 (source (origin
4217 (method url-fetch)
4218 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
4219 version ".tar.gz"))
4220 (file-name (string-append name "-" version ".tar.gz"))
4221 (sha256
4222 (base32
4223 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
4224 (build-system emacs-build-system)
4225 (home-page "https://github.com/mooz/js2-mode/")
4226 (synopsis "Improved JavaScript editing mode for Emacs")
4227 (description
4228 "Js2-mode provides a JavaScript major mode for Emacs that is more
4229 advanced than the built-in javascript-mode. Features include accurate syntax
4230 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4231 errors and strict-mode warnings, smart line-wrapping within comments and
4232 strings, and code folding.")
4233 (license license:gpl3+)))
4234
4235 (define-public emacs-nodejs-repl
4236 (package
4237 (name "emacs-nodejs-repl")
4238 (version "0.1.6")
4239 (source (origin
4240 (method url-fetch)
4241 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4242 "/archive/" version ".tar.gz"))
4243 (sha256
4244 (base32
4245 "0sphg1jxi3a5l0gqdp27d0qgyjaiq2p293av9zm8ksm0vwqp3fr9"))
4246 (file-name (string-append name "-" version ".tar.gz"))))
4247 (build-system emacs-build-system)
4248 (home-page "https://github.com/abicky/nodejs-repl.el")
4249 (synopsis "Node.js REPL inside Emacs")
4250 (description
4251 "This program is derived from comint-mode and provides the following
4252 features:
4253
4254 @itemize
4255 @item TAB completion same as Node.js REPL
4256 @item file name completion in string
4257 @item incremental history search
4258 @end itemize")
4259 (license license:gpl3+)))
4260
4261 (define-public emacs-typescript-mode
4262 (package
4263 (name "emacs-typescript-mode")
4264 (version "0.3")
4265 (source (origin
4266 (method url-fetch)
4267 (uri (string-append
4268 "https://github.com/ananthakumaran/typescript.el"
4269 "/archive/v" version ".tar.gz"))
4270 (sha256
4271 (base32
4272 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4273 (file-name (string-append name "-" version ".tar.gz"))))
4274 (build-system emacs-build-system)
4275 (home-page "https://github.com/ananthakumaran/typescript.el")
4276 (synopsis "Emacs major mode for editing Typescript code")
4277 (description
4278 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4279 This is much more robust and works with @code{cc-mode}'s comment
4280 filling (mostly). The modifications to the original @code{javascript.el} mode
4281 mainly consisted in replacing \"javascript\" with \"typescript\"
4282
4283 The main features of this Typescript mode are syntactic highlighting (enabled
4284 with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4285 indentation and filling of comments and C preprocessor fontification.")
4286 (license license:gpl3+)))
4287
4288 (define-public emacs-tide
4289 (package
4290 (name "emacs-tide")
4291 (version "2.8.3.1")
4292 (source (origin
4293 (method url-fetch)
4294 (uri (string-append "https://github.com/ananthakumaran/tide"
4295 "/archive/v" version ".tar.gz"))
4296 (sha256
4297 (base32
4298 "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
4299 (file-name (string-append name "-" version ".tar.gz"))))
4300 (build-system emacs-build-system)
4301 (propagated-inputs
4302 `(("emacs-dash" ,emacs-dash)
4303 ("emacs-s" ,emacs-s)
4304 ("emacs-flycheck" ,flycheck)
4305 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4306 (home-page "https://github.com/ananthakumaran/tide")
4307 (synopsis "Typescript IDE for Emacs")
4308 (description
4309 "Tide is an Interactive Development Environment (IDE) for Emacs which
4310 provides the following features:
4311
4312 @itemize
4313 @item ElDoc
4314 @item Auto complete
4315 @item Flycheck
4316 @item Jump to definition, Jump to type definition
4317 @item Find occurrences
4318 @item Rename symbol
4319 @item Imenu
4320 @item Compile On Save
4321 @item Highlight Identifiers
4322 @item Code Fixes
4323 @item Code Refactor
4324 @item Organize Imports
4325 @end itemize")
4326 (license license:gpl3+)))
4327
4328 (define-public emacs-markdown-mode
4329 (package
4330 (name "emacs-markdown-mode")
4331 (version "2.3")
4332 (source (origin
4333 (method url-fetch)
4334 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4335 "/markdown-mode/v" version
4336 "/markdown-mode.el"))
4337 (file-name (string-append "markdown-mode-" version ".el"))
4338 (sha256
4339 (base32
4340 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4341 (build-system emacs-build-system)
4342 (home-page "http://jblevins.org/projects/markdown-mode/")
4343 (synopsis "Emacs Major mode for Markdown files")
4344 (description
4345 "Markdown-mode is a major mode for editing Markdown-formatted text files
4346 in Emacs.")
4347 (license license:gpl3+)))
4348
4349 (define-public emacs-edit-indirect
4350 (package
4351 (name "emacs-edit-indirect")
4352 (version "0.1.4")
4353 (source
4354 (origin
4355 (method url-fetch)
4356 (uri (string-append "https://github.com/Fanael/edit-indirect/archive/"
4357 version ".tar.gz"))
4358 (file-name (string-append name "-" version ".tar.gz"))
4359 (sha256
4360 (base32
4361 "07kr58rd1p5j764wminsssazr73hy51yw8iqcsv5z2dwgj7msv71"))))
4362 (build-system emacs-build-system)
4363 (home-page "https://github.com/Fanael/edit-indirect")
4364 (synopsis "Edit regions in separate buffers")
4365 (description "This package allows you to edit regions in separate buffers,
4366 like @code{org-edit-src-code} but for arbitrary regions.")
4367 (license license:gpl3+)))
4368
4369 (define-public emacs-projectile
4370 (package
4371 (name "emacs-projectile")
4372 (version "0.14.0")
4373 (source (origin
4374 (method url-fetch)
4375 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4376 "/projectile/v" version "/projectile.el"))
4377 (file-name (string-append "projectile-" version ".el"))
4378 (sha256
4379 (base32
4380 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
4381 (build-system emacs-build-system)
4382 (propagated-inputs
4383 `(("emacs-dash" ,emacs-dash)
4384 ("emacs-pkg-info" ,emacs-pkg-info)))
4385 (home-page "https://github.com/bbatsov/projectile")
4386 (synopsis "Manage and navigate projects in Emacs easily")
4387 (description
4388 "This library provides easy project management and navigation. The
4389 concept of a project is pretty basic - just a folder containing special file.
4390 Currently git, mercurial and bazaar repos are considered projects by default.
4391 If you want to mark a folder manually as a project just create an empty
4392 .projectile file in it.")
4393 (license license:gpl3+)))
4394
4395 (define-public emacs-elfeed
4396 (package
4397 (name "emacs-elfeed")
4398 (version "3.0.0")
4399 (source (origin
4400 (method url-fetch)
4401 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4402 version ".tar.gz"))
4403 (file-name (string-append name "-" version ".tar.gz"))
4404 (sha256
4405 (base32
4406 "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
4407 (build-system emacs-build-system)
4408 (arguments
4409 `(#:tests? #t
4410 #:test-command '("make" "test")))
4411 (home-page "https://github.com/skeeto/elfeed")
4412 (synopsis "Atom/RSS feed reader for Emacs")
4413 (description
4414 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4415 and RSS, with a user interface inspired by notmuch.")
4416 (license license:gpl3+)))
4417
4418 (define-public emacs-rainbow-delimiters
4419 (package
4420 (name "emacs-rainbow-delimiters")
4421 (version "2.1.3")
4422 (source (origin
4423 (method url-fetch)
4424 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4425 "/rainbow-delimiters/" version
4426 "/rainbow-delimiters.el"))
4427 (file-name (string-append "rainbow-delimiters-" version ".el"))
4428 (sha256
4429 (base32
4430 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4431 (build-system emacs-build-system)
4432 (home-page "https://github.com/Fanael/rainbow-delimiters")
4433 (synopsis "Highlight brackets according to their depth")
4434 (description
4435 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4436 highlights parentheses, brackets, and braces according to their depth. Each
4437 successive level is highlighted in a different color, making it easy to spot
4438 matching delimiters, orient yourself in the code, and tell which statements
4439 are at a given level.")
4440 (license license:gpl3+)))
4441
4442 (define-public emacs-rainbow-identifiers
4443 (package
4444 (name "emacs-rainbow-identifiers")
4445 (version "0.2.2")
4446 (source (origin
4447 (method url-fetch)
4448 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4449 "/rainbow-identifiers/" version
4450 "/rainbow-identifiers.el"))
4451 (file-name (string-append "rainbow-identifiers-" version ".el"))
4452 (sha256
4453 (base32
4454 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4455 (build-system emacs-build-system)
4456 (home-page "https://github.com/Fanael/rainbow-identifiers")
4457 (synopsis "Highlight identifiers in source code")
4458 (description
4459 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4460 identifiers based on their names. Each identifier gets a color based on a hash
4461 of its name.")
4462 (license license:bsd-2)))
4463
4464 (define-public emacs-rainbow-mode
4465 (package
4466 (name "emacs-rainbow-mode")
4467 (version "0.13")
4468 (source (origin
4469 (method url-fetch)
4470 (uri (string-append
4471 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4472 (sha256
4473 (base32
4474 "1d3aamx6qgqqpqijwsr02ggwrh67gfink1bir0692alfkm3zdddl"))))
4475 (build-system emacs-build-system)
4476 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4477 (synopsis "Colorize color names in buffers")
4478 (description
4479 "This minor mode sets background color to strings that match color
4480 names, e.g. #0000ff is displayed in white with a blue background.")
4481 (license license:gpl3+)))
4482
4483 (define-public emacs-visual-fill-column
4484 (package
4485 (name "emacs-visual-fill-column")
4486 (version "1.11")
4487 (source (origin
4488 (method url-fetch)
4489 (uri (string-append "https://codeload.github.com/joostkremers/"
4490 "visual-fill-column/tar.gz/" version))
4491 (file-name (string-append name "-" version ".tar.gz"))
4492 (sha256
4493 (base32
4494 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4495 (build-system emacs-build-system)
4496 (home-page "https://github.com/joostkremers/visual-fill-column")
4497 (synopsis "Fill-column for visual-line-mode")
4498 (description
4499 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4500 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4501 wrapping lines at the window edge, which is the standard behaviour of
4502 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4503 @code{fill-column} is too large for the window, the text is wrapped at the
4504 window edge.")
4505 (license license:gpl3+)))
4506
4507 (define-public emacs-writeroom
4508 (package
4509 (name "emacs-writeroom")
4510 (version "3.7")
4511 (source (origin
4512 (method url-fetch)
4513 (uri (string-append
4514 "https://github.com/joostkremers/writeroom-mode/archive/"
4515 version ".tar.gz"))
4516 (file-name (string-append name "-" version ".tar.gz"))
4517 (sha256
4518 (base32
4519 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4520 (build-system emacs-build-system)
4521 (propagated-inputs
4522 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4523 (home-page "https://github.com/joostkremers/writeroom-mode")
4524 (synopsis "Distraction-free writing for Emacs")
4525 (description
4526 "This package defines a minor mode for distraction-free writing. Some of
4527 the default effects include entering fullscreen, deleting other windows of the
4528 current frame, disabling the mode line, and adding margins to the buffer that
4529 restrict the text width to 80 characters.")
4530 (license license:bsd-3)))
4531
4532 (define-public emacs-ido-completing-read+
4533 (package
4534 (name "emacs-ido-completing-read+")
4535 (version "3.12")
4536 (source (origin
4537 (method url-fetch)
4538 (uri (string-append "https://raw.githubusercontent.com"
4539 "/DarwinAwardWinner/ido-ubiquitous/v"
4540 version "/ido-completing-read+.el"))
4541 (file-name (string-append "ido-completing-read+-" version ".el"))
4542 (sha256
4543 (base32
4544 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4545 (build-system emacs-build-system)
4546 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4547 (synopsis "Replacement for completing-read using ido")
4548 (description
4549 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4550 Importantly, it detects edge cases that ordinary ido cannot handle and either
4551 adjusts them so ido can handle them, or else simply falls back to the standard
4552 Emacs completion function instead.")
4553 (license license:gpl3+)))
4554
4555 (define-public emacs-ido-ubiquitous
4556 (package
4557 (name "emacs-ido-ubiquitous")
4558 (version "3.12")
4559 (source (origin
4560 (method url-fetch)
4561 (uri (string-append "https://raw.githubusercontent.com"
4562 "/DarwinAwardWinner/ido-ubiquitous/v"
4563 version "/ido-ubiquitous.el"))
4564 (file-name (string-append "ido-ubiquitous-" version ".el"))
4565 (sha256
4566 (base32
4567 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4568 (build-system emacs-build-system)
4569 (propagated-inputs
4570 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4571 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4572 (synopsis "Use ido (nearly) everywhere")
4573 (description
4574 "Ido-ubiquitous enables ido-style completion for almost every function
4575 that uses the standard completion function completing-read.")
4576 (license license:gpl3+)))
4577
4578 (define-public emacs-yaml-mode
4579 (package
4580 (name "emacs-yaml-mode")
4581 (version "0.0.13")
4582 (source (origin
4583 (method url-fetch)
4584 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4585 "/yaml-mode/v" version "/yaml-mode.el"))
4586 (file-name (string-append "yaml-mode-" version ".el"))
4587 (sha256
4588 (base32
4589 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4590 (build-system emacs-build-system)
4591 (home-page "https://github.com/yoshiki/yaml-mode")
4592 (synopsis "Major mode for editing YAML files")
4593 (description
4594 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4595 serialization format. It was initially developed by Yoshiki Kurihara and many
4596 features were added by Marshall Vandegrift. As YAML and Python share the fact
4597 that indentation determines structure, this mode provides indentation and
4598 indentation command behavior very similar to that of python-mode.")
4599 (license license:gpl3+)))
4600
4601 (define-public emacs-web-mode
4602 (package
4603 (name "emacs-web-mode")
4604 (version "16")
4605 (source (origin
4606 (method url-fetch)
4607 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4608 "/web-mode/v" version "/web-mode.el"))
4609 (file-name (string-append "web-mode-" version ".el"))
4610 (sha256
4611 (base32
4612 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
4613 (build-system emacs-build-system)
4614 (synopsis "Major mode for editing web templates")
4615 (description "Web-mode is an Emacs major mode for editing web templates
4616 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4617 client/server side engines). Web-mode is compatible with many template
4618 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4619 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4620 Dust.js, React/JSX, Angularjs, ejs, etc.")
4621 (home-page "http://web-mode.org/")
4622 (license license:gpl3+)))
4623
4624 (define-public emacs-wgrep
4625 (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
4626 ;; Late commit fixes compatibility issue with Emacs 26+.
4627 (package
4628 (name "emacs-wgrep")
4629 (version (git-version "2.1.10" "1" commit))
4630 (source (origin
4631 (method git-fetch)
4632 (uri (git-reference
4633 (url "https://github.com/mhayashi1120/Emacs-wgrep")
4634 (commit commit)))
4635 (file-name (git-file-name name version))
4636 (sha256
4637 (base32
4638 "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
4639 (build-system emacs-build-system)
4640 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4641 (synopsis "Edit a grep buffer and apply those changes to the files")
4642 (description
4643 "Emacs wgrep allows you to edit a grep buffer and apply those changes
4644 to the file buffer. Several backends are supported beside the classic grep:
4645 ack, ag, helm and pt.")
4646 (license license:gpl3+))))
4647
4648 (define-public emacs-helm
4649 (package
4650 (name "emacs-helm")
4651 (version "2.9.6")
4652 (source (origin
4653 (method url-fetch)
4654 (uri (string-append
4655 "https://github.com/" name "/helm/archive/v"
4656 version ".tar.gz"))
4657 (file-name (string-append name "-" version ".tar.gz"))
4658 (sha256
4659 (base32
4660 "1f7m09i8gr0gk5nw5dn7rpdz20dg3hl4p77dpygkhl82yhk9q2ql"))))
4661 (build-system emacs-build-system)
4662 (propagated-inputs
4663 `(("emacs-async" ,emacs-async)
4664 ("emacs-popup" ,emacs-popup)))
4665 (home-page "https://emacs-helm.github.io/helm/")
4666 (synopsis "Incremental completion and selection narrowing
4667 framework for Emacs")
4668 (description "Helm is incremental completion and selection narrowing
4669 framework for Emacs. It will help steer you in the right direction when
4670 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4671 of @code{anything.el} originally written by Tamas Patrovic and can be
4672 considered to be its successor. Helm sets out to clean up the legacy code in
4673 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4674 not tied in the trap of backward compatibility.")
4675 (license license:gpl3+)))
4676
4677 (define-public emacs-helm-swoop
4678 (package
4679 (name "emacs-helm-swoop")
4680 (version "1.7.4")
4681 (source (origin
4682 (method url-fetch)
4683 (uri (string-append
4684 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4685 version
4686 ".tar.gz"))
4687 (file-name (string-append name "-" version ".tar.gz"))
4688 (sha256
4689 (base32
4690 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4691 (build-system emacs-build-system)
4692 (propagated-inputs
4693 `(("emacs-helm" ,emacs-helm)))
4694 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4695 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4696 (description
4697 "This package builds on the Helm interface to provide several commands
4698 for search-based navigation of buffers.")
4699 (license license:gpl2+)))
4700
4701 (define-public emacs-helm-projectile
4702 (package
4703 (name "emacs-helm-projectile")
4704 (version "0.14.0")
4705 (source (origin
4706 (method url-fetch)
4707 (uri (string-append
4708 "https://github.com/bbatsov/helm-projectile/archive/v"
4709 version
4710 ".tar.gz"))
4711 (file-name (string-append name "-" version ".tar.gz"))
4712 (sha256
4713 (base32
4714 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
4715 (build-system emacs-build-system)
4716 (propagated-inputs
4717 `(("emacs-dash" ,emacs-dash)
4718 ("emacs-helm" ,emacs-helm)
4719 ("emacs-projectile" ,emacs-projectile)))
4720 (home-page "https://github.com/bbatsov/helm-projectile")
4721 (synopsis "Helm integration for Projectile")
4722 (description
4723 "This Emacs library provides a Helm interface for Projectile.")
4724 (license license:gpl3+)))
4725
4726 (define-public emacs-helm-make
4727 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
4728 (revision "1"))
4729 (package
4730 (name "emacs-helm-make")
4731 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
4732 (source
4733 (origin
4734 (method git-fetch)
4735 (uri (git-reference
4736 (url "https://github.com/abo-abo/helm-make.git")
4737 (commit commit)))
4738 (file-name (string-append name "-" version "-checkout"))
4739 (sha256
4740 (base32
4741 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
4742 (build-system emacs-build-system)
4743 (propagated-inputs
4744 `(("emacs-helm" ,emacs-helm)
4745 ("emacs-projectile" ,emacs-projectile)))
4746 (home-page "https://github.com/abo-abo/helm-make")
4747 (synopsis "Select a Makefile target with helm")
4748 (description "@code{helm-make} or @code{helm-make-projectile} will give
4749 you a @code{helm} selection of directory Makefile's targets. Selecting a
4750 target will call @code{compile} on it.")
4751 (license license:gpl3+))))
4752
4753 (define-public emacs-cider
4754 (package
4755 (name "emacs-cider")
4756 (version "0.15.1")
4757 (source (origin
4758 (method url-fetch)
4759 (uri (string-append
4760 "https://github.com/clojure-emacs/cider/archive/v"
4761 version ".tar.gz"))
4762 (file-name (string-append name "-" version ".tar.gz"))
4763 (sha256
4764 (base32
4765 "1j5hlmi14ypszv1f9nvq0jjlz7i742flg0ny3055l7i4x089xx6g"))))
4766 (build-system emacs-build-system)
4767 (arguments
4768 '(#:exclude ; Don't exclude 'cider-test.el'.
4769 '("^\\.dir-locals\\.el$" "^test/")))
4770 (propagated-inputs
4771 `(("emacs-clojure-mode" ,emacs-clojure-mode)
4772 ("emacs-spinner" ,emacs-spinner)
4773 ("emacs-pkg-info" ,emacs-pkg-info)
4774 ("emacs-queue" ,emacs-queue)))
4775 (home-page "https://cider.readthedocs.org/")
4776 (synopsis "Clojure development environment for Emacs")
4777 (description
4778 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
4779 provide an interactive development experience similar to the one you'd get
4780 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
4781 Geiser) and Smalltalk.
4782
4783 CIDER is the successor to the now deprecated combination of using SLIME +
4784 swank-clojure for Clojure development.
4785
4786 There are plenty of differences between CIDER and SLIME, but the core ideas
4787 are pretty much the same (and SLIME served as the principle inspiration for
4788 CIDER).")
4789 (license license:gpl3+)))
4790
4791 ;; There hasn't been a tag or release since 2015, so we take the latest
4792 ;; commit.
4793 (define-public emacs-sly
4794 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
4795 (revision "1"))
4796 (package
4797 (name "emacs-sly")
4798 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
4799 (source
4800 (origin
4801 (method git-fetch)
4802 (uri (git-reference
4803 (url "https://github.com/joaotavora/sly.git")
4804 (commit commit)))
4805 (file-name (git-file-name name version))
4806 (sha256
4807 (base32
4808 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
4809 (build-system emacs-build-system)
4810 (arguments
4811 `(#:include (cons "^lib\\/" %default-include)
4812 #:phases
4813 ;; The package provides autoloads.
4814 (modify-phases %standard-phases
4815 (delete 'make-autoloads))))
4816 (home-page "https://github.com/joaotavora/sly")
4817 (synopsis "Sylvester the Cat's Common Lisp IDE")
4818 (description
4819 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
4820 contains the following improvements over it:
4821
4822 @enumerate
4823 @item Completely redesigned REPL based on Emacs's own full-featured
4824 @code{comint.el}
4825 @item Live code annotations via a new @code{sly-stickers} contrib
4826 @item Consistent interactive button interface. Everything can be copied to
4827 the REPL.
4828 @item Multiple inspectors with independent history
4829 @item Regexp-capable @code{M-x sly-apropos}
4830 @item Contribs are first class SLY citizens and enabled by default
4831 @item Use ASDF to loads contribs on demand.
4832 @end enumerate
4833
4834 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
4835 xref, etc...) are still available, but with better integration.")
4836 (license license:gpl3+))))
4837
4838 (define-public emacs-lua-mode
4839 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
4840 (revision "1"))
4841 (package
4842 (name "emacs-lua-mode")
4843 (version (string-append "20151025." revision "-" (string-take commit 9)))
4844 (home-page "https://github.com/immerrr/lua-mode/")
4845 (source (origin
4846 (method git-fetch)
4847 (uri (git-reference
4848 (url home-page)
4849 (commit commit)))
4850 (file-name (string-append name "-" version ".checkout"))
4851 (sha256
4852 (base32
4853 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
4854 (build-system emacs-build-system)
4855 (synopsis "Major mode for lua")
4856 (description
4857 "This Emacs package provides a mode for @uref{https://www.lua.org/,
4858 Lua programing language}.")
4859 (license license:gpl2+))))
4860
4861 (define-public emacs-ebuild-mode
4862 (package
4863 (name "emacs-ebuild-mode")
4864 (version "1.37")
4865 (source (origin
4866 (method url-fetch)
4867 (uri (string-append
4868 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
4869 "-" version ".tar.xz"))
4870 (file-name (string-append name "-" version ".tar.xz"))
4871 (sha256
4872 (base32
4873 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
4874 (build-system emacs-build-system)
4875 (home-page "https://devmanual.gentoo.org")
4876 (synopsis "Major modes for Gentoo package files")
4877 (description
4878 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
4879 news items, openrc and runscripts.")
4880 (license license:gpl2+)))
4881
4882 (define-public emacs-evil
4883 (let ((commit "230b87212c81aaa68ef5547a6b998d9c365fe139"))
4884 (package
4885 (name "emacs-evil")
4886 (version (git-version "1.2.13" "1" commit))
4887 (source
4888 (origin
4889 (method git-fetch)
4890 (uri (git-reference
4891 (url "https://github.com/emacs-evil/evil")
4892 (commit commit)))
4893 (file-name (string-append name "-" version "-checkout"))
4894 (sha256
4895 (base32
4896 "0c9zy3bpck10gcrv79kd3h7i4ygd5bgbgy773n0lg7a2r5kwn1gx"))))
4897 (build-system emacs-build-system)
4898 (propagated-inputs
4899 `(("emacs-undo-tree" ,emacs-undo-tree)
4900 ("emacs-goto-chg" ,emacs-goto-chg)))
4901 (home-page "https://github.com/emacs-evil/evil")
4902 (synopsis "Extensible Vi layer for Emacs")
4903 (description
4904 "Evil is an extensible vi layer for Emacs. It emulates the
4905 main features of Vim, and provides facilities for writing custom
4906 extensions.")
4907 (license license:gpl3+))))
4908
4909 (define-public emacs-evil-collection
4910 (let ((commit "5d739f58118a5a316c4fe25adb4e13ccea3fdc10")
4911 (revision "2"))
4912 (package
4913 (name "emacs-evil-collection")
4914 (version (git-version "20180721" revision commit))
4915 (source (origin
4916 (method git-fetch)
4917 (uri (git-reference
4918 (url "https://github.com/emacs-evil/evil-collection")
4919 (commit commit)))
4920 (file-name (string-append name "-" version "-checkout"))
4921 (sha256
4922 (base32
4923 "05p612qncd0cp5q61hq2ag1k558vhb10049xrc88n9l6qwz9bpk3"))))
4924 (build-system emacs-build-system)
4925 (propagated-inputs
4926 `(("emacs-evil" ,emacs-evil)))
4927 (home-page "https://github.com/emacs-evil/evil-collection")
4928 (synopsis "Collection of Evil bindings for many major and minor modes")
4929 (description "This is a collection of Evil bindings for the parts of
4930 Emacs that Evil does not cover properly by default, such as @code{help-mode},
4931 @code{M-x calendar}, Eshell and more.")
4932 (license license:gpl3+))))
4933
4934 (define-public emacs-goto-chg
4935 (package
4936 (name "emacs-goto-chg")
4937 (version "1.6")
4938 (source
4939 (origin
4940 (method url-fetch)
4941 ;; There is no versioned source.
4942 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
4943 (file-name (string-append "goto-chg-" version ".el"))
4944 (sha256
4945 (base32
4946 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
4947 (build-system emacs-build-system)
4948 ;; There is no other home page.
4949 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
4950 (synopsis "Go to the last change in the Emacs buffer")
4951 (description
4952 "This package provides @code{M-x goto-last-change} command that goes to
4953 the point of the most recent edit in the current Emacs buffer. When repeated,
4954 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
4955 used for reverse direction.")
4956 (license license:gpl2+)))
4957
4958 (define-public emacs-monroe
4959 (package
4960 (name "emacs-monroe")
4961 (version "0.3.1")
4962 (source
4963 (origin
4964 (method url-fetch)
4965 (uri (string-append "https://github.com/sanel/monroe/archive/"
4966 version ".tar.gz"))
4967 (file-name (string-append name "-" version ".tar.gz"))
4968 (sha256
4969 (base32
4970 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
4971 (build-system emacs-build-system)
4972 (home-page "https://github.com/sanel/monroe")
4973 (synopsis "Clojure nREPL client for Emacs")
4974 (description
4975 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
4976 distribution, primarily targeting Clojure users")
4977 (license license:gpl3+)))
4978
4979 (define-public emacs-orgalist
4980 (package
4981 (name "emacs-orgalist")
4982 (version "1.8")
4983 (source
4984 (origin
4985 (method url-fetch)
4986 (uri (string-append "https://elpa.gnu.org/packages/"
4987 "orgalist-" version ".el"))
4988 (sha256
4989 (base32
4990 "1wqwnmn08i0qkxm8b2iclvf6cydcn68h1p3h7r1kig2bdn5b8948"))))
4991 (build-system emacs-build-system)
4992 (home-page "http://elpa.gnu.org/packages/orgalist.html")
4993 (synopsis "Manage Org-like lists in non-Org buffers")
4994 (description "Write Org mode's plain lists in non-Org buffers. More
4995 specifically, Orgalist supports the syntax of Org mode for numbered,
4996 unnumbered, description items, checkboxes, and counter cookies.
4997
4998 The library also implements radio lists, i.e., lists written in Org
4999 syntax later translated into the host format, e.g., LaTeX or HTML.")
5000 (license license:gpl3+)))
5001
5002 (define-public emacs-writegood-mode
5003 (package
5004 (name "emacs-writegood-mode")
5005 (version "2.0.2")
5006 (home-page "https://github.com/bnbeckwith/writegood-mode")
5007 (source (origin
5008 (method git-fetch)
5009 (uri (git-reference
5010 (url home-page)
5011 (commit (string-append "v" version))))
5012 (sha256
5013 (base32
5014 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5015 (file-name (string-append name "-checkout"))))
5016 (build-system emacs-build-system)
5017 (synopsis "Polish up poor writing on the fly")
5018 (description
5019 "This minor mode tries to find and highlight problems with your writing
5020 in English as you type. It primarily detects \"weasel words\" and abuse of
5021 passive voice.")
5022 (license license:gpl3+)))
5023
5024 (define-public emacs-neotree
5025 (package
5026 (name "emacs-neotree")
5027 (version "0.5.2")
5028 (home-page "https://github.com/jaypei/emacs-neotree")
5029 (source (origin
5030 (method url-fetch)
5031 (uri (string-append
5032 "https://github.com/jaypei/" name
5033 "/archive/" version ".tar.gz"))
5034 (sha256
5035 (base32
5036 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
5037 (file-name (string-append name "-" version ".tar.gz"))))
5038 (build-system emacs-build-system)
5039 (synopsis "Folder tree view for Emacs")
5040 (description "This Emacs package provides a folder tree view.")
5041 (license license:gpl3+)))
5042
5043 (define-public emacs-org
5044 (package
5045 (name "emacs-org")
5046 ;; emacs-org-contrib inherits from this package. Please update its sha256
5047 ;; checksum as well.
5048 (version "9.1.13")
5049 (source (origin
5050 (method url-fetch)
5051 (uri (string-append "http://elpa.gnu.org/packages/org-"
5052 version ".tar"))
5053 (sha256
5054 (base32
5055 "1vx0n32gvrgy2bl2b4pvxf00cywxwm57gi46f2b2zlrnmd5n85pr"))))
5056 (build-system emacs-build-system)
5057 (home-page "https://orgmode.org/")
5058 (synopsis "Outline-based notes management and organizer")
5059 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5060 lists, and project planning with a fast and effective lightweight markup
5061 language. It also is an authoring system with unique support for literate
5062 programming and reproducible research.")
5063 (license license:gpl3+)))
5064
5065 (define-public emacs-org-contrib
5066 (package
5067 (inherit emacs-org)
5068 (name "emacs-org-contrib")
5069 (version "20180507")
5070 (source (origin
5071 (method url-fetch)
5072 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5073 version ".tar"))
5074 (sha256
5075 (base32
5076 "190iwjpdjrhg7gl2d4bri2y0y679vlrwd841r6dvhza0yy338d2d"))))
5077 (arguments
5078 `(#:modules ((guix build emacs-build-system)
5079 (guix build utils)
5080 (guix build emacs-utils)
5081 (ice-9 ftw)
5082 (srfi srfi-1))
5083 #:phases
5084 (modify-phases %standard-phases
5085 (add-after 'install 'delete-org-files
5086 (lambda* (#:key inputs outputs #:allow-other-keys)
5087 (let* ((out (assoc-ref outputs "out"))
5088 (org (assoc-ref inputs "emacs-org"))
5089 (contrib-files
5090 (map basename (find-files out)))
5091 (org+contrib-files
5092 (map basename (find-files org)))
5093 (duplicates (lset-intersection
5094 string=? contrib-files org+contrib-files)))
5095 (with-directory-excursion
5096 (string-append
5097 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
5098 (for-each delete-file duplicates))
5099 #t))))))
5100 (propagated-inputs
5101 `(("emacs-org" ,emacs-org)
5102 ("emacs-scel" ,emacs-scel)))
5103 (synopsis "Contributed packages to Org mode")
5104 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5105 lists, and project planning with a fast and effective plain-text system.
5106
5107 This package is equivalent to org-plus-contrib, but only includes additional
5108 files that you would find in @file{contrib/} from the git repository.")))
5109
5110 (define-public emacs-flx
5111 (package
5112 (name "emacs-flx")
5113 (version "0.6.1")
5114 (source
5115 (origin
5116 (method url-fetch)
5117 (uri (string-append "https://github.com/lewang/"
5118 "flx/archive/v" version ".tar.gz"))
5119 (sha256
5120 (base32
5121 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5122 (file-name (string-append name "-" version ".tar.gz"))))
5123 (build-system emacs-build-system)
5124 (home-page "https://github.com/lewang/flx")
5125 (synopsis "Fuzzy matching for Emacs")
5126 (description
5127 "Flx provides fuzzy matching for emacs a la sublime text.
5128 The sorting algorithm is a balance between word beginnings (abbreviation)
5129 and contiguous matches (substring). The longer the substring match,
5130 the higher it scores. This maps well to how we think about matching.
5131 Flx has support for ido (interactively do things) through flx-ido.")
5132 (license license:gpl3+)))
5133
5134 (define-public emacs-cyberpunk-theme
5135 (package
5136 (name "emacs-cyberpunk-theme")
5137 (version "1.19")
5138 (source
5139 (origin
5140 (method url-fetch)
5141 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5142 "archive/" version ".tar.gz"))
5143 (sha256
5144 (base32
5145 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
5146 (file-name (string-append name "-" version ".tar.gz"))))
5147 (build-system emacs-build-system)
5148 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5149 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5150 (description
5151 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5152 known loosely as deftheme. Many mode-specific customizations are included.")
5153 (license license:gpl3+)))
5154
5155 (define-public emacs-danneskjold-theme
5156 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5157 (revision "1"))
5158 (package
5159 (name "emacs-danneskjold-theme")
5160 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5161 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5162 (source
5163 (origin
5164 (method git-fetch)
5165 (uri (git-reference
5166 (url home-page)
5167 (commit commit)))
5168 (file-name (string-append name "-" version "-checkout"))
5169 (sha256
5170 (base32
5171 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5172 (build-system emacs-build-system)
5173 (arguments
5174 `(#:phases
5175 (modify-phases %standard-phases
5176 (add-after 'unpack 'delete-screenshots
5177 (lambda _
5178 (delete-file-recursively "screenshots") #t)))))
5179 (synopsis "High-contrast Emacs theme")
5180 (description
5181 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5182 (license license:gpl3+))))
5183
5184 (define-public emacs-dream-theme
5185 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5186 (revision "1"))
5187 (package
5188 (name "emacs-dream-theme")
5189 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5190 (source
5191 (origin
5192 (method git-fetch)
5193 (uri (git-reference
5194 (url "https://github.com/djcb/dream-theme")
5195 (commit commit)))
5196 (file-name (string-append name "-" version "-checkout"))
5197 (sha256
5198 (base32
5199 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5200 (build-system emacs-build-system)
5201 (home-page "https://github.com/djcb/dream-theme")
5202 (synopsis "High-contrast Emacs theme")
5203 (description
5204 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5205 by zenburn, sinburn and similar themes, but slowly diverging from them.")
5206 (license license:gpl3+))))
5207
5208 (define-public emacs-auto-complete
5209 (package
5210 (name "emacs-auto-complete")
5211 (version "1.5.1")
5212 (source
5213 (origin
5214 (method url-fetch)
5215 (uri (string-append "https://github.com/auto-complete/"
5216 "auto-complete/archive/v" version ".tar.gz"))
5217 (sha256
5218 (base32
5219 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5220 (file-name (string-append name "-" version ".tar.gz"))))
5221 (build-system emacs-build-system)
5222 (propagated-inputs
5223 `(("emacs-popup" ,emacs-popup)))
5224 (home-page "https://github.com/auto-complete/auto-complete")
5225 (synopsis "Intelligent auto-completion extension for Emacs")
5226 (description
5227 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5228 It extends the standard Emacs completion interface and provides an environment
5229 that allows users to concentrate more on their own work. Its features are:
5230 a visual interface, reduce overhead of completion by using statistic method,
5231 extensibility.")
5232 (license license:gpl3+)))
5233
5234 (define-public m17n-db
5235 (package
5236 (name "m17n-db")
5237 (version "1.7.0")
5238 (source
5239 (origin
5240 (method url-fetch)
5241 (uri (string-append "mirror://savannah/m17n/m17n-db-"
5242 version ".tar.gz"))
5243 (sha256
5244 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
5245 (build-system gnu-build-system)
5246 (inputs
5247 `(("gettext" ,gettext-minimal)))
5248 (arguments
5249 `(#:configure-flags
5250 (list (string-append "--with-charmaps="
5251 (assoc-ref %build-inputs "libc")
5252 "/share/i18n/charmaps"))))
5253 ;; With `guix lint' the home-page URI returns a small page saying
5254 ;; that your browser does not handle frames. This triggers the "URI
5255 ;; returns suspiciously small file" warning.
5256 (home-page "https://www.nongnu.org/m17n/")
5257 (synopsis "Multilingual text processing library (database)")
5258 (description "The m17n library realizes multilingualization of
5259 many aspects of applications. The m17n library represents
5260 multilingual text as an object named M-text. M-text is a string with
5261 attributes called text properties, and designed to substitute for
5262 string in C. Text properties carry any information required to input,
5263 display and edit the text.
5264
5265 This package contains the library database.")
5266 (license license:lgpl2.1+)))
5267
5268 (define-public m17n-lib
5269 (package
5270 (name "m17n-lib")
5271 (version "1.7.0")
5272 (source
5273 (origin
5274 (method url-fetch)
5275 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
5276 version ".tar.gz"))
5277 (sha256
5278 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
5279 (build-system gnu-build-system)
5280 (inputs
5281 `(("fribidi" ,fribidi)
5282 ("gd" ,gd)
5283 ("libotf" ,libotf)
5284 ("libxft" ,libxft)
5285 ("libxml2" ,libxml2)
5286 ("m17n-db" ,m17n-db)))
5287 (arguments
5288 `(#:parallel-build? #f))
5289 ;; With `guix lint' the home-page URI returns a small page saying
5290 ;; that your browser does not handle frames. This triggers the "URI
5291 ;; returns suspiciously small file" warning.
5292 (home-page "https://www.nongnu.org/m17n/")
5293 (synopsis "Multilingual text processing library (runtime)")
5294 (description "The m17n library realizes multilingualization of
5295 many aspects of applications. The m17n library represents
5296 multilingual text as an object named M-text. M-text is a string with
5297 attributes called text properties, and designed to substitute for
5298 string in C. Text properties carry any information required to input,
5299 display and edit the text.
5300
5301 This package contains the library runtime.")
5302 (license license:lgpl2.1+)))
5303
5304 (define-public emacs-nginx-mode
5305 (package
5306 (name "emacs-nginx-mode")
5307 (version "1.1.4")
5308 (source
5309 (origin
5310 (method url-fetch)
5311 (uri (string-append
5312 "https://github.com/ajc/nginx-mode/archive/v"
5313 version ".tar.gz"))
5314 (file-name (string-append name "-" version ".tar.gz"))
5315 (sha256
5316 (base32
5317 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
5318 (build-system emacs-build-system)
5319 (home-page "https://github.com/ajc/nginx-mode")
5320 (synopsis "Emacs major mode for editing nginx config files")
5321 (description "This package provides an Emacs major mode for
5322 editing nginx config files.")
5323 (license license:gpl2+)))
5324
5325 (define-public emacs-stream
5326 (package
5327 (name "emacs-stream")
5328 (version "2.2.0")
5329 (home-page "https://github.com/NicolasPetton/stream")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (file-name (string-append name "-" version ".tar.gz"))
5334 (uri (string-append home-page "/archive/"version ".tar.gz"))
5335 (sha256
5336 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5337 (build-system emacs-build-system)
5338 (synopsis "Implementation of streams for Emacs")
5339 (description "This library provides an implementation of streams for Emacs.
5340 Streams are implemented as delayed evaluation of cons cells.")
5341 (license license:gpl3+)))
5342
5343 (define-public emacs-el-search
5344 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5345 (revision "1"))
5346 (package
5347 (name "emacs-el-search")
5348 ;; No ufficial release.
5349 (version (string-append "0.0-" revision "." (string-take commit 7)))
5350 (home-page "https://github.com/emacsmirror/el-search")
5351 (source
5352 (origin
5353 (method git-fetch)
5354 (file-name (string-append name "-" version ".tar.gz"))
5355 (uri (git-reference
5356 (commit commit)
5357 (url (string-append home-page ".git"))))
5358 (sha256
5359 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5360 (build-system emacs-build-system)
5361 (inputs `(("emacs-stream" ,emacs-stream)))
5362 (synopsis "Expression based interactive search for emacs-lisp-mode")
5363 (description "This package provides expression based interactive search
5364 procedures for emacs-lisp-mode.")
5365 (license license:gpl3+))))
5366
5367 (define-public emacs-ht
5368 (package
5369 (name "emacs-ht")
5370 (version "2.1")
5371 (source
5372 (origin
5373 (method url-fetch)
5374 (uri (string-append
5375 "https://github.com/Wilfred/ht.el/archive/"
5376 version ".tar.gz"))
5377 (file-name (string-append name "-" version ".tar.gz"))
5378 (sha256
5379 (base32
5380 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5381 (build-system emacs-build-system)
5382 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5383 (home-page "https://github.com/Wilfred/ht.el")
5384 (synopsis "Hash table library for Emacs")
5385 (description
5386 "This package simplifies the use of hash tables in elisp. It also
5387 provides functions to convert hash tables from and to alists and plists.")
5388 (license license:gpl3+)))
5389
5390 (define-public emacs-log4e
5391 (package
5392 (name "emacs-log4e")
5393 (version "0.3.0")
5394 (source
5395 (origin
5396 (method url-fetch)
5397 (uri (string-append
5398 "https://github.com/aki2o/log4e/archive/v"
5399 version ".tar.gz"))
5400 (file-name (string-append name "-" version ".tar.gz"))
5401 (sha256
5402 (base32
5403 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5404 (build-system emacs-build-system)
5405 (arguments
5406 `(#:phases
5407 (modify-phases %standard-phases
5408 (add-after 'unpack 'remove-tests
5409 ;; Guile builder complains about null characters in some
5410 ;; strings of test files. Remove "test" directory (it is not
5411 ;; needed anyway).
5412 (lambda _
5413 (delete-file-recursively "test"))))))
5414 (home-page "https://github.com/aki2o/log4e")
5415 (synopsis "Logging framework for elisp")
5416 (description
5417 "This package provides a logging framework for elisp. It allows
5418 you to deal with multiple log levels.")
5419 (license license:gpl3+)))
5420
5421 (define-public emacs-gntp
5422 (package
5423 (name "emacs-gntp")
5424 (version "0.1")
5425 (source
5426 (origin
5427 (method url-fetch)
5428 (uri (string-append
5429 "https://github.com/tekai/gntp.el/archive/v"
5430 version ".tar.gz"))
5431 (file-name (string-append name "-" version ".tar.gz"))
5432 (sha256
5433 (base32
5434 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5435 (build-system emacs-build-system)
5436 (home-page "https://github.com/tekai/gntp.el")
5437 (synopsis "Growl Notification Protocol for Emacs")
5438 (description
5439 "This package implements the Growl Notification Protocol GNTP
5440 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5441 It is incomplete as it only lets you send but not receive
5442 notifications.")
5443 (license license:bsd-3)))
5444
5445 (define-public emacs-alert
5446 (package
5447 (name "emacs-alert")
5448 (version "1.2")
5449 (source
5450 (origin
5451 (method url-fetch)
5452 (uri (string-append
5453 "https://github.com/jwiegley/alert/archive/v"
5454 version ".tar.gz"))
5455 (file-name (string-append name "-" version ".tar.gz"))
5456 (sha256
5457 (base32
5458 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5459 (build-system emacs-build-system)
5460 (propagated-inputs
5461 `(("emacs-gntp" ,emacs-gntp)
5462 ("emacs-log4e" ,emacs-log4e)))
5463 (home-page "https://github.com/jwiegley/alert")
5464 (synopsis "Growl-style notification system for Emacs")
5465 (description
5466 "Alert is a Growl-workalike for Emacs which uses a common notification
5467 interface and multiple, selectable \"styles\", whose use is fully
5468 customizable by the user.")
5469 (license license:gpl2+)))
5470
5471 (define-public emacs-mu4e-alert
5472 (package
5473 (name "emacs-mu4e-alert")
5474 (version "1.0")
5475 (source
5476 (origin
5477 (method url-fetch)
5478 (uri (string-append
5479 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5480 version ".tar.gz"))
5481 (file-name (string-append name "-" version ".tar.gz"))
5482 (sha256
5483 (base32
5484 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
5485 (build-system emacs-build-system)
5486 (propagated-inputs
5487 `(("emacs-alert" ,emacs-alert)
5488 ("emacs-s" ,emacs-s)
5489 ("emacs-ht" ,emacs-ht)
5490 ("mu" ,mu)))
5491 (home-page "https://github.com/iqbalansari/mu4e-alert")
5492 (synopsis "Desktop notification for mu4e")
5493 (description
5494 "This package provides desktop notifications for mu4e.
5495 Additionally it can display the number of unread emails in the
5496 mode-line.")
5497 (license license:gpl3+)))
5498
5499 (define-public emacs-pretty-mode
5500 (package
5501 (name "emacs-pretty-mode")
5502 (version "2.0.3")
5503 (source
5504 (origin
5505 (method url-fetch)
5506 (uri (string-append "https://github.com/akatov/pretty-mode/"
5507 "archive/" version ".tar.gz"))
5508 (file-name (string-append name "-" version ".tar.gz"))
5509 (sha256
5510 (base32
5511 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5512 (build-system emacs-build-system)
5513 (home-page "https://github.com/akatov/pretty-mode")
5514 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5515 (description
5516 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5517 (license license:gpl3+)))
5518
5519 (define-public emacs-yasnippet
5520 (package
5521 (name "emacs-yasnippet")
5522 (version "0.12.2")
5523 (source (origin
5524 (method url-fetch)
5525 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5526 "archive/" version ".tar.gz"))
5527 (file-name (string-append name "-" version ".tar.gz"))
5528 (sha256
5529 (base32
5530 "01jabaz0g67bsziayrxgv74px55fx4nlrcl0csl8f1by2102pwc5"))
5531 (modules '((guix build utils)))
5532 (snippet
5533 '(begin
5534 ;; YASnippet expects a "snippets" subdirectory in the same
5535 ;; directory as yasnippet.el, but we don't install it
5536 ;; because it's a git submodule pointing to an external
5537 ;; repository. Adjust `yas-snippet-dirs' to prevent
5538 ;; warnings about a missing directory.
5539 (substitute* "yasnippet.el"
5540 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5541 "))\n"))
5542 #t))))
5543 (build-system emacs-build-system)
5544 (home-page "https://github.com/joaotavora/yasnippet")
5545 (synopsis "Yet another snippet extension for Emacs")
5546 (description
5547 "YASnippet is a template system for Emacs. It allows you to type an
5548 abbreviation and automatically expand it into function templates.")
5549 (license license:gpl3+)))
5550
5551 (define-public emacs-yasnippet-snippets
5552 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5553 (revision "1"))
5554 (package
5555 (name "emacs-yasnippet-snippets")
5556 (version (string-append "1-" revision "." (string-take commit 8)))
5557 (source
5558 (origin
5559 (method git-fetch)
5560 (uri (git-reference
5561 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5562 (commit commit)))
5563 (file-name (string-append name "-" version "-checkout"))
5564 (sha256
5565 (base32
5566 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5567 (build-system trivial-build-system)
5568 (arguments
5569 `(#:modules ((ice-9 ftw)
5570 (ice-9 regex)
5571 (guix build utils))
5572 #:builder
5573 (begin
5574 (use-modules (ice-9 ftw)
5575 (ice-9 regex)
5576 (guix build utils))
5577 (with-directory-excursion (assoc-ref %build-inputs "source")
5578 (for-each (lambda (dir)
5579 (copy-recursively
5580 dir
5581 (string-append %output
5582 "/share/emacs/yasnippet-snippets/"
5583 dir)))
5584 (scandir "." (lambda (fname)
5585 (and (string-match "-mode$" fname)
5586 (directory-exists? fname))))))
5587 #t)))
5588 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5589 (synopsis "Collection of YASnippet snippets for many languages")
5590 (description
5591 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5592 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5593 To make YASnippet aware of these snippets, add the above directory to
5594 @code{yas-snippet-dirs}.")
5595 (license license:expat))))
5596
5597 (define-public emacs-helm-c-yasnippet
5598 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5599 (revision "1"))
5600 (package
5601 (name "emacs-helm-c-yasnippet")
5602 (version (string-append "0.6.7" "-" revision "."
5603 (string-take commit 7)))
5604 (source (origin
5605 (method git-fetch)
5606 (uri (git-reference
5607 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5608 (commit commit)))
5609 (file-name (string-append name "-" version "-checkout"))
5610 (sha256
5611 (base32
5612 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5613 (build-system emacs-build-system)
5614 (propagated-inputs
5615 `(("emacs-helm" ,emacs-helm)
5616 ("emacs-yasnippet" ,emacs-yasnippet)))
5617 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5618 (synopsis "Helm integration for Yasnippet")
5619 (description "This Emacs library provides Helm interface for
5620 Yasnippet.")
5621 (license license:gpl2+))))
5622
5623 (define-public emacs-helm-system-packages
5624 (package
5625 (name "emacs-helm-system-packages")
5626 (version "1.10.0")
5627 (source (origin
5628 (method git-fetch)
5629 (uri (git-reference
5630 (url "https://github.com/emacs-helm/helm-system-packages")
5631 (commit (string-append "v" version))))
5632 (file-name (string-append name "-" version "-checkout"))
5633 (sha256
5634 (base32
5635 "0y5wzvfycb1bvgdk782xyl744fih43vz14wmq6gcqjarw6xfniz5"))))
5636 (build-system emacs-build-system)
5637 (propagated-inputs
5638 `(("emacs-helm" ,emacs-helm)))
5639 (home-page "https://github.com/emacs-helm/helm-system-packages")
5640 (synopsis "Helm System Packages is an interface to your package manager")
5641 (description "List all available packages in Helm (with installed
5642 packages displayed in their own respective face). Fuzzy-search, mark and
5643 execute the desired action over any selections of packages: Install,
5644 uninstall, display packages details (in Org Mode) or insert details at point,
5645 find files owned by packages... And much more, including performing all the
5646 above over the network.")
5647 (license license:gpl3+)))
5648
5649 (define-public emacs-memoize
5650 (package
5651 (name "emacs-memoize")
5652 (version "1.1")
5653 (source
5654 (origin
5655 (method url-fetch)
5656 (uri (string-append
5657 "https://github.com/skeeto/emacs-memoize/archive/"
5658 version ".tar.gz"))
5659 (file-name (string-append name "-" version ".tar.gz"))
5660 (sha256
5661 (base32
5662 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
5663 (build-system emacs-build-system)
5664 (arguments
5665 `(#:tests? #t
5666 #:test-command '("emacs" "--batch"
5667 "-l" "memoize-test.el"
5668 "-f" "ert-run-tests-batch-and-exit")))
5669 (home-page "https://github.com/skeeto/emacs-memoize")
5670 (synopsis "Emacs lisp memoization library")
5671 (description "@code{emacs-memoize} is an Emacs library for
5672 memoizing functions.")
5673 (license license:unlicense)))
5674
5675 (define-public emacs-linum-relative
5676 (package
5677 (name "emacs-linum-relative")
5678 (version "0.5")
5679 (source
5680 (origin
5681 (method url-fetch)
5682 (uri (string-append
5683 "https://github.com/coldnew/linum-relative/archive/"
5684 version ".tar.gz"))
5685 (file-name (string-append name "-" version ".tar.gz"))
5686 (sha256
5687 (base32
5688 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5689 (build-system emacs-build-system)
5690 (home-page "https://github.com/coldnew/linum-relative")
5691 (synopsis "Relative line numbering for Emacs")
5692 (description "@code{emacs-linum-relative} displays the relative line
5693 number on the left margin in Emacs.")
5694 (license license:gpl2+)))
5695
5696 (define-public emacs-idle-highlight
5697 (package
5698 (name "emacs-idle-highlight")
5699 (version "1.1.3")
5700 (source
5701 (origin
5702 (method url-fetch)
5703 (uri (string-append
5704 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5705 version ".tar.gz"))
5706 (file-name (string-append name "-" version ".tar.gz"))
5707 (sha256
5708 (base32
5709 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5710 (build-system emacs-build-system)
5711 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5712 (synopsis "Highlights all occurrences of the word the point is on")
5713 (description
5714 "This Emacs package provides @code{idle-highlight-mode} that sets
5715 an idle timer to highlight all occurrences in the buffer of the word under
5716 the point.")
5717 (license license:gpl3+)))
5718
5719 (define-public emacs-ox-twbs
5720 (package
5721 (name "emacs-ox-twbs")
5722 (version "1.1.1")
5723 (source
5724 (origin
5725 (method url-fetch)
5726 (uri (string-append
5727 "https://github.com/marsmining/ox-twbs/archive/v"
5728 version ".tar.gz"))
5729 (file-name (string-append name "-" version ".tar.gz"))
5730 (sha256
5731 (base32
5732 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5733 (build-system emacs-build-system)
5734 (home-page "https://github.com/marsmining/ox-twbs")
5735 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5736 (description
5737 "This Emacs package outputs your org-mode docs with a simple, clean and
5738 modern look. It implements a new HTML back-end for exporting org-mode docs as
5739 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5740 jQuery and Bootstrap resources included via osscdn.")
5741 (license license:gpl3+)))
5742
5743 (define-public emacs-highlight-sexp
5744 (package
5745 (name "emacs-highlight-sexp")
5746 (version "1.0")
5747 (source
5748 (origin
5749 (method url-fetch)
5750 (uri (string-append
5751 "https://github.com/daimrod/highlight-sexp/archive/v"
5752 version ".tar.gz"))
5753 (file-name (string-append name "-" version ".tar.gz"))
5754 (sha256
5755 (base32
5756 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
5757 (build-system emacs-build-system)
5758 (home-page "https://github.com/daimrod/highlight-sexp")
5759 (synopsis "Minor mode that highlights the s-exp at the current position")
5760 (description
5761 "This Emacs package highlights the s-exp at the current position.")
5762 (license license:gpl3+)))
5763
5764 (define-public emacs-highlight-stages
5765 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
5766 (revision "1"))
5767 (package
5768 (name "emacs-highlight-stages")
5769 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
5770 (source
5771 (origin
5772 (method git-fetch)
5773 (uri (git-reference
5774 (url "https://github.com/zk-phi/highlight-stages.git")
5775 (commit commit)))
5776 (file-name (string-append name "-" version "-checkout"))
5777 (sha256
5778 (base32
5779 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
5780 (patches
5781 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
5782 (build-system emacs-build-system)
5783 (home-page "https://github.com/wigust/highlight-stages")
5784 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
5785 (description "@code{highlight-stages} provides an Emacs minor mode that
5786 highlights quasi-quoted expressions.")
5787 (license license:gpl3+))))
5788
5789 (define-public emacspeak
5790 (package
5791 (name "emacspeak")
5792 (version "48.0")
5793 (source
5794 (origin
5795 (method url-fetch)
5796 (uri (string-append
5797 "https://github.com/tvraman/emacspeak/releases/download/"
5798 version "/emacspeak-" version ".tar.bz2"))
5799 (sha256
5800 (base32
5801 "07imi3hji06b3r7v7v59978q76s8a7ynmxwfc9j03pgnv965lpjy"))))
5802 (build-system gnu-build-system)
5803 (arguments
5804 '(#:make-flags (list (string-append "prefix="
5805 (assoc-ref %outputs "out")))
5806 #:phases
5807 (modify-phases %standard-phases
5808 (replace 'configure
5809 (lambda* (#:key outputs #:allow-other-keys)
5810 (let* ((out (assoc-ref outputs "out"))
5811 (lisp (string-append out
5812 "/share/emacs/site-lisp/emacspeak")))
5813 (setenv "SHELL" (which "sh"))
5814 ;; Configure Emacspeak according to etc/install.org.
5815 (invoke "make" "config"))))
5816 (add-after 'build 'build-espeak
5817 (lambda _
5818 (invoke "make" "espeak")))
5819 (replace 'install
5820 (lambda* (#:key inputs outputs #:allow-other-keys)
5821 (let* ((out (assoc-ref outputs "out"))
5822 (bin (string-append out "/bin"))
5823 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
5824 (info (string-append out "/share/info"))
5825 (emacs (string-append (assoc-ref inputs "emacs")
5826 "/bin/emacs")))
5827 ;; According to etc/install.org, the Emacspeak directory should
5828 ;; be copied to its installation destination.
5829 (for-each
5830 (lambda (file)
5831 (copy-recursively file (string-append lisp "/" file)))
5832 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
5833 "stumpwm" "xsl"))
5834 ;; Make sure emacspeak is loaded from the correct directory.
5835 (substitute* "etc/emacspeak.sh"
5836 (("exec FLAVOR.*")
5837 (string-append "exec " emacs " -l " lisp
5838 "/lisp/emacspeak-setup.el $CL_ALL")))
5839 ;; Install the convenient startup script.
5840 (mkdir-p bin)
5841 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
5842 #t))
5843 (add-after 'install 'wrap-program
5844 (lambda* (#:key inputs outputs #:allow-other-keys)
5845 (let* ((out (assoc-ref outputs "out"))
5846 (emacspeak (string-append out "/bin/emacspeak"))
5847 (espeak (string-append (assoc-ref inputs "espeak")
5848 "/bin/espeak")))
5849 ;; The environment variable DTK_PROGRAM tells emacspeak what
5850 ;; program to use for speech.
5851 (wrap-program emacspeak
5852 `("DTK_PROGRAM" ":" prefix (,espeak)))
5853 #t))))
5854 #:tests? #f)) ; no check target
5855 (inputs
5856 `(("emacs" ,emacs)
5857 ("espeak" ,espeak)
5858 ("perl" ,perl)
5859 ("tcl" ,tcl)
5860 ("tclx" ,tclx)))
5861 (home-page "http://emacspeak.sourceforge.net")
5862 (synopsis "Audio desktop interface for Emacs")
5863 (description
5864 "Emacspeak is a speech interface that allows visually impaired users to
5865 interact independently and efficiently with the computer. Audio formatting
5866 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
5867 allows Emacspeak to produce rich aural presentations of electronic information.
5868 By seamlessly blending all aspects of the Internet such as Web-surfing and
5869 messaging, Emacspeak speech-enables local and remote information via a
5870 consistent and well-integrated user interface.")
5871 (license license:gpl2+)))
5872
5873 (define-public emacs-adaptive-wrap
5874 (package
5875 (name "emacs-adaptive-wrap")
5876 (version "0.5.1")
5877 (source (origin
5878 (method url-fetch)
5879 (uri (string-append
5880 "http://elpa.gnu.org/packages/adaptive-wrap-"
5881 version ".el"))
5882 (sha256
5883 (base32
5884 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
5885 (build-system emacs-build-system)
5886 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
5887 (synopsis "Smart line-wrapping with wrap-prefix")
5888 (description
5889 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
5890 minor mode which sets the wrap-prefix property on the fly so that
5891 single-long-line paragraphs get word-wrapped in a way similar to what
5892 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
5893 actually changing the buffer's text.")
5894 (license license:gpl3+)))
5895
5896 (define-public emacs-diff-hl
5897 (package
5898 (name "emacs-diff-hl")
5899 (version "1.8.4")
5900 (source
5901 (origin
5902 (method url-fetch)
5903 (uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
5904 version ".tar"))
5905 (sha256
5906 (base32
5907 "0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
5908 (build-system emacs-build-system)
5909 (home-page "https://github.com/dgutov/diff-hl")
5910 (synopsis
5911 "Highlight uncommitted changes using VC")
5912 (description
5913 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
5914 window (using the fringe, by default), allows you to jump between
5915 the hunks and revert them selectively.")
5916 (license license:gpl3+)))
5917
5918 (define-public emacs-diminish
5919 (package
5920 (name "emacs-diminish")
5921 (version "0.45")
5922 (source
5923 (origin
5924 (method url-fetch)
5925 (uri (string-append
5926 "https://github.com/myrjola/diminish.el/archive/v"
5927 version ".tar.gz"))
5928 (file-name (string-append name "-" version ".tar.gz"))
5929 (sha256
5930 (base32
5931 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
5932 (build-system emacs-build-system)
5933 (home-page "https://github.com/myrjola/diminish.el")
5934 (synopsis "Diminish minor modes with no modeline display")
5935 (description "@code{emacs-diminish} implements hiding or
5936 abbreviation of the mode line displays (lighters) of minor modes.")
5937 (license license:gpl2+)))
5938
5939 (define-public emacs-use-package
5940 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
5941 (revision "1"))
5942 (package
5943 (name "emacs-use-package")
5944 (version (git-version "2.3" revision commit))
5945 (source (origin
5946 (method git-fetch)
5947 (uri (git-reference
5948 (url "https://github.com/jwiegley/use-package")
5949 (commit commit)))
5950 (file-name (git-file-name name version))
5951 (sha256
5952 (base32
5953 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
5954 (build-system emacs-build-system)
5955 (propagated-inputs
5956 `(("emacs-diminish" ,emacs-diminish)))
5957 (arguments
5958 `(#:tests? #t
5959 #:test-command '("emacs" "--batch"
5960 "-l" "use-package-tests.el"
5961 "-f" "ert-run-tests-batch-and-exit")))
5962 (home-page "https://github.com/jwiegley/use-package")
5963 (synopsis "Declaration for simplifying your .emacs")
5964 (description "The use-package macro allows you to isolate package
5965 configuration in your @file{.emacs} file in a way that is both
5966 performance-oriented and tidy.")
5967 (license license:gpl2+))))
5968
5969 (define-public emacs-strace-mode
5970 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
5971 (revision "1"))
5972 (package
5973 (name "emacs-strace-mode")
5974 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
5975 (source (origin
5976 (method git-fetch)
5977 (uri (git-reference
5978 (url "https://github.com/pkmoore/strace-mode")
5979 (commit commit)))
5980 (file-name (string-append name "-" version "-checkout"))
5981 (sha256
5982 (base32
5983 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
5984 (build-system emacs-build-system)
5985 (home-page "https://github.com/pkmoore/strace-mode")
5986 (synopsis "Emacs major mode to highlight strace outputs")
5987 (description "@code{emacs-strace-mode} provides an Emacs major mode
5988 highlighting strace outputs.")
5989 (license license:gpl3+))))
5990
5991 (define-public emacs-default-encrypt
5992 (package
5993 (name "emacs-default-encrypt")
5994 (version "4.3")
5995 (source
5996 (origin
5997 (method url-fetch)
5998 (uri (string-append
5999 "https://www.informationelle-selbstbestimmung-im-internet.de"
6000 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
6001 (file-name (string-append "jl-encrypt-" version ".el"))
6002 (sha256
6003 (base32
6004 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6005 (build-system emacs-build-system)
6006 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6007 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6008 (description
6009 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6010 automatically encrypts messages that you send (e.g., email) when public keys
6011 for all recipients are available, and it protects you from accidentally
6012 sending un-encrypted messages. It can also be configured to automatically
6013 sign messages that you send. For details and instructions on how to use
6014 DefaultEncrypt, please refer to the home page or read the comments in the
6015 source file, @file{jl-encrypt.el}.")
6016 (license license:gpl3+)))
6017
6018 (define-public emacs-htmlize
6019 (package
6020 (name "emacs-htmlize")
6021 (version "1.53")
6022 (source
6023 (origin
6024 (method url-fetch)
6025 (uri (string-append
6026 "https://github.com/hniksic/emacs-htmlize/archive/release/"
6027 version ".tar.gz"))
6028 (file-name (string-append name "-" version ".tar.gz"))
6029 (sha256
6030 (base32
6031 "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
6032 (build-system emacs-build-system)
6033 (home-page "https://github.com/hniksic/emacs-htmlize")
6034 (synopsis "Convert buffer text and decorations to HTML")
6035 (description "@code{emacs-htmlize} converts the buffer text and
6036 the associated decorations to HTML. Output to CSS, inline CSS and
6037 fonts is supported.")
6038 (license license:gpl2+)))
6039
6040 (define-public emacs-xmlgen
6041 (package
6042 (name "emacs-xmlgen")
6043 (version "0.5")
6044 (source
6045 (origin
6046 (method url-fetch)
6047 (uri (string-append
6048 "https://github.com/philjackson/xmlgen/archive/"
6049 version ".tar.gz"))
6050 (file-name (string-append name "-" version ".tar.gz"))
6051 (sha256
6052 (base32
6053 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
6054 (build-system emacs-build-system)
6055 (arguments
6056 `(#:tests? #t
6057 #:test-command '("emacs" "--batch"
6058 "-l" "xmlgen-test.el"
6059 "-f" "ert-run-tests-batch-and-exit")))
6060 (home-page "https://github.com/philjackson/xmlgen")
6061 (synopsis "S-expression to XML domain specific language (DSL) in
6062 Emacs Lisp")
6063 (description "@code{emacs-xmlgen} provides S-expression to XML
6064 conversion for Emacs Lisp.")
6065 (license license:gpl2+)))
6066
6067 (define-public emacs-cdlatex
6068 (package
6069 (name "emacs-cdlatex")
6070 (version "4.7")
6071 (source
6072 (origin
6073 (method url-fetch)
6074 (uri (string-append
6075 "https://github.com/cdominik/cdlatex/archive/"
6076 version ".tar.gz"))
6077 (file-name (string-append name "-" version ".tar.gz"))
6078 (sha256
6079 (base32
6080 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
6081 (build-system emacs-build-system)
6082 (propagated-inputs
6083 `(("emacs-auctex" ,emacs-auctex)))
6084 (home-page "https://github.com/cdominik/cdlatex")
6085 (synopsis "Fast Emacs input methods for LaTeX environments and
6086 math")
6087 (description "CDLaTeX is an Emacs minor mode supporting fast
6088 insertion of environment templates and math in LaTeX. Similar
6089 commands are also offered as part of the AUCTeX package, but it is not
6090 the same - CDLaTeX focuses on speediness for inserting LaTeX
6091 constructs.")
6092 (license license:gpl3+)))
6093
6094 (define-public emacs-cnfonts
6095 (package
6096 (name "emacs-cnfonts")
6097 (version "0.9.1")
6098 (source (origin
6099 (method url-fetch)
6100 (uri (string-append
6101 "https://github.com/tumashu/cnfonts/archive/v"
6102 version ".tar.gz"))
6103 (file-name (string-append name "-" version ".tar.gz"))
6104 (sha256
6105 (base32
6106 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
6107 (build-system emacs-build-system)
6108 (home-page "https://github.com/tumashu/cnfonts")
6109 (synopsis "Emacs Chinese fonts setup tool")
6110 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6111 configuration of Chinese fonts.")
6112 (license license:gpl2+)))
6113
6114 (define-public emacs-php-mode
6115 (package
6116 (name "emacs-php-mode")
6117 (version "20171225.342")
6118 (source (origin
6119 (method url-fetch)
6120 (uri (string-append
6121 "https://melpa.org/packages/php-mode-"
6122 version ".tar"))
6123 (sha256
6124 (base32
6125 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6126 (build-system emacs-build-system)
6127 (home-page "https://github.com/ejmr/php-mode")
6128 (synopsis "Major mode for editing PHP code")
6129 (description "@code{php-mode} is a major mode for editing PHP source
6130 code. It's an extension of C mode; thus it inherits all C mode's navigation
6131 functionality. But it colors according to the PHP grammar and indents
6132 according to the PEAR coding guidelines. It also includes a couple handy
6133 IDE-type features such as documentation search and a source and class
6134 browser.")
6135 (license license:gpl3+)))
6136
6137 (define-public emacs-pos-tip
6138 (package
6139 (name "emacs-pos-tip")
6140 (version "0.4.6")
6141 (source (origin
6142 (method url-fetch)
6143 (uri (string-append
6144 "https://github.com/pitkali/pos-tip/archive/"
6145 version ".tar.gz"))
6146 (file-name (string-append name "-" version ".tar.gz"))
6147 (sha256
6148 (base32
6149 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
6150 (build-system emacs-build-system)
6151 ;; The following functions and variables needed by emacs-pos-tip are
6152 ;; not included in emacs-minimal:
6153 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6154 (arguments `(#:emacs ,emacs))
6155 (home-page "https://github.com/pitkali/pos-tip")
6156 (synopsis "Show tooltip at point")
6157 (description "The standard library tooltip.el provides a function for
6158 displaying a tooltip at the mouse position. However, locating a tooltip at an
6159 arbitrary buffer position in a window is not easy. Pos-tip provides such a
6160 function to be used by other frontend programs.")
6161 (license license:gpl2+)))
6162
6163 (define-public emacs-pyim-basedict
6164 (package
6165 (name "emacs-pyim-basedict")
6166 (version "0.3.1")
6167 (source (origin
6168 (method url-fetch)
6169 (uri (string-append
6170 "https://github.com/tumashu/pyim-basedict/archive/v"
6171 version ".tar.gz"))
6172 (file-name (string-append name "-" version ".tar.gz"))
6173 (sha256
6174 (base32
6175 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
6176 (build-system emacs-build-system)
6177 (home-page "https://github.com/tumashu/pyim-basedict")
6178 (synopsis "Input method dictionary of pyim")
6179 (description "Pyim-basedict is the default pinyin input method dictionary,
6180 containing words from the rime project.")
6181 (license license:gpl2+)))
6182
6183 (define-public emacs-pyim
6184 (package
6185 (name "emacs-pyim")
6186 (version "1.6.4")
6187 (source (origin
6188 (method url-fetch)
6189 (uri (string-append
6190 "https://github.com/tumashu/pyim/archive/v"
6191 version ".tar.gz"))
6192 (file-name (string-append name "-" version ".tar.gz"))
6193 (sha256
6194 (base32
6195 "0hfg8q9hcjifvnlghw2g94dfxfirms2psq2ghqb28fhkf0lks13r"))))
6196 (build-system emacs-build-system)
6197 (propagated-inputs
6198 `(("emacs-async" ,emacs-async)
6199 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
6200 ("emacs-popup" ,emacs-popup)
6201 ("emacs-pos-tip" ,emacs-pos-tip)))
6202 (home-page "https://github.com/tumashu/pyim")
6203 (synopsis "Chinese input method")
6204 (description "Chinese input method which supports quanpin, shuangpin, wubi
6205 and cangjie.")
6206 (license license:gpl2+)))
6207
6208 (define-public emacs-el2org
6209 (package
6210 (name "emacs-el2org")
6211 (version "0.6.0")
6212 (source (origin
6213 (method url-fetch)
6214 (uri (string-append
6215 "https://github.com/tumashu/el2org/archive/v"
6216 version ".tar.gz"))
6217 (file-name (string-append name "-" version ".tar.gz"))
6218 (sha256
6219 (base32
6220 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
6221 (build-system emacs-build-system)
6222 (home-page "https://github.com/tumashu/el2org")
6223 (synopsis "Convert Emacs-lisp file to org file")
6224 (description "El2org is a simple tool, which can convert Emacs-lisp file
6225 to org file, you can use this tool to write orgify commentary.")
6226 (license license:gpl2+)))
6227
6228 (define-public emacs-mustache
6229 (package
6230 (name "emacs-mustache")
6231 (version "0.23")
6232 (source (origin
6233 (method url-fetch)
6234 (uri (string-append
6235 "https://github.com/Wilfred/mustache.el/archive/"
6236 version ".tar.gz"))
6237 (file-name (string-append name "-" version ".tar.gz"))
6238 (sha256
6239 (base32
6240 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
6241 (build-system emacs-build-system)
6242 (propagated-inputs
6243 `(("emacs-dash" ,emacs-dash)
6244 ("emacs-ht" ,emacs-ht)
6245 ("emacs-s" ,emacs-s)))
6246 (home-page "https://github.com/Wilfred/mustache.el")
6247 (synopsis "Mustache templating library for Emacs")
6248 (description "Mustache templating library for Emacs, mustache is
6249 a simple web template system, which is described as a logic-less system
6250 because it lacks any explicit control flow statements, both looping and
6251 conditional evaluation can be achieved using section tags processing lists
6252 and lambdas.")
6253 (license license:gpl3+)))
6254
6255 (define-public emacs-org2web
6256 (package
6257 (name "emacs-org2web")
6258 (version "0.9.1")
6259 (source (origin
6260 (method url-fetch)
6261 (uri (string-append
6262 "https://github.com/tumashu/org2web/archive/v"
6263 version ".tar.gz"))
6264 (file-name (string-append name "-" version ".tar.gz"))
6265 (sha256
6266 (base32
6267 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
6268 (build-system emacs-build-system)
6269 (propagated-inputs
6270 `(("emacs-dash" ,emacs-dash)
6271 ("emacs-el2org" ,emacs-el2org)
6272 ("emacs-ht" ,emacs-ht)
6273 ("emacs-mustache" ,emacs-mustache)
6274 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6275 (home-page "https://github.com/tumashu/org2web")
6276 (synopsis "Static site generator based on org-mode ")
6277 (description "Org2web is a static site generator based on org-mode,
6278 which code derived from Kelvin H's org-page.")
6279 (license license:gpl2+)))
6280
6281 (define-public emacs-xelb
6282 (package
6283 (name "emacs-xelb")
6284 (version "0.15")
6285 (source (origin
6286 (method url-fetch)
6287 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6288 version ".tar"))
6289 (sha256
6290 (base32
6291 "031rvgprsqhf344p9wsczr50vj2qcpwdmhxi80jdbrsm7wyxf3qz"))))
6292 (build-system emacs-build-system)
6293 ;; The following functions and variables needed by emacs-xelb are
6294 ;; not included in emacs-minimal:
6295 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6296 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6297 ;; x-display-pixel-width, x-display-pixel-height
6298 (arguments
6299 `(#:emacs ,emacs
6300 #:phases
6301 (modify-phases %standard-phases
6302 (add-after 'unpack 'regenerate-el-files
6303 (lambda* (#:key inputs #:allow-other-keys)
6304 (invoke "make"
6305 (string-append "PROTO_PATH="
6306 (assoc-ref inputs "xcb-proto")
6307 "/share/xcb")
6308 (string-append "EMACS_BIN="
6309 (assoc-ref inputs "emacs")
6310 "/bin/emacs -Q")))))))
6311 (native-inputs `(("xcb-proto" ,xcb-proto)))
6312 (home-page "https://github.com/ch11ng/xelb")
6313 (synopsis "X protocol Emacs Lisp binding")
6314 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6315 X11 protocol based on the XML description files from the XCB project. It
6316 features an object-oriented API and permits a certain degree of concurrency.
6317 It should enable you to implement low-level X11 applications.")
6318 (license license:gpl3+)))
6319
6320 (define-public emacs-exwm
6321 (package
6322 (name "emacs-exwm")
6323 (version "0.19")
6324 (synopsis "Emacs X window manager")
6325 (source (origin
6326 (method url-fetch)
6327 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6328 version ".tar"))
6329 (sha256
6330 (base32
6331 "11xd2w4h3zdwkdxypvmcz8s7q72cn76lfr9js77jbizyj6b04lr0"))
6332 (patches (search-patches "emacs-exwm-fix-fullscreen-issue.patch"))))
6333 (build-system emacs-build-system)
6334 (propagated-inputs
6335 `(("emacs-xelb" ,emacs-xelb)))
6336 (inputs
6337 `(("xhost" ,xhost)
6338 ("dbus" ,dbus)))
6339 ;; The following functions and variables needed by emacs-exwm are
6340 ;; not included in emacs-minimal:
6341 ;; scroll-bar-mode, fringe-mode
6342 ;; x-display-pixel-width, x-display-pixel-height
6343 (arguments
6344 `(#:emacs ,emacs
6345 #:phases
6346 (modify-phases %standard-phases
6347 (add-after 'build 'install-xsession
6348 (lambda* (#:key inputs outputs #:allow-other-keys)
6349 (let* ((out (assoc-ref outputs "out"))
6350 (xsessions (string-append out "/share/xsessions"))
6351 (bin (string-append out "/bin"))
6352 (exwm-executable (string-append bin "/exwm")))
6353 ;; Add a .desktop file to xsessions
6354 (mkdir-p xsessions)
6355 (mkdir-p bin)
6356 (with-output-to-file
6357 (string-append xsessions "/exwm.desktop")
6358 (lambda _
6359 (format #t "[Desktop Entry]~@
6360 Name=~a~@
6361 Comment=~a~@
6362 Exec=~a~@
6363 TryExec=~@*~a~@
6364 Type=Application~%" ,name ,synopsis exwm-executable)))
6365 ;; Add a shell wrapper to bin
6366 (with-output-to-file exwm-executable
6367 (lambda _
6368 (format #t "#!~a ~@
6369 ~a +SI:localuser:$USER ~@
6370 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6371 (string-append (assoc-ref inputs "bash") "/bin/sh")
6372 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6373 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6374 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6375 '(cond
6376 ((file-exists-p "~/.exwm")
6377 (load-file "~/.exwm"))
6378 ((not (featurep 'exwm))
6379 (require 'exwm)
6380 (require 'exwm-config)
6381 (exwm-config-default)
6382 (message (concat "exwm configuration not found. "
6383 "Falling back to default configuration...")))))))
6384 (chmod exwm-executable #o555)
6385 #t))))))
6386 (home-page "https://github.com/ch11ng/exwm")
6387 (description "EXWM is a full-featured tiling X window manager for Emacs
6388 built on top of XELB.")
6389 (license license:gpl3+)))
6390
6391 (define-public emacs-switch-window
6392 (package
6393 (name "emacs-switch-window")
6394 (version "1.5.1")
6395 (source (origin
6396 (method url-fetch)
6397 (uri (string-append
6398 "https://github.com/dimitri/switch-window/archive/v"
6399 version ".tar.gz"))
6400 (file-name (string-append name "-" version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "07f99apxscwvsp2bjxsbi462c433kcglrjh6xl0gyafs1nvvvnd8"))))
6404 (build-system emacs-build-system)
6405 (home-page "https://github.com/dimitri/switch-window")
6406 (synopsis "Emacs window switch tool")
6407 (description "Switch-window is an emacs window switch tool, which
6408 offer a visual way to choose a window to switch to, delete, split or
6409 other operations.")
6410 (license license:wtfpl2)))
6411
6412 (define-public emacs-exwm-x
6413 (package
6414 (name "emacs-exwm-x")
6415 (version "1.8.1")
6416 (synopsis "Derivative window manager based on EXWM")
6417 (source (origin
6418 (method url-fetch)
6419 (uri (string-append
6420 "https://github.com/tumashu/exwm-x/archive/v"
6421 version ".tar.gz"))
6422 (file-name (string-append name "-" version ".tar.gz"))
6423 (sha256
6424 (base32
6425 "0ali1100aacq4zbvcck80h51pvw204jlxhn4aikkqq4ngbx03kkr"))))
6426 (build-system emacs-build-system)
6427 (propagated-inputs
6428 `(("emacs-exwm" ,emacs-exwm)
6429 ("emacs-switch-window" ,emacs-switch-window)
6430 ("emacs-ivy" ,emacs-ivy)
6431 ("emacs-use-package" ,emacs-use-package)))
6432 (inputs
6433 `(("xhost" ,xhost)
6434 ("dbus" ,dbus)))
6435 ;; Need emacs instead of emacs-minimal,
6436 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6437 (arguments
6438 `(#:emacs ,emacs
6439 #:phases
6440 (modify-phases %standard-phases
6441 (add-after 'build 'install-xsession
6442 (lambda* (#:key inputs outputs #:allow-other-keys)
6443 (let* ((out (assoc-ref outputs "out"))
6444 (xsessions (string-append out "/share/xsessions"))
6445 (bin (string-append out "/bin"))
6446 (exwm-executable (string-append bin "/exwm-x")))
6447 ;; Add a .desktop file to xsessions
6448 (mkdir-p xsessions)
6449 (mkdir-p bin)
6450 (with-output-to-file
6451 (string-append xsessions "/exwm-x.desktop")
6452 (lambda _
6453 (format #t "[Desktop Entry]~@
6454 Name=~a~@
6455 Comment=~a~@
6456 Exec=~a~@
6457 TryExec=~@*~a~@
6458 Type=Application~%" ,name ,synopsis exwm-executable)))
6459 ;; Add a shell wrapper to bin
6460 (with-output-to-file exwm-executable
6461 (lambda _
6462 (format #t "#!~a ~@
6463 ~a +SI:localuser:$USER ~@
6464 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6465 (string-append (assoc-ref inputs "bash") "/bin/sh")
6466 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6467 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6468 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6469 '(require 'exwmx-loader))))
6470 (chmod exwm-executable #o555)
6471 #t))))))
6472 (home-page "https://github.com/tumashu/exwm-x")
6473 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6474 on mouse-control.")
6475 (license license:gpl3+)))
6476
6477 (define-public emacs-gnuplot
6478 (package
6479 (name "emacs-gnuplot")
6480 (version "0.7.0")
6481 (source
6482 (origin
6483 (method url-fetch)
6484 (uri (string-append
6485 "https://github.com/bruceravel/gnuplot-mode/archive/"
6486 version ".tar.gz"))
6487 (file-name (string-append name "-" version ".tar.gz"))
6488 (sha256
6489 (base32
6490 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6491 (build-system gnu-build-system)
6492 (native-inputs `(("emacs" ,emacs-minimal)))
6493 (arguments
6494 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6495 "/gnuplot-" version)))
6496 `(#:modules ((guix build gnu-build-system)
6497 (guix build utils)
6498 (guix build emacs-utils))
6499 #:imported-modules (,@%gnu-build-system-modules
6500 (guix build emacs-utils))
6501 #:configure-flags
6502 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6503 "/bin/emacs")
6504 (string-append "--with-lispdir=" %output ,elisp-dir))
6505 #:phases
6506 (modify-phases %standard-phases
6507 (add-after 'install 'generate-autoloads
6508 (lambda* (#:key outputs #:allow-other-keys)
6509 (emacs-generate-autoloads
6510 "gnuplot"
6511 (string-append (assoc-ref outputs "out") ,elisp-dir))
6512 #t))))))
6513 (home-page "https://github.com/bruceravel/gnuplot-mode")
6514 (synopsis "Emacs major mode for interacting with gnuplot")
6515 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6516 with gnuplot.")
6517 (license license:gpl2+)))
6518
6519 (define-public emacs-transpose-frame
6520 (package
6521 (name "emacs-transpose-frame")
6522 (version "0.1.0")
6523 (source
6524 (origin
6525 (method url-fetch)
6526 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
6527 (file-name (string-append "transpose-frame-" version ".el"))
6528 (sha256
6529 (base32
6530 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6531 (build-system emacs-build-system)
6532 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6533 (synopsis "Transpose window arrangement in current frame")
6534 (description "@code{emacs-transpose-frame} provides some interactive
6535 functions which allows users to transpose windows arrangement in currently
6536 selected frame.")
6537 (license license:bsd-2)))
6538
6539 (define-public emacs-key-chord
6540 (package
6541 (name "emacs-key-chord")
6542 (version "0.6")
6543 (source
6544 (origin
6545 (method url-fetch)
6546 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6547 (file-name (string-append "key-chord-" version ".el"))
6548 (sha256
6549 (base32
6550 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6551 (build-system emacs-build-system)
6552 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6553 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6554 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6555 mode for binding key chords to commands. A key chord is defined as two keys
6556 pressed simultaneously or a single key quickly pressed twice.")
6557 (license license:gpl2+)))
6558
6559 (define-public emacs-evil-surround
6560 (package
6561 (name "emacs-evil-surround")
6562 (version "1.0.0")
6563 (source
6564 (origin
6565 (method url-fetch)
6566 (uri (string-append
6567 "https://github.com/timcharper/evil-surround/archive/v"
6568 version ".tar.gz"))
6569 (file-name (string-append name "-" version ".tar.gz"))
6570 (sha256
6571 (base32
6572 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6573 (build-system emacs-build-system)
6574 (propagated-inputs
6575 `(("emacs-evil" ,emacs-evil)))
6576 (home-page "https://github.com/timcharper/evil-surround")
6577 (synopsis "Easily modify surrounding parantheses and quotes")
6578 (description "@code{emacs-evil-surround} allows easy deletion, change and
6579 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6580 (license license:gpl3+)))
6581
6582 (define-public emacs-evil-commentary
6583 (package
6584 (name "emacs-evil-commentary")
6585 (version "2.1.1")
6586 (source
6587 (origin
6588 (method url-fetch)
6589 (uri (string-append
6590 "https://github.com/linktohack/evil-commentary/archive/v"
6591 version ".tar.gz"))
6592 (file-name (string-append name "-" version ".tar.gz"))
6593 (sha256
6594 (base32
6595 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6596 (build-system emacs-build-system)
6597 (propagated-inputs
6598 `(("emacs-evil" ,emacs-evil)))
6599 (home-page "https://github.com/linktohack/evil-commentary")
6600 (synopsis "Comment out code in evil mode")
6601 (description "@code{emacs-evil-commentary} adds keybindings to easily
6602 comment out lines of code in evil mode. It provides @code{gcc} to comment out
6603 lines, and @code{gc} to comment out the target of a motion.")
6604 (license license:gpl3+)))
6605
6606 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6607 ;; therefore cannot be run
6608 (define-public emacs-ansi
6609 (package
6610 (name "emacs-ansi")
6611 (version "0.4.1")
6612 (source
6613 (origin
6614 (method url-fetch)
6615 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6616 version ".tar.gz"))
6617 (file-name (string-append name "-" version ".tar.gz"))
6618 (sha256
6619 (base32
6620 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6621 (build-system emacs-build-system)
6622 (propagated-inputs
6623 `(("emacs-dash" ,emacs-dash)
6624 ("emacs-s" ,emacs-s)))
6625 (home-page "https://github.com/rejeep/ansi.el")
6626 (synopsis "Convert strings to ANSI")
6627 (description "@code{emacs-ansi} defines functions that turns simple
6628 strings to ANSI strings. Turning a string into an ANSI string can be to add
6629 color to a text, add color in the background of a text or adding a style, such
6630 as bold, underscore or italic.")
6631 (license license:gpl3+)))
6632
6633 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
6634 ;; therefore cannot be run
6635 (define-public emacs-commander
6636 (package
6637 (name "emacs-commander")
6638 (version "0.7.0")
6639 (source
6640 (origin
6641 (method url-fetch)
6642 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6643 version ".tar.gz"))
6644 (file-name (string-append name "-" version ".tar.gz"))
6645 (sha256
6646 (base32
6647 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6648 (build-system emacs-build-system)
6649 (propagated-inputs
6650 `(("emacs-dash" ,emacs-dash)
6651 ("emacs-f" ,emacs-f)
6652 ("emacs-s" ,emacs-s)))
6653 (home-page "https://github.com/rejeep/commander.el")
6654 (synopsis "Emacs command line parser")
6655 (description "@code{emacs-commander} provides command line parsing for
6656 Emacs.")
6657 (license license:gpl3+)))
6658
6659 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6660 ;; cannot be run
6661 (define-public ert-runner
6662 (package
6663 (name "ert-runner")
6664 (version "0.7.0")
6665 (source
6666 (origin
6667 (method url-fetch)
6668 (uri (string-append "https://github.com/rejeep/ert-runner.el/archive/v"
6669 version ".tar.gz"))
6670 (file-name (string-append name "-" version ".tar.gz"))
6671 (sha256
6672 (base32
6673 "1657nck9i96a4xgl8crfqq0s8gflzp21pkkzwg6m3z5npjxklgwp"))))
6674 (build-system emacs-build-system)
6675 (inputs
6676 `(("emacs-ansi" ,emacs-ansi)
6677 ("emacs-commander" ,emacs-commander)
6678 ("emacs-dash" ,emacs-dash)
6679 ("emacs-f" ,emacs-f)
6680 ("emacs-s" ,emacs-s)
6681 ("emacs-shut-up" ,emacs-shut-up)))
6682 (arguments
6683 `(#:phases
6684 (modify-phases %standard-phases
6685 (add-after 'install 'install-executable
6686 (lambda* (#:key inputs outputs #:allow-other-keys)
6687 (let ((out (assoc-ref outputs "out")))
6688 (substitute* "bin/ert-runner"
6689 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6690 (string-append "ERT_RUNNER=\"" out
6691 "/share/emacs/site-lisp/guix.d/"
6692 ,name "-" ,version)))
6693 (install-file "bin/ert-runner" (string-append out "/bin"))
6694 (wrap-program (string-append out "/bin/ert-runner")
6695 (list "EMACSLOADPATH" ":" 'prefix
6696 (string-split (getenv "EMACSLOADPATH") #\:)))
6697 #t))))
6698 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6699 (home-page "https://github.com/rejeep/ert-runner.el")
6700 (synopsis "Opinionated Ert testing workflow")
6701 (description "@code{ert-runner} is a tool for Emacs projects tested
6702 using ERT. It assumes a certain test structure setup and can therefore make
6703 running tests easier.")
6704 (license license:gpl3+)))
6705
6706 (define-public emacs-disable-mouse
6707 (package
6708 (name "emacs-disable-mouse")
6709 (version "0.2")
6710 (source
6711 (origin
6712 (method url-fetch)
6713 (uri (string-append
6714 "https://github.com/purcell/disable-mouse/archive/"
6715 version ".tar.gz"))
6716 (file-name (string-append name "-" version ".tar.gz"))
6717 (sha256
6718 (base32
6719 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
6720 (build-system emacs-build-system)
6721 (home-page "https://github.com/purcell/disable-mouse")
6722 (synopsis "Disable mouse commands globally")
6723 (description
6724 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
6725 pair of minor modes which suppress all mouse events by intercepting them and
6726 running a customisable handler command (@code{ignore} by default). ")
6727 (license license:gpl3+)))
6728
6729 (define-public emacs-json-reformat
6730 (package
6731 (name "emacs-json-reformat")
6732 (version "0.0.6")
6733 (source
6734 (origin
6735 (method url-fetch)
6736 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
6737 version ".tar.gz"))
6738 (file-name (string-append name "-" version ".tar.gz"))
6739 (sha256
6740 (base32
6741 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
6742 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
6743 (build-system emacs-build-system)
6744 (propagated-inputs
6745 `(("emacs-undercover" ,emacs-undercover)))
6746 (native-inputs
6747 `(("emacs-dash" ,emacs-dash)
6748 ("emacs-shut-up" ,emacs-shut-up)
6749 ("ert-runner" ,ert-runner)))
6750 (arguments
6751 `(#:tests? #t
6752 #:test-command '("ert-runner")))
6753 (home-page "https://github.com/gongo/json-reformat")
6754 (synopsis "Reformatting tool for JSON")
6755 (description "@code{json-reformat} provides a reformatting tool for
6756 @url{http://json.org/, JSON}.")
6757 (license license:gpl3+)))
6758
6759 (define-public emacs-json-snatcher
6760 (package
6761 (name "emacs-json-snatcher")
6762 (version "1.0.0")
6763 (source
6764 (origin
6765 (method url-fetch)
6766 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
6767 version ".tar.gz"))
6768 (file-name (string-append name "-" version ".tar.gz"))
6769 (sha256
6770 (base32
6771 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
6772 (build-system emacs-build-system)
6773 (home-page "https://github.com/sterlingg/json-snatcher")
6774 (synopsis "Grabs the path to JSON values in a JSON file")
6775 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
6776 a @url{http://json.org/, JSON} file.")
6777 (license license:gpl3+)))
6778
6779 (define-public emacs-json-mode
6780 (package
6781 (name "emacs-json-mode")
6782 (version "1.7.0")
6783 (source
6784 (origin
6785 (method url-fetch)
6786 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
6787 "v" version ".tar.gz"))
6788 (file-name (string-append name "-" version ".tar.gz"))
6789 (sha256
6790 (base32
6791 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
6792 (build-system emacs-build-system)
6793 (propagated-inputs
6794 `(("emacs-json-reformat" ,emacs-json-reformat)
6795 ("emacs-json-snatcher" ,emacs-json-snatcher)))
6796 (home-page "https://github.com/joshwnj/json-mode")
6797 (synopsis "Major mode for editing JSON files")
6798 (description "@code{json-mode} extends the builtin js-mode syntax
6799 highlighting.")
6800 (license license:gpl3+)))
6801
6802 (define-public emacs-restclient
6803 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
6804 (revision "1")) ;Guix package revision,
6805 ;upstream doesn't have official releases
6806 (package
6807 (name "emacs-restclient")
6808 (version (string-append revision "."
6809 (string-take commit 7)))
6810 (source (origin
6811 (method git-fetch)
6812 (uri (git-reference
6813 (url "https://github.com/pashky/restclient.el.git")
6814 (commit commit)))
6815 (sha256
6816 (base32
6817 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
6818 (file-name (git-file-name name version))))
6819 (build-system emacs-build-system)
6820 (propagated-inputs
6821 `(("emacs-helm" ,emacs-helm)))
6822 (home-page "https://github.com/pashky/restclient.el")
6823 (synopsis "Explore and test HTTP REST webservices")
6824 (description
6825 "This tool allows for testing and exploration of HTTP REST Web services
6826 from within Emacs. Restclient runs queries from a plan-text query sheet,
6827 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
6828 (license license:public-domain))))
6829
6830 (define-public emacs-eimp
6831 (let ((version "1.4.0")
6832 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
6833 (revision "1"))
6834 (package
6835 (name "emacs-eimp")
6836 (version (git-version version revision commit))
6837 (source
6838 (origin
6839 (method git-fetch)
6840 (uri (git-reference
6841 (url "https://github.com/nicferrier/eimp.git")
6842 (commit commit)))
6843 (file-name (git-file-name name version))
6844 (sha256
6845 (base32
6846 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
6847 (build-system emacs-build-system)
6848 (arguments
6849 `(#:phases
6850 (modify-phases %standard-phases
6851 (add-after 'unpack 'configure
6852 (lambda* (#:key inputs #:allow-other-keys)
6853 (let ((imagemagick (assoc-ref inputs "imagemagick")))
6854 ;; eimp.el is read-only in git.
6855 (chmod "eimp.el" #o644)
6856 (emacs-substitute-variables "eimp.el"
6857 ("eimp-mogrify-program"
6858 (string-append imagemagick "/bin/mogrify"))))
6859 #t)))))
6860 (inputs
6861 `(("imagemagick" ,imagemagick)))
6862 (home-page "https://github.com/nicferrier/eimp")
6863 (synopsis "Interactive image manipulation utility for Emacs")
6864 (description "@code{emacs-eimp} allows interactive image manipulation
6865 from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
6866 the actual transformations.")
6867 (license license:gpl2+))))
6868
6869 (define-public emacs-dired-hacks
6870 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
6871 (revision "1"))
6872 (package
6873 (name "emacs-dired-hacks")
6874 (version (string-append "0.0.1-" revision "."
6875 (string-take commit 7)))
6876 (source (origin
6877 (method git-fetch)
6878 (uri (git-reference
6879 (url "https://github.com/Fuco1/dired-hacks.git")
6880 (commit commit)))
6881 (file-name (string-append name "-" version "-checkout"))
6882 (sha256
6883 (base32
6884 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
6885 (build-system emacs-build-system)
6886 (propagated-inputs
6887 `(("emacs-dash" ,emacs-dash)
6888 ("emacs-eimp" ,emacs-eimp)
6889 ("emacs-f" ,emacs-f)
6890 ("emacs-s" ,emacs-s)))
6891 (home-page "https://github.com/Fuco1/dired-hacks")
6892 (synopsis
6893 "Collection of useful dired additions")
6894 (description
6895 "Collection of Emacs dired mode additions:
6896 @itemize
6897 @item dired-avfs
6898 @item dired-columns
6899 @item dired-filter
6900 @item dired-hacks-utils
6901 @item dired-images
6902 @item dired-list
6903 @item dired-narrow
6904 @item dired-open
6905 @item dired-rainbow
6906 @item dired-ranger
6907 @item dired-subtree
6908 @item dired-tagsistant
6909 @end itemize\n")
6910 (license license:gpl3+))))
6911
6912 (define-public emacs-which-key
6913 (package
6914 (name "emacs-which-key")
6915 (version "3.0.2")
6916 (source
6917 (origin
6918 (method url-fetch)
6919 (uri (string-append
6920 "https://github.com/justbur/emacs-which-key/archive/v"
6921 version ".tar.gz"))
6922 (sha256
6923 (base32
6924 "1xvd70cwq9n31f28viyjxmr3nn8l153gsy6scpszvgvjxkiikv24"))
6925 (file-name (string-append name "-" version ".tar.gz"))))
6926 (build-system emacs-build-system)
6927 (arguments
6928 `(#:tests? #t
6929 #:test-command '("emacs" "--batch"
6930 "-l" "which-key-tests.el"
6931 "-f" "ert-run-tests-batch-and-exit")))
6932 (home-page "https://github.com/justbur/emacs-which-key")
6933 (synopsis "Display available key bindings in popup")
6934 (description
6935 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
6936 bindings following your currently entered incomplete command (a prefix) in a
6937 popup. For example, after enabling the minor mode if you enter C-x and wait
6938 for the default of 1 second, the minibuffer will expand with all of the
6939 available key bindings that follow C-x (or as many as space allows given your
6940 settings).")
6941 (license license:gpl3+)))
6942
6943 (define-public emacs-ws-butler
6944 (package
6945 (name "emacs-ws-butler")
6946 (version "0.6")
6947 (source (origin
6948 (method git-fetch)
6949 (uri (git-reference
6950 (url "https://github.com/lewang/ws-butler.git")
6951 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
6952 (file-name (string-append name "-" version "-checkout"))
6953 (sha256
6954 (base32
6955 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
6956 (build-system emacs-build-system)
6957 (native-inputs
6958 `(("ert-runner" ,ert-runner)))
6959 (arguments
6960 `(#:tests? #t
6961 #:test-command '("ert-runner" "tests")))
6962 (home-page "https://github.com/lewang/ws-butler")
6963 (synopsis "Trim spaces from end of lines")
6964 (description
6965 "This Emacs package automatically and unobtrusively trims whitespace
6966 characters from end of lines.")
6967 (license license:gpl3+)))
6968
6969 (define-public emacs-org-edit-latex
6970 (package
6971 (name "emacs-org-edit-latex")
6972 (version "0.8.0")
6973 (source
6974 (origin
6975 (method url-fetch)
6976 (uri (string-append
6977 "https://github.com/et2010/org-edit-latex/archive/v"
6978 version ".tar.gz"))
6979 (file-name (string-append name "-" version ".tar.gz"))
6980 (sha256
6981 (base32
6982 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
6983 (build-system emacs-build-system)
6984 (propagated-inputs
6985 `(("emacs-auctex" ,emacs-auctex)
6986 ;; The version of org in Emacs 25.2 is not sufficient, because the
6987 ;; `org-latex-make-preamble' function is required.
6988 ("emacs-org" ,emacs-org)))
6989 (home-page "https://github.com/et2010/org-edit-latex")
6990 (synopsis "Edit a latex fragment just like editing a src block")
6991 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
6992 It lets you edit a latex fragment in a dedicated buffer just like editing a
6993 src block.")
6994 (license license:gpl3+)))
6995
6996 (define-public emacs-emamux
6997 (package
6998 (name "emacs-emamux")
6999 (version "0.14")
7000 (source (origin
7001 (method url-fetch)
7002 (uri (string-append
7003 "https://github.com/syohex/emacs-emamux/archive/"
7004 version ".tar.gz"))
7005 (file-name (string-append name "-" version ".tar.gz"))
7006 (sha256
7007 (base32
7008 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
7009 (build-system emacs-build-system)
7010 (home-page "https://github.com/syohex/emacs-emamux")
7011 (synopsis "Manipulate Tmux from Emacs")
7012 (description
7013 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7014 multiplexer.")
7015 (license license:gpl3+)))
7016
7017 (define-public emacs-rpm-spec-mode
7018 (package
7019 (name "emacs-rpm-spec-mode")
7020 (version "0.16")
7021 (source
7022 (origin
7023 (method url-fetch)
7024 ;; URI has the Fedora release number instead of the version
7025 ;; number. This will have to updated manually every new release.
7026 (uri (string-append
7027 "https://src.fedoraproject.org/cgit/rpms"
7028 "/emacs-rpm-spec-mode.git/snapshot"
7029 "/emacs-rpm-spec-mode-f26.tar.gz"))
7030 (sha256
7031 (base32
7032 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7033 (build-system emacs-build-system)
7034 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7035 (synopsis "Emacs major mode for editing RPM spec files")
7036 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7037 editing RPM spec files.")
7038 (license license:gpl2+)))
7039
7040 (define-public emacs-git-messenger
7041 (package
7042 (name "emacs-git-messenger")
7043 (version "0.18")
7044 (source
7045 (origin
7046 (method url-fetch)
7047 (uri (string-append
7048 "https://github.com/syohex/emacs-git-messenger/archive/"
7049 version ".tar.gz"))
7050 (file-name (string-append name "-" version ".tar.gz"))
7051 (sha256
7052 (base32
7053 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
7054 (build-system emacs-build-system)
7055 (propagated-inputs
7056 `(("emacs-popup" ,emacs-popup)))
7057 (arguments
7058 `(#:tests? #t
7059 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7060 "-f" "ert-run-tests-batch-and-exit")))
7061 (home-page "https://github.com/syohex/emacs-git-messenger")
7062 (synopsis "Popup commit message at current line")
7063 (description "@code{emacs-git-messenger} provides
7064 @code{git-messenger:popup-message}, a function that when called, will popup
7065 the last git commit message for the current line. This uses git-blame
7066 internally.")
7067 (license license:gpl3+)))
7068
7069 (define-public emacs-gitpatch
7070 (package
7071 (name "emacs-gitpatch")
7072 (version "0.5.0")
7073 (source
7074 (origin
7075 (method url-fetch)
7076 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
7077 "v" version ".tar.gz"))
7078 (file-name (string-append name "-" version ".tar.gz"))
7079 (sha256
7080 (base32
7081 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
7082 (build-system emacs-build-system)
7083 (home-page "https://github.com/tumashu/gitpatch")
7084 (synopsis "Mail git patch from Emacs")
7085 (description "@code{emacs-gitpatch} lets users easily send git patches,
7086 created by @code{git format-patch}, from @code{magit}, @code{dired} and
7087 @code{ibuffer} buffers.")
7088 (license license:gpl3+)))
7089
7090 (define-public emacs-erc-hl-nicks
7091 (package
7092 (name "emacs-erc-hl-nicks")
7093 (version "1.3.2")
7094 (source
7095 (origin
7096 (method url-fetch)
7097 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7098 "/archive/" version ".tar.gz"))
7099 (file-name (string-append name "-" version ".tar.gz"))
7100 (sha256
7101 (base32
7102 "01svpl9bps5kx4y1wnymakxya2cznqmlynvqv2r500wpnbxczrbs"))))
7103 (build-system emacs-build-system)
7104 (synopsis "Nickname highlighting for Emacs ERC")
7105 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7106 client for Emacs. The main features are:
7107 @itemize
7108 @item Auto-colorizes nicknames without having to specify colors
7109 @item Ignores certain characters that IRC clients add to nicknames to avoid
7110 duplicates (nickname, nickname’, nickname\", etc.)
7111 @item Attempts to produce colors with a sufficient amount of contrast between
7112 the nick color and the background color
7113 @end itemize\n")
7114 (home-page "https://github.com/leathekd/erc-hl-nicks")
7115 (license license:gpl3+)))
7116
7117 (define-public emacs-engine-mode
7118 (package
7119 (name "emacs-engine-mode")
7120 (version "2.0.0")
7121 (source
7122 (origin
7123 (method url-fetch)
7124 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
7125 "v" version ".tar.gz"))
7126 (file-name (string-append name "-" version ".tar.gz"))
7127 (sha256
7128 (base32
7129 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
7130 (build-system emacs-build-system)
7131 (synopsis "Minor mode for defining and querying search engines")
7132 (description "@code{engine-mode} is a global minor mode for Emacs. It
7133 enables you to easily define search engines, bind them to keybindings, and
7134 query them from the comfort of your editor.")
7135 (home-page "https://github.com/hrs/engine-mode")
7136 (license license:gpl3+)))
7137
7138 (define-public emacs-prop-menu
7139 (package
7140 (name "emacs-prop-menu")
7141 (version "0.1.2")
7142 (source
7143 (origin
7144 (method url-fetch)
7145 (uri (string-append
7146 "http://stable.melpa.org/packages/prop-menu-"
7147 version ".el"))
7148 (sha256
7149 (base32
7150 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7151 (build-system emacs-build-system)
7152 (home-page
7153 "https://github.com/david-christiansen/prop-menu-el")
7154 (synopsis
7155 "Create and display a context menu based on text and overlay properties")
7156 (description
7157 "This is a library for computing context menus based on text
7158 properties and overlays. The intended use is to have tools that
7159 annotate source code and others that use these annotations, without
7160 requiring a direct coupling between them, but maintaining
7161 discoverability.
7162
7163 Major modes that wish to use this library should first define an
7164 appropriate value for @code{prop-menu-item-functions}. Then, they should
7165 bind @code{prop-menu-by-completing-read} to an appropriate
7166 key. Optionally, a mouse pop-up can be added by binding
7167 @code{prop-menu-show-menu} to a mouse event.")
7168 (license license:gpl3+)))
7169
7170 (define-public emacs-idris-mode
7171 (package
7172 (name "emacs-idris-mode")
7173 (version "0.9.19")
7174 (source
7175 (origin
7176 (method url-fetch)
7177 (uri (string-append
7178 "http://stable.melpa.org/packages/idris-mode-"
7179 version ".tar"))
7180 (sha256
7181 (base32
7182 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
7183 (build-system emacs-build-system)
7184 (propagated-inputs
7185 `(("emacs-prop-menu" ,emacs-prop-menu)))
7186 (home-page
7187 "https://github.com/idris-hackers/idris-mode")
7188 (synopsis "Major mode for editing Idris code")
7189 (description
7190 "This is an Emacs mode for editing Idris code. It requires the latest
7191 version of Idris, and some features may rely on the latest Git version of
7192 Idris.")
7193 (license license:gpl3+)))
7194
7195 (define-public emacs-browse-at-remote
7196 (package
7197 (name "emacs-browse-at-remote")
7198 (version "0.10.0")
7199 (source
7200 (origin
7201 (method url-fetch)
7202 (uri (string-append
7203 "https://github.com/rmuslimov/browse-at-remote/archive/"
7204 version ".tar.gz"))
7205 (file-name (string-append name "-" version ".tar.gz"))
7206 (sha256
7207 (base32
7208 "0ymslsp6i1naw25zckv25bf4aaq6qwkbkn95qyzlwg869l802686"))))
7209 (build-system emacs-build-system)
7210 (propagated-inputs
7211 `(("emacs-f" ,emacs-f)
7212 ("emacs-s" ,emacs-s)))
7213 (native-inputs
7214 `(("ert-runner" ,ert-runner)))
7215 (arguments
7216 `(#:tests? #t
7217 #:test-command '("ert-runner")))
7218 (home-page "https://github.com/rmuslimov/browse-at-remote")
7219 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7220 (description
7221 "This Emacs package allows you to open a target page on
7222 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7223 It supports dired buffers and opens them in tree mode at destination.")
7224 (license license:gpl3+)))
7225
7226 (define-public emacs-tiny
7227 (package
7228 (name "emacs-tiny")
7229 (version "0.2.1")
7230 (source
7231 (origin
7232 (method url-fetch)
7233 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7234 (sha256
7235 (base32
7236 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
7237 (build-system emacs-build-system)
7238 (home-page "https://github.com/abo-abo/tiny")
7239 (synopsis "Quickly generate linear ranges in Emacs")
7240 (description
7241 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
7242 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
7243 proficiency is an advantage, since you can transform your numeric range with
7244 an elisp expression.")
7245 (license license:gpl3+)))
7246
7247 (define-public emacs-emojify
7248 (package
7249 (name "emacs-emojify")
7250 (version "0.4")
7251 (source
7252 (origin
7253 (method url-fetch)
7254 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7255 "releases/download/v" version "/emojify-"
7256 version ".tar"))
7257 (sha256
7258 (base32
7259 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7260 (build-system emacs-build-system)
7261 (arguments
7262 `(#:phases
7263 (modify-phases %standard-phases
7264 (add-after 'install 'install-data
7265 (lambda* (#:key outputs #:allow-other-keys)
7266 (copy-recursively "data"
7267 (string-append (assoc-ref outputs "out")
7268 "/share/emacs/site-lisp/guix.d/"
7269 "emojify-" ,version "/data"))
7270 #t)))))
7271 (propagated-inputs
7272 `(("emacs-ht" ,emacs-ht)))
7273 (home-page "https://github.com/iqbalansari/emacs-emojify")
7274 (synopsis "Display emojis in Emacs")
7275 (description "This package displays emojis in Emacs similar to how Github,
7276 Slack, and other websites do. It can display plain ASCII like @code{:)} as
7277 well as Github-style emojis like @code{:smile:}. It provides a minor mode
7278 @code{emojify-mode} to enable the display of emojis in a buffer.")
7279 (license license:gpl3+)))
7280
7281 (define-public emacs-websocket
7282 (package
7283 (name "emacs-websocket")
7284 (version "1.10")
7285 (source
7286 (origin
7287 (method git-fetch)
7288 (uri (git-reference
7289 (url "https://github.com/ahyatt/emacs-websocket.git")
7290 (commit version)))
7291 (file-name (string-append name "-" version "-checkout"))
7292 (sha256
7293 (base32
7294 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
7295 (build-system emacs-build-system)
7296 (home-page "http://elpa.gnu.org/packages/websocket.html")
7297 (synopsis "Emacs WebSocket client and server")
7298 (description "This is an Elisp library for WebSocket clients to talk to
7299 WebSocket servers, and for WebSocket servers to accept connections from
7300 WebSocket clients. This library is designed to be used by other library
7301 writers, to write applications that use WebSockets, and is not useful by
7302 itself.")
7303 (license license:gpl3+)))
7304
7305 (define-public emacs-oauth2
7306 (package
7307 (name "emacs-oauth2")
7308 (version "0.11")
7309 (source
7310 (origin
7311 (method url-fetch)
7312 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7313 version ".el"))
7314 (sha256
7315 (base32
7316 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7317 (build-system emacs-build-system)
7318 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7319 (synopsis "OAuth 2.0 authorization protocol implementation")
7320 (description
7321 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7322 The main entry point is @code{oauth2-auth-and-store} which will return a token
7323 structure. This token structure can be then used with
7324 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
7325 retrieve any data that need OAuth authentication to be accessed. If the token
7326 needs to be refreshed, the code handles it automatically and stores the new
7327 value of the access token.")
7328 (license license:gpl3+)))
7329
7330 (define-public emacs-circe
7331 (package
7332 (name "emacs-circe")
7333 (version "2.6")
7334 (source
7335 (origin
7336 (method git-fetch)
7337 (uri (git-reference
7338 (url "https://github.com/jorgenschaefer/circe.git")
7339 (commit (string-append "v" version))))
7340 (file-name (string-append name "-" version "-checkout"))
7341 (sha256
7342 (base32
7343 "19h3983zy3f15cgs86irvbdzz55qyjm48qd7gjlzcxplr7vnnh0j"))))
7344 (build-system emacs-build-system)
7345 ;; In order to securely connect to an IRC server using TLS, Circe requires
7346 ;; the GnuTLS binary.
7347 (propagated-inputs
7348 `(("gnutls" ,gnutls)))
7349 (home-page "https://github.com/jorgenschaefer/circe")
7350 (synopsis "Client for IRC in Emacs")
7351 (description "Circe is a Client for IRC in Emacs. It integrates well with
7352 the rest of the editor, using standard Emacs key bindings and indicating
7353 activity in channels in the status bar so it stays out of your way unless you
7354 want to use it.")
7355 (license license:gpl3+)))
7356
7357 (define-public emacs-slack
7358 (let ((commit "d90395482d26175ce38fd935e978c428be8af9a0")
7359 (revision "4"))
7360 (package
7361 (name "emacs-slack")
7362 (version (string-append "0-" revision "." (string-take commit 7)))
7363 (source (origin
7364 (method git-fetch)
7365 (uri (git-reference
7366 (url "https://github.com/yuya373/emacs-slack.git")
7367 (commit commit)))
7368 (file-name (string-append name "-" version "-checkout"))
7369 (sha256
7370 (base32
7371 "14f6wjcbl09cfd3yngr6m1k1d4nr764im666mbnqbk9nmqf50nib"))))
7372 (build-system emacs-build-system)
7373 (propagated-inputs
7374 `(("emacs-alert" ,emacs-alert)
7375 ("emacs-emojify" ,emacs-emojify)
7376 ("emacs-request" ,emacs-request)
7377 ("emacs-websocket" ,emacs-websocket)
7378 ("emacs-oauth2" ,emacs-oauth2)
7379 ("emacs-circe" ,emacs-circe)))
7380 (home-page "https://github.com/yuya373/emacs-slack")
7381 (synopsis "Slack client for Emacs")
7382 (description "This package provides an Emacs client for the Slack
7383 messaging service.")
7384 (license license:gpl3+))))
7385
7386 (define-public emacs-bash-completion
7387 (package
7388 (name "emacs-bash-completion")
7389 (version "2.1.0")
7390 (source
7391 (origin
7392 (method url-fetch)
7393 (uri (string-append
7394 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7395 version ".tar.gz"))
7396 (file-name (string-append name "-" version ".tar.gz"))
7397 (sha256
7398 (base32
7399 "1z0qck3v3ra6ivacn8n04w1v33a4xn01xx860761q31qzsv3sksq"))))
7400 (inputs `(("bash" ,bash)))
7401 (build-system emacs-build-system)
7402 (arguments
7403 `(#:phases
7404 (modify-phases %standard-phases
7405 (add-before 'install 'configure
7406 (lambda* (#:key inputs #:allow-other-keys)
7407 (let ((bash (assoc-ref inputs "bash")))
7408 (emacs-substitute-variables "bash-completion.el"
7409 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7410 #t)))))
7411 (home-page "https://github.com/szermatt/emacs-bash-completion")
7412 (synopsis "Bash completion for the shell buffer")
7413 (description
7414 "@code{bash-completion} defines dynamic completion hooks for shell-mode
7415 and shell-command prompts that are based on Bash completion.")
7416 (license license:gpl2+)))
7417
7418 (define-public emacs-easy-kill
7419 (package
7420 (name "emacs-easy-kill")
7421 (version "0.9.3")
7422 (source (origin
7423 (method url-fetch)
7424 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7425 version ".tar"))
7426 (sha256
7427 (base32
7428 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7429 (build-system emacs-build-system)
7430 (home-page "https://github.com/leoliu/easy-kill")
7431 (synopsis "Kill and mark things easily in Emacs")
7432 (description
7433 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7434 let users kill or mark things easily.")
7435 (license license:gpl3+)))
7436
7437 (define-public emacs-csv-mode
7438 (package
7439 (name "emacs-csv-mode")
7440 (version "1.7")
7441 (source
7442 (origin
7443 (method url-fetch)
7444 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7445 version ".el"))
7446 (sha256
7447 (base32
7448 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7449 (build-system emacs-build-system)
7450 (home-page
7451 "http://elpa.gnu.org/packages/csv-mode.html")
7452 (synopsis
7453 "Major mode for editing comma/char separated values")
7454 (description
7455 "This Emacs package implements CSV mode, a major mode for editing records
7456 in a generalized CSV (character-separated values) format.")
7457 (license license:gpl3+)))
7458
7459 (define-public emacs-transmission
7460 (package
7461 (name "emacs-transmission")
7462 (version "0.12.1")
7463 (source (origin
7464 (method url-fetch)
7465 (uri (string-append
7466 "https://github.com/holomorph/transmission/archive/"
7467 version ".tar.gz"))
7468 (file-name (string-append name "-" version ".tar.gz"))
7469 (sha256
7470 (base32
7471 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
7472 (build-system emacs-build-system)
7473 (home-page "https://github.com/holomorph/transmission")
7474 (synopsis "Emacs interface to a Transmission session")
7475 (description "This package provides an Emacs interface to interact with a
7476 running session of the Transmission Bittorrent client.
7477
7478 Features:
7479
7480 @itemize
7481 @item List, add, start/stop, verify, remove torrents.
7482 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
7483 @item Navigate to the corresponding file list, torrent info, peer info
7484 contexts.
7485 @item Toggle downloading and set priorities for individual files.
7486 @end itemize\n")
7487 (license license:gpl3+)))
7488
7489 (define-public emacs-polymode
7490 ;; There hasn't been a proper release.
7491 (let ((commit "0340f5e7e55235832e59673f027cc79a23cbdcd6")
7492 (revision "1"))
7493 (package
7494 (name "emacs-polymode")
7495 (version (string-append "1.0-" revision "." (string-take commit 7)))
7496 (source (origin
7497 (method git-fetch)
7498 (uri (git-reference
7499 (url "https://github.com/vspinu/polymode.git")
7500 (commit commit)))
7501 (file-name (string-append name "-" version "-checkout"))
7502 (sha256
7503 (base32
7504 "057cybkq3cy07n5s332k071sjiky3mziy003lza4rh75mgqkwhmh"))))
7505 (build-system emacs-build-system)
7506 (arguments
7507 `(#:include (cons* "^modes/.*\\.el$" %default-include)
7508 #:phases
7509 (modify-phases %standard-phases
7510 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
7511 (lambda _
7512 (setenv "EMACSLOADPATH"
7513 (string-append (getenv "EMACSLOADPATH")
7514 ":" (getcwd) "/modes" ":")))))))
7515 (home-page "https://github.com/vspinu/polymode")
7516 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
7517 (description "Polymode is an Emacs package that offers generic support
7518 for multiple major modes inside a single Emacs buffer. It is lightweight,
7519 object oriented and highly extensible. Creating a new polymode typically
7520 takes only a few lines of code. Polymode also provides extensible facilities
7521 for external literate programming tools for exporting, weaving and tangling.")
7522 (license license:gpl3+))))
7523
7524 (define-public eless
7525 (package
7526 (name "eless")
7527 (version "0.3")
7528 (source (origin
7529 (method url-fetch)
7530 (uri (string-append
7531 "https://github.com/kaushalmodi/eless/archive/"
7532 "v" version ".tar.gz"))
7533 (file-name (string-append name "-" version ".tar.gz"))
7534 (sha256
7535 (base32
7536 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7537 (build-system trivial-build-system)
7538 (inputs
7539 `(("bash" ,bash)))
7540 (native-inputs
7541 `(("tar" ,tar)
7542 ("gzip" ,gzip)))
7543 (arguments
7544 `(#:modules ((guix build utils))
7545 #:builder
7546 (begin
7547 (use-modules (guix build utils))
7548 (setenv "PATH" (string-append
7549 (assoc-ref %build-inputs "tar") "/bin" ":"
7550 (assoc-ref %build-inputs "gzip") "/bin"))
7551 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7552 (chdir (string-append "eless" "-" ,version))
7553 (substitute* "eless" (("/usr/bin/env bash")
7554 (string-append (assoc-ref %build-inputs "bash")
7555 "/bin/bash")))
7556 (install-file "eless" (string-append %output "/bin"))
7557 (install-file "doc/eless.info" (string-append %output "/share/info"))
7558 #t)))
7559 (home-page "https://github.com/kaushalmodi/eless")
7560 (synopsis "Use Emacs as a paginator")
7561 (description "@code{eless} provides a combination of Bash script
7562 and a minimal Emacs view-mode.
7563
7564 Feautures:
7565
7566 @itemize
7567 @item Independent of a user’s Emacs config.
7568 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7569 @item Not require an Emacs server to be already running.
7570 @item Syntax highlighting.
7571 @item Org-mode file rendering.
7572 @item @code{man} page viewer.
7573 @item Info viewer.
7574 @item Dired, wdired, (batch edit symbolic links).
7575 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
7576 @item Filter log files lines matching a regexp.
7577 @item Auto-revert log files similar to @code{tail -f}.
7578 @item Quickly change frame and font sizes.
7579 @end itemize\n")
7580 (license license:expat)))
7581
7582 (define-public emacs-evil-matchit
7583 (package
7584 (name "emacs-evil-matchit")
7585 (version "2.2.6")
7586 (source
7587 (origin
7588 (method url-fetch)
7589 (uri (string-append
7590 "https://github.com/redguardtoo/evil-matchit/archive/"
7591 version ".tar.gz"))
7592 (file-name (string-append name "-" version ".tar.gz"))
7593 (sha256
7594 (base32
7595 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
7596 (build-system emacs-build-system)
7597 (propagated-inputs
7598 `(("emacs-evil" ,emacs-evil)))
7599 (home-page "https://github.com/redguardtoo/evil-matchit")
7600 (synopsis "Vim matchit ported into Emacs")
7601 (description
7602 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7603 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7604 (license license:gpl3+)))
7605
7606 (define-public emacs-evil-smartparens
7607 (package
7608 (name "emacs-evil-smartparens")
7609 (version "0.4.0")
7610 (source
7611 (origin
7612 (method url-fetch)
7613 (uri (string-append
7614 "https://github.com/expez/evil-smartparens/archive/"
7615 version ".tar.gz"))
7616 (file-name (string-append name "-" version ".tar.gz"))
7617 (sha256
7618 (base32
7619 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7620 (build-system emacs-build-system)
7621 (propagated-inputs
7622 `(("emacs-evil" ,emacs-evil)
7623 ("emacs-smartparens" ,emacs-smartparens)))
7624 (home-page "https://github.com/expez/evil-smartparens")
7625 (synopsis "Emacs Evil integration for Smartparens")
7626 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7627 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7628 emulates Vim features and provides Vim-like key bindings.")
7629 (license license:gpl3+)))
7630
7631 (define-public emacs-evil-quickscope
7632 (package
7633 (name "emacs-evil-quickscope")
7634 (version "0.1.4")
7635 (source
7636 (origin
7637 (method url-fetch)
7638 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7639 version ".tar.gz"))
7640 (file-name (string-append name "-" version ".tar.gz"))
7641 (sha256
7642 (base32
7643 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
7644 (build-system emacs-build-system)
7645 (propagated-inputs
7646 `(("emacs-evil" ,emacs-evil)))
7647 (arguments
7648 `(#:tests? #t
7649 #:test-command '("emacs" "--batch"
7650 "-l" "evil-quickscope-tests.el"
7651 "-f" "ert-run-tests-batch-and-exit")))
7652 (home-page "https://github.com/blorbx/evil-quickscope")
7653 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
7654 (description "@code{emacs-evil-quickscope} highlights targets for Evil
7655 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
7656 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
7657 features and provides Vim-like key bindings.")
7658 (license license:gpl3+)))
7659
7660 (define-public emacs-bongo
7661 (package
7662 (name "emacs-bongo")
7663 (version "1.0")
7664 (source
7665 (origin
7666 (method url-fetch)
7667 (uri (string-append
7668 "https://github.com/dbrock/bongo/archive/"
7669 version ".tar.gz"))
7670 (file-name (string-append name "-" version ".tar.gz"))
7671 (sha256
7672 (base32
7673 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
7674 (build-system emacs-build-system)
7675 (home-page "https://github.com/dbrock/bongo")
7676 (synopsis "Media player for Emacs")
7677 (description
7678 "This package provides a flexible media player for Emacs. @code{Bongo}
7679 supports multiple backends such as @code{vlc}, @code{mpg123},
7680 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
7681 @code{afplay}.")
7682 (license license:gpl2+)))
7683
7684 (define-public groovy-emacs-modes
7685 (package
7686 (name "groovy-emacs-modes")
7687 (version "2.0")
7688 (source (origin
7689 (method url-fetch)
7690 (uri (string-append
7691 "https://github.com/Groovy-Emacs-Modes/" name
7692 "/archive/" version ".tar.gz"))
7693 (file-name (string-append name "-" version ".tar.gz"))
7694 (sha256
7695 (base32
7696 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
7697 (build-system emacs-build-system)
7698 (propagated-inputs
7699 `(("emacs-s" ,emacs-s)))
7700 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
7701 (synopsis "Groovy related modes for Emacs")
7702 (description
7703 "This package provides @code{groovy-mode} for syntax highlighing in
7704 Groovy source files, REPL integration with run-groovy and Grails project
7705 navigation with the grails mode.")
7706 (license license:gpl3+)))
7707
7708 (define-public org-tree-slide
7709 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
7710 (revision "0"))
7711 (package
7712 (name "emacs-org-tree-slide")
7713 (version (git-version "0.1" revision commit))
7714 (home-page "https://github.com/takaxp/org-tree-slide")
7715 (source (origin
7716 (method git-fetch)
7717 (uri (git-reference (url home-page) (commit commit)))
7718 (sha256
7719 (base32
7720 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
7721 (file-name (git-file-name name version))))
7722 (build-system emacs-build-system)
7723 (synopsis "Presentation tool for org-mode")
7724 (description
7725 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
7726 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
7727 @kbd{C-<} to jump to the next and previous slide.")
7728 (license license:gpl3+))))
7729
7730 (define-public emacs-scratch-el
7731 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
7732 (revision "1"))
7733 (package
7734 (name "emacs-scratch-el")
7735 (version (git-version "1.2" revision commit))
7736 (source (origin
7737 (method git-fetch)
7738 (uri (git-reference
7739 (url "https://github.com/ieure/scratch-el.git")
7740 (commit commit)))
7741 (file-name (git-file-name name version))
7742 (sha256
7743 (base32
7744 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
7745 (build-system emacs-build-system)
7746 (native-inputs
7747 `(("texinfo" ,texinfo)))
7748 (arguments
7749 '(#:phases
7750 (modify-phases %standard-phases
7751 (add-after 'install 'install-doc
7752 (lambda* (#:key outputs #:allow-other-keys)
7753 (unless (invoke "makeinfo" "scratch.texi")
7754 (error "makeinfo failed"))
7755 (install-file "scratch.info"
7756 (string-append (assoc-ref outputs "out")
7757 "/share/info"))
7758 #t)))))
7759 (home-page "https://github.com/ieure/scratch-el/")
7760 (synopsis "Create scratch buffers with the same mode as current buffer")
7761 (description "Scratch is an extension to Emacs that enables one to create
7762 scratch buffers that are in the same mode as the current buffer. This is
7763 notably useful when working on code in some language; you may grab code into a
7764 scratch buffer, and, by virtue of this extension, do so using the Emacs
7765 formatting rules for that language.")
7766 (license license:bsd-2))))
7767
7768 (define-public emacs-kv
7769 (package
7770 (name "emacs-kv")
7771 (version "0.0.19")
7772 (source
7773 (origin
7774 (method git-fetch)
7775 (uri (git-reference
7776 (url "https://github.com/nicferrier/emacs-kv.git")
7777 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
7778 (file-name (string-append name "-" version "-checkout"))
7779 (sha256
7780 (base32
7781 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
7782 (build-system emacs-build-system)
7783 (arguments
7784 `(#:tests? #t
7785 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
7786 "-f" "ert-run-tests-batch-and-exit")))
7787 (home-page "https://github.com/nicferrier/emacs-kv")
7788 (synopsis "Key/Value data structures library for Emacs Lisp")
7789 (description "@code{emacs-kv} is a collection of tools for dealing with
7790 key/value data structures such as plists, alists and hash-tables in Emacs
7791 Lisp.")
7792 (license license:gpl3+)))
7793
7794 (define-public emacs-esxml
7795 (package
7796 (name "emacs-esxml")
7797 (version "0.3.4")
7798 (source (origin
7799 (method git-fetch)
7800 (uri (git-reference
7801 (url "https://github.com/tali713/esxml.git")
7802 (commit version)))
7803 (file-name (git-file-name name version))
7804 (sha256
7805 (base32
7806 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
7807 (build-system emacs-build-system)
7808 (arguments
7809 `(#:phases
7810 (modify-phases %standard-phases
7811 (add-after 'unpack 'fix-sources
7812 (lambda _
7813 ;; See: https://github.com/tali713/esxml/pull/28.
7814 (substitute* "css-lite.el"
7815 ((";;; main interface")
7816 (string-append ";;; main interface\n"
7817 "(require 'cl-lib)"))
7818 (("mapcan")
7819 "cl-mapcan")
7820 (("',\\(cl-mapcan #'process-css-rule rules\\)")
7821 "(cl-mapcan #'process-css-rule ',rules)"))
7822 (substitute* "esxml-form.el"
7823 ((",esxml-form-field-defn")
7824 "#'esxml-form-field-defn"))
7825 ;; See: https://github.com/tali713/esxml/issues/25
7826 (delete-file "esxpath.el")
7827 #t)))))
7828 (propagated-inputs
7829 `(("emacs-kv" ,emacs-kv)))
7830 (home-page "https://github.com/tali713/esxml/")
7831 (synopsis "SXML for EmacsLisp")
7832 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
7833 Simply, this is the easiest way to write HTML or XML in Lisp. This library
7834 uses the native form of XML representation as used by many libraries already
7835 included within Emacs. See @code{esxml-to-xml} for a concise description of
7836 the format.")
7837 (license license:gpl3+)))
7838
7839 (define-public emacs-nov-el
7840 (package
7841 (name "emacs-nov-el")
7842 (version "0.2.2")
7843 (source (origin
7844 (method git-fetch)
7845 (uri (git-reference
7846 (url "https://github.com/wasamasa/nov.el.git")
7847 (commit version)))
7848 (file-name (git-file-name name version))
7849 (sha256
7850 (base32
7851 "03s0qjvwk1f7y3i4wh2p5y3z4hdv00adgz8za3vphzc0q8i1kjzb"))))
7852 (build-system emacs-build-system)
7853 (arguments
7854 `(#:phases
7855 (modify-phases %standard-phases
7856 (add-after 'unpack 'embed-path-to-unzip
7857 (lambda _
7858 (substitute* "nov.el"
7859 (("\\(executable-find \"unzip\"\\)")
7860 (string-append "\"" (which "unzip") "\"")))
7861 #t)))))
7862 (propagated-inputs
7863 `(("emacs-dash" ,emacs-dash)
7864 ("emacs-esxml" ,emacs-esxml)))
7865 (inputs
7866 `(("unzip" ,unzip)))
7867 (home-page "https://github.com/wasamasa/nov.el/")
7868 (synopsis "Major mode for reading EPUBs in Emacs")
7869 (description "@code{nov.el} provides a major mode for reading EPUB
7870 documents.
7871
7872 Features:
7873
7874 @itemize
7875 @item Basic navigation (jump to TOC, previous/next chapter)
7876 @item Remembering and restoring the last read position
7877 @item Jump to next chapter when scrolling beyond end
7878 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
7879 @item Hyperlinks to internal and external targets
7880 @item Supports textual and image documents
7881 @item View source of document files
7882 @item Metadata display
7883 @item Image rescaling
7884 @end itemize
7885 ")
7886 (license license:gpl3+)))
7887
7888 (define-public epipe
7889 (package
7890 (name "epipe")
7891 (version "0.1.0")
7892 (source
7893 (origin
7894 (method url-fetch)
7895 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
7896 version ".tar.gz"))
7897 (file-name (string-append name "-" version ".tar.gz"))
7898 (sha256
7899 (base32
7900 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
7901 (build-system trivial-build-system)
7902 (inputs
7903 `(("bash" ,bash)
7904 ("perl" ,perl)))
7905 (native-inputs
7906 `(("tar" ,tar)
7907 ("gzip" ,gzip)))
7908 (arguments
7909 `(#:modules
7910 ((guix build utils))
7911 #:builder
7912 (begin
7913 (use-modules (guix build utils))
7914 ;; Extract source
7915 (setenv "PATH" (string-append
7916 (assoc-ref %build-inputs "tar") "/bin" ":"
7917 (assoc-ref %build-inputs "gzip") "/bin"))
7918 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7919 (chdir (string-append ,name "-" ,version))
7920 ;; Patch shebangs
7921 (substitute* "epipe"
7922 (("/usr/bin/env bash")
7923 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
7924 (patch-shebang "epipe.pl"
7925 (list (string-append (assoc-ref %build-inputs "perl")
7926 "/bin")))
7927 ;; Installation
7928 (for-each (lambda (file)
7929 (install-file file (string-append %output "/bin")))
7930 '("epipe" "epipe.pl"))
7931 #t)))
7932 (home-page "https://github.com/cute-jumper/epipe")
7933 (synopsis "Pipe to the @code{emacsclient}")
7934 (description "@code{epipe} provides an utility to use your editor in
7935 the pipeline, featuring the support for running @code{emacsclient}.")
7936 (license license:gpl3+)))
7937
7938 (define-public emacs-hcl-mode
7939 (package
7940 (name "emacs-hcl-mode")
7941 (version "0.03")
7942 (source
7943 (origin
7944 (method url-fetch)
7945 (uri (string-append
7946 "https://github.com/syohex/emacs-hcl-mode/archive/"
7947 version ".tar.gz"))
7948 (file-name (string-append name "-" version ".tar.gz"))
7949 (sha256
7950 (base32
7951 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
7952 (build-system emacs-build-system)
7953 (home-page "https://github.com/syohex/emacs-hcl-mode")
7954 (synopsis "Major mode for the Hashicorp Configuration Language")
7955 (description
7956 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
7957 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
7958 highlighting and indentation support.")
7959 (license license:gpl3+)))
7960
7961 (define-public emacs-terraform-mode
7962 (package
7963 (name "emacs-terraform-mode")
7964 (version "0.06")
7965 (source
7966 (origin
7967 (method url-fetch)
7968 (uri (string-append
7969 "https://github.com/syohex/emacs-terraform-mode/archive/"
7970 version ".tar.gz"))
7971 (file-name (string-append name "-" version ".tar.gz"))
7972 (sha256
7973 (base32
7974 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
7975 (build-system emacs-build-system)
7976 (propagated-inputs
7977 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
7978 (home-page "https://github.com/syohex/emacs-terraform-mode")
7979 (synopsis "Major mode for Terraform")
7980 (description
7981 "@code{emacs-terraform-mode} provides a major mode for working with
7982 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
7983 functionality is inherited from @code{hcl-mode}.")
7984 (license license:gpl3+)))
7985
7986 (define-public emacs-exec-path-from-shell
7987 (package
7988 (name "emacs-exec-path-from-shell")
7989 (version "1.11")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (string-append
7994 "https://stable.melpa.org/packages/exec-path-from-shell-"
7995 version ".el"))
7996 (sha256
7997 (base32
7998 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
7999 (build-system emacs-build-system)
8000 (home-page "https://github.com/purcell/exec-path-from-shell")
8001 (synopsis "Get environment variables such as @var{PATH} from the shell")
8002 (description
8003 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8004 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8005 the like work as expected on systems on which Emacs is not guaranteed to
8006 inherit a login shell's environment variables. It also allows other
8007 environment variables to be retrieved from the shell, so that Emacs will see
8008 the same values you get in a terminal.")
8009 (license license:gpl3+)))
8010
8011 (define-public emacs-deft
8012 (package
8013 (name "emacs-deft")
8014 (version "0.8")
8015 (source
8016 (origin
8017 (method url-fetch)
8018 (uri (string-append "https://stable.melpa.org/packages/deft-"
8019 version ".el"))
8020 (sha256
8021 (base32
8022 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8023 (build-system emacs-build-system)
8024 (home-page "https://jblevins.org/projects/deft/")
8025 (synopsis "Quickly browse, filter, and edit plain text notes")
8026 (description
8027 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8028 directories of plain text notes, inspired by Notational Velocity.")
8029 (license license:bsd-3)))
8030
8031 (define-public emacs-anzu
8032 (package
8033 (name "emacs-anzu")
8034 (version "0.62")
8035 (source
8036 (origin
8037 (method url-fetch)
8038 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
8039 version ".tar.gz"))
8040 (file-name (string-append name "-" version ".tar.gz"))
8041 (sha256
8042 (base32
8043 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
8044 (build-system emacs-build-system)
8045 (home-page "https://github.com/syohex/emacs-anzu")
8046 (synopsis "Show number of matches in mode-line while searching")
8047 (description
8048 "Anzu provides a minor mode which displays \"current match/total
8049 matches\" in the mode line in various search modes. This is an Emacs port of
8050 Anzu.zim.")
8051 (license license:gpl3+)))
8052
8053 (define-public emacs-emmet-mode
8054 (package
8055 (name "emacs-emmet-mode")
8056 (version "1.0.8")
8057 (source (origin
8058 (method url-fetch)
8059 (uri (string-append "https://github.com/smihica/emmet-mode"
8060 "/archive/" version ".tar.gz"))
8061 (file-name (string-append name "-" version ".tar.gz"))
8062 (sha256
8063 (base32
8064 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
8065 (build-system emacs-build-system)
8066 (home-page "https://github.com/smihica/emmet-mode")
8067 (synopsis "Unofficial Emmet's support for Emacs")
8068 (description
8069 "Unfold CSS-selector-like expressions to markup. It is intended to be
8070 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8071 (license license:gpl3+)))
8072
8073 (define-public emacs-ergoemacs-mode
8074 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8075 (revision "1"))
8076 (package
8077 (name "emacs-ergoemacs-mode")
8078 (version (git-version "5.16.10.12" revision commit))
8079 (source
8080 (origin
8081 (method git-fetch)
8082 (uri (git-reference
8083 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8084 (commit commit)))
8085 (sha256
8086 (base32
8087 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8088 (build-system emacs-build-system)
8089 (propagated-inputs
8090 `(("emacs-undo-tree" ,emacs-undo-tree)))
8091 (home-page "https://ergoemacs.github.io/")
8092 (synopsis "Emacs mode based on common modern interface and ergonomics")
8093 (description
8094 "This package provides an efficient Emacs keybinding set based on
8095 statistics of command frequency, and supports common shortcuts for open,
8096 close, copy, cut, paste, undo, redo.")
8097 (license license:gpl3+))))
8098
8099 (define-public emacs-password-store
8100 (package
8101 (name "emacs-password-store")
8102 (version "1.7.2")
8103 (source (origin
8104 (method url-fetch)
8105 (uri
8106 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8107 "password-store-" version ".tar.xz"))
8108 (sha256
8109 (base32
8110 "1sl0d7nc85c6c2bmmmyb8rpmn47vhkj831l153mjlkawjvhwas27"))))
8111 (build-system emacs-build-system)
8112 (arguments
8113 `(#:phases
8114 (modify-phases %standard-phases
8115 (add-after 'unpack 'extract-el-file
8116 (lambda _
8117 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8118 (delete-file-recursively "contrib")
8119 (delete-file-recursively "man")
8120 (delete-file-recursively "src")
8121 (delete-file-recursively "tests"))))))
8122 (propagated-inputs
8123 `(("emacs-f" ,emacs-f)
8124 ("emacs-s" ,emacs-s)
8125 ("emacs-with-editor" ,emacs-with-editor)
8126 ("password-store" ,password-store)))
8127 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8128 (synopsis "Password store (pass) support for Emacs")
8129 (description
8130 "This package provides functions for working with pass (\"the
8131 standard Unix password manager\").")
8132 (license license:gpl2+)))
8133
8134 (define-public emacs-pass
8135 (package
8136 (name "emacs-pass")
8137 (version "1.7")
8138 (source (origin
8139 (method url-fetch)
8140 (uri (string-append
8141 "https://github.com/NicolasPetton/pass/archive/"
8142 version ".tar.gz"))
8143 (sha256
8144 (base32
8145 "0zlx9v6z0q3w9qhq9bq6vb7sli4c9x7qccm2wq55j0nw7bwy2yvj"))
8146 (file-name (string-append name "-" version ".tar.gz"))))
8147 (build-system emacs-build-system)
8148 (propagated-inputs
8149 `(("emacs-password-store" ,emacs-password-store)
8150 ("emacs-f" ,emacs-f)))
8151 (home-page "https://github.com/NicolasPetton/pass")
8152 (synopsis "Major mode for @file{password-store.el}")
8153 (description "This is a major mode for managing password-store (pass)
8154 keychains. The keychain entries are displayed in a directory-like structure
8155 and can be consulted and modified.")
8156 (license license:gpl3+)))
8157
8158 (define-public emacs-evil-anzu
8159 (package
8160 (name "emacs-evil-anzu")
8161 (version "0.03")
8162 (source
8163 (origin
8164 (method url-fetch)
8165 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8166 "/archive/" version ".tar.gz"))
8167 (file-name (string-append name "-" version ".tar.gz"))
8168 (sha256
8169 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8170 (build-system emacs-build-system)
8171 (propagated-inputs
8172 `(("emacs-evil" ,emacs-evil)
8173 ("emacs-anzu" ,emacs-anzu)))
8174 (home-page "https://github.com/syohex/emacs-evil-anzu")
8175 (synopsis "Anzu for evil-mode")
8176 (description "@code{anzu} provides a minor mode that displays the current
8177 match and total match information in the mode-line in various search modes.")
8178 (license license:gpl3+)))
8179
8180 (define-public emacs-pg
8181 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8182 (package
8183 (name "emacs-pg")
8184 (version (git-version "0.1" "1" commit))
8185 (source (origin
8186 (method git-fetch)
8187 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8188 (commit commit)))
8189 (file-name (git-file-name name version))
8190 (sha256
8191 (base32
8192 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8193 (build-system emacs-build-system)
8194 (home-page "https://github.com/cbbrowne/pg.el")
8195 (synopsis "Emacs Lisp interface for PostgreSQL")
8196 (description
8197 "This package provides an Emacs Lisp interface for PostgreSQL.")
8198 (license license:gpl3+))))
8199
8200 (define-public emacs-cl-generic
8201 (package
8202 (name "emacs-cl-generic")
8203 (version "0.3")
8204 (source
8205 (origin
8206 (method url-fetch)
8207 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8208 version ".el"))
8209 (sha256
8210 (base32
8211 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8212 (build-system emacs-build-system)
8213 (home-page "https://elpa.gnu.org/packages/seq.html")
8214 (synopsis
8215 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8216 (description "This package provides a subset of the features of the
8217 @code{cl-generic} package introduced in Emacs-25, for use on previous
8218 @code{emacsen}.")
8219 (license license:gpl3+)))
8220
8221 (define-public emacs-finalize
8222 (package
8223 (name "emacs-finalize")
8224 (version "2.0.0")
8225 (source
8226 (origin
8227 (method url-fetch)
8228 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
8229 version ".tar.gz"))
8230 (file-name (string-append name "-" version ".tar.gz"))
8231 (sha256
8232 (base32
8233 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
8234 (build-system emacs-build-system)
8235 (propagated-inputs
8236 `(("emacs-cl-generic" ,emacs-cl-generic)))
8237 (home-page "https://github.com/skeeto/elisp-finalize")
8238 (synopsis "Finalizers for Emacs Lisp")
8239 (description
8240 "This package will allows to immediately run a callback (a finalizer)
8241 after its registered lisp object has been garbage collected. This allows for
8242 extra resources, such as buffers and processes, to be cleaned up after the
8243 object has been freed.")
8244 (license license:unlicense)))
8245
8246 (define-public emacs-emacsql
8247 (package
8248 (name "emacs-emacsql")
8249 (version "2.0.3")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (string-append "https://github.com/skeeto/emacsql/archive/"
8254 version ".tar.gz"))
8255 (file-name (string-append name "-" version ".tar.gz"))
8256 (sha256
8257 (base32
8258 "04hfjdgl1zc7jysgjc7d7d3xqpr7q1q9gsmzffjd91ii3hpqjgx6"))))
8259 (build-system emacs-build-system)
8260 (arguments
8261 `(#:modules ((guix build emacs-build-system)
8262 (guix build utils)
8263 (guix build emacs-utils)
8264 (srfi srfi-26))
8265 #:phases
8266 (modify-phases %standard-phases
8267 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8268 (add-before 'install 'patch-elisp-shell-shebangs
8269 (lambda _
8270 (substitute* (find-files "." "\\.el")
8271 (("/bin/sh") (which "sh")))
8272 #t))
8273 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8274 (lambda _
8275 (setenv "SHELL" "sh")))
8276 (add-after 'setenv-shell 'build-emacsql-sqlite
8277 (lambda _
8278 (invoke "make" "binary" "CC=gcc")))
8279 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
8280 ;; This build phase installs emacs-emacsql binary.
8281 (lambda* (#:key outputs #:allow-other-keys)
8282 (install-file "sqlite/emacsql-sqlite"
8283 (string-append (assoc-ref outputs "out")
8284 "/bin"))
8285 #t))
8286 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
8287 ;; This build phase removes interactive prompts
8288 ;; and makes sure Emacs look for binaries in the right places.
8289 (lambda* (#:key outputs #:allow-other-keys)
8290 (let ((file "emacsql-sqlite.el"))
8291 (chmod file #o644)
8292 (emacs-substitute-sexps file
8293 ;; Avoid interactive prompts.
8294 ("(defvar emacsql-sqlite-user-prompted" 't)
8295 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
8296 ("(executable-find" (which "gcc"))
8297 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
8298 ;; in the right place.
8299 ("(defvar emacsql-sqlite-executable"
8300 (string-append (assoc-ref outputs "out")
8301 "/bin/emacsql-sqlite"))))))
8302 (replace 'install
8303 (lambda* (#:key outputs #:allow-other-keys)
8304 (let* ((out (assoc-ref outputs "out")))
8305 (install-file "sqlite/emacsql-sqlite"
8306 (string-append out "/bin"))
8307 (for-each (cut install-file <>
8308 (string-append out "/share/emacs/site-lisp/guix.d/"
8309 "emacsql" "-" ,version))
8310 (find-files "." "\\.elc*$")))
8311 #t)))))
8312 (inputs
8313 `(("emacs-minimal" ,emacs-minimal)
8314 ("mariadb" ,mariadb)
8315 ("postgresql" ,postgresql)))
8316 (propagated-inputs
8317 `(("emacs-finalize" ,emacs-finalize)
8318 ("emacs-pg" ,emacs-pg)))
8319 (home-page "https://github.com/skeeto/emacsql")
8320 (synopsis "Emacs high-level SQL database front-end")
8321 (description "Any readable Lisp value can be stored as a value in EmacSQL,
8322 including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
8323 has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
8324 object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
8325 (license license:gpl3+)))
8326
8327 (define-public emacs-closql
8328 (package
8329 (name "emacs-closql")
8330 (version "0.5.1")
8331 (source
8332 (origin
8333 (method url-fetch)
8334 (uri (string-append "https://github.com/emacscollective/closql/archive/"
8335 "v" version ".tar.gz"))
8336 (file-name (string-append name "-" version ".tar.gz"))
8337 (sha256
8338 (base32
8339 "0wa6r0kgbb7f19039p5f3di4dvrvxfgpd8bkam94fca7jvzj536c"))))
8340 (build-system emacs-build-system)
8341 (propagated-inputs
8342 `(("emacs-emacsql" ,emacs-emacsql)))
8343 (home-page "https://github.com/emacscollective/closql")
8344 (synopsis "Store EIEIO objects using EmacSQL")
8345 (description
8346 "This package allows to store uniform EIEIO objects in an EmacSQL
8347 database. SQLite is used as backend. This library imposes some restrictions
8348 on what kind of objects can be stored; it isn't intended to store arbitrary
8349 objects. All objects have to share a common superclass and subclasses cannot
8350 add any additional instance slots.")
8351 (license license:gpl3)))
8352
8353 (define-public emacs-epkg
8354 ;; The release version is to old for the current database scheme.
8355 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
8356 (package
8357 (name "emacs-epkg")
8358 (version (git-version "3.0.0" "1" commit))
8359 (source
8360 (origin
8361 (method git-fetch)
8362 (uri (git-reference
8363 (url "https://github.com/emacscollective/epkg.git")
8364 (commit commit)))
8365 (file-name (git-file-name name version))
8366 (sha256
8367 (base32
8368 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
8369 (build-system emacs-build-system)
8370 (propagated-inputs
8371 `(("emacs-closql" ,emacs-closql)
8372 ("emacs-dash" ,emacs-dash)))
8373 (home-page "https://emacsmirror.net")
8374 (synopsis "Browse the Emacsmirror package database")
8375 (description "This package provides access to a local copy of the
8376 Emacsmirror package database. It provides low-level functions for querying
8377 the database and a @file{package.el} user interface for browsing the database.
8378 Epkg itself is not a package manager.
8379
8380 Getting a local copy:
8381
8382 @example
8383 git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8384 cd ~/.emacs.d/epkgs
8385 git submodule init
8386 git config --global url.https://github.com/.insteadOf git@@github.com:
8387 git submodule update
8388 @end example
8389
8390 Some submodule may be missing. In this case Git will prompt for a GitHub user
8391 name and password. To skip it press a @key{Return} key.
8392
8393 You could get a Epkg package list by invoking @code{epkg-list-packages} in
8394 Emacs.")
8395 (license license:gpl3+))))
8396
8397 (define-public emacs-elisp-slime-nav
8398 (package
8399 (name "emacs-elisp-slime-nav")
8400 (version "0.9")
8401 (source
8402 (origin
8403 (method url-fetch)
8404 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8405 version ".tar.gz"))
8406 (file-name (string-append name "-" version ".tar.gz"))
8407 (sha256
8408 (base32
8409 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8410 (build-system emacs-build-system)
8411 (home-page "https://github.com/purcell/elisp-slime-nav")
8412 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8413 (description
8414 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8415 in @code{emacs-lisp-mode}, together with an elisp equivalent of
8416 @code{slime-describe-symbol}.")
8417 (license license:gpl3+)))
8418
8419 (define-public emacs-dedicated
8420 (package
8421 (name "emacs-dedicated")
8422 (version "1.0.0")
8423 (source (origin
8424 (method url-fetch)
8425 (uri (string-append
8426 "https://github.com/emacsorphanage/dedicated/archive/"
8427 version
8428 ".tar.gz"))
8429 (sha256
8430 (base32
8431 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8432 (file-name (string-append name "-" version ".tar.gz"))))
8433 (build-system emacs-build-system)
8434 (home-page "https://github.com/emacsorphanage/dedicated")
8435 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8436 (description
8437 "This simple Emacs minor mode allows you to toggle a window's
8438 \"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8439 files into that window. This can be quite handy since many commands will use
8440 another window to show results (compilation mode, starting info, and so on).
8441 A dedicated window won't be used for such a purpose. For details, please read
8442 the source file.")
8443 (license license:gpl2+)))
8444
8445 (define-public emacs-nnreddit
8446 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8447 (revision "1"))
8448 (package
8449 (name "emacs-nnreddit")
8450 (version (string-append "0.0.1-" revision "."
8451 (string-take commit 7)))
8452 (source (origin
8453 (method git-fetch)
8454 (uri (git-reference
8455 (url "https://github.com/paul-issartel/nnreddit.git")
8456 (commit commit)))
8457 (file-name (string-append name "-" version "-checkout"))
8458 (sha256
8459 (base32
8460 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8461 (build-system emacs-build-system)
8462 (home-page "https://github.com/paul-issartel/nnreddit")
8463 (synopsis "Reddit backend for the Gnus newsreader")
8464 (description "@url{https://www.reddit.com} backend for the Gnus
8465 newsreader.")
8466 (license license:gpl3+))))
8467
8468 (define-public emacs-makey
8469 (package
8470 (name "emacs-makey")
8471 (version "0.3")
8472 (source
8473 (origin
8474 (method url-fetch)
8475 (uri (string-append "https://github.com/mickeynp/makey/archive/"
8476 version ".tar.gz"))
8477 (file-name (string-append name "-" version ".tar.gz"))
8478 (sha256
8479 (base32
8480 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
8481 (build-system emacs-build-system)
8482 (home-page "https://github.com/mickeynp/makey")
8483 (synopsis "Emacs interactive command-line mode")
8484 (description
8485 "This package provides an Emacs interactive command-line mode.")
8486 (license license:gpl3+)))
8487
8488 (define-public emacs-outorg
8489 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
8490 (package
8491 (name "emacs-outorg")
8492 (version (git-version "2.0" "1" commit))
8493 (source
8494 (origin
8495 (method git-fetch)
8496 (uri (git-reference
8497 (url "https://github.com/alphapapa/outorg")
8498 (commit commit)))
8499 (file-name (git-file-name name version))
8500 (sha256
8501 (base32
8502 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
8503 (build-system emacs-build-system)
8504 (home-page "https://github.com/alphapapa/outorg")
8505 (synopsis "Org-style comment editing")
8506 (description "Outorg is for editing comment-sections of source-code
8507 files in temporary Org-mode buffers. It turns conventional
8508 literate-programming upside-down in that the default mode is the
8509 programming-mode, and special action has to be taken to switch to the
8510 text-mode (i.e. Org-mode).")
8511 (license license:gpl3+))))
8512
8513 (define-public emacs-outshine
8514 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
8515 (package
8516 (name "emacs-outshine")
8517 (version (git-version "2.0" "1" commit))
8518 (source (origin
8519 (method git-fetch)
8520 (uri (git-reference
8521 (url "https://github.com/alphapapa/outshine.git")
8522 (commit commit)))
8523 (file-name (git-file-name name version))
8524 (sha256
8525 (base32
8526 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
8527 (build-system emacs-build-system)
8528 (propagated-inputs
8529 `(("emacs-outorg" ,emacs-outorg)))
8530 (home-page "https://github.com/alphapapa/outshine")
8531 (synopsis "Emacs outline with outshine")
8532 (description "Outshine attempts to bring the look and feel of
8533 @code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
8534 of @code{outline-minor-mode} (@code{org-mode} itself derives from
8535 outline-mode), so there is no such thing like an outshine mode, only
8536 @code{outline-minor-mode} with outshine extensions loaded.")
8537 (license license:gpl3+))))
8538
8539 (define-public emacs-parsebib
8540 (package
8541 (name "emacs-parsebib")
8542 (version "2.3.1")
8543 (source
8544 (origin
8545 (method url-fetch)
8546 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
8547 version ".tar.gz"))
8548 (file-name (string-append name "-" version ".tar.gz"))
8549 (sha256
8550 (base32
8551 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
8552 (build-system emacs-build-system)
8553 (home-page "https://github.com/joostkremers/parsebib")
8554 (synopsis "Library for parsing bib files")
8555 (description
8556 "This package provides an Emacs library for parsing bib files.")
8557 (license license:gpl3+)))
8558
8559 (define-public emacs-biblio
8560 (package
8561 (name "emacs-biblio")
8562 (version "0.1")
8563 (source
8564 (origin
8565 (method url-fetch)
8566 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
8567 version ".tar.gz"))
8568 (file-name (string-append name "-" version ".tar.gz"))
8569 (sha256
8570 (base32
8571 "109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
8572 (build-system emacs-build-system)
8573 (propagated-inputs
8574 `(("emacs-seq" ,emacs-seq)
8575 ("emacs-dash" ,emacs-dash)
8576 ("emacs-let-alist" ,emacs-let-alist)))
8577 (home-page "https://github.com/cpitclaudel/biblio.el")
8578 (synopsis "Browse and import bibliographic references")
8579 (description "This package provides an extensible Emacs package for
8580 browsing and fetching references.
8581
8582 @file{biblio.el} makes it easy to browse and gather bibliographic references
8583 and publications from various sources, by keywords or by DOI. References are
8584 automatically fetched from well-curated sources, and formatted as BibTeX.")
8585 (license license:gpl3+)))
8586
8587 (define-public emacs-helm-bibtex
8588 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
8589 (revision "1"))
8590 (package
8591 (name "emacs-helm-bibtex")
8592 (version (string-append "2.0.0" "-" revision "."
8593 (string-take commit 7)))
8594 (source
8595 (origin
8596 (method git-fetch)
8597 (uri (git-reference
8598 (url "https://github.com/tmalsburg/helm-bibtex.git")
8599 (commit commit)))
8600 (file-name (string-append name "-" version "-checkout"))
8601 (sha256
8602 (base32
8603 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
8604 (build-system emacs-build-system)
8605 (propagated-inputs
8606 `(("emacs-helm" ,emacs-helm)
8607 ("emacs-parsebib" ,emacs-parsebib)
8608 ("emacs-s" ,emacs-s)
8609 ("emacs-dash" ,emacs-dash)
8610 ("emacs-f" ,emacs-f)
8611 ("emacs-biblio" ,emacs-biblio)
8612 ("emacs-ivy" ,emacs-ivy)))
8613 (home-page "https://github.com/tmalsburg/helm-bibtex")
8614 (synopsis "Bibliography manager based on Helm")
8615 (description "This package provides bibliography manager for Emacs,
8616 based on Helm and the bibtex-completion backend.
8617
8618 Key features:
8619
8620 @itemize
8621 @item Quick access to your bibliography from within Emacs
8622 @item Powerful search capabilities
8623 @item Provides instant search results as you type
8624 @item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
8625 @item Open the PDFs, URLs, or DOIs associated with an entry
8626 @item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
8627 BibTeX entries, or plain text references at point, attach PDFs to emails
8628 @item Support for note taking
8629 @item Quick access to online bibliographic databases such as Pubmed,
8630 arXiv, Google Scholar, Library of Congress, etc.
8631 @item Imports BibTeX entries from CrossRef and other sources.
8632 @end itemize\n")
8633 (license license:gpl3+))))
8634
8635 (define-public emacs-ewmctrl
8636 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
8637 (package
8638 (name "emacs-ewmctrl")
8639 (version (git-version "0.0.1" "1" commit))
8640 (source
8641 (origin
8642 (method git-fetch)
8643 (uri (git-reference
8644 (url "https://github.com/flexibeast/ewmctrl.git")
8645 (commit commit)))
8646 (file-name (git-file-name name version))
8647 (sha256
8648 (base32
8649 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
8650 (build-system emacs-build-system)
8651 (arguments
8652 '(#:phases
8653 (modify-phases %standard-phases
8654 (add-after 'unpack 'patch-ewmctrl
8655 ;; This build phase makes sure ‘ewmctrl’ looks
8656 ;; for ‘wmctrl’ in the right place.
8657 (lambda _
8658 (let ((file "ewmctrl.el"))
8659 (chmod file #o644)
8660 (emacs-substitute-sexps file
8661 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
8662 (inputs
8663 `(("wmctrl" ,wmctrl)))
8664 (home-page "https://github.com/flexibeast/ewmctrl")
8665 (synopsis "Emacs interface to @code{wmctrl}")
8666 (description "@code{ewmctrl} provides an Emacs interface to
8667 @code{wmctrl} command-line window-management program.")
8668 (license license:gpl3+))))
8669
8670 (define-public emacs-helm-gtags
8671 (package
8672 (name "emacs-helm-gtags")
8673 (version "1.5.6")
8674 (source (origin
8675 (method url-fetch)
8676 (uri (string-append
8677 "https://github.com/syohex/emacs-helm-gtags/archive/"
8678 version ".tar.gz"))
8679 (file-name (string-append name "-" version ".tar.gz"))
8680 (sha256
8681 (base32
8682 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
8683 (build-system emacs-build-system)
8684 (propagated-inputs
8685 `(("emacs-helm" ,emacs-helm)))
8686 (home-page "https://github.com/syohex/emacs-helm-gtags")
8687 (synopsis "Emacs Helm interface to GNU Global")
8688 (description
8689 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
8690 (license license:gpl3+)))
8691
8692 (define-public emacs-list-utils
8693 (package
8694 (name "emacs-list-utils")
8695 (version "0.4.4")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
8700 "v" version ".tar.gz"))
8701 (file-name (string-append name "-" version ".tar.gz"))
8702 (sha256
8703 (base32
8704 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
8705 (build-system emacs-build-system)
8706 (home-page "https://github.com/rolandwalker/list-utils")
8707 (synopsis "List-manipulation utility functions")
8708 (description "This package provides a list manipulation library for Emacs.")
8709 (license license:gpl3+)))
8710
8711 (define-public emacs-move-text
8712 (package
8713 (name "emacs-move-text")
8714 (version "2.0.8")
8715 (source
8716 (origin
8717 (method url-fetch)
8718 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
8719 version ".tar.gz"))
8720 (file-name (string-append name "-" version ".tar.gz"))
8721 (sha256
8722 (base32
8723 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
8724 (build-system emacs-build-system)
8725 (home-page "https://github.com/emacsfodder/move-text")
8726 (synopsis "Move current line or region with M-up or M-down")
8727 (description "This package provide functions to move the current line
8728 using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
8729 region instead.")
8730 (license license:gpl3+)))
8731
8732 (define-public emacs-validate
8733 (package
8734 (name "emacs-validate")
8735 (version "1.0.5")
8736 (source (origin
8737 (method url-fetch)
8738 (uri (string-append "https://github.com/Malabarba/validate.el"
8739 "/archive/" version ".tar.gz"))
8740 (file-name (string-append name "-" version ".tar.gz"))
8741 (sha256
8742 (base32
8743 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
8744 (build-system emacs-build-system)
8745 (home-page "https://github.com/Malabarba/validate.el")
8746 (synopsis "Emacs library for scheme validation")
8747 (description "This Emacs library provides two functions that perform
8748 schema validation.")
8749 (license license:gpl3+)))
8750
8751 (define-public emacs-rainbow-blocks
8752 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
8753 (package
8754 (name "emacs-rainbow-blocks")
8755 (version (git-version "1.0.0" "1" commit))
8756 (source (origin
8757 (method git-fetch)
8758 (uri (git-reference
8759 (url "https://github.com/istib/rainbow-blocks.git")
8760 (commit commit)))
8761 (file-name (git-file-name name version))
8762 (sha256
8763 (base32
8764 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
8765 (build-system emacs-build-system)
8766 (home-page "https://github.com/istib/rainbow-blocks")
8767 (synopsis "Highlight sexp blocks")
8768 (description "Rainbow-blocks is an Emacs mode that highlights blocks
8769 made of parentheses, brackets, and braces according to their depth. Each
8770 successive level is highlighted in a different color. This makes it easy to
8771 orient yourself in the code, and tell which statements are at a given level.")
8772 (license license:gpl3+))))
8773
8774 (define-public emacs-hierarchy
8775 (package
8776 (name "emacs-hierarchy")
8777 (version "0.7.0")
8778 (source
8779 (origin
8780 (method url-fetch)
8781 (uri (string-append
8782 "https://github.com/DamienCassou/hierarchy/archive/"
8783 "v" version ".tar.gz"))
8784 (file-name (string-append name "-" version ".tar.gz"))
8785 (sha256
8786 (base32
8787 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
8788 (build-system emacs-build-system)
8789 (home-page "https://github.com/DamienCassou/hierarchy")
8790 (synopsis "Library to create and display hierarchy structures")
8791 (description "This package provides an Emacs library to create, query,
8792 navigate and display hierarchy structures.")
8793 (license license:gpl3+)))
8794
8795 (define-public emacs-tree-mode
8796 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
8797 (revision "1"))
8798 (package
8799 (name "emacs-tree-mode")
8800 (version (string-append "0.0.1" "-" revision "."
8801 (string-take commit 7)))
8802 (source
8803 (origin
8804 (method git-fetch)
8805 (uri (git-reference
8806 (url "https://github.com/emacsorphanage/tree-mode.git")
8807 (commit commit)))
8808 (file-name (string-append name "-" version "-checkout"))
8809 (sha256
8810 (base32
8811 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
8812 (build-system emacs-build-system)
8813 (home-page "https://github.com/emacsorphanage/tree-mode")
8814 (synopsis "Emacs mode to manage tree widgets")
8815 (description
8816 "This package provides an Emacs library to manage tree widgets.")
8817 (license license:gpl3+))))
8818
8819 (define-public emacs-md4rd
8820 (let ((commit "be0fc4951b2d1f5194ffa1fcaac706dbac560500")
8821 (revision "1"))
8822 (package
8823 (name "emacs-md4rd")
8824 (version (string-append "0.0.1" "-" revision "."
8825 (string-take commit 7)))
8826 (source (origin
8827 (method git-fetch)
8828 (uri (git-reference
8829 (url "https://github.com/ahungry/md4rd.git")
8830 (commit commit)))
8831 (file-name (string-append name "-" version "-checkout"))
8832 (sha256
8833 (base32
8834 "1i93shx5x192gd7cl2r6gvcvhhwyi1k08abi5w3izv1hn3pmksgq"))))
8835 (propagated-inputs
8836 `(("emacs-hierarchy" ,emacs-hierarchy)
8837 ("emacs-request" ,emacs-request)
8838 ("emacs-dash" ,emacs-dash)
8839 ("emacs-s" ,emacs-s)
8840 ("emacs-tree-mode" ,emacs-tree-mode)))
8841 (build-system emacs-build-system)
8842 (home-page "https://github.com/ahungry/md4rd")
8843 (synopsis "Emacs Mode for Reddit")
8844 (description
8845 "This package allows to read Reddit from within Emacs interactively.")
8846 (license license:gpl3+))))
8847
8848 (define-public emacs-pulseaudio-control
8849 (let ((commit "1da372ec79f5d2fb901d1f9f0679fee8848fd011")
8850 (revision "2"))
8851 (package
8852 (name "emacs-pulseaudio-control")
8853 (version (git-version "0.0.1" revision commit))
8854 (source
8855 (origin
8856 (method git-fetch)
8857 (uri (git-reference
8858 (url "https://github.com/flexibeast/pulseaudio-control.git")
8859 (commit commit)))
8860 (file-name (git-file-name name version))
8861 (sha256
8862 (base32
8863 "02xrsms2pjqdk6327midi61i5vg2h9cq5jwaxv43ldm68wl7hi6k"))))
8864 (build-system emacs-build-system)
8865 (arguments
8866 '(#:phases (modify-phases %standard-phases
8867 (add-after 'unpack 'patch-file-name
8868 (lambda* (#:key inputs #:allow-other-keys)
8869 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
8870 (chmod "pulseaudio-control.el" #o600)
8871 (emacs-substitute-variables "pulseaudio-control.el"
8872 ("pulseaudio-control-pactl-path"
8873 (string-append pulseaudio "/bin/pactl")))
8874 #t))))))
8875 (inputs `(("pulseaudio" ,pulseaudio)))
8876 (home-page "https://github.com/flexibeast/pulseaudio-control")
8877 (synopsis "Control @code{pulseaudio} from Emacs")
8878 (description
8879 "This package allows to control @code{pulseaudio} from Emacs.")
8880 (license license:gpl3+))))
8881
8882 (define-public emacs-datetime
8883 (package
8884 (name "emacs-datetime")
8885 (version "0.3")
8886 (source (origin
8887 (method url-fetch)
8888 (uri (string-append
8889 "https://github.com/doublep/datetime/archive/"
8890 version ".tar.gz"))
8891 (file-name (string-append name "-" version ".tar.gz"))
8892 (sha256
8893 (base32
8894 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
8895 (build-system emacs-build-system)
8896 (home-page "https://github.com/doublep/datetime/")
8897 (synopsis "Library to work with dates in Emacs")
8898 (description "Parsing, formatting, matching and recoding
8899 timestamps and date-time format strings library for Emacs.")
8900 (license license:gpl3+)))
8901
8902 (define-public emacs-org-mind-map
8903 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
8904 (revision "1"))
8905 (package
8906 (name "emacs-org-mind-map")
8907 (version (string-append "0.0.1" "-" revision "."
8908 (string-take commit 7)))
8909 (source
8910 (origin
8911 (method git-fetch)
8912 (uri (git-reference
8913 (url "https://github.com/theodorewiles/org-mind-map.git")
8914 (commit commit)))
8915 (file-name (string-append name "-" version "-checkout"))
8916 (sha256
8917 (base32
8918 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
8919 (propagated-inputs
8920 `(("emacs-dash" ,emacs-dash)))
8921 (build-system emacs-build-system)
8922 (home-page "https://github.com/theodorewiles/org-mind-map")
8923 (synopsis "Create Graphviz directed graphs from Org files")
8924 (description
8925 "This package creates Graphviz directed graphs from Org files.")
8926 (license license:gpl3+))))
8927
8928 (define-public emacs-npm-mode
8929 (package
8930 (name "emacs-npm-mode")
8931 (version "0.6.0")
8932 (source
8933 (origin
8934 (method url-fetch)
8935 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
8936 version ".tar.gz"))
8937 (file-name (string-append name "-" version ".tar.gz"))
8938 (sha256
8939 (base32
8940 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
8941 (build-system emacs-build-system)
8942 (home-page "https://github.com/mojochao/npm-mode")
8943 (synopsis "Minor mode for working with @code{npm} projects")
8944 (description
8945 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
8946 (license license:gpl3+)))
8947
8948 (define-public emacs-seq
8949 (package
8950 (name "emacs-seq")
8951 (version "2.20")
8952 (source
8953 (origin
8954 (method url-fetch)
8955 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
8956 (sha256
8957 (base32
8958 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
8959 (build-system emacs-build-system)
8960 (home-page "http://elpa.gnu.org/packages/seq.html")
8961 (synopsis "Sequence manipulation functions")
8962 (description "Sequence-manipulation functions that complement basic
8963 functions provided by @file{subr.el}.")
8964 (license license:gpl3+)))
8965
8966 (define-public emacs-itail
8967 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
8968 (revision "1"))
8969 (package
8970 (name "emacs-itail")
8971 (version (string-append "0.0.1" "-" revision "."
8972 (string-take commit 7)))
8973 (source
8974 (origin
8975 (method git-fetch)
8976 (uri (git-reference
8977 (url "https://github.com/re5et/itail.git")
8978 (commit commit)))
8979 (file-name (string-append name "-" version "-checkout"))
8980 (sha256
8981 (base32
8982 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
8983 (build-system emacs-build-system)
8984 (home-page "https://github.com/re5et/itail")
8985 (synopsis "Interactive @code{tail} Emacs mode")
8986 (description "@code{itail} provides interactive @code{tail} mode
8987 that allows you to filter the tail with unix pipes and highlight the
8988 contents of the tailed file. Works locally or on remote files using
8989 tramp.")
8990 (license license:gpl3+))))
8991
8992 (define-public emacs-loop
8993 (package
8994 (name "emacs-loop")
8995 (version "1.3")
8996 (source
8997 (origin
8998 (method url-fetch)
8999 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9000 version ".tar.gz"))
9001 (file-name (string-append name "-" version ".tar.gz"))
9002 (sha256
9003 (base32
9004 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9005 (build-system emacs-build-system)
9006 (home-page "https://github.com/Wilfred/loop.el")
9007 (synopsis "Imperative loop structures for Emacs")
9008 (description "Loop structures familiar to users of other languages. This
9009 library adds a selection of popular loop structures as well as break and
9010 continue.")
9011 (license license:gpl3+)))
9012
9013 (define-public emacs-elisp-refs
9014 (package
9015 (name "emacs-elisp-refs")
9016 (version "1.3")
9017 (source
9018 (origin
9019 (method url-fetch)
9020 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9021 version ".tar.gz"))
9022 (file-name (string-append name "-" version ".tar.gz"))
9023 (sha256
9024 (base32
9025 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
9026 (build-system emacs-build-system)
9027 (propagated-inputs
9028 `(("emacs-dash" ,emacs-dash)
9029 ("emacs-f" ,emacs-f)
9030 ("emacs-list-utils" ,emacs-list-utils)
9031 ("emacs-loop" ,emacs-loop)
9032 ("emacs-s" ,emacs-s)
9033 ("emacs-shut-up" ,emacs-shut-up)))
9034 (home-page "https://github.com/Wilfred/elisp-refs")
9035 (synopsis "Find callers of elisp functions or macros")
9036 (description "Find references to functions, macros or variables. Unlike a
9037 dumb text search, @code{elisp-refs} actually parses the code, so it's never
9038 confused by comments or @code{foo-bar} matching @code{foo}.")
9039 (license license:gpl3+)))
9040
9041 (define-public emacs-crux
9042 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9043 (revision "1"))
9044 (package
9045 (name "emacs-crux")
9046 (version (string-append "0.3.0" "-" revision "."
9047 (string-take commit 7)))
9048 (source
9049 (origin
9050 (method git-fetch)
9051 (uri (git-reference
9052 (url "https://github.com/bbatsov/crux.git")
9053 (commit commit)))
9054 (file-name (string-append name "-" version "-checkout"))
9055 (sha256
9056 (base32
9057 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9058 (build-system emacs-build-system)
9059 (home-page "https://github.com/bbatsov/crux")
9060 (synopsis "Collection of useful functions for Emacs")
9061 (description
9062 "@code{crux} provides a collection of useful functions for Emacs.")
9063 (license license:gpl3+))))
9064
9065 (define-public emacs-edit-server
9066 (package
9067 (name "emacs-edit-server")
9068 (version "1.13")
9069 (source
9070 (origin
9071 (method url-fetch)
9072 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9073 "v" version ".tar.gz"))
9074 (file-name (string-append name "-" version ".tar.gz"))
9075 (sha256
9076 (base32
9077 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9078 (build-system emacs-build-system)
9079 (arguments
9080 `(#:phases
9081 (modify-phases %standard-phases
9082 (add-after 'unpack 'chdir-elisp
9083 ;; Elisp directory is not in root of the source.
9084 (lambda _
9085 (chdir "servers"))))))
9086 (home-page "https://github.com/stsquad/emacs_chrome")
9087 (synopsis "Server that responds to edit requests from Chromium")
9088 (description
9089 "This package provides an edit server to respond to requests from Emacs.")
9090 (license license:gpl3+)))
9091
9092 (define-public emacs-m-buffer-el
9093 (package
9094 (name "emacs-m-buffer-el")
9095 (version "0.15")
9096 (source
9097 (origin
9098 (method url-fetch)
9099 (uri (string-append "https://github.com/phillord/m-buffer-el"
9100 "/archive/" "v" version ".tar.gz"))
9101 (file-name (string-append name "-" version ".tar.gz"))
9102 (sha256
9103 (base32
9104 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9105 (arguments
9106 `(#:phases
9107 (modify-phases %standard-phases
9108 (add-before 'install 'check
9109 (lambda* (#:key inputs #:allow-other-keys)
9110 (invoke "emacs" "--batch" "-L" "."
9111 "-l" "test/m-buffer-test.el"
9112 "-l" "test/m-buffer-at-test.el"
9113 "-f" "ert-run-tests-batch-and-exit"))))))
9114 (build-system emacs-build-system)
9115 (home-page "https://github.com/phillord/m-buffer-el")
9116 (synopsis "List oriented buffer operations for Emacs")
9117 (description "@code{m-buffer} provides a set of list-orientated functions
9118 for operating over the contents of Emacs buffers.")
9119 (license license:gpl3+)))
9120
9121 (define-public emacs-let-alist
9122 (package
9123 (name "emacs-let-alist")
9124 (version "1.0.5")
9125 (source
9126 (origin
9127 (method url-fetch)
9128 (uri (string-append
9129 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9130 (sha256
9131 (base32
9132 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9133 (build-system emacs-build-system)
9134 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9135 (synopsis "Easily let-bind values of an assoc-list by their names")
9136 (description "This package offers a single macro, @code{let-alist}. This
9137 macro takes a first argument (whose value must be an alist) and a body.")
9138 (license license:gpl3+)))
9139
9140 (define-public emacs-esup
9141 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9142 (revision "1"))
9143 (package
9144 (name "emacs-esup")
9145 (version (string-append "0.6" "-" revision "."
9146 (string-take commit 7)))
9147 (source
9148 (origin
9149 (method git-fetch)
9150 (uri (git-reference
9151 (url "https://github.com/jschaf/esup.git")
9152 (commit commit)))
9153 (file-name (string-append name "-" version "-checkout"))
9154 (sha256
9155 (base32
9156 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9157 ;; TODO: Add tests
9158 (build-system emacs-build-system)
9159 (home-page "https://github.com/jschaf/esup")
9160 (synopsis "Emacs start up profiler")
9161 (description "Benchmark Emacs Startup time without ever leaving
9162 your Emacs.")
9163 (license license:gpl2+))))
9164
9165 (define-public emacs-sourcemap
9166 (package
9167 (name "emacs-sourcemap")
9168 (version "0.03")
9169 (source
9170 (origin
9171 (method url-fetch)
9172 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9173 version ".tar.gz"))
9174 (file-name (string-append name "-" version ".tar.gz"))
9175 (sha256
9176 (base32
9177 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9178 (build-system emacs-build-system)
9179 (home-page "https://github.com/syohex/emacs-sourcemap")
9180 (synopsis "Sourcemap parser")
9181 (description "Sourcemap parser")
9182 (license license:gpl3+)))
9183
9184 (define-public emacs-macrostep
9185 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9186 (package
9187 (name "emacs-macrostep")
9188 (version (git-version "0.9" "1" commit))
9189 (source (origin
9190 (method git-fetch)
9191 (uri (git-reference
9192 (url "https://github.com/joddie/macrostep.git")
9193 (commit commit)))
9194 (file-name (string-append name "-" version "-checkout"))
9195 (sha256
9196 (base32
9197 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9198 (build-system emacs-build-system)
9199 (arguments
9200 '(#:phases
9201 (modify-phases %standard-phases
9202 (add-before 'check 'remove-test
9203 ;; Fails because of requirement ‘/bin/sh’.
9204 (lambda _
9205 (let ((file "macrostep-test.el"))
9206 (chmod file #o644)
9207 (emacs-batch-edit-file file
9208 `(progn (progn (goto-char (point-min))
9209 (re-search-forward
9210 "(ert-deftest macrostep-expand-c-macros")
9211 (beginning-of-line)
9212 (kill-sexp))
9213 (basic-save-buffer))))))
9214 (add-before 'install 'check
9215 (lambda _
9216 (invoke "emacs" "--batch" "-L" "."
9217 "-l" "macrostep-test.el"
9218 "-f" "ert-run-tests-batch-and-exit"))))))
9219 (home-page "https://github.com/joddie/macrostep")
9220 (synopsis "Interactive macro-expander for Emacs")
9221 (description "@code{macrostep} is an Emacs minor mode for interactively
9222 stepping through the expansion of macros in Emacs Lisp source code. It lets
9223 you see exactly what happens at each step of the expansion process by
9224 pretty-printing the expanded forms inline in the source buffer, which is
9225 temporarily read-only while macro expansions are visible. You can expand and
9226 collapse macro forms one step at a time, and evaluate or instrument the
9227 expansions for debugging with Edebug as normal (but see “Bugs and known
9228 limitations”, below). Single-stepping through the expansion is particularly
9229 useful for debugging macros that expand into another macro form. These can be
9230 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9231 until the top-level form is no longer a macro call.")
9232 (license license:gpl3+))))
9233
9234 (define-public emacs-parent-mode
9235 (package
9236 (name "emacs-parent-mode")
9237 (version "2.3")
9238 (source
9239 (origin
9240 (method url-fetch)
9241 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9242 version ".tar.gz"))
9243 (file-name (string-append name "-" version ".tar.gz"))
9244 (sha256
9245 (base32
9246 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9247 (build-system emacs-build-system)
9248 (home-page "https://github.com/Fanael/parent-mode")
9249 (synopsis "Get major mode's parent modes")
9250 (description "Get major mode's parent modes")
9251 (license license:gpl3+)))
9252
9253 (define-public emacs-lacarte
9254 (package
9255 (name "emacs-lacarte")
9256 (version "0.1")
9257 (source (origin
9258 (method url-fetch)
9259 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
9260 (sha256
9261 (base32
9262 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
9263 (build-system emacs-build-system)
9264 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
9265 (synopsis "Execute menu items as commands, with completion")
9266 (description "Execute menu items as commands, with completion.")
9267 (license license:gpl3)))
9268
9269 (define-public emacs-company-lua
9270 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
9271 (package
9272 (name "emacs-company-lua")
9273 (version (git-version "0.1" "1" commit))
9274 (source
9275 (origin
9276 (method git-fetch)
9277 (uri (git-reference
9278 (url "https://github.com/ptrv/company-lua.git")
9279 (commit commit)))
9280 (file-name (git-file-name name version))
9281 (sha256
9282 (base32
9283 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
9284 (build-system emacs-build-system)
9285 (propagated-inputs
9286 `(("emacs-company" ,emacs-company)
9287 ("emacs-s" ,emacs-s)
9288 ("emacs-f" ,emacs-f)
9289 ("emacs-lua-mode" ,emacs-lua-mode)))
9290 (home-page "https://github.com/ptrv/company-lua")
9291 (synopsis "Company backend for Lua")
9292 (description
9293 "This package provides Company backend for Lua programming language.")
9294 (license license:gpl3+))))
9295
9296 (define-public emacs-beginend
9297 (package
9298 (name "emacs-beginend")
9299 (version "2.0.0")
9300 (source
9301 (origin
9302 (method url-fetch)
9303 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
9304 "v" version ".tar.gz"))
9305 (file-name (string-append name "-" version ".tar.gz"))
9306 (sha256
9307 (base32
9308 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
9309 ;; TODO: Run tests.
9310 (build-system emacs-build-system)
9311 (inputs
9312 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
9313 (home-page "https://github.com/DamienCassou/beginend")
9314 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
9315 (description "@code{beginend} redefines @code{M-<} and @code{M->}
9316 keybindings for Emacs modes so that point moves to meaningful
9317 locations. Redefined keys are still accessible by pressing the same
9318 key again.")
9319 (license license:gpl3+)))
9320
9321 (define-public emacs-mbsync
9322 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
9323 (revision "1"))
9324 (package
9325 (name "emacs-mbsync")
9326 (version (string-append "0.0.1" "-" revision "."
9327 (string-take commit 7)))
9328 (source
9329 (origin
9330 (method git-fetch)
9331 (uri (git-reference
9332 (url "https://github.com/dimitri/mbsync-el.git")
9333 (commit commit)))
9334 (file-name (string-append name "-" version "-checkout"))
9335 (sha256
9336 (base32
9337 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
9338 (build-system emacs-build-system)
9339 (home-page "https://github.com/dimitri/mbsync-el")
9340 (synopsis "Interface to mbsync for Emacs")
9341 (description "This package allows to call the @code{mbsync} from
9342 within Emacs.")
9343 (license license:gpl3+))))
9344
9345 (define-public emacs-ibuffer-projectile
9346 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
9347 (revision "1"))
9348 (package
9349 (name "emacs-ibuffer-projectile")
9350 (version (string-append "0.2" "-" revision "."
9351 (string-take commit 7)))
9352 (source
9353 (origin
9354 (method git-fetch)
9355 (uri (git-reference
9356 (url "https://github.com/purcell/ibuffer-projectile.git")
9357 (commit commit)))
9358 (file-name (string-append name "-" version "-checkout"))
9359 (sha256
9360 (base32
9361 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
9362 (build-system emacs-build-system)
9363 (propagated-inputs
9364 `(("emacs-projectile" ,emacs-projectile)))
9365 (home-page "https://github.com/purcell/ibuffer-projectile")
9366 (synopsis "Group ibuffer's list by projectile root")
9367 (description "Adds functionality to Emacs @code{ibuffer} for
9368 grouping buffers by their projectile root directory.")
9369 (license license:gpl3+))))
9370
9371 (define-public emacs-helm-mode-manager
9372 (package
9373 (name "emacs-helm-mode-manager")
9374 (version "1.0.0")
9375 (source
9376 (origin
9377 (method url-fetch)
9378 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9379 "archive/" version ".tar.gz"))
9380 (file-name (string-append name "-" version ".tar.gz"))
9381 (sha256
9382 (base32
9383 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9384 (build-system emacs-build-system)
9385 (propagated-inputs
9386 `(("emacs-helm" ,emacs-helm)))
9387 (home-page "https://github.com/istib/helm-mode-manager/")
9388 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9389 (description "This package provides a Helm interface for toggling Emacs
9390 major or minor mode.
9391
9392 @itemize
9393 @item @code{helm-switch-major-mode} list of all major modes
9394 @item @code{helm-enable-minor-mode} list of all inactive minor modes
9395 @item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9396 @end itemize\n
9397
9398 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9399 documentation.")
9400 (license license:gpl3+)))
9401
9402 (define-public emacs-hy-mode
9403 (package
9404 (name "emacs-hy-mode")
9405 (version "1.0.2")
9406 (source
9407 (origin
9408 (method url-fetch)
9409 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9410 "v" version ".tar.gz"))
9411 (file-name (string-append name "-" version ".tar.gz"))
9412 (sha256
9413 (base32
9414 "0sbga36zkyhzrzcczsyjzll7b9qsa215pnlw51m4li2irm23jh17"))))
9415 (build-system emacs-build-system)
9416 (propagated-inputs
9417 `(("emacs-dash" ,emacs-dash)
9418 ("emacs-s" ,emacs-s)))
9419 (home-page "https://github.com/hylang/hy-mode")
9420 (synopsis "Major mode for Hylang")
9421 (description "This package provides a major mode for Hylang.")
9422 (license license:gpl3+)))
9423
9424 (define-public emacs-web-beautify
9425 (package
9426 (name "emacs-web-beautify")
9427 (version "0.3.2")
9428 (source
9429 (origin
9430 (method url-fetch)
9431 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9432 version ".tar.gz"))
9433 (file-name (string-append name "-" version ".tar.gz"))
9434 (sha256
9435 (base32
9436 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9437 (build-system emacs-build-system)
9438 (home-page "https://github.com/yasuyk/web-beautify")
9439 (synopsis "Format HTML, CSS and JavaScript, JSON")
9440 (description "This package provides an Emacs functions to format HTML,
9441 CSS, JavaScript, JSON.")
9442 (license license:gpl3+)))
9443
9444 (define-public emacs-helm-shell-history
9445 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9446 (package
9447 (name "emacs-helm-shell-history")
9448 (version (git-version "0.1" "1" commit))
9449 (source
9450 (origin
9451 (method git-fetch)
9452 (uri (git-reference
9453 (url "https://github.com/yuutayamada/helm-shell-history.git")
9454 (commit commit)))
9455 (file-name (git-file-name name version))
9456 (sha256
9457 (base32
9458 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9459 (build-system emacs-build-system)
9460 (arguments
9461 '(#:phases
9462 (modify-phases %standard-phases
9463 (add-before 'check 'patch-helm-shell-history-file
9464 (lambda _
9465 (let ((file "helm-shell-history.el"))
9466 (chmod file #o644)
9467 (emacs-substitute-sexps file
9468 ("(defvar helm-shell-history-file"
9469 `(expand-file-name "~/.bash_history"))))
9470 #t)))))
9471 (propagated-inputs
9472 `(("emacs-helm" ,emacs-helm)))
9473 (home-page "https://github.com/yuutayamada/helm-shell-history")
9474 (synopsis "Find shell history with Emacs Helm")
9475 (description "This package provides an Emacs Helm interface to search
9476 throw a shell history.")
9477 (license license:gpl3+))))
9478
9479 (define-public emacs-discover-my-major
9480 (package
9481 (name "emacs-discover-my-major")
9482 (version "1.0")
9483 (source
9484 (origin
9485 (method url-fetch)
9486 (uri
9487 (string-append "https://github.com/steckerhalter/discover-my-major"
9488 "/archive/" version ".tar.gz"))
9489 (file-name (string-append name "-" version ".tar.gz"))
9490 (sha256
9491 (base32
9492 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
9493 (build-system emacs-build-system)
9494 (propagated-inputs
9495 `(("emacs-makey" ,emacs-makey)))
9496 (home-page "https://github.com/steckerhalter/discover-my-major")
9497 (synopsis "Discover key bindings for the current Emacs major mode")
9498 (description "This package provides allows to discover key bindings and
9499 their meaning for the current Emacs major-mode.")
9500 (license license:gpl3+)))
9501
9502 (define-public emacs-org-ref
9503 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
9504 (revision "1"))
9505 (package
9506 (name "emacs-org-ref")
9507 (version (string-append "1.1.1" "-" revision "."
9508 (string-take commit 7)))
9509 (source
9510 (origin
9511 (method git-fetch)
9512 (uri (git-reference
9513 (url "https://github.com/jkitchin/org-ref.git")
9514 (commit commit)))
9515 (file-name (string-append name "-" version "-checkout"))
9516 (sha256
9517 (base32
9518 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
9519 (build-system emacs-build-system)
9520 (propagated-inputs
9521 `(("emacs-dash" ,emacs-dash)
9522 ("emacs-helm" ,emacs-helm)
9523 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
9524 ("emacs-ivy" ,emacs-ivy)
9525 ("emacs-hydra" ,emacs-hydra)
9526 ("emacs-key-chord" ,emacs-key-chord)
9527 ("emacs-s" ,emacs-s)
9528 ("emacs-f" ,emacs-f)
9529 ("emacs-pdf-tools" ,emacs-pdf-tools)))
9530 (home-page "https://github.com/jkitchin/org-ref")
9531 (synopsis "Citations, cross-references and bibliographies in org-mode")
9532 (description
9533 "Lisp code to setup bibliography, cite, ref and label org-mode links.
9534 Also sets up reftex and helm for org-mode citations. The links are
9535 clickable and do things that are useful.
9536
9537 The default setup uses helm-bibtex.
9538
9539 You should really read org-ref.org in this package for details.")
9540 (license license:gpl3+))))
9541
9542 (define-public emacs-add-hooks
9543 (package
9544 (name "emacs-add-hooks")
9545 (version "3.1.1")
9546 (source (origin
9547 (method url-fetch)
9548 (uri (string-append
9549 "https://github.com/nickmccurdy/add-hooks/archive/"
9550 version ".tar.gz"))
9551 (file-name (string-append name "-" version ".tar.gz"))
9552 (sha256
9553 (base32
9554 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
9555 (build-system emacs-build-system)
9556 (home-page "https://github.com/nickmccurdy/add-hooks/")
9557 (synopsis "Emacs function for setting multiple hooks")
9558 (description "This package provides a @code{add-hooks} function tidies up
9559 duplicate hook and function names further into a single declarative call.")
9560 (license license:gpl3+)))
9561
9562 (define-public emacs-fancy-narrow
9563 (package
9564 (name "emacs-fancy-narrow")
9565 (version "0.9.5")
9566 (source
9567 (origin
9568 (method url-fetch)
9569 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
9570 version ".tar.gz"))
9571 (file-name (string-append name "-" version ".tar.gz"))
9572 (sha256
9573 (base32
9574 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
9575 (build-system emacs-build-system)
9576 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
9577 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
9578 (description
9579 "Unlike @code{narrow-to-region}, which completely hides text outside
9580 the narrowed region, this package simply de-emphasizes the text, makes it
9581 read-only, and makes it unreachable. This leads to a much more natural
9582 feeling where the region stays static (instead of being brutally moved to a
9583 blank slate) and is clearly highlighted with respect to the rest of the
9584 buffer.")
9585 (license license:gpl2+)))
9586
9587 (define-public emacs-know-your-http-well
9588 (package
9589 (name "emacs-know-your-http-well")
9590 (version "0.5.0")
9591 (source
9592 (origin
9593 (method url-fetch)
9594 (uri (string-append
9595 "https://github.com/for-GET/know-your-http-well/archive/"
9596 "v" version ".tar.gz"))
9597 (file-name (string-append name "-" version ".tar.gz"))
9598 (sha256
9599 (base32
9600 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
9601 (arguments
9602 `(#:phases
9603 (modify-phases %standard-phases
9604 (add-after 'unpack 'install-json-files
9605 (lambda* (#:key outputs #:allow-other-keys)
9606 (for-each (lambda (directory)
9607 (copy-recursively directory
9608 (string-append
9609 (assoc-ref outputs "out")
9610 directory)))
9611 '("js" "json"))))
9612 (add-after 'unpack 'chdir-elisp
9613 ;; Elisp directory is not in root of the source.
9614 (lambda _
9615 (chdir "emacs"))))))
9616 (build-system emacs-build-system)
9617 (home-page "https://github.com/for-GET/know-your-http-well")
9618 (synopsis "Meaning of HTTP headers codes")
9619 (description "Meaning of HTTP headers codes.")
9620 (license license:gpl3+)))
9621
9622 (define-public emacs-navi-mode
9623 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
9624 (package
9625 (name "emacs-navi-mode")
9626 (version (git-version "2.0" "1" commit))
9627 (source
9628 (origin
9629 (method git-fetch)
9630 (uri (git-reference
9631 (url "https://github.com/alphapapa/navi.git")
9632 (commit commit)))
9633 (file-name (git-file-name name version))
9634 (sha256
9635 (base32
9636 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
9637 (build-system emacs-build-system)
9638 (propagated-inputs
9639 `(("emacs-outshine" ,emacs-outshine)
9640 ("emacs-outorg" ,emacs-outorg)))
9641 (home-page "https://github.com/alphapapa/navi")
9642 (synopsis "Emacs major-mode for easy buffer-navigation")
9643 (description
9644 "This package provides an Emacs major-mode for easy buffer-navigation")
9645 (license license:gpl3+))))
9646
9647 (define-public emacs-download-region
9648 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
9649 (revision "1"))
9650 (package
9651 (name "emacs-download-region")
9652 (version (string-append "0.0.1" "-" revision "."
9653 (string-take commit 7)))
9654 (source
9655 (origin
9656 (method git-fetch)
9657 (uri (git-reference
9658 (url "https://github.com/zk-phi/download-region.git")
9659 (commit commit)))
9660 (file-name (string-append name "-" version "-checkout"))
9661 (sha256
9662 (base32
9663 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
9664 (build-system emacs-build-system)
9665 (home-page "https://github.com/zk-phi/download-region")
9666 (synopsis "In buffer download manager for Emacs")
9667 (description "@code{download-region} provides in buffer
9668 downloading manager for Emacs.")
9669 (license license:gpl3+))))
9670
9671 (define-public emacs-helpful
9672 (package
9673 (name "emacs-helpful")
9674 (version "0.13")
9675 (source (origin
9676 (method url-fetch)
9677 (uri (string-append
9678 "https://github.com/Wilfred/helpful/archive/"
9679 version ".tar.gz"))
9680 (file-name (string-append name "-" version ".tar.gz"))
9681 (sha256
9682 (base32
9683 "11kj04y1fa3vnw2991cyqf6adz6bb3hlrdkvypjnmpb0s64q64b6"))))
9684 (build-system emacs-build-system)
9685 (propagated-inputs
9686 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
9687 (home-page "https://github.com/Wilfred/helpful")
9688 (synopsis "More contextual information in Emacs help")
9689 (description "@code{helpful} is an alternative to the built-in Emacs help
9690 that provides much more contextual information.
9691
9692 @itemize
9693 @item Show the source code for interactively defined functions (unlike the
9694 built-in Help).
9695 @item Fall back to the raw sexp if no source is available.
9696 @item Show where a function is being called.
9697 @item Docstrings will Highlight the summary (the first sentence), include
9698 cross-references, hide superfluous puncuation.
9699 @item Show you the properties that have been applied to the current
9700 symbol. This provides visibility of features like edebug or byte-code
9701 optimisation.
9702 @item Provide a separate @code{helpful-command} function to view interactive
9703 functions.
9704 @item Display any keybindings that apply to interactive functions.
9705 @item Trace, disassemble functions from inside Helpful. This is discoverable
9706 and doesn't require memorisation of commands.
9707 @end itemize\n")
9708 (license license:gpl3+)))
9709
9710 (define-public emacs-logview
9711 (package
9712 (name "emacs-logview")
9713 (version "0.9")
9714 (source (origin
9715 (method url-fetch)
9716 (uri (string-append
9717 "https://github.com/doublep/logview/archive/"
9718 version ".tar.gz"))
9719 (file-name (string-append name "-" version ".tar.gz"))
9720 (sha256
9721 (base32
9722 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
9723 (propagated-inputs
9724 `(("emacs-datetime" ,emacs-datetime)))
9725 (build-system emacs-build-system)
9726 (home-page "https://github.com/doublep/logview/")
9727 (synopsis "Emacs mode for viewing log files")
9728 (description "@code{logview} provides an Emacs mode to view log files.")
9729 (license license:gpl3+)))
9730
9731 (define-public emacs-suggest
9732 (package
9733 (name "emacs-suggest")
9734 (version "0.4")
9735 (source
9736 (origin
9737 (method url-fetch)
9738 (uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
9739 version ".tar.gz"))
9740 (file-name (string-append name "-" version ".tar.gz"))
9741 (sha256
9742 (base32
9743 "1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
9744 (build-system emacs-build-system)
9745 (propagated-inputs
9746 `(("emacs-loop" ,emacs-loop)
9747 ("emacs-dash" ,emacs-dash)
9748 ("emacs-s" ,emacs-s)
9749 ("emacs-f" ,emacs-f)))
9750 (home-page "https://github.com/Wilfred/suggest.el")
9751 (synopsis "Suggest Elisp functions that give the output requested")
9752 (description "Suggest.el will find functions that give the output
9753 requested. It's a great way of exploring list, string and arithmetic
9754 functions.")
9755 (license license:gpl3+)))
9756
9757 (define-public emacs-benchmark-init
9758 (package
9759 (name "emacs-benchmark-init")
9760 (version "1.0")
9761 (source (origin
9762 (method url-fetch)
9763 (uri (string-append
9764 "https://github.com/dholm/benchmark-init-el/archive/"
9765 version ".tar.gz"))
9766 (file-name (string-append name "-" version ".tar.gz"))
9767 (sha256
9768 (base32
9769 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
9770 (build-system emacs-build-system)
9771 (home-page "https://github.com/dholm/benchmark-init-el")
9772 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
9773 (description "@code{benchmark-init} provides a way to keep track of where
9774 time is being spent during Emacs startup in order to optimize startup time.")
9775 (license license:gpl3+)))
9776
9777 (define-public emacs-emms-player-simple-mpv
9778 ;; A new mpv backend is included in Emms from 5.0.
9779 (deprecated-package "emacs-emms-player-simple-mpv" emms))
9780
9781 (define-public emacs-magit-org-todos-el
9782 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
9783 (package
9784 (name "emacs-magit-org-todos-el")
9785 (version (git-version "0.1.1" "1" commit))
9786 (source
9787 (origin
9788 (method git-fetch)
9789 (uri (git-reference
9790 (url "https://github.com/danielma/magit-org-todos.el.git")
9791 (commit commit)))
9792 (file-name (git-file-name name version))
9793 (sha256
9794 (base32
9795 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
9796 (propagated-inputs
9797 `(("magit" ,magit)))
9798 (build-system emacs-build-system)
9799 (home-page "https://github.com/danielma/magit-org-todos.el")
9800 (synopsis "Get todo.org into Emacs Magit status")
9801 (description "This package allows you to get @file{todo.org} into your
9802 magit status.
9803
9804 If you have a @file{todo.org} file with @code{TODO} items in the root of your
9805 repository, @code{magit-org-todos} will create a section in your Magit status
9806 buffer with each of your todos.")
9807 (license license:gpl3+))))
9808
9809 (define-public emacs-f3
9810 (package
9811 (name "emacs-f3")
9812 (version "0.1")
9813 (source
9814 (origin
9815 (method url-fetch)
9816 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
9817 version ".tar.gz"))
9818 (file-name (string-append name "-" version ".tar.gz"))
9819 (sha256
9820 (base32
9821 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
9822 (build-system emacs-build-system)
9823 (propagated-inputs
9824 `(("emacs-helm" ,emacs-helm)))
9825 (home-page "https://github.com/cosmicexplorer/f3")
9826 (synopsis "Fantastic File Finder for Emacs")
9827 (description
9828 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
9829 (license license:gpl3+)))
9830
9831 (define-public emacs-lice-el
9832 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
9833 (package
9834 (name "emacs-lice-el")
9835 (version (git-version "0.2" "1" commit))
9836 (source (origin
9837 (method git-fetch)
9838 (uri (git-reference
9839 (url "https://github.com/buzztaiki/lice-el.git")
9840 (commit commit)))
9841 (file-name (git-file-name name version))
9842 (sha256
9843 (base32
9844 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
9845 (build-system emacs-build-system)
9846 (home-page "https://github.com/buzztaiki/lice-el")
9847 (synopsis "License and header template for Emacs")
9848 (description "@code{lice.el} provides following features:
9849
9850 @itemize
9851 @item License template management.
9852 @item File header insertion.
9853 @end itemize\n")
9854 (license license:gpl3+))))
9855
9856 (define-public emacs-academic-phrases
9857 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
9858 (package
9859 (name "emacs-academic-phrases")
9860 (version (git-version "0.1" "1" commit))
9861 (source
9862 (origin
9863 (method git-fetch)
9864 (uri (git-reference
9865 (url "https://github.com/nashamri/academic-phrases.git")
9866 (commit commit)))
9867 (file-name (string-append name "-" version "-checkout"))
9868 (sha256
9869 (base32
9870 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
9871 (build-system emacs-build-system)
9872 (propagated-inputs
9873 `(("emacs-dash" ,emacs-dash)
9874 ("emacs-s" ,emacs-s)
9875 ("emacs-ht" ,emacs-ht)))
9876 (home-page "https://github.com/nashamri/academic-phrases")
9877 (synopsis "Bypass that mental block when writing your papers")
9878 (description
9879 "When writing your academic paper, you might get stuck trying to find
9880 the right phrase that captures your intention. This package tries to
9881 alleviate that problem by presenting you with a list of phrases organized by
9882 the topic or by the paper section that you are writing. This package has
9883 around 600 phrases so far.
9884
9885 Using this package is easy, just call @code{academic-phrases} to get a list of
9886 phrases organized by topic, or call @code{academic-phrases-by-section} to
9887 browse the phrases by the paper section and fill-in the blanks if required.")
9888 (license license:gpl3+))))
9889
9890 (define-public emacs-auto-yasnippet
9891 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
9892 (package
9893 (name "emacs-auto-yasnippet")
9894 (version (git-version "0.3.0" "1" commit))
9895 (source (origin
9896 (method git-fetch)
9897 (uri (git-reference
9898 (url "https://github.com/abo-abo/auto-yasnippet.git")
9899 (commit commit)))
9900 (file-name (string-append name "-" version "-checkout"))
9901 (sha256
9902 (base32
9903 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
9904 (build-system emacs-build-system)
9905 (arguments
9906 '(#:phases
9907 (modify-phases %standard-phases
9908 (add-before 'install 'check
9909 (lambda _
9910 (invoke "emacs" "--batch"
9911 "-l" "auto-yasnippet.el"
9912 "-l" "auto-yasnippet-test.el"
9913 "-f" "ert-run-tests-batch-and-exit"))))))
9914 (propagated-inputs
9915 `(("emacs-yasnippet" ,emacs-yasnippet)))
9916 (home-page "https://github.com/abo-abo/auto-yasnippet/")
9917 (synopsis "Quickly create disposable yasnippets")
9918 (description "This package provides a hybrid of keyboard macros and
9919 yasnippet. You create the snippet on the go, usually to be used just in the
9920 one place. It's fast, because you're not leaving the current buffer, and all
9921 you do is enter the code you'd enter anyway, just placing ~ where you'd like
9922 yasnippet fields and mirrors to be.")
9923 (license license:gpl3+))))
9924
9925 (define-public emacs-highlight-numbers
9926 (package
9927 (name "emacs-highlight-numbers")
9928 (version "0.2.3")
9929 (source
9930 (origin
9931 (method url-fetch)
9932 (uri (string-append
9933 "https://github.com/Fanael/highlight-numbers/archive/"
9934 version ".tar.gz"))
9935 (file-name (string-append name "-" version ".tar.gz"))
9936 (sha256
9937 (base32
9938 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
9939 (build-system emacs-build-system)
9940 (propagated-inputs
9941 `(("emacs-parent-mode" ,emacs-parent-mode)))
9942 (home-page "https://github.com/Fanael/highlight-numbers")
9943 (synopsis "Highlight numbers in source code")
9944 (description "@code{highlight-numbers-mode} provides a minor mode for
9945 syntax highlighting of numeric literals in source code.
9946
9947 It s customizable: it's easy to add or redefine what exactly consitutes a
9948 \"number\" in given major mode. See @code{highlight-numbers-modelist}.")
9949 (license license:gpl3+)))
9950
9951 (define-public emacs-darkroom
9952 (package
9953 (name "emacs-darkroom")
9954 (version "0.1")
9955 (source (origin
9956 (method url-fetch)
9957 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
9958 version ".el"))
9959 (sha256
9960 (base32
9961 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
9962 (build-system emacs-build-system)
9963 (home-page "https://elpa.gnu.org/packages/darkroom.html")
9964 (synopsis "Remove visual distractions and focus on writing")
9965 (description "@code{darkroom-mode} makes visual distractions disappear.
9966 The mode-line is temporarily elided, text is enlarged and margins are adjusted
9967 so that it's centered on the window.
9968
9969 @code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
9970 @code{darkroom-mode}, unless the current buffer lives in the sole window of
9971 the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
9972 split to display more windows and more buffers, the buffer exits
9973 @code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
9974 @code{darkroom-mode}.")
9975 (license license:gpl3+)))
9976
9977 (define-public emacs-rsw-elisp
9978 (package
9979 (name "emacs-rsw-elisp")
9980 (version "1.0.5")
9981 (source (origin
9982 (method url-fetch)
9983 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
9984 "/archive/" version ".tar.gz"))
9985 (file-name (string-append name "-" version ".tar.gz"))
9986 (sha256
9987 (base32
9988 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
9989 (build-system emacs-build-system)
9990 (home-page "https://github.com/rswgnu/rsw-elisp")
9991 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
9992 (description "This package improves and replaces the GNU Emacs commands
9993 that interactively evaluate Emacs Lisp expressions. The new commands replace
9994 standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
9995 the same way as the old commands when called non-interactively; only the
9996 interactive behavior should be different.")
9997 (license license:gpl3+)))
9998
9999 (define-public emacs-default-text-scale
10000 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10001 (revision "1"))
10002 (package
10003 (name "emacs-default-text-scale")
10004 (version (string-append "0.1" "-" revision "."
10005 (string-take commit 7)))
10006 (source (origin
10007 (method git-fetch)
10008 (uri (git-reference
10009 (url "https://github.com/purcell/default-text-scale")
10010 (commit commit)))
10011 (file-name (string-append name "-" version "-checkout"))
10012 (sha256
10013 (base32
10014 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10015 (build-system emacs-build-system)
10016 (home-page "https://github.com/purcell/default-text-scale")
10017 (synopsis "Adjust the font size in all Emacs frames")
10018 (description "This package provides commands for increasing or
10019 decreasing the default font size in all GUI Emacs frames.")
10020 (license license:gpl3+))))
10021
10022 (define-public emacs-visual-regexp
10023 (package
10024 (name "emacs-visual-regexp")
10025 (version "1.1.1")
10026 (source
10027 (origin
10028 (method url-fetch)
10029 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10030 "v" version ".tar.gz"))
10031 (file-name (string-append name "-" version ".tar.gz"))
10032 (sha256
10033 (base32
10034 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10035 (build-system emacs-build-system)
10036 (home-page "https://github.com/benma/visual-regexp.el/")
10037 (synopsis "Regexp command with interactive visual feedback")
10038 (description "This package provides an Emacs regexp command with
10039 interactive visual feedback.")
10040 (license license:gpl3+)))
10041
10042 (define-public emacs-faceup
10043 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10044 (revision "1"))
10045 (package
10046 (name "emacs-faceup")
10047 (version (string-append "0.0.1" "-" revision "."
10048 (string-take commit 7)))
10049 (source
10050 (origin
10051 (method git-fetch)
10052 (uri (git-reference
10053 (url "https://github.com/Lindydancer/faceup.git")
10054 (commit commit)))
10055 (file-name (string-append name "-" version "-checkout"))
10056 (sha256
10057 (base32
10058 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10059 (build-system emacs-build-system)
10060 (home-page "https://github.com/Lindydancer/faceup")
10061 (synopsis "Markup language for faces and font-lock regression testing")
10062 (description "Emacs is capable of highlighting buffers based on
10063 language-specific @code{font-lock} rules. This package makes it possible to
10064 perform regression test for packages that provide font-lock rules.")
10065 (license license:gpl3+))))
10066
10067 (define-public emacs-racket-mode
10068 (let ((commit "92c33487f6c707880ac3f6169e7ea65ddffd1463")
10069 (revision "1"))
10070 (package
10071 (name "emacs-racket-mode")
10072 (version (string-append "0.0.2" "-" revision "."
10073 (string-take commit 7)))
10074 (source
10075 (origin
10076 (method git-fetch)
10077 (uri (git-reference
10078 (url "https://github.com/greghendershott/racket-mode")
10079 (commit commit)))
10080 (file-name (string-append name "-" version "-checkout"))
10081 (sha256
10082 (base32
10083 "19q6ym10gj2xdzzcgh3wdbq1xv8cv7nlrhv2b0bjvvdjzhiki472"))))
10084 (build-system emacs-build-system)
10085 (arguments
10086 `(#:include '("\\.el$" "\\.rkt$")))
10087 (propagated-inputs
10088 `(("emacs-faceup" ,emacs-faceup)
10089 ("emacs-s" ,emacs-s)))
10090 (home-page "https://github.com/greghendershott/racket-mode")
10091 (synopsis "Major mode for Racket language")
10092 (description "@code{racket-mode} provides:
10093
10094 @itemize
10095 @item Focus on Racket (not various Schemes).
10096 @item Follow DrRacket concepts where applicable.
10097 @item Thorough font-lock and indent.
10098 @end itemize\n")
10099 (license license:gpl3+))))
10100
10101 (define-public emacs-grep-context
10102 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10103 (package
10104 (name "emacs-grep-context")
10105 (version (git-version "0.1" "1" commit))
10106 (source
10107 (origin
10108 (method git-fetch)
10109 (uri (git-reference
10110 (url "https://github.com/mkcms/grep-context.git")
10111 (commit commit)))
10112 (file-name (string-append name "-" version "-checkout"))
10113 (sha256
10114 (base32
10115 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10116 (build-system emacs-build-system)
10117 (propagated-inputs
10118 `(("emacs-dash" ,emacs-dash)))
10119 (home-page "https://github.com/nashamri/academic-phrases")
10120 (synopsis "Increase context in compilation and grep buffers")
10121 (description
10122 "This package provides an Emacs package for more context in
10123 compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10124 @code{ivy}.")
10125 (license license:gpl3+))))
10126
10127 (define-public emacs-helm-firefox
10128 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10129 (revision "1"))
10130 (package
10131 (name "emacs-helm-firefox")
10132 (version (string-append "0.0.1" "-" revision "."
10133 (string-take commit 7)))
10134 (source
10135 (origin
10136 (method git-fetch)
10137 (uri (git-reference
10138 (url "https://github.com/emacs-helm/helm-firefox.git")
10139 (commit commit)))
10140 (file-name (string-append name "-" version "-checkout"))
10141 (sha256
10142 (base32
10143 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
10144 (propagated-inputs
10145 `(("emacs-helm" ,emacs-helm)))
10146 (build-system emacs-build-system)
10147 (home-page "https://github.com/emacs-helm/helm-firefox")
10148 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10149 (description "Display firefox bookmarks with Emacs Helm interface")
10150 (license license:gpl3+))))
10151
10152 (define-public emacs-interactive-align
10153 (package
10154 (name "emacs-interactive-align")
10155 (version "0.1.0")
10156 (source
10157 (origin
10158 (method url-fetch)
10159 (uri (string-append "https://github.com/mkcms/interactive-align/"
10160 "archive/" "v" version ".tar.gz"))
10161 (file-name (string-append name "-" version ".tar.gz"))
10162 (sha256
10163 (base32
10164 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
10165 (build-system emacs-build-system)
10166 (home-page "https://github.com/mkcms/interactive-align/")
10167 (synopsis "Interactive align-regexp command in Emacs")
10168 (description "Interactive align-regexp command in Emacs")
10169 (license license:gpl3+)))
10170
10171 (define-public emacs-shift-number
10172 (package
10173 (name "emacs-shift-number")
10174 (version "0.1")
10175 (source
10176 (origin
10177 (method url-fetch)
10178 (uri (string-append "https://github.com/alezost/shift-number.el"
10179 "/archive/" "v" version ".tar.gz"))
10180 (file-name (string-append name "-" version ".tar.gz"))
10181 (sha256
10182 (base32
10183 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
10184 (build-system emacs-build-system)
10185 (home-page "https://github.com/alezost/shift-number.el")
10186 (synopsis "Increase or decrease the number at point")
10187 (description "@code{emacs-shift-number} provides commands
10188 @code{shift-number-up} to increase and @code{shift-number-down} to
10189 decrease the number at point.")
10190 (license license:gpl3+)))
10191
10192 (define-public emacs-highlight-defined
10193 (package
10194 (name "emacs-highlight-defined")
10195 (version "0.1.5")
10196 (source
10197 (origin
10198 (method url-fetch)
10199 (uri (string-append
10200 "https://github.com/Fanael/highlight-defined/archive/"
10201 version ".tar.gz"))
10202 (file-name (string-append name "-" version ".tar.gz"))
10203 (sha256
10204 (base32
10205 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
10206 (build-system emacs-build-system)
10207 (home-page "https://github.com/Fanael/highlight-defined")
10208 (synopsis "Syntax highlighting of known Elisp symbols")
10209 (description "Minor mode providing syntax highlighting of known Emacs Lisp
10210 symbols. Currently the code distinguishes Lisp functions, built-in functions,
10211 macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
10212 (license license:gpl3+)))
10213
10214 (define-public emacs-parinfer-mode
10215 (package
10216 (name "emacs-parinfer-mode")
10217 (version "0.4.10")
10218 (source
10219 (origin
10220 (method url-fetch)
10221 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
10222 "v" version ".tar.gz"))
10223 (file-name (string-append name "-" version ".tar.gz"))
10224 (sha256
10225 (base32
10226 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
10227 (propagated-inputs
10228 `(("emacs-dash" ,emacs-dash)
10229 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
10230 ("emacs-company" ,emacs-company)))
10231 (build-system emacs-build-system)
10232 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
10233 (synopsis "Lisp structure editing mode")
10234 (description "@code{parinfer-mode} is a proof-of-concept editor
10235 mode for Lisp programming languages. It will infer some changes to
10236 keep Parens and Indentation inline with one another.")
10237 (license license:gpl3+)))
10238
10239 (define-public emacs-helm-eww
10240 (let ((commit "9d36acc433bcf689598b1b4d7d47c9aeb84d6b44"))
10241 (package
10242 (name "emacs-helm-eww")
10243 (version (git-version "0.1" "3" commit))
10244 (source (origin
10245 (method git-fetch)
10246 (uri (git-reference
10247 (url "https://github.com/emacs-helm/helm-eww.git")
10248 (commit commit)))
10249 (file-name (string-append name "-" version "-checkout"))
10250 (sha256
10251 (base32
10252 "06gnf84gx6qbhcw1h5jhjnvcdxkdpv0npm53x3pgqybbll5rn5dy"))))
10253 (propagated-inputs
10254 `(("emacs-helm" ,emacs-helm)))
10255 (build-system emacs-build-system)
10256 (home-page "https://github.com/emacs-helm/helm-eww/")
10257 (synopsis "Helm interface to EWW")
10258 (description "This package provides a Helm interface for EWW buffers,
10259 bookmarks and history.")
10260 (license license:gpl3+))))
10261
10262 (define-public emacs-stumpwm-mode
10263 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
10264 (revision "1"))
10265 (package
10266 (name "emacs-stumpwm-mode")
10267 (version (string-append "0.0.1-" revision "."
10268 (string-take commit 7)))
10269 (source (origin
10270 (method git-fetch)
10271 (uri (git-reference
10272 (url "https://github.com/stumpwm/stumpwm-contrib.git")
10273 (commit commit)))
10274 (file-name (string-append name "-" version "-checkout"))
10275 (sha256
10276 (base32
10277 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
10278 (build-system emacs-build-system)
10279 (arguments
10280 `(#:phases
10281 (modify-phases %standard-phases
10282 (add-after 'unpack 'chdir-elisp
10283 ;; Elisp directory is not in root of the source.
10284 (lambda _
10285 (chdir "util/swm-emacs"))))))
10286 (home-page "https://github.com/stumpwm/stumpwm-contrib")
10287 (synopsis "Emacs minor-mode for Stumpwm")
10288 (description "Emacs minor-mode for Stumpwm")
10289 (license license:gpl3+))))
10290
10291 (define-public emacs-irfc
10292 (package
10293 (name "emacs-irfc")
10294 (version "20130824.507")
10295 (source
10296 (origin
10297 (method url-fetch)
10298 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
10299 (file-name (string-append "irfc-" version ".el"))
10300 (sha256
10301 (base32
10302 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
10303 (build-system emacs-build-system)
10304 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
10305 (synopsis "Interface for IETF RFC document")
10306 (description
10307 "This package provides an Emacs interface for IETF RFC document.")
10308 (license license:gpl3+)))
10309
10310 (define-public emacs-ido-vertical-mode
10311 (package
10312 (name "emacs-ido-vertical-mode")
10313 (version "0.1.6")
10314 (source
10315 (origin
10316 (method url-fetch)
10317 (uri (string-append
10318 "https://github.com/creichert/ido-vertical-mode.el/archive/"
10319 "v" version ".tar.gz"))
10320 (file-name (string-append name "-" version ".tar.gz"))
10321 (sha256
10322 (base32
10323 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
10324 (build-system emacs-build-system)
10325 (home-page "https://github.com/creichert/ido-vertical-mode.el")
10326 (synopsis "Makes ido-mode display vertically")
10327 (description "Makes ido-mode display prospects vertically.")
10328 (license license:gpl3+)))
10329
10330 (define-public emacs-wordgen
10331 (package
10332 (name "emacs-wordgen")
10333 (version "0.1.4")
10334 (source
10335 (origin
10336 (method url-fetch)
10337 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
10338 version ".tar.gz"))
10339 (file-name (string-append name "-" version ".tar.gz"))
10340 (sha256
10341 (base32
10342 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
10343 (build-system emacs-build-system)
10344 (home-page "https://github.com/Fanael/wordgen.el")
10345 (synopsis "Random word generator")
10346 (description "This package provides functions to generate random words
10347 using user-provided rules.")
10348 (license license:gpl3+)))
10349
10350 (define-public emacs-on-screen
10351 (package
10352 (name "emacs-on-screen")
10353 (version "1.3.2")
10354 (source
10355 (origin
10356 (method url-fetch)
10357 (uri (string-append
10358 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
10359 (file-name (string-append name "-" version ".el"))
10360 (sha256
10361 (base32
10362 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
10363 (build-system emacs-build-system)
10364 (home-page
10365 "https://github.com/michael-heerdegen/on-screen.el")
10366 (synopsis "Guide your eyes while scrolling")
10367 (description
10368 "Scrolling can be distracting because your eyes may lose
10369 orientation. This library implements a minor mode that highlights
10370 the previously visible buffer part after each scroll.")
10371 (license license:gpl3+)))
10372
10373 (define-public emacs-highlight-escape-sequences
10374 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
10375 (revision "1"))
10376 (package
10377 (name "emacs-highlight-escape-sequences")
10378 (version (string-append "0.0.1" "-" revision "."
10379 (string-take commit 7)))
10380 (source
10381 (origin
10382 (method git-fetch)
10383 (uri (git-reference
10384 (url "https://github.com/dgutov/highlight-escape-sequences.git")
10385 (commit commit)))
10386 (file-name (string-append name "-" version "-checkout"))
10387 (sha256
10388 (base32
10389 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
10390 (build-system emacs-build-system)
10391 (home-page "https://github.com/dgutov/highlight-escape-sequences")
10392 (synopsis "Highlight escape sequences in Emacs")
10393 (description "@code{highlight-escape-sequences} provides an
10394 Emacs minor mode to escape sequences in code.")
10395 (license license:gpl3+))))
10396
10397 (define-public emacs-dashboard
10398 (package
10399 (name "emacs-dashboard")
10400 (version "1.2.4")
10401 (source
10402 (origin
10403 (method url-fetch)
10404 (uri (string-append
10405 "https://github.com/rakanalh/emacs-dashboard/archive/"
10406 version ".tar.gz"))
10407 (file-name (string-append name "-" version ".tar.gz"))
10408 (sha256
10409 (base32
10410 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
10411 (build-system emacs-build-system)
10412 (propagated-inputs
10413 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
10414 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
10415 (home-page "https://github.com/rakanalh/emacs-dashboard")
10416 (synopsis "Startup screen extracted from Spacemacs")
10417 (description "This package provides an extensible Emacs dashboard, with
10418 sections for bookmarks, projectil projects, org-agenda and more. ")
10419 (license license:gpl3+)))
10420
10421 (define-public emacs-slime-company
10422 (package
10423 (name "emacs-slime-company")
10424 (version "1.1")
10425 (source
10426 (origin
10427 (method url-fetch)
10428 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
10429 "v" version ".tar.gz"))
10430 (sha256
10431 (base32
10432 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
10433 (file-name (string-append name "-" version ".tar.gz"))))
10434 (build-system emacs-build-system)
10435 (propagated-inputs
10436 `(("emacs-slime" ,emacs-slime)
10437 ("emacs-company" ,emacs-company)))
10438 (home-page "https://company-mode.github.io")
10439 (synopsis "SLIME completion backend for @code{company-mode}")
10440 (description
10441 "This is a backend implementation for the completion package
10442 @code{company-mode} which supports the normal and the fuzzy completion
10443 modes of SLIME.")
10444 (license license:gpl3+)))
10445
10446 (define-public emacs-sml-mode
10447 (package
10448 (name "emacs-sml-mode")
10449 (version "6.8")
10450 (source
10451 (origin
10452 (method url-fetch)
10453 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
10454 version ".el"))
10455 (sha256
10456 (base32
10457 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
10458 (build-system emacs-build-system)
10459 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
10460 (synopsis "Major mode for editing (Standard) ML")
10461 (description "SML-MODE is a major Emacs mode for editing Standard ML.
10462 It provides syntax highlighting and automatic indentation and
10463 comes with sml-proc which allows interaction with an inferior SML
10464 interactive loop.")
10465 (license license:gpl3+)))
10466
10467 (define-public emacs-eros
10468 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
10469 (revision "1"))
10470 (package
10471 (name "emacs-eros")
10472 (version (string-append "0.0.1" "-" revision "."
10473 (string-take commit 7)))
10474 (source
10475 (origin
10476 (method git-fetch)
10477 (uri (git-reference
10478 (url "https://github.com/xiongtx/eros.git")
10479 (commit commit)))
10480 (file-name (string-append name "-" version "-checkout"))
10481 (sha256
10482 (base32
10483 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
10484 (build-system emacs-build-system)
10485 (home-page "https://github.com/xiongtx/eros")
10486 (synopsis "Evaluation result overlays")
10487 (description "@code{eros} provides evaluation result overlays.")
10488 (license license:gpl3+))))
10489
10490 (define-public emacs-stickyfunc-enhance
10491 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
10492 (revision "1"))
10493 (package
10494 (name "emacs-stickyfunc-enhance")
10495 (version "0.1")
10496 (source
10497 (origin
10498 (method git-fetch)
10499 (uri (git-reference
10500 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
10501 (commit commit)))
10502 (file-name (string-append name "-" version "-checkout"))
10503 (sha256
10504 (base32
10505 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
10506 (build-system emacs-build-system)
10507 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
10508 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
10509 (description
10510 "@code{semantic-stickyfunc-mode} shows the function point is currently
10511 in at the first line of the current buffer. This is useful when you have a
10512 very long function that spreads more than a screen, and you don't have to
10513 scroll up to read the function name and then scroll down to original position.")
10514 (license license:gpl3+))))
10515
10516 (define-public emacs-git-auto-commit-mode
10517 (package
10518 (name "emacs-git-auto-commit-mode")
10519 (version "4.4.0")
10520 (source
10521 (origin
10522 (method url-fetch)
10523 (uri (string-append
10524 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
10525 version ".tar.gz"))
10526 (file-name (string-append name "-" version ".tar.gz"))
10527 (sha256
10528 (base32
10529 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
10530 (build-system emacs-build-system)
10531 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
10532 (synopsis "Emacs Minor mode to automatically commit and push")
10533 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
10534 tries to commit changes to a file after every save.
10535
10536 When @code{gac-automatically-push-p} is non-nil, it also tries to push to
10537 the current upstream.")
10538 (license license:gpl3+)))
10539
10540 (define-public emacs-company-restclient
10541 (package
10542 (name "emacs-company-restclient")
10543 (version "0.1.0")
10544 (source
10545 (origin
10546 (method url-fetch)
10547 (uri (string-append
10548 "https://github.com/iquiw/company-restclient/archive/"
10549 "v" version ".tar.gz"))
10550 (file-name (string-append name "-" version ".tar.gz"))
10551 (sha256
10552 (base32
10553 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
10554 (build-system emacs-build-system)
10555 (propagated-inputs
10556 `(("emacs-company" ,emacs-company)
10557 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
10558 ("emacs-restclient" ,emacs-restclient)))
10559 (home-page "https://github.com/iquiw/company-restclient")
10560 (synopsis "Company-mode completion back-end for restclient-mode")
10561 (description "@code{company-mode} back-end for
10562 @code{restclient-mode}.
10563
10564 It provides auto-completion for HTTP methods and headers in
10565 @code{restclient-mode}. Completion source is given by
10566 @code{know-your-http-well}.")
10567 (license license:gpl3+)))
10568
10569 (define-public emacs-noflet
10570 (let ((version "20170629")
10571 (revision "1")
10572 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
10573 (package
10574 (name "emacs-noflet")
10575 (version (git-version version revision commit))
10576 (source
10577 (origin
10578 (method git-fetch)
10579 (uri (git-reference
10580 (url "https://github.com/nicferrier/emacs-noflet")
10581 (commit commit)))
10582 (file-name (string-append name "-" version "-checkout"))
10583 (sha256
10584 (base32
10585 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
10586 (build-system emacs-build-system)
10587 (arguments
10588 `(#:phases
10589 (modify-phases %standard-phases
10590 (add-after 'unpack 'require-dash
10591 ;; noflet.el uses -map from dash, but (require 'dash) is
10592 ;; missing. So, add it.
10593 (lambda _
10594 (substitute* "noflet.el"
10595 ((";;; Code:") ";;; Code:\n(require 'dash)"))
10596 #t)))))
10597 (propagated-inputs
10598 `(("emacs-dash" ,emacs-dash)))
10599 (home-page "https://github.com/nicferrier/emacs-noflet")
10600 (synopsis "Locally override functions")
10601 (description "@code{emacs-noflet} let's you locally override functions,
10602 in the manner of @command{flet}, but with access to the original function
10603 through the symbol: @command{this-fn}.")
10604 (license license:gpl3+))))
10605
10606 (define-public emacs-dumb-jump
10607 (package
10608 (name "emacs-dumb-jump")
10609 (version "0.5.2")
10610 (source
10611 (origin
10612 (method url-fetch)
10613 (uri (string-append
10614 "https://github.com/jacktasia/dumb-jump/archive/v"
10615 version ".tar.gz"))
10616 (file-name (string-append name "-" version ".tar.gz"))
10617 (sha256
10618 (base32
10619 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
10620 (build-system emacs-build-system)
10621 (arguments
10622 `(#:tests? #f ; FIXME: Tests freeze when run.
10623 #:test-command '("ert-runner")
10624 #:phases
10625 (modify-phases %standard-phases
10626 (add-after 'unpack 'set-shell
10627 (lambda _
10628 ;; Setting the SHELL environment variable is required for the
10629 ;; tests to find sh.
10630 (setenv "SHELL" (which "sh"))
10631 #t)))))
10632 (native-inputs
10633 `(("emacs-el-mock" ,emacs-el-mock)
10634 ("emacs-noflet" ,emacs-noflet)
10635 ("emacs-undercover" ,emacs-undercover)
10636 ("ert-runner" ,ert-runner)))
10637 (propagated-inputs
10638 `(("emacs-f" ,emacs-f)
10639 ("emacs-popup" ,emacs-popup)))
10640 (home-page "https://github.com/jacktasia/dumb-jump")
10641 (synopsis "Jump to definition for multiple languages without configuration")
10642 (description "Dumb Jump is an Emacs \"jump to definition\" package with
10643 support for multiple programming languages that favors \"just working\" over
10644 speed or accuracy. This means minimal --- and ideally zero --- configuration
10645 with absolutely no stored indexes (tags) or persistent background processes.
10646 Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
10647 @command{rg} installed.")
10648 (license license:gpl3+)))
10649
10650 (define-public emacs-dts-mode
10651 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
10652 (revision "1"))
10653 (package
10654 (name "emacs-dts-mode")
10655 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
10656 (source
10657 (origin
10658 (method git-fetch)
10659 (uri (git-reference
10660 (url "https://github.com/bgamari/dts-mode.git")
10661 (commit commit)))
10662 (file-name (string-append name "-" version "-checkout"))
10663 (sha256
10664 (base32
10665 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
10666 (build-system emacs-build-system)
10667 (home-page "https://github.com/bgamari/dts-mode.git")
10668 (synopsis "Emacs minor mode for editing device tree files")
10669 (description
10670 "This package provides an Emacs minor mode for highlighting
10671 device tree files.")
10672 (license license:gpl3+))))
10673
10674 (define-public emacs-daemons
10675 (package
10676 (name "emacs-daemons")
10677 (version "1.2.0")
10678 (source
10679 (origin
10680 (method git-fetch)
10681 (uri (git-reference
10682 (url "https://github.com/cbowdon/daemons.el")
10683 (commit version)))
10684 (file-name (string-append name "-" version "-checkout"))
10685 (sha256
10686 (base32
10687 "00ijgm22ck76gw0x79krl05yy0m8a502yfakazfy5xhpn1zi6ab7"))))
10688 (build-system emacs-build-system)
10689 (home-page "https://github.com/cbowdon/daemons.el")
10690 (synopsis "Emacs UI for managing init system services")
10691 (description
10692 "This is an Emacs mode to give you a UI for managing init system
10693 daemons (services) for those getting tired of typing out @code{sudo service
10694 my_thing reload} all the time. It offers a consistent UI over different init
10695 systems.")
10696 (license license:gpl3+)))
10697
10698 (define-public emacs-esh-autosuggest
10699 (package
10700 (name "emacs-esh-autosuggest")
10701 (version "2.0.0")
10702 (source
10703 (origin
10704 (method git-fetch)
10705 (uri (git-reference
10706 (url "https://github.com/dieggsy/esh-autosuggest")
10707 (commit version)))
10708 (file-name (string-append name "-" version "-checkout"))
10709 (sha256
10710 (base32
10711 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
10712 (build-system emacs-build-system)
10713 (propagated-inputs `(("emacs-company" ,emacs-company)))
10714 (home-page "https://github.com/dieggsy/esh-autosuggest")
10715 (synopsis "Fish-like autosuggestions in Eshell")
10716 (description
10717 "This package assumes you use something other than company for eshell
10718 completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
10719 @code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
10720 for history autosuggestions.
10721
10722 Unless you're using @code{use-package}'s hook keyword, you can enable the
10723 autosuggestions with:
10724 @code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
10725 (license license:gpl3+)))
10726
10727 (define-public emacs-desktop-environment
10728 (package
10729 (name "emacs-desktop-environment")
10730 (version "0.2.0")
10731 (source
10732 (origin
10733 (method git-fetch)
10734 (uri (git-reference
10735 (url "https://github.com/DamienCassou/desktop-environment.git")
10736 (commit (string-append "v" version))))
10737 (file-name (string-append name "-" version "-checkout"))
10738 (sha256
10739 (base32
10740 "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r"))))
10741 (build-system emacs-build-system)
10742 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
10743 (synopsis "Control your GNU/Linux desktop environment from Emacs")
10744 (description
10745 "This package helps you control your GNU/Linux desktop from Emacs.
10746 With @code{desktop-environment}, you can control the brightness and volume as
10747 well as take screenshots and lock your screen. The package depends on the
10748 availability of shell commands to do the hard work for us. These commands can
10749 be changed by customizing the appropriate variables.")
10750 (license license:gpl3+)))
10751
10752 (define-public emacs-org-caldav
10753 (package
10754 (name "emacs-org-caldav")
10755 (version "20180403")
10756 (source
10757 (origin
10758 (method url-fetch)
10759 (uri (string-append
10760 "https://github.com/dengste/org-caldav/raw/"
10761 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
10762 "/org-caldav.el"))
10763 (sha256
10764 (base32
10765 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
10766 (build-system emacs-build-system)
10767 (propagated-inputs `(("emacs-org" ,emacs-org)))
10768 (home-page "https://github.com/dengste/org-caldav")
10769 (synopsis
10770 "Sync Org files with external calendars via the CalDAV protocol")
10771 (description
10772 "Synchronize between events in Org-mode files and a CalDAV calendar.
10773 This code is still alpha.")
10774 (license license:gpl3+)))
10775
10776 (define-public emacs-zotxt
10777 (package
10778 (name "emacs-zotxt")
10779 (version "20180518")
10780 (source
10781 (origin
10782 (method url-fetch)
10783 (uri (string-append
10784 "https://github.com/egh/zotxt-emacs/archive/"
10785 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
10786 ".tar.gz"))
10787 (sha256
10788 (base32
10789 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
10790 (build-system emacs-build-system)
10791 (propagated-inputs
10792 `(("emacs-deferred" ,emacs-deferred)
10793 ("emacs-request" ,emacs-request)))
10794 (home-page "https://github.com/egh/zotxt-emacs")
10795 (synopsis "Integrate Emacs with Zotero")
10796 (description "This package provides two integration features between Emacs
10797 and the Zotero research assistant: Insertion of links to Zotero items into an
10798 Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
10799 (license license:gpl3+)))
10800
10801 (define-public emacs-evil-ediff
10802 ;; Evil-Ediff is included in Evil Collection from 20180617.
10803 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
10804
10805 (define-public emacs-evil-magit
10806 (let ((commit "dbf5a646a7ce1c35c229dfdc423bd5ecd927a3a8"))
10807 (package
10808 (name "emacs-evil-magit")
10809 (version (git-version "0.4.2" "1" commit))
10810 (source
10811 (origin
10812 (method git-fetch)
10813 (uri (git-reference
10814 (url "https://github.com/emacs-evil/evil-magit")
10815 (commit commit)))
10816 (file-name (string-append name "-" version "-checkout"))
10817 (sha256
10818 (base32
10819 "0ya0dkviq4pi92ab69a4j674y5r1hc1x3x7r7hlm97ag3a6zfkav"))))
10820 (build-system emacs-build-system)
10821 (propagated-inputs
10822 `(("emacs-evil" ,emacs-evil)
10823 ("magit" ,magit)))
10824 (home-page
10825 "https://github.com/emacs-evil/evil-magit")
10826 (synopsis "Evil-based key bindings for Magit")
10827 (description
10828 "This Emacs library configures Magit and Evil to play well with each other.
10829 For some background see @url{https://github.com/magit/evil-magit/issues/1}.
10830 See the README at @url{https://github.com/justbur/evil-magit} for a table
10831 describing the key binding changes.")
10832 (license license:gpl3+))))
10833
10834 (define-public emacs-evil-mu4e
10835 ;; Evil-mu4e is included in Evil Collection from 20180617.
10836 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
10837
10838 (define-public emacs-evil-multiedit
10839 (let ((commit "ea3d9177b74ab0bc65e55df9cc0a0b42e4ef815d"))
10840 (package
10841 (name "emacs-evil-multiedit")
10842 (version (git-version "1.3.9" "1" commit))
10843 (source
10844 (origin
10845 (method git-fetch)
10846 (uri (git-reference
10847 (url "https://github.com/hlissner/evil-multiedit")
10848 (commit commit)))
10849 (file-name (string-append name "-" version "-checkout"))
10850 (sha256
10851 (base32
10852 "17zm35r474z8ras4xy7124pcb972d385pbdv4jxyj5vq042vq07w"))))
10853 (build-system emacs-build-system)
10854 (propagated-inputs
10855 `(("emacs-evil" ,emacs-evil)
10856 ("emacs-iedit" ,emacs-iedit)))
10857 (home-page
10858 "https://github.com/hlissner/evil-multiedit")
10859 (synopsis "Multiple cursors for Evil mode")
10860 (description
10861 "This plugin was an answer to the lack of proper multiple cursor support
10862 in Emacs+Evil. It allows you to select and edit matches interactively,
10863 integrating @code{iedit-mode} into Evil mode with an attempt at sensible
10864 defaults.")
10865 (license license:gpl3+))))
10866
10867 (define-public emacs-evil-org
10868 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
10869 (package
10870 (name "emacs-evil-org")
10871 (version (git-version "0.1.1" "1" commit))
10872 (source
10873 (origin
10874 (method git-fetch)
10875 (uri (git-reference
10876 (url "https://github.com/Somelauw/evil-org-mode")
10877 (commit commit)))
10878 (file-name (string-append name "-" version "-checkout"))
10879 (sha256
10880 (base32
10881 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
10882 (build-system emacs-build-system)
10883 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
10884 (home-page
10885 "https://github.com/Somelauw/evil-org-mode")
10886 (synopsis "Evil keybindings for Org mode")
10887 (description
10888 "This package adds supplemental Evil mode key-bindings to Emacs
10889 Org-mode. It features:
10890 @itemize
10891 @item normal, visual and insert mode bindings;
10892 @item key bindings organised in key themes;
10893 @item operators like > and < to work on headings;
10894 @item text objects;
10895 @item table support;
10896 @item calendar (date selection) support;
10897 @item agenda support.
10898 @end itemize\n")
10899 (license license:gpl3+))))
10900
10901 (define-public emacs-fish-completion
10902 (let ((commit "bac15fda1392a891070574dfe5d2d50b10831e8b"))
10903 (package
10904 (name "emacs-fish-completion")
10905 (version (git-version "20180616" "1" commit))
10906 (source
10907 (origin
10908 (method url-fetch)
10909 (uri (string-append
10910 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
10911 "archive.tar.gz?ref="
10912 commit))
10913 (sha256
10914 (base32
10915 "093qzdrbkl7dhjk16zq8i13kh1phyigkblcfrbgbrxjqd2ndrfdi"))))
10916 (build-system emacs-build-system)
10917 (inputs `(("fish" ,fish)))
10918 (arguments
10919 `(#:phases
10920 (modify-phases %standard-phases
10921 (add-after 'unpack 'configure
10922 (lambda* (#:key inputs outputs #:allow-other-keys)
10923 (let ((fish (assoc-ref inputs "fish")))
10924 ;; Specify the absolute file names of the various
10925 ;; programs so that everything works out-of-the-box.
10926 (emacs-substitute-variables
10927 "fish-completion.el"
10928 ("fish-completion-command"
10929 (string-append fish "/bin/fish")))))))))
10930 (home-page
10931 "https://gitlab.com/Ambrevar/emacs-fish-completion")
10932 (synopsis "Fish completion for Emacs pcomplete")
10933 (description
10934 "This package provides completion for the Fish shell to pcomplete (used
10935 by shell and Eshell). You can set it up globally with:
10936
10937 @example
10938 (when (and (executable-find \"fish\")
10939 (require 'fish-completion nil t))
10940 (global-fish-completion-mode))
10941 @end example
10942
10943 Alternatively, you can call the @code{fish-completion-mode} manually or in
10944 shell/Eshell mode hook.
10945
10946 The package @code{emacs-bash-completion} is an optional dependency: if available,
10947 @code{fish-completion-complete} can be configured to fall back on bash to further
10948 try completing. See @code{fish-completion-fallback-on-bash-p}.")
10949 (license license:gpl3+))))
10950
10951 (define-public emacs-gif-screencast
10952 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
10953 (package
10954 (name "emacs-gif-screencast")
10955 (version (git-version "20180616" "1" commit))
10956 (source
10957 (origin
10958 (method url-fetch)
10959 (uri (string-append
10960 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
10961 "repository/archive.tar.gz?ref="
10962 commit))
10963 (sha256
10964 (base32
10965 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
10966 (build-system emacs-build-system)
10967 (inputs
10968 `(("scrot" ,scrot)
10969 ("imagemagick" ,imagemagick)
10970 ("gifsicle" ,gifsicle)))
10971 (arguments
10972 `(#:phases
10973 (modify-phases %standard-phases
10974 (add-after 'unpack 'configure
10975 (lambda* (#:key inputs outputs #:allow-other-keys)
10976 (let ((scrot (assoc-ref inputs "scrot"))
10977 (imagemagick (assoc-ref inputs "imagemagick"))
10978 (gifsicle (assoc-ref inputs "gifsicle")))
10979 ;; Specify the absolute file names of the various
10980 ;; programs so that everything works out-of-the-box.
10981 (emacs-substitute-variables
10982 "gif-screencast.el"
10983 ("gif-screencast-program"
10984 (string-append scrot "/bin/scrot"))
10985 ("gif-screencast-convert-program"
10986 (string-append imagemagick "/bin/convert"))
10987 ("gif-screencast-cropping-program"
10988 (string-append imagemagick "/bin/mogrify"))
10989 ("gif-screencast-optimize-program"
10990 (string-append imagemagick "/bin/gifsicle")))))))))
10991 (home-page
10992 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
10993 (synopsis "One-frame-per-action GIF recording")
10994 (description
10995 "Call @code{gif-screencast} to start a recording.
10996 A screenshot is taken for every user action. Call
10997 @code{gif-screencast-stop} (<f9> by default) to finish recording and create
10998 the GIF result.")
10999 (license license:gpl3+))))
11000
11001 (define-public emacs-google-translate
11002 (let ((commit "d8b84a8359fcc697114d1298840e9a45b111c974"))
11003 (package
11004 (name "emacs-google-translate")
11005 (version (git-version "0.11.14" "1" commit))
11006 (source
11007 (origin
11008 (method git-fetch)
11009 (uri (git-reference
11010 (url "https://github.com/atykhonov/google-translate")
11011 (commit commit)))
11012 (file-name (string-append name "-" version "-checkout"))
11013 (sha256
11014 (base32
11015 "1qs4hcg1i2m487z50nnwgs0sa2xj4lpgizbrvi2yda0mf3m75fgc"))))
11016 (build-system emacs-build-system)
11017 (home-page "https://github.com/atykhonov/google-translate")
11018 (synopsis "Emacs interface to Google Translate")
11019 (description
11020 "This packages provides an Emacs interface to the Google Translate
11021 on-line service.")
11022 (license license:gpl3+))))
11023
11024 (define-public emacs-helm-company
11025 (let ((commit "acc9c7901e094c1591327a0db1ec7a439f67a84d"))
11026 (package
11027 (name "emacs-helm-company")
11028 (version (git-version "0.2.2" "1" commit))
11029 (source
11030 (origin
11031 (method git-fetch)
11032 (uri (git-reference
11033 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11034 (commit commit)))
11035 (file-name (string-append name "-" version "-checkout"))
11036 (sha256
11037 (base32
11038 "1d4q9clp0q56br80c21a4wz1gc4jw3mdy97z9mq07x9i8rhlppzs"))))
11039 (build-system emacs-build-system)
11040 (propagated-inputs
11041 `(("emacs-helm" ,emacs-helm)
11042 ("emacs-company" ,emacs-company)))
11043 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
11044 (synopsis "Helm interface for company-mode")
11045 (description
11046 "This is a Helm interface to company-mode, a text completion
11047 framework.")
11048 (license license:gpl3+))))
11049
11050 (define-public emacs-helm-descbinds
11051 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
11052 (package
11053 (name "emacs-helm-descbinds")
11054 (version (git-version "1.13" "1" commit))
11055 (source
11056 (origin
11057 (method git-fetch)
11058 (uri (git-reference
11059 (url "https://github.com/emacs-helm/helm-descbinds")
11060 (commit commit)))
11061 (file-name (string-append name "-" version "-checkout"))
11062 (sha256
11063 (base32
11064 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
11065 (build-system emacs-build-system)
11066 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11067 (home-page "https://github.com/emacs-helm/helm-descbinds")
11068 (synopsis "Convenient @code{describe-bindings} with Helm")
11069 (description
11070 "This package is a replacement of @code{describe-bindings} for Helm.
11071 @code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
11072 type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
11073 @code{helm-descbinds}. The bindings are presented in a similar way as
11074 @code{describe-bindings} does, but you can use completion to find the command
11075 you searched for and execute it, or view its documentation.")
11076 (license license:gpl3+))))
11077
11078 (define-public emacs-helm-emms
11079 (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
11080 (package
11081 (name "emacs-helm-emms")
11082 (version (git-version "1.3" "1" commit))
11083 (source
11084 (origin
11085 (method git-fetch)
11086 (uri (git-reference
11087 (url "https://github.com/emacs-helm/helm-emms")
11088 (commit commit)))
11089 (file-name (string-append name "-" version "-checkout"))
11090 (sha256
11091 (base32
11092 "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
11093 (build-system emacs-build-system)
11094 (propagated-inputs
11095 `(("emacs-helm" ,emacs-helm)
11096 ("emacs-emms" ,emms)))
11097 (home-page
11098 "https://github.com/emacs-helm/helm-emms")
11099 (synopsis "Emms for Helm")
11100 (description "Helm interface for Emms to browse all tracks and all folders
11101 from @code{emms-source-file-default-directory}.")
11102 (license license:gpl3+))))
11103
11104 (define-public emacs-helm-exwm
11105 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
11106 (package
11107 (name "emacs-helm-exwm")
11108 (version (git-version "20180703" "2" commit))
11109 (source
11110 (origin
11111 (method url-fetch)
11112 (uri (string-append
11113 "https://github.com/emacs-helm/helm-exwm/archive/"
11114 commit
11115 ".tar.gz"))
11116 (sha256
11117 (base32
11118 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
11119 (build-system emacs-build-system)
11120 (propagated-inputs
11121 `(("emacs-helm" ,emacs-helm)
11122 ("emacs-exwm" ,emacs-exwm)))
11123 (home-page
11124 "https://github.com/emacs-helm/helm-exwm")
11125 (synopsis "Helm for EXWM buffers")
11126 (description
11127 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
11128 @code{helm-exwm-switch} is a convenience X application launcher using Helm to
11129 switch between the various windows of one or several specific applications.
11130 See @code{helm-exwm-switch-browser} for an example.")
11131 (license license:gpl3+))))
11132
11133 (define-public emacs-helm-flycheck
11134 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
11135 (package
11136 (name "emacs-helm-flycheck")
11137 (version (git-version "0.4" "1" commit))
11138 (source
11139 (origin
11140 (method git-fetch)
11141 (uri (git-reference
11142 (url "https://github.com/yasuyk/helm-flycheck")
11143 (commit commit)))
11144 (file-name (string-append name "-" version "-checkout"))
11145 (sha256
11146 (base32
11147 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
11148 (build-system emacs-build-system)
11149 (propagated-inputs
11150 `(("emacs-dash" ,emacs-dash)
11151 ("emacs-flycheck" ,flycheck)
11152 ("emacs-helm" ,emacs-helm)))
11153 (home-page "https://github.com/yasuyk/helm-flycheck")
11154 (synopsis "Show Flycheck errors with Helm")
11155 (description
11156 "This integrates Flycheck with Helm.")
11157 (license license:gpl3+))))
11158
11159 (define-public emacs-helm-ls-git
11160 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
11161 (package
11162 (name "emacs-helm-ls-git")
11163 (version (git-version "1.9.1" "1" commit))
11164 (source
11165 (origin
11166 (method git-fetch)
11167 (uri (git-reference
11168 (url "https://github.com/emacs-helm/helm-ls-git")
11169 (commit commit)))
11170 (file-name (string-append name "-" version "-checkout"))
11171 (sha256
11172 (base32
11173 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
11174 (build-system emacs-build-system)
11175 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11176 (home-page "https://github.com/emacs-helm/helm-ls-git")
11177 (synopsis "Helm interface for listing the files in a Git repository")
11178 (description
11179 "This package provides a Helm interface for Git files.
11180 @itemize
11181 @item Display the open buffers in project.
11182 @item Display a status source showing state of project (modified files etc.).
11183 @item Display a list of all files in project under git control.
11184 @item Quickly look at diffs of modified files.
11185 @item Allow switching to @code{git status} with your preferred frontend
11186 (vc-dir, Magit,etc.).
11187 @item Full integration of git-grep, also allow usage of @code{helm-grep} (you
11188 can use ack-grep instead of grep).
11189 @item Integrate usage of gid from id-utils.
11190 @item Full integration with @code{helm-find-files}, allow you to browse
11191 projects unrelated to current-buffer.
11192 @item In addition, all actions of type files and buffers are provided.
11193 @end itemize\n")
11194 (license license:gpl3+))))
11195
11196 (define-public emacs-helm-mu
11197 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
11198 (package
11199 (name "emacs-helm-mu")
11200 (version (git-version "20180513" "1" commit))
11201 (source
11202 (origin
11203 (method url-fetch)
11204 (uri (string-append
11205 "https://github.com/emacs-helm/helm-mu/archive/"
11206 commit
11207 ".tar.gz"))
11208 (sha256
11209 (base32
11210 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
11211 (build-system emacs-build-system)
11212 (propagated-inputs
11213 `(("emacs-helm" ,emacs-helm)
11214 ("mu" ,mu)))
11215 (home-page
11216 "https://github.com/emacs-helm/helm-mu")
11217 (synopsis
11218 "Helm sources for searching emails and contacts")
11219 (description
11220 "Helm sources for searching emails and contacts using @code{mu} and
11221 @code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
11222 Emacs build on top of mu. Mu is highly efficient making it possible to get
11223 instant results even for huge maildirs. It also provides search operators,
11224 e.g: @code{from:Peter to:Anne flag:attach search term}.")
11225 (license license:gpl3+))))
11226
11227 (define-public emacs-helm-pass
11228 (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"))
11229 (package
11230 (name "emacs-helm-pass")
11231 (version (git-version "20180416" "1" commit))
11232 (source
11233 (origin
11234 (method url-fetch)
11235 (uri (string-append
11236 "https://github.com/jabranham/helm-pass/archive/"
11237 commit
11238 ".tar.gz"))
11239 (sha256
11240 (base32
11241 "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
11242 (build-system emacs-build-system)
11243 (propagated-inputs
11244 `(("emacs-helm" ,emacs-helm)
11245 ("emacs-password-store" ,emacs-password-store)))
11246 (home-page
11247 "https://github.com/jabranham/helm-pass")
11248 (synopsis "Helm interface to pass, the standard Unix password manager")
11249 (description
11250 "Users of @code{helm-pass} may also be interested in functionality
11251 provided by other Emacs packages dealing with pass:
11252 @itemize
11253 @item @code{emacs-password-store}, which @code{helm-pass} relies on.
11254 @item @code{emacs-pass}, a major mode for @code{pass}.
11255 @item @code{auth-source-pass.el}: integration of Emacs' auth-source with
11256 @code{pass}, included in Emacs 26+).
11257 @end itemize\n")
11258 (license license:gpl3+))))
11259
11260 (define-public emacs-image+
11261 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
11262 (package
11263 (name "emacs-image+")
11264 (version (git-version "0.6.2" "1" commit))
11265 (source
11266 (origin
11267 (method git-fetch)
11268 (uri (git-reference
11269 (url "https://github.com/mhayashi1120/Emacs-imagex")
11270 (commit commit)))
11271 (file-name (string-append name "-" version "-checkout"))
11272 (sha256
11273 (base32
11274 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
11275 (build-system emacs-build-system)
11276 (inputs `(("imagemagick" ,imagemagick)))
11277 (arguments
11278 `(#:phases
11279 (modify-phases %standard-phases
11280 (add-after 'unpack 'configure
11281 (lambda* (#:key inputs outputs #:allow-other-keys)
11282 (let ((imagemagick (assoc-ref inputs "imagemagick")))
11283 ;; Specify the absolute file names of the various
11284 ;; programs so that everything works out-of-the-box.
11285 (chmod "image+.el" #o666)
11286 (emacs-substitute-variables
11287 "image+.el"
11288 ("imagex-convert-command"
11289 (string-append imagemagick "/bin/convert"))
11290 ("imagex-identify-command"
11291 (string-append imagemagick "/bin/identify")))))))))
11292 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
11293 (synopsis "Image manipulation extensions for Emacs")
11294 (description
11295 "Image+ provides keybindings allowing you to zoom in or zoom out of an
11296 image, rotate it, save modified images, and more.")
11297 (license license:gpl3+))))
11298
11299 (define-public emacs-package-lint
11300 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
11301 (package
11302 (name "emacs-package-lint")
11303 (version (git-version "0.5" "1" commit))
11304 (source
11305 (origin
11306 (method git-fetch)
11307 (uri (git-reference
11308 (url "https://github.com/purcell/package-lint")
11309 (commit commit)))
11310 (file-name (string-append name "-" version "-checkout"))
11311 (sha256
11312 (base32
11313 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
11314 (build-system emacs-build-system)
11315 (home-page "https://github.com/purcell/package-lint")
11316 (synopsis "Linting library for elisp package authors")
11317 (description
11318 "This provides a list of issues with the Emacs package metadata of a file,
11319 e.g. the package dependencies it requires. See function
11320 @code{package-lint-buffer}. Checks will currently be enabled only if a
11321 \"Package-Requires:\" or \"Package-Version:\" header is present in the
11322 file.")
11323 (license license:gpl3+))))
11324
11325 (define-public emacs-picpocket
11326 (let ((version "20180610.1059") ; taken from melpa
11327 (commit "ce4b6ed088384f2414af82e8e4eae5b92c2874bf"))
11328 (package
11329 (name "emacs-picpocket")
11330 (version version)
11331 (source
11332 (origin
11333 (method git-fetch)
11334 (uri (git-reference
11335 (url "https://github.com/johanclaesson/picpocket")
11336 (commit commit)))
11337 (file-name (git-file-name name version))
11338 (sha256
11339 (base32 "15vpbcv83mc4j1pvrk7xic0klh2bl9gzg2xxs7c2lmnix52hy8mv"))))
11340 (build-system emacs-build-system)
11341 (arguments ; needed for running tests
11342 `(#:tests? #t
11343 #:emacs ,emacs
11344 #:test-command '("emacs" "--batch"
11345 "-l" "picpocket-test.el"
11346 "-f" "ert-run-tests-batch-and-exit")))
11347 (home-page "https://github.com/johanclaesson/picpocket")
11348 (synopsis "Image viewer for Emacs")
11349 (description
11350 "Picpocket is an image viewer for GNU Emacs. It has commands for:
11351
11352 @itemize
11353 @item File operations on the picture files (delete, move, copy, hardlink).
11354 @item Scale and rotate the picture.
11355 @item Associate pictures with tags which are saved to disk.
11356 @item Filter pictures according to tags.
11357 @item Customizing keystrokes for quick tagging and file operations.
11358 @item Undo and browse history of undoable commands.
11359 @end itemize")
11360 (license license:gpl3+))))
11361
11362 (define-public emacs-wgrep-helm
11363 ;; `emacs-wgrep-helm' was mistakenly added.
11364 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
11365
11366 (define-public emacs-mu4e-conversation
11367 (let ((commit "223cc66e99c7665326e3d991d6d383cb0d7512bb"))
11368 (package
11369 (name "emacs-mu4e-conversation")
11370 (version (git-version "20180722" "2" commit))
11371 (source
11372 (origin
11373 (method url-fetch)
11374 (uri (string-append
11375 "https://gitlab.com/Ambrevar/mu4e-conversation/"
11376 "repository/archive.tar.gz?ref="
11377 commit))
11378 (file-name (string-append name "-" version "-checkout"))
11379 (sha256
11380 (base32
11381 "1ivy7pihhma465hi25p1y45dyi8h52nsm2m0cvizj5sw36jw0n81"))))
11382 (build-system emacs-build-system)
11383 (propagated-inputs
11384 `(("mu" ,mu)))
11385 (home-page
11386 "https://gitlab.com/Ambrevar/mu4e-conversation")
11387 (synopsis
11388 "Show a complete thread in a single buffer")
11389 (description
11390 "This package offers an alternate view to mu4e e-mail display. It
11391 shows all e-mails of a thread in a single view, where each correspondant has
11392 their own face. Threads can be displayed linearly (in which case e-mails are
11393 displayed in chronological order) or as an Org document where the node tree
11394 maps the thread tree.")
11395 (license license:gpl3+))))
11396
11397 (define-public emacs-pinentry
11398 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
11399 (revision "1"))
11400 (package
11401 (name "emacs-pinentry")
11402 (version (git-version "0.1" revision commit))
11403 (source
11404 (origin
11405 (method url-fetch)
11406 (uri (string-append
11407 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
11408 "/packages/pinentry/pinentry.el?id=" commit))
11409 (file-name (string-append "pinentry.el"))
11410 (sha256
11411 (base32
11412 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
11413 (build-system emacs-build-system)
11414 (propagated-inputs
11415 `(("gnupg" ,gnupg)))
11416 (home-page "https://elpa.gnu.org/packages/pinentry.html")
11417 (synopsis "GnuPG Pinentry server implementation")
11418 (description
11419 "This package allows GnuPG passphrase to be prompted through the
11420 minibuffer instead of graphical dialog.
11421
11422 To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
11423 reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
11424 server with @code{M-x pinentry-start}.")
11425 (license license:gpl3+))))
11426
11427 (define-public emacs-org-brain
11428 (package
11429 (name "emacs-org-brain")
11430 (version "0.5")
11431 (source
11432 (origin
11433 (method git-fetch)
11434 (uri (git-reference
11435 (url "https://github.com/Kungsgeten/org-brain.git")
11436 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
11437 (file-name (git-file-name name version))
11438 (sha256
11439 (base32
11440 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
11441 (build-system emacs-build-system)
11442 (home-page "https://github.com/Kungsgeten/org-brain")
11443 (synopsis "Org-mode wiki and concept-mapping for Emacs")
11444 (description "@code{emacs-org-brain} implements a variant of concept
11445 mapping in Emacs, using @code{org-mode}. An org-brain is a network of
11446 org-mode entries, where each entry is a file or a headline, and you can get a
11447 visual overview of the relationships between the entries: parents, children,
11448 siblings and friends. This visual overview can also be used to browse your
11449 entries. You can think of entries as nodes in a mind map, or pages in a
11450 wiki.")
11451 (license license:expat)))
11452
11453 (define-public emacs-recent-addresses
11454 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
11455 (revision "1"))
11456 (package
11457 (name "emacs-recent-addresses")
11458 (home-page "http://nschum.de/src/emacs/recent-addresses/")
11459 (version (git-version "0.1" revision commit))
11460 (source (origin
11461 (method git-fetch)
11462 (uri (git-reference
11463 ;; Note: Use a branch that works with Helm. Submitted
11464 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
11465 (url "https://github.com/civodul/recent-addresses.el")
11466 (commit commit)))
11467 (sha256
11468 (base32
11469 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
11470 (file-name (git-file-name name version))))
11471 (build-system emacs-build-system)
11472 (synopsis "Record recently-used email addressed and auto-complete them")
11473 (description
11474 "@code{recent-addresses} is an Emacs package that allows you to quickly
11475 look up previously used email addresses. It can be used alongside the Gnus
11476 email client.")
11477 (license license:gpl2+))))
11478
11479 (define-public emacs-fold-dwim
11480 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
11481 (revision "0"))
11482 (package
11483 (name "emacs-fold-dwim")
11484 (version (git-version "1.2" revision commit))
11485 (home-page "https://github.com/emacsattic/fold-dwim")
11486 (source (origin
11487 (method git-fetch)
11488 (uri (git-reference (url home-page) (commit commit)))
11489 (sha256
11490 (base32
11491 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
11492 (file-name (git-file-name name version))))
11493 (build-system emacs-build-system)
11494 (synopsis "Unified user interface for Emacs folding modes")
11495 (description
11496 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
11497 can do different things depending on the context. In this package, it means
11498 that, if the cursor is in a currently hidden folded construction, we want to
11499 show it; if it's not, we want to hide whatever fold the cursor is in.")
11500 (license license:gpl2+))))
11501
11502 (define-public emacs-markup-faces
11503 (package
11504 (name "emacs-markup-faces")
11505 (version "1.0.0")
11506 (source
11507 (origin
11508 (method url-fetch)
11509 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
11510 version ".el"))
11511 (sha256
11512 (base32
11513 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
11514 (build-system emacs-build-system)
11515 (home-page "https://github.com/sensorflo/markup-faces")
11516 (synopsis "Collection of Emacs faces for markup language modes")
11517 (description "emacs-markup-faces is like font-lock-faces, but tailored for
11518 markup languages instead programming languages. The sub group markup-faces-text
11519 is also intended for 'text viewing modes' such as info or (wo)man. This gives a
11520 common look and feel, or let's say theme, across different markup language modes
11521 and 'text viewing modes' respectively.")
11522 (license license:gpl3+)))
11523
11524 (define-public emacs-adoc-mode
11525 (package
11526 (name "emacs-adoc-mode")
11527 (version "0.6.6")
11528 (source
11529 (origin
11530 (method url-fetch)
11531 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
11532 version ".el"))
11533 (sha256
11534 (base32
11535 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
11536 (build-system emacs-build-system)
11537 (propagated-inputs
11538 `(("emacs-markup-faces" ,emacs-markup-faces)))
11539 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
11540 (synopsis "AsciiDoc mode for Emacs")
11541 (description "This package provides an Emacs major mode for editing AsciiDoc
11542 files. It focuses on highlighting the document to improve readability.")
11543 (license license:gpl2+)))
11544
11545 (define-public emacs-rust-mode
11546 (let ((commit
11547 ;; Last release is old (2016), use more recent commit to get bug
11548 ;; fixes.
11549 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
11550 (revision "0"))
11551 (package
11552 (name "emacs-rust-mode")
11553 (version (git-version "0.3.0" revision commit))
11554 (source (origin
11555 (method git-fetch)
11556 (uri
11557 (git-reference
11558 (url "https://github.com/rust-lang/rust-mode")
11559 (commit commit)))
11560 (file-name (git-file-name name version))
11561 (sha256
11562 (base32
11563 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
11564 (build-system emacs-build-system)
11565 (arguments
11566 `(#:phases
11567 (modify-phases %standard-phases
11568 (replace 'check
11569 (lambda _
11570 (invoke "sh" "run_rust_emacs_tests.sh"))))))
11571 (home-page "https://github.com/rust-lang/rust-mode")
11572 (synopsis "Major Emacs mode for editing Rust source code")
11573 (description "This package provides a major Emacs mode for editing Rust
11574 source code.")
11575 (license (list license:expat
11576 license:asl2.0)))))
11577
11578 (define-public emacs-ztree
11579 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
11580 (package
11581 (name "emacs-ztree")
11582 (version (git-version "1.0.5" "1" commit))
11583 (source
11584 (origin
11585 (method git-fetch)
11586 (uri (git-reference
11587 (url "https://github.com/fourier/ztree")
11588 (commit commit)))
11589 (file-name (git-file-name name version))
11590 (sha256
11591 (base32
11592 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
11593 (build-system emacs-build-system)
11594 (home-page "https://github.com/fourier/ztree")
11595 (synopsis "Directory tree comparison mode for Emacs")
11596 (description "Ztree is a project dedicated to implementation of several
11597 text-tree applications inside GNU Emacs. It consists of 2 subprojects:
11598 @command{ztree-diff} and @command{ztree-dir} (the basis of
11599 @command{ztree-diff}).")
11600 (license license:gpl3))))
11601
11602 (define-public emacs-helm-org-contacts
11603 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
11604 (package
11605 (name "emacs-helm-org-contacts")
11606 (version (git-version "20180707" "1" commit))
11607 (source
11608 (origin
11609 (method git-fetch)
11610 (uri (git-reference
11611 (url "https://github.com/tmalsburg/helm-org-contacts")
11612 (commit commit)))
11613 (file-name (git-file-name name version))
11614 (sha256
11615 (base32
11616 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
11617 (build-system emacs-build-system)
11618 (propagated-inputs
11619 `(("emacs-dash" ,emacs-dash)
11620 ("emacs-helm" ,emacs-helm)
11621 ("emacs-s" ,emacs-s)))
11622 (home-page "https://github.com/tmalsburg/helm-org-contacts")
11623 (synopsis "Helm source for org-contacts")
11624 (description "This Helm source can be used to search contacts stored in
11625 org-contacts format. There are actions for inserting postal addresses, email
11626 addresses, and phone numbers in the buffer where @command{helm-org-contacts}
11627 was called.")
11628 (license license:gpl3))))
11629
11630 (define-public emacs-dired-du
11631 (package
11632 (name "emacs-dired-du")
11633 (version "0.5")
11634 (source
11635 (origin
11636 (method url-fetch)
11637 (uri (string-append
11638 "https://elpa.gnu.org/packages/dired-du-"
11639 version ".tar"))
11640 (sha256
11641 (base32
11642 "09yj37p2fa5f81fqrzwghjkyy2ydsf4rbkfwpn2yyvzd5nd97bpl"))))
11643 (build-system emacs-build-system)
11644 (home-page "http://elpa.gnu.org/packages/dired-du.html")
11645 (synopsis "Dired with recursive directory sizes")
11646 (description
11647 "Display the recursive size of directories in Dired.
11648 This file defines a minor mode @command{dired-du-mode} to show the recursive
11649 size of directories in Dired buffers. If @command{du} program is available,
11650 then the directory sizes are obtained with it. Otherwise, the directory sizes
11651 are obtained with Lisp. The former is faster and provide a more precise
11652 value. For directories where the user doesn't have read permission, the
11653 recursive size is not obtained. Once this mode is enabled, every new Dired
11654 buffer displays recursive dir sizes.")
11655 (license license:gpl3+)))
11656
11657 (define-public emacs-pcre2el
11658 ;; Last release is very old so we get the latest commit.
11659 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
11660 (package
11661 (name "emacs-pcre2el")
11662 (version (git-version "1.8" "1" commit))
11663 (source
11664 (origin
11665 (method git-fetch)
11666 (uri (git-reference
11667 (url "https://github.com/joddie/pcre2el")
11668 (commit commit)))
11669 (file-name (git-file-name name version))
11670 (sha256
11671 (base32
11672 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
11673 (build-system emacs-build-system)
11674 (home-page "https://github.com/joddie/pcre2el")
11675 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
11676 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
11677 Tools) is a utility for working with regular expressions in Emacs, based on a
11678 recursive-descent parser for regexp syntax. In addition to converting (a
11679 subset of) PCRE syntax into its Emacs equivalent, it can do the following:
11680
11681 @itemize
11682 @item convert Emacs syntax to PCRE
11683 @item convert either syntax to @code{rx}, an S-expression based regexp syntax
11684 @item untangle complex regexps by showing the parse tree in @code{rx} form and
11685 highlighting the corresponding chunks of code
11686 @item show the complete list of strings (productions) matching a regexp,
11687 provided the list is finite
11688 @item provide live font-locking of regexp syntax (so far only for Elisp
11689 buffers – other modes on the TODO list).
11690 @end itemize\n")
11691 (license license:gpl3))))
11692
11693 (define-public emacs-magit-todos
11694 ;; TODO: <1.1 is broken with Guix. Switch to 1.1 when out.
11695 (let ((commit "966642762788d335dc2d3667d230a36ede65972e"))
11696 (package
11697 (name "emacs-magit-todos")
11698 (version (git-version "1.0.4" "1" commit))
11699 (source
11700 (origin
11701 (method git-fetch)
11702 (uri (git-reference
11703 (url "https://github.com/alphapapa/magit-todos")
11704 (commit commit)))
11705 (file-name (git-file-name name version))
11706 (sha256
11707 (base32
11708 "0nxarip8sf0446xfgrcfsjm4vbsg50klxjbr4i6h09a3lri03gyp"))))
11709 (build-system emacs-build-system)
11710 (propagated-inputs
11711 `(("emacs-async" ,emacs-async)
11712 ("emacs-dash" ,emacs-dash)
11713 ("emacs-f" ,emacs-f)
11714 ("emacs-hl-todo" ,emacs-hl-todo)
11715 ("magit" ,magit)
11716 ("emacs-pcre2el" ,emacs-pcre2el)
11717 ("emacs-s" ,emacs-s)))
11718 (home-page "https://github.com/alphapapa/magit-todos")
11719 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
11720 (description "This package displays keyword entries from source code
11721 comments and Org files in the Magit status buffer. Activating an item jumps
11722 to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
11723 few (like NOTE).")
11724 (license license:gpl3))))
11725
11726 (define-public emacs-git-annex
11727 ;; Unreleased version has a fontification fix.
11728 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
11729 (revision "1"))
11730 (package
11731 (name "emacs-git-annex")
11732 (version (string-append "1.1-" revision "." (string-take commit 8)))
11733 (source
11734 (origin
11735 (method git-fetch)
11736 (uri (git-reference
11737 (url "https://github.com/jwiegley/git-annex-el")
11738 (commit commit)))
11739 (file-name (string-append name "-" version "-checkout"))
11740 (sha256
11741 (base32
11742 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
11743 (build-system emacs-build-system)
11744 (home-page "https://github.com/jwiegley/git-annex-el")
11745 (synopsis "Emacs integration for git-annex")
11746 (description "Enhances Dired and buffers visiting annex files with
11747 git-annex functionality. In Dired, the names of annex files are shortened by
11748 hiding the symbolic links and fontified based on whether content is present.
11749 Commands for performing some common operations (e.g., unlocking and adding
11750 files) are provided.")
11751 (license license:gpl2+))))