gnu: emacs-evil-collection: Update to 20190220.
[jackhill/guix/guix.git] / gnu / packages / emacs-xyz.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, 2019 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, 2019 Alex Kost <alezost@gmail.com>
6 ;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
7 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
8 ;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
9 ;;; Copyright © 2015, 2016, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
10 ;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
11 ;;; Copyright © 2016, 2017, 2018, 2019 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, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
18 ;;; Copyright © 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com>
19 ;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
20 ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
21 ;;; Copyright © 2017, 2018, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
22 ;;; Copyright © 2017, 2018, 2019 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, 2018 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, 2019 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, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
38 ;;; Copyright © 2018, 2019 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 ;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
43 ;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
44 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
45 ;;;
46 ;;; This file is part of GNU Guix.
47 ;;;
48 ;;; GNU Guix is free software; you can redistribute it and/or modify it
49 ;;; under the terms of the GNU General Public License as published by
50 ;;; the Free Software Foundation; either version 3 of the License, or (at
51 ;;; your option) any later version.
52 ;;;
53 ;;; GNU Guix is distributed in the hope that it will be useful, but
54 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
55 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56 ;;; GNU General Public License for more details.
57 ;;;
58 ;;; You should have received a copy of the GNU General Public License
59 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
60
61 (define-module (gnu packages emacs-xyz)
62 #:use-module ((guix licenses) #:prefix license:)
63 #:use-module (guix packages)
64 #:use-module (guix cvs-download)
65 #:use-module (guix download)
66 #:use-module (guix git-download)
67 #:use-module (guix build-system gnu)
68 #:use-module (guix build-system cmake)
69 #:use-module (guix build-system emacs)
70 #:use-module (guix build-system glib-or-gtk)
71 #:use-module (guix build-system perl)
72 #:use-module (guix build-system trivial)
73 #:use-module (gnu packages)
74 #:use-module (gnu packages admin)
75 #:use-module (gnu packages audio)
76 #:use-module (gnu packages bash)
77 #:use-module (gnu packages cmake)
78 #:use-module (gnu packages code)
79 #:use-module (gnu packages databases)
80 #:use-module (gnu packages emacs)
81 #:use-module (gnu packages guile)
82 #:use-module (gnu packages gtk)
83 #:use-module (gnu packages gnome)
84 #:use-module (gnu packages ncurses)
85 #:use-module (gnu packages python)
86 #:use-module (gnu packages python-xyz)
87 #:use-module (gnu packages tex)
88 #:use-module (gnu packages texinfo)
89 #:use-module (gnu packages tcl)
90 #:use-module (gnu packages tls)
91 #:use-module (gnu packages pkg-config)
92 #:use-module (gnu packages xorg)
93 #:use-module (gnu packages lesstif)
94 #:use-module (gnu packages llvm)
95 #:use-module (gnu packages image)
96 #:use-module (gnu packages linux)
97 #:use-module (gnu packages libevent)
98 #:use-module (gnu packages version-control)
99 #:use-module (gnu packages imagemagick)
100 #:use-module (gnu packages w3m)
101 #:use-module (gnu packages wget)
102 #:use-module (gnu packages autotools)
103 #:use-module (gnu packages base)
104 #:use-module (gnu packages compression)
105 #:use-module (gnu packages xml)
106 #:use-module (gnu packages glib)
107 #:use-module (gnu packages acl)
108 #:use-module (gnu packages mail)
109 #:use-module (gnu packages package-management)
110 #:use-module (gnu packages perl)
111 #:use-module (gnu packages pdf)
112 #:use-module (gnu packages scheme)
113 #:use-module (gnu packages xiph)
114 #:use-module (gnu packages mp3)
115 #:use-module (gnu packages gettext)
116 #:use-module (gnu packages fribidi)
117 #:use-module (gnu packages gd)
118 #:use-module (gnu packages fontutils)
119 #:use-module (gnu packages password-utils)
120 #:use-module (gnu packages pulseaudio)
121 #:use-module (gnu packages xdisorg)
122 #:use-module (gnu packages shells)
123 #:use-module (gnu packages sqlite)
124 #:use-module (gnu packages gnupg)
125 #:use-module (gnu packages video)
126 #:use-module (gnu packages haskell)
127 #:use-module (gnu packages wordnet)
128 #:use-module (guix utils)
129 #:use-module (srfi srfi-1)
130 #:use-module (ice-9 match))
131
132 ;;;
133 ;;; Emacs hacking.
134 ;;;
135
136 (define-public emacs-geiser
137 (package
138 (name "emacs-geiser")
139 (version "0.10")
140 (source (origin
141 (method url-fetch)
142 (uri (string-append "mirror://savannah/geiser/" version
143 "/geiser-" version ".tar.gz"))
144 (sha256
145 (base32
146 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
147 (build-system gnu-build-system)
148 (arguments
149 '(#:phases
150 (modify-phases %standard-phases
151 (add-after 'install 'post-install
152 (lambda* (#:key outputs #:allow-other-keys)
153 (symlink "geiser-install.el"
154 (string-append (assoc-ref outputs "out")
155 "/share/emacs/site-lisp/"
156 "geiser-autoloads.el"))
157 #t)))))
158 (inputs `(("guile" ,guile-2.2)))
159 (native-inputs `(("emacs" ,emacs-minimal)))
160 (home-page "https://nongnu.org/geiser/")
161 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
162 (description
163 "Geiser is a collection of Emacs major and minor modes that conspire with
164 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
165 continuously running Scheme interpreter takes the center of the stage in
166 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
167 implementation, Emacs and, ultimately, the schemer, giving them access to live
168 metadata.")
169 (license license:bsd-3)))
170
171 (define-public geiser
172 (deprecated-package "geiser" emacs-geiser))
173
174 (define-public emacs-paredit
175 (package
176 (name "emacs-paredit")
177 (version "24")
178 (source (origin
179 (method url-fetch)
180 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
181 version ".el"))
182 (sha256
183 (base32
184 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
185 (build-system emacs-build-system)
186 (home-page "http://mumble.net/~campbell/emacs/paredit/")
187 (synopsis "Emacs minor mode for editing parentheses")
188 (description
189 "ParEdit (paredit.el) is a minor mode for performing structured editing
190 of S-expression data. The typical example of this would be Lisp or Scheme
191 source code.
192
193 ParEdit helps **keep parentheses balanced** and adds many keys for moving
194 S-expressions and moving around in S-expressions. Its behavior can be jarring
195 for those who may want transient periods of unbalanced parentheses, such as
196 when typing parentheses directly or commenting out code line by line.")
197 (license license:gpl3+)))
198
199 (define-public paredit
200 (deprecated-package "paredit" emacs-paredit))
201
202 (define-public git-modes
203 (package
204 (name "emacs-git-modes")
205 (version "1.2.8")
206 (source (origin
207 (method git-fetch)
208 (uri (git-reference
209 (url "https://github.com/magit/git-modes")
210 (commit version)))
211 (file-name (git-file-name name version))
212 (sha256
213 (base32
214 "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
215 (build-system emacs-build-system)
216 (home-page "https://github.com/magit/git-modes")
217 (synopsis "Emacs major modes for Git configuration files")
218 (description
219 "This package provides Emacs major modes for editing various Git
220 configuration files, such as .gitattributes, .gitignore, and .git/config.")
221 (license license:gpl3+)))
222
223 (define-public git-modes/old-name
224 (deprecated-package "git-modes" git-modes))
225
226 (define-public emacs-with-editor
227 (package
228 (name "emacs-with-editor")
229 (version "2.8.0")
230 (source (origin
231 (method git-fetch)
232 (uri (git-reference
233 (url "https://github.com/magit/with-editor.git")
234 (commit (string-append "v" version))))
235 (file-name (git-file-name name version))
236 (sha256
237 (base32
238 "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))))
239 (build-system emacs-build-system)
240 (propagated-inputs
241 `(("emacs-dash" ,emacs-dash)))
242 (home-page "https://github.com/magit/with-editor")
243 (synopsis "Emacs library for using Emacsclient as EDITOR")
244 (description
245 "This package provides an Emacs library to use the Emacsclient as
246 @code{$EDITOR} of child processes, making sure they know how to call home.
247 For remote processes a substitute is provided, which communicates with Emacs
248 on stdout instead of using a socket as the Emacsclient does.")
249 (license license:gpl3+)))
250
251 (define-public emacs-magit
252 (package
253 (name "emacs-magit")
254 (version "2.13.1")
255 (source (origin
256 (method git-fetch)
257 (uri (git-reference
258 (url "https://github.com/magit/magit")
259 (commit version)))
260 (file-name (git-file-name name version))
261 (sha256
262 (base32
263 "1kmjjcvhcb21qi6kmrlhf92ync8va5l41n9ban8kj25h7dbqyiym"))))
264 (build-system gnu-build-system)
265 (native-inputs `(("texinfo" ,texinfo)
266 ("emacs" ,emacs-minimal)))
267 (inputs
268 `(("git" ,git)
269 ("perl" ,perl)))
270 (propagated-inputs
271 `(("dash" ,emacs-dash)
272 ("ghub" ,emacs-ghub)
273 ("graphql" ,emacs-graphql)
274 ("treepy" ,emacs-treepy)
275 ("magit-popup" ,emacs-magit-popup)
276 ("with-editor" ,emacs-with-editor)))
277 (arguments
278 `(#:test-target "test"
279 #:tests? #f ; tests are not included in the release
280
281 #:make-flags
282 (list (string-append "PREFIX=" %output)
283 ;; Don't put .el files in a sub-directory.
284 (string-append "lispdir=" %output "/share/emacs/site-lisp")
285 (string-append "DASH_DIR="
286 (assoc-ref %build-inputs "dash")
287 "/share/emacs/site-lisp/guix.d/dash-"
288 ,(package-version emacs-dash))
289 (string-append "GHUB_DIR="
290 (assoc-ref %build-inputs "ghub")
291 "/share/emacs/site-lisp/guix.d/ghub-"
292 ,(package-version emacs-ghub))
293 (string-append "GRAPHQL_DIR="
294 (assoc-ref %build-inputs "graphql")
295 "/share/emacs/site-lisp/guix.d/graphql-"
296 ,(package-version emacs-graphql))
297 (string-append "TREEPY_DIR="
298 (assoc-ref %build-inputs "treepy")
299 "/share/emacs/site-lisp/guix.d/treepy-"
300 ,(package-version emacs-treepy))
301 (string-append "MAGIT_POPUP_DIR="
302 (assoc-ref %build-inputs "magit-popup")
303 "/share/emacs/site-lisp/guix.d/magit-popup-"
304 ,(package-version emacs-magit-popup))
305 (string-append "WITH_EDITOR_DIR="
306 (assoc-ref %build-inputs "with-editor")
307 "/share/emacs/site-lisp/guix.d/with-editor-"
308 ,(package-version emacs-with-editor)))
309
310 #:phases
311 (modify-phases %standard-phases
312 (delete 'configure)
313 (add-before
314 'build 'patch-exec-paths
315 (lambda* (#:key inputs #:allow-other-keys)
316 (let ((perl (assoc-ref inputs "perl")))
317 (substitute* "lisp/magit-sequence.el"
318 (("perl") (string-append perl "/bin/perl")))
319 #t))))))
320 (home-page "https://magit.vc/")
321 (synopsis "Emacs interface for the Git version control system")
322 (description
323 "With Magit, you can inspect and modify your Git repositories with Emacs.
324 You can review and commit the changes you have made to the tracked files, for
325 example, and you can browse the history of past changes. There is support for
326 cherry picking, reverting, merging, rebasing, and other common Git
327 operations.")
328 (license license:gpl3+)))
329
330 (define-public magit
331 (deprecated-package "magit" emacs-magit))
332
333 (define-public emacs-magit-svn
334 (package
335 (name "emacs-magit-svn")
336 (version "2.2.1")
337 (source (origin
338 (method git-fetch)
339 (uri (git-reference
340 (url "https://github.com/magit/magit-svn")
341 (commit version)))
342 (file-name (git-file-name name version))
343 (sha256
344 (base32
345 "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"))))
346 (build-system trivial-build-system)
347 (native-inputs `(("emacs" ,emacs-minimal)))
348 (propagated-inputs `(("dash" ,emacs-dash)
349 ("ghub" ,emacs-ghub)
350 ("graphql" ,emacs-graphql)
351 ("treepy" ,emacs-treepy)
352 ("with-editor" ,emacs-with-editor)
353 ("magit" ,emacs-magit)
354 ("magit-popup" ,emacs-magit-popup)))
355 (arguments
356 `(#:modules ((guix build utils)
357 (guix build emacs-utils))
358
359 #:builder
360 (begin
361 (use-modules (guix build utils)
362 (guix build emacs-utils))
363
364 (let ((emacs (string-append (assoc-ref %build-inputs "emacs")
365 "/bin/emacs"))
366 (magit (string-append (assoc-ref %build-inputs "magit")
367 "/share/emacs/site-lisp"))
368 (magit-popup (string-append (assoc-ref %build-inputs "magit-popup")
369 "/share/emacs/site-lisp/guix.d/magit-popup-"
370 ,(package-version emacs-magit-popup)))
371 (ghub (string-append (assoc-ref %build-inputs "ghub")
372 "/share/emacs/site-lisp/guix.d/ghub-"
373 ,(package-version emacs-ghub)))
374 (graphql (string-append (assoc-ref %build-inputs "graphql")
375 "/share/emacs/site-lisp/guix.d/graphql-"
376 ,(package-version emacs-graphql)))
377 (treepy (string-append (assoc-ref %build-inputs "treepy")
378 "/share/emacs/site-lisp/guix.d/treepy-"
379 ,(package-version emacs-treepy)))
380 (dash (string-append (assoc-ref %build-inputs "dash")
381 "/share/emacs/site-lisp/guix.d/dash-"
382 ,(package-version emacs-dash)))
383 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
384 "/share/emacs/site-lisp/guix.d/with-editor-"
385 ,(package-version emacs-with-editor)))
386 (source (assoc-ref %build-inputs "source"))
387 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
388
389 (install-file (string-append source "/magit-svn.el")
390 lisp-dir)
391
392 (with-directory-excursion lisp-dir
393 (parameterize ((%emacs emacs))
394 (emacs-generate-autoloads ,name lisp-dir)
395 (setenv "EMACSLOADPATH"
396 (string-append ":" magit ":" magit-popup ":" ghub ":"
397 ":" graphql ":" treepy ":" dash ":" with-editor))
398 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
399 #t))))
400 (home-page "https://github.com/magit/magit-svn")
401 (synopsis "Git-SVN extension to Magit")
402 (description
403 "This package is an extension to Magit, the Git Emacs mode, providing
404 support for Git-SVN.")
405 (license license:gpl3+)))
406
407 (define-public magit-svn
408 (deprecated-package "magit-svn" emacs-magit-svn))
409
410 (define-public emacs-magit-popup
411 (package
412 (name "emacs-magit-popup")
413 (version "2.12.5")
414 (source (origin
415 (method git-fetch)
416 (uri (git-reference
417 (url "https://github.com/magit/magit-popup.git")
418 (commit (string-append "v" version))))
419 (file-name (git-file-name name version))
420 (sha256
421 (base32
422 "13riknyqr6vxqll80sfhvz165flvdz367rbd0pr5slb01bnfsi2i"))))
423 (build-system emacs-build-system)
424 (arguments
425 `(#:phases
426 (modify-phases %standard-phases
427 (add-before 'install 'make-info
428 (lambda _
429 (invoke "make" "info"))))))
430 (native-inputs
431 `(("texinfo" ,texinfo)))
432 (propagated-inputs
433 `(("emacs-dash" ,emacs-dash)))
434 (home-page "https://github.com/magit/magit-popup")
435 (synopsis "Define prefix-infix-suffix command combos")
436 (description
437 "This library implements a generic interface for toggling switches and
438 setting options and then invoking an Emacs command which does something with
439 these arguments. The prototypical use is for the command to call an external
440 process, passing on the arguments as command line arguments.")
441 (license license:gpl3+)))
442
443 (define-public emacs-treepy
444 (package
445 (name "emacs-treepy")
446 (version "0.1.1")
447 (source (origin
448 (method git-fetch)
449 (uri (git-reference
450 (url "https://github.com/volrath/treepy.el.git")
451 (commit version)))
452 (file-name (git-file-name name version))
453 (sha256
454 (base32
455 "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))))
456 (build-system emacs-build-system)
457 (home-page
458 "https://github.com/volrath/treepy.el")
459 (synopsis "Tree traversal tools")
460 (description
461 "Generic tools for recursive and iterative tree traversal based on
462 clojure.walk and clojure.zip respectively.")
463 (license license:gpl3+)))
464
465 (define-public emacs-graphql
466 (package
467 (name "emacs-graphql")
468 (version "0.1.1")
469 (source (origin
470 (modules '((guix build utils)))
471 ;; Remove examples file with references to external packages as
472 ;; they do not exist at compilation time.
473 (snippet
474 '(begin (delete-file "examples.el")
475 #t))
476 (method git-fetch)
477 (uri (git-reference
478 (url "https://github.com/vermiculus/graphql.el.git")
479 (commit version)))
480 (file-name (git-file-name name version))
481 (sha256
482 (base32
483 "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"))))
484 (build-system emacs-build-system)
485 (home-page
486 "https://github.com/vermiculus/graphql.el")
487 (synopsis "GraphQL utilities")
488 (description
489 "GraphQL.el provides a generally-applicable domain-specific language for
490 creating and executing GraphQL queries against your favorite web services.
491 GraphQL is a data query language and runtime designed and used to request and
492 deliver data to mobile and web apps.")
493 (license license:gpl3+)))
494
495 (define-public emacs-ghub
496 (package
497 (name "emacs-ghub")
498 (version "3.2.0")
499 (source (origin
500 (method git-fetch)
501 (uri (git-reference
502 (url "https://github.com/magit/ghub")
503 (commit (string-append "v" version))))
504 (file-name (git-file-name name version))
505 (sha256
506 (base32
507 "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl"))))
508 (build-system emacs-build-system)
509 (arguments
510 `(#:phases
511 (modify-phases %standard-phases
512 (add-before 'install 'make-info
513 (lambda _
514 (invoke "make" "info"))))))
515 (native-inputs
516 `(("texinfo" ,texinfo)))
517 (propagated-inputs
518 `(("dash" ,emacs-dash)
519 ("graphql" ,emacs-graphql)
520 ("treepy" ,emacs-treepy)))
521 (home-page "https://github.com/magit/ghub")
522 (synopsis "Emacs client libraries for the APIs of various Git forges")
523 (description
524 "Ghub provides basic support for using the APIs of various Git forges from
525 Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
526 Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
527 handful of functions that are not resource-specific.")
528 (license license:gpl3+)))
529
530 (define-public emacs-scribble-mode
531 (let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
532 (version "0.0")
533 (revision 0))
534 (package
535 (name "emacs-scribble-mode")
536 (version (if (zero? revision)
537 version
538 (string-append version "-"
539 (number->string revision)
540 "." (string-take commit 7))))
541 (source (origin
542 (method git-fetch)
543 (uri (git-reference
544 (url "https://github.com/emacs-pe/scribble-mode.git")
545 (commit commit)))
546 (sha256
547 (base32
548 "0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
549 (build-system emacs-build-system)
550 (home-page "https://github.com/emacs-pe/scribble-mode")
551 (synopsis "Emacs mode for editing the Scribble documentation syntax.")
552 (description
553 "This package provides basic syntax highlighting and editing support
554 for editing Racket's Scribble documentation syntax in Emacs.")
555 (license license:gpl3+))))
556
557 (define-public emacs-haskell-mode
558 (package
559 (name "emacs-haskell-mode")
560 (version "16.1")
561 (source (origin
562 (method git-fetch)
563 (uri (git-reference
564 (url "https://github.com/haskell/haskell-mode")
565 (commit (string-append "v" version))))
566 (file-name (git-file-name name version))
567 (sha256
568 (base32 "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"))
569 (patches
570 (search-patches ; backport test failure fixes
571 "haskell-mode-unused-variables.patch"
572 "haskell-mode-make-check.patch"))))
573 (inputs
574 `(("emacs-el-search" ,emacs-el-search) ; for tests
575 ("emacs-stream" ,emacs-stream))) ; for tests
576 (propagated-inputs
577 `(("emacs-dash" ,emacs-dash)))
578 (native-inputs
579 `(("emacs" ,emacs-minimal)
580 ("texinfo" ,texinfo)))
581 (build-system gnu-build-system)
582 (arguments
583 `(#:make-flags (list (string-append "EMACS="
584 (assoc-ref %build-inputs "emacs")
585 "/bin/emacs"))
586 #:modules ((ice-9 match)
587 (srfi srfi-26)
588 ,@%gnu-build-system-modules)
589 #:phases
590 (modify-phases %standard-phases
591 (delete 'configure)
592 (add-before
593 'build 'pre-build
594 (lambda* (#:key inputs #:allow-other-keys)
595 (define (el-dir store-dir)
596 (match (find-files store-dir "\\.el$")
597 ((f1 f2 ...) (dirname f1))
598 (_ "")))
599
600 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
601 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
602
603 (setenv "SHELL" "sh")
604 (setenv "EMACSLOADPATH"
605 (string-concatenate
606 (map (match-lambda
607 (((? emacs-prefix? name) . dir)
608 (string-append (el-dir dir) ":"))
609 (_ ""))
610 inputs)))
611 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
612 ;; embed filename to fix test failure
613 (let ((file "tests/haskell-cabal-tests.el"))
614 (substitute* file
615 (("\\(buffer-file-name\\)")
616 (format #f "(or (buffer-file-name) ~s)" file))))
617 #t)))
618 (replace
619 'install
620 (lambda* (#:key outputs #:allow-other-keys)
621 (let* ((out (assoc-ref outputs "out"))
622 (el-dir (string-append out "/share/emacs/site-lisp"))
623 (doc (string-append
624 out "/share/doc/haskell-mode-" ,version))
625 (info (string-append out "/share/info")))
626 (define (copy-to-dir dir files)
627 (for-each (lambda (f)
628 (install-file f dir))
629 files))
630
631 (with-directory-excursion "doc"
632 (invoke "makeinfo" "haskell-mode.texi")
633 (install-file "haskell-mode.info" info))
634 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
635 (copy-to-dir el-dir (find-files "." "\\.elc?"))
636 ;; These are part of other packages.
637 (with-directory-excursion el-dir
638 (for-each delete-file '("dash.el" "ert.el")))
639 #t))))))
640 (home-page "https://github.com/haskell/haskell-mode")
641 (synopsis "Haskell mode for Emacs")
642 (description
643 "This is an Emacs mode for editing, debugging and developing Haskell
644 programs.")
645 (license license:gpl3+)))
646
647 (define-public haskell-mode
648 (deprecated-package "haskell-mode" emacs-haskell-mode))
649
650 (define-public emacs-flycheck
651 (package
652 (name "emacs-flycheck")
653 (version "31")
654 (source (origin
655 (method url-fetch)
656 (uri (string-append
657 "https://github.com/flycheck/flycheck/releases/download/"
658 version "/flycheck-" version ".tar"))
659 (sha256
660 (base32
661 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
662 (modules '((guix build utils)))
663 (snippet `(begin
664 ;; Change 'flycheck-version' so that it does not
665 ;; attempt to get its version from pkg-info.el.
666 (substitute* "flycheck.el"
667 (("\\(pkg-info-version-info 'flycheck\\)")
668 (string-append "\"" ,version "\"")))
669 #t))))
670 (build-system emacs-build-system)
671 (propagated-inputs
672 `(("emacs-dash" ,emacs-dash)))
673 (home-page "https://www.flycheck.org")
674 (synopsis "On-the-fly syntax checking")
675 (description
676 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
677 replacement for the older Flymake extension which is part of GNU Emacs, with
678 many improvements and additional features.
679
680 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
681 checking for over 30 programming and markup languages with more than 70
682 different tools. It highlights errors and warnings inline in the buffer, and
683 provides an optional IDE-like error list.")
684 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
685
686 (define-public emacs-a
687 (package
688 (name "emacs-a")
689 (version "0.1.1")
690 (source (origin
691 (method git-fetch)
692 (uri (git-reference
693 (url "https://github.com/plexus/a.el.git")
694 (commit (string-append "v" version))))
695 (file-name (git-file-name name version))
696 (sha256
697 (base32
698 "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
699 (build-system emacs-build-system)
700 (home-page "https://github.com/plexus/a.el/")
701 (synopsis
702 "Emacs library for dealing with association lists and hash tables")
703 (description "@code{emacs-a} provides Emacs Lisp functions for dealing
704 with associative structures in a uniform and functional way. These functions
705 can take association lists, hash tables, and in some cases vectors (where the
706 index is considered the key).")
707 (license license:gpl3+)))
708
709 (define-public emacs-anaphora
710 (package
711 (name "emacs-anaphora")
712 (version "1.0.4")
713 (source
714 (origin
715 (method git-fetch)
716 (uri (git-reference
717 (url "https://github.com/rolandwalker/anaphora.git")
718 (commit (string-append "v" version))))
719 (file-name (git-file-name name version))
720 (sha256
721 (base32
722 "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"))))
723 (build-system emacs-build-system)
724 (home-page "https://github.com/rolandwalker/anaphora/")
725 (synopsis "Anaphoric expressions for Emacs Lisp")
726 (description "@code{emacs-anaphora} implements anaphoric expressions for
727 Emacs Lisp.
728
729 Anaphoric expressions implicitly create one or more temporary variables which
730 can be referred to during the expression. This technique can improve clarity
731 in certain cases. It also enables recursion for anonymous functions.")
732 (license license:public-domain)))
733
734 \f
735 ;;;
736 ;;; Web browsing.
737 ;;;
738
739 (define-public emacs-w3m
740 ;; Emacs-w3m follows a "rolling release" model.
741 (package
742 (name "emacs-w3m")
743 (version "2018-11-11")
744 (source (origin
745 (method cvs-fetch)
746 (uri (cvs-reference
747 (root-directory
748 ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot")
749 (module "emacs-w3m")
750 (revision version)))
751 (file-name (string-append name "-" version "-checkout"))
752 (sha256
753 (base32
754 "0nvahdbjs12zg7zsk4gql02mvnv56cf1rwj2f5p42lwp3xvswiwp"))))
755 (build-system gnu-build-system)
756 (native-inputs `(("autoconf" ,autoconf)
757 ("texinfo" ,texinfo)
758 ("emacs" ,emacs-minimal)))
759 (inputs `(("w3m" ,w3m)
760 ("imagemagick" ,imagemagick)))
761 (arguments
762 `(#:modules ((guix build gnu-build-system)
763 (guix build utils)
764 (guix build emacs-utils))
765 #:imported-modules (,@%gnu-build-system-modules
766 (guix build emacs-utils))
767 #:configure-flags
768 (let ((out (assoc-ref %outputs "out")))
769 (list (string-append "--with-lispdir="
770 out "/share/emacs/site-lisp")
771 (string-append "--with-icondir="
772 out "/share/images/emacs-w3m")
773 ;; Leave .el files uncompressed, otherwise GC can't
774 ;; identify run-time dependencies. See
775 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
776 "--without-compress-install"))
777 #:tests? #f ; no check target
778 #:phases
779 (modify-phases %standard-phases
780 (add-after 'unpack 'autoconf
781 (lambda _
782 (invoke "autoconf")))
783 (add-before 'configure 'support-emacs!
784 (lambda _
785 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
786 ;; unsupported.
787 (substitute* "configure"
788 (("EMACS_FLAVOR=unsupported")
789 "EMACS_FLAVOR=emacs"))
790 #t))
791 (add-before 'build 'patch-exec-paths
792 (lambda* (#:key inputs outputs #:allow-other-keys)
793 (let ((out (assoc-ref outputs "out"))
794 (w3m (assoc-ref inputs "w3m"))
795 (imagemagick (assoc-ref inputs "imagemagick"))
796 (coreutils (assoc-ref inputs "coreutils")))
797 (make-file-writable "w3m.el")
798 (emacs-substitute-variables "w3m.el"
799 ("w3m-command" (string-append w3m "/bin/w3m"))
800 ("w3m-touch-command"
801 (string-append coreutils "/bin/touch"))
802 ("w3m-icon-directory"
803 (string-append out "/share/images/emacs-w3m")))
804 (make-file-writable "w3m-image.el")
805 (emacs-substitute-variables "w3m-image.el"
806 ("w3m-imagick-convert-program"
807 (string-append imagemagick "/bin/convert"))
808 ("w3m-imagick-identify-program"
809 (string-append imagemagick "/bin/identify")))
810 #t)))
811 (replace 'install
812 (lambda* (#:key outputs #:allow-other-keys)
813 (invoke "make" "install" "install-icons")
814 (with-directory-excursion
815 (string-append (assoc-ref outputs "out")
816 "/share/emacs/site-lisp")
817 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
818 (symlink "w3m-load.el" "w3m-autoloads.el")
819 #t))))))
820 (home-page "http://emacs-w3m.namazu.org/")
821 (synopsis "Simple Web browser for Emacs based on w3m")
822 (description
823 "Emacs-w3m is an emacs interface for the w3m web browser.")
824 (license license:gpl2+)))
825
826 (define-public emacs-wget
827 (package
828 (name "emacs-wget")
829 (version "0.5.0")
830 (source (origin
831 (method url-fetch)
832 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
833 version ".orig.tar.gz"))
834 (sha256
835 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
836 (build-system gnu-build-system)
837 (inputs `(("wget" ,wget)))
838 (native-inputs `(("emacs" ,emacs-minimal)))
839 (arguments
840 `(#:modules ((guix build gnu-build-system)
841 (guix build utils)
842 (guix build emacs-utils))
843 #:imported-modules (,@%gnu-build-system-modules
844 (guix build emacs-utils))
845 #:tests? #f ; no check target
846 #:phases
847 (modify-phases %standard-phases
848 (replace 'configure
849 (lambda* (#:key outputs #:allow-other-keys)
850 (substitute* "Makefile"
851 (("/usr/local") (assoc-ref outputs "out"))
852 (("/site-lisp/emacs-wget") "/site-lisp"))
853 #t))
854 (add-before 'build 'patch-exec-paths
855 (lambda* (#:key inputs outputs #:allow-other-keys)
856 (let ((wget (assoc-ref inputs "wget")))
857 (emacs-substitute-variables "wget.el"
858 ("wget-command" (string-append wget "/bin/wget"))))
859 #t))
860 (add-after 'install 'post-install
861 (lambda* (#:key outputs #:allow-other-keys)
862 (emacs-generate-autoloads
863 "wget" (string-append (assoc-ref outputs "out")
864 "/share/emacs/site-lisp/"))
865 #t)))))
866 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
867 (synopsis "Simple file downloader for Emacs based on wget")
868 (description
869 "Emacs-wget is an emacs interface for the wget file downloader.")
870 (license license:gpl2+)))
871
872 \f
873 ;;;
874 ;;; Multimedia.
875 ;;;
876
877 (define-public emacs-emms
878 (package
879 (name "emacs-emms")
880 (version "5.1")
881 (source (origin
882 (method url-fetch)
883 (uri (string-append "mirror://gnu/emms/emms-"
884 version ".tar.gz"))
885 (sha256
886 (base32
887 "149ddczyx6x10zn4mn8g0rll1rwf4yciv8x6j0qdnlbwszblx2x6"))
888 (modules '((guix build utils)))
889 (snippet
890 '(begin
891 (substitute* "Makefile"
892 (("/usr/bin/install-info")
893 ;; No need to use 'install-info' since it would create a
894 ;; useless 'dir' file.
895 "true")
896 (("^INFODIR=.*")
897 ;; Install Info files to $out/share/info, not $out/info.
898 "INFODIR := $(PREFIX)/share/info\n")
899 (("/site-lisp/emms")
900 ;; Install directly in share/emacs/site-lisp, not in a
901 ;; sub-directory.
902 "/site-lisp")
903 (("^all: (.*)\n" _ rest)
904 ;; Build 'emms-print-metadata'.
905 (string-append "all: " rest " emms-print-metadata\n")))
906 #t))))
907 (build-system gnu-build-system)
908 (arguments
909 `(#:modules ((guix build gnu-build-system)
910 (guix build utils)
911 (guix build emacs-utils)
912 (ice-9 ftw))
913 #:imported-modules (,@%gnu-build-system-modules
914 (guix build emacs-utils))
915
916 #:phases
917 (modify-phases %standard-phases
918 (replace 'configure
919 (lambda* (#:key inputs outputs #:allow-other-keys)
920 (let ((out (assoc-ref outputs "out"))
921 (flac (assoc-ref inputs "flac"))
922 (vorbis (assoc-ref inputs "vorbis-tools"))
923 (alsa (assoc-ref inputs "alsa-utils"))
924 (mpg321 (assoc-ref inputs "mpg321"))
925 (mp3info (assoc-ref inputs "mp3info"))
926 (opus (assoc-ref inputs "opus-tools")))
927 ;; Specify the installation directory.
928 (substitute* "Makefile"
929 (("PREFIX=.*$")
930 (string-append "PREFIX := " out "\n")))
931
932 (setenv "SHELL" (which "sh"))
933 (setenv "CC" "gcc")
934
935 ;; Specify the absolute file names of the various
936 ;; programs so that everything works out-of-the-box.
937 (with-directory-excursion "lisp"
938 (emacs-substitute-variables
939 "emms-player-mpg321-remote.el"
940 ("emms-player-mpg321-remote-command"
941 (string-append mpg321 "/bin/mpg321")))
942 (substitute* "emms-player-simple.el"
943 (("\"ogg123\"")
944 (string-append "\"" vorbis "/bin/ogg123\"")))
945 (substitute* "emms-player-simple.el"
946 (("\"mpg321\"")
947 (string-append "\"" mpg321 "/bin/mpg321\"")))
948 (emacs-substitute-variables "emms-info-ogginfo.el"
949 ("emms-info-ogginfo-program-name"
950 (string-append vorbis "/bin/ogginfo")))
951 (emacs-substitute-variables "emms-info-opusinfo.el"
952 ("emms-info-opusinfo-program-name"
953 (string-append opus "/bin/opusinfo")))
954 (emacs-substitute-variables "emms-info-libtag.el"
955 ("emms-info-libtag-program-name"
956 (string-append out "/bin/emms-print-metadata")))
957 (emacs-substitute-variables "emms-info-mp3info.el"
958 ("emms-info-mp3info-program-name"
959 (string-append mp3info "/bin/mp3info")))
960 (emacs-substitute-variables "emms-info-metaflac.el"
961 ("emms-info-metaflac-program-name"
962 (string-append flac "/bin/metaflac")))
963 (emacs-substitute-variables "emms-source-file.el"
964 ("emms-source-file-gnu-find" (which "find")))
965 (substitute* "emms-volume-amixer.el"
966 (("\"amixer\"")
967 (string-append "\"" alsa "/bin/amixer\"")))
968 (substitute* "emms-tag-editor.el"
969 (("\"mp3info\"")
970 (string-append "\"" mp3info "/bin/mp3info\"")))))))
971 (add-before 'install 'pre-install
972 (lambda* (#:key outputs #:allow-other-keys)
973 ;; The 'install' rule expects the target directories to exist.
974 (let* ((out (assoc-ref outputs "out"))
975 (bin (string-append out "/bin"))
976 (man1 (string-append out "/share/man/man1")))
977 (mkdir-p bin)
978 (mkdir-p man1)
979
980 ;; Ensure that files are not rejected by gzip
981 (let ((early-1980 315619200)) ; 1980-01-02 UTC
982 (ftw "." (lambda (file stat flag)
983 (unless (<= early-1980 (stat:mtime stat))
984 (utime file early-1980 early-1980))
985 #t)))
986 #t)))
987 (add-after 'install 'post-install
988 (lambda* (#:key outputs #:allow-other-keys)
989 (let ((out (assoc-ref outputs "out")))
990 (symlink "emms-auto.el"
991 (string-append out "/share/emacs/site-lisp/"
992 "emms-autoloads.el")))
993 #t)))
994 #:tests? #f))
995 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
996 ("texinfo" ,texinfo)))
997 (inputs `(("alsa-utils" ,alsa-utils)
998 ("flac" ,flac) ;for metaflac
999 ("vorbis-tools" ,vorbis-tools)
1000 ("mpg321" ,mpg321)
1001 ("taglib" ,taglib)
1002 ("mp3info" ,mp3info)
1003 ("opus-tools" ,opus-tools)))
1004 (properties '((upstream-name . "emms")))
1005 (synopsis "Emacs Multimedia System")
1006 (description
1007 "EMMS is the Emacs Multimedia System. It is a small front-end which
1008 can control one of the supported external players. Thus, it supports
1009 whatever formats are supported by your music player. It also
1010 supports tagging and playlist management, all behind a clean and
1011 light user interface.")
1012 (home-page "https://www.gnu.org/software/emms/")
1013 (license license:gpl3+)))
1014
1015 (define-public emacs-emms-player-mpv
1016 ;; A new mpv backend is included in Emms from 5.0.
1017 (deprecated-package "emacs-emms-player-mpv" emacs-emms))
1018
1019 (define-public emacs-emms-mode-line-cycle
1020 (package
1021 (name "emacs-emms-mode-line-cycle")
1022 (version "0.2.5")
1023 (source
1024 (origin
1025 (method git-fetch)
1026 (uri (git-reference
1027 (url "https://github.com/momomo5717/emms-mode-line-cycle")
1028 (commit version)))
1029 (file-name (git-file-name name version))
1030 (sha256
1031 (base32
1032 "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"))))
1033 (build-system emacs-build-system)
1034 (propagated-inputs
1035 `(("emms" ,emacs-emms)))
1036 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1037 (synopsis "Display the EMMS mode line as a ticker")
1038 (description
1039 "This is a minor mode for updating the EMMS mode-line string cyclically
1040 within a specified width. It is useful for displaying long track titles.")
1041 (license license:gpl3+)))
1042
1043 \f
1044 ;;;
1045 ;;; Miscellaneous.
1046 ;;;
1047
1048 (define-public emacs-bbdb
1049 (package
1050 (name "emacs-bbdb")
1051 (version "3.1.2")
1052 (source (origin
1053 (method url-fetch)
1054 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1055 version ".tar.gz"))
1056 (sha256
1057 (base32
1058 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1059 (modules '((guix build utils)))
1060 (snippet
1061 ;; We don't want to build and install the PDF.
1062 '(begin
1063 (substitute* "doc/Makefile.in"
1064 (("^doc_DATA = .*$")
1065 "doc_DATA =\n"))
1066 #t))))
1067 (build-system gnu-build-system)
1068 (arguments
1069 '(#:phases
1070 (modify-phases %standard-phases
1071 (add-after 'install 'post-install
1072 (lambda* (#:key outputs #:allow-other-keys)
1073 ;; Add an autoloads file with the right name for guix.el.
1074 (let* ((out (assoc-ref outputs "out"))
1075 (site (string-append out "/share/emacs/site-lisp")))
1076 (with-directory-excursion site
1077 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1078 #t)))))
1079 (native-inputs `(("emacs" ,emacs-minimal)))
1080 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1081 (synopsis "Contact management utility for Emacs")
1082 (description
1083 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1084 an address book for email and snail mail addresses, phone numbers and the
1085 like. It can be linked with various Emacs mail clients (Message and Mail
1086 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1087 (license license:gpl3+)))
1088
1089 (define-public bbdb
1090 (deprecated-package "bbdb" emacs-bbdb))
1091
1092 (define-public emacs-aggressive-indent
1093 (package
1094 (name "emacs-aggressive-indent")
1095 (version "1.8.3")
1096 (source (origin
1097 (method url-fetch)
1098 (uri (string-append "https://elpa.gnu.org/packages/"
1099 "aggressive-indent-" version ".el"))
1100 (sha256
1101 (base32
1102 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1103 (build-system emacs-build-system)
1104 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1105 (synopsis "Minor mode to aggressively keep your code always indented")
1106 (description
1107 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1108 always indented. It reindents after every change, making it more reliable
1109 than @code{electric-indent-mode}.")
1110 (license license:gpl2+)))
1111
1112 (define-public emacs-ag
1113 (package
1114 (name "emacs-ag")
1115 (version "0.47")
1116 (source (origin
1117 (method url-fetch)
1118 (uri (string-append
1119 "https://github.com/Wilfred/ag.el/archive/"
1120 version ".tar.gz"))
1121 (file-name (string-append name "-" version ".tar.gz"))
1122 (sha256
1123 (base32
1124 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1125 (build-system emacs-build-system)
1126 (arguments
1127 `(#:phases
1128 (modify-phases %standard-phases
1129 (add-before 'install 'make-info
1130 (lambda _
1131 (with-directory-excursion "docs"
1132 (invoke "make" "info"))))
1133 (add-after 'install 'install-info
1134 (lambda* (#:key outputs #:allow-other-keys)
1135 (let* ((out (assoc-ref outputs "out"))
1136 (info (string-append out "/share/info")))
1137 (install-file "docs/_build/texinfo/agel.info" info)
1138 #t))))))
1139 (native-inputs
1140 `(("python-sphinx" ,python-sphinx)
1141 ("texinfo" ,texinfo)))
1142 (propagated-inputs
1143 `(("dash" ,emacs-dash)
1144 ("s" ,emacs-s)
1145 ;; We need to use 'ag' as the executable on remote systems.
1146 ("the-silver-searcher" ,the-silver-searcher)))
1147 (home-page "https://github.com/Wilfred/ag.el")
1148 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1149 (description "This package provides the ability to use the silver
1150 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1151 include version control system awareness, use of Perl compatible regular
1152 expressions, editing the search results directly and searching file names
1153 rather than the contents of files.")
1154 (license license:gpl3+)))
1155
1156 (define-public emacs-async
1157 (package
1158 (name "emacs-async")
1159 (home-page "https://github.com/jwiegley/emacs-async")
1160 (version "1.9.3")
1161 (source (origin
1162 (method git-fetch)
1163 (uri (git-reference
1164 (url home-page)
1165 (commit (string-append "v" version))))
1166 (file-name (git-file-name name version))
1167 (sha256
1168 (base32
1169 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
1170 (build-system emacs-build-system)
1171 (synopsis "Asynchronous processing in Emacs")
1172 (description
1173 "This package provides the ability to call asynchronous functions and
1174 processes. For example, it can be used to run dired commands (for copying,
1175 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1176 as a library for other Emacs packages.")
1177 (license license:gpl3+)))
1178
1179 (define-public emacs-auctex
1180 (package
1181 (name "emacs-auctex")
1182 (version "12.1.0")
1183 (source
1184 (origin
1185 (method url-fetch)
1186 (uri (string-append
1187 "https://elpa.gnu.org/packages/auctex-"
1188 version
1189 ".tar"))
1190 (sha256
1191 (base32
1192 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1193 (build-system emacs-build-system)
1194 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1195 ;; ('emacs-minimal' does not provide dbus).
1196 (arguments
1197 `(#:emacs ,emacs
1198 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1199 #:exclude '("^tests/" "^latex/README")))
1200 (native-inputs
1201 `(("perl" ,perl)))
1202 (home-page "https://www.gnu.org/software/auctex/")
1203 (synopsis "Integrated environment for TeX")
1204 (description
1205 "AUCTeX is a comprehensive customizable integrated environment for
1206 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1207 or XEmacs.")
1208 (license license:gpl3+)))
1209
1210 (define-public emacs-autothemer
1211 (package
1212 (name "emacs-autothemer")
1213 (version "0.2.2")
1214 (source
1215 (origin
1216 (method url-fetch)
1217 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1218 version ".tar.gz"))
1219 (file-name (string-append name "-" version ".tar.gz"))
1220 (sha256
1221 (base32
1222 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1223 (build-system emacs-build-system)
1224 (propagated-inputs
1225 `(("emacs-dash" ,emacs-dash)))
1226 (home-page "https://github.com/sebastiansturm/autothemer")
1227 (synopsis "Conveniently create Emacs themes")
1228 (description
1229 "Autothemer provides a thin layer on top of @code{deftheme} and
1230 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1231 a set of simplified face specifications and a user-supplied color palette")
1232 (license license:gpl3+)))
1233
1234 (define-public emacs-howm
1235 (package
1236 (name "emacs-howm")
1237 (version "1.4.4")
1238 (source
1239 (origin
1240 (method url-fetch)
1241 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1242 version ".tar.gz"))
1243 (sha256
1244 (base32
1245 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1246 (build-system gnu-build-system)
1247 (native-inputs
1248 `(("emacs" ,emacs-minimal)))
1249 (arguments
1250 `(#:configure-flags
1251 (list (string-append "--with-howmdir=" %output
1252 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1253 #:modules ((guix build gnu-build-system)
1254 ((guix build emacs-build-system) #:prefix emacs:)
1255 (guix build utils))
1256 #:imported-modules (,@%gnu-build-system-modules
1257 (guix build emacs-build-system)
1258 (guix build emacs-utils))
1259 #:phases
1260 (modify-phases %standard-phases
1261 (add-after 'install 'make-autoloads
1262 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1263 (home-page "http://howm.osdn.jp/")
1264 (synopsis "Note-taking tool for Emacs")
1265 (description "Howm is a note-taking tool for Emacs. Like
1266 code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1267 searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1268 (license license:gpl1+)))
1269
1270 (define-public emacs-calfw
1271 (package
1272 (name "emacs-calfw")
1273 (version "1.6")
1274 (source
1275 (origin
1276 (method url-fetch)
1277 (uri (string-append
1278 "https://github.com/kiwanami/emacs-calfw/archive/v"
1279 version ".tar.gz"))
1280 (file-name (string-append name "-" version ".tar.gz"))
1281 (sha256
1282 (base32
1283 "1zr91xr0f1xfcv78yxka8vs5ximmq2ixmqf2pkb57kwwnxlypq4i"))))
1284 (build-system emacs-build-system)
1285 (propagated-inputs
1286 `(("emacs-howm" ,emacs-howm)))
1287 (home-page "https://github.com/kiwanami/emacs-calfw/")
1288 (synopsis "Calendar framework for Emacs")
1289 (description
1290 "This package displays a calendar view with various schedule data in the
1291 Emacs buffer.")
1292 (license license:gpl3+)))
1293
1294 (define-public emacs-direnv
1295 (package
1296 (name "emacs-direnv")
1297 (version "1.2.0")
1298 (source
1299 (origin
1300 (method url-fetch)
1301 (uri (string-append
1302 "https://github.com/wbolster/emacs-direnv/archive/"
1303 version ".tar.gz"))
1304 (file-name (string-append name "-" version ".tar.gz"))
1305 (sha256
1306 (base32
1307 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1308 (build-system emacs-build-system)
1309 (propagated-inputs
1310 `(("dash" ,emacs-dash)
1311 ("with-editor" ,emacs-with-editor)))
1312 (home-page "https://github.com/wbolster/emacs-direnv")
1313 (synopsis "Direnv integration for Emacs")
1314 (description
1315 "This package provides support for invoking direnv to get the environment
1316 for the current file and updating the environment within Emacs to match.
1317
1318 Direnv can be invoked manually, and a global minor mode is included that will
1319 update the environment when the active buffer changes.
1320
1321 Using emacs-direnv means that programs started from Emacs will use the
1322 environment set through Direnv.")
1323 (license license:gpl3+)))
1324
1325 (define-public emacs-ggtags
1326 (package
1327 (name "emacs-ggtags")
1328 (version "0.8.13")
1329 (source
1330 (origin
1331 (method url-fetch)
1332 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1333 version ".el"))
1334 (sha256
1335 (base32
1336 "1qa7lcrcmf76sf6dy8sxbg4adq7rg59fm0n5848w3qxgsr0h45fg"))))
1337 (build-system emacs-build-system)
1338 (inputs
1339 `(("global" ,global)))
1340 (arguments
1341 `(#:phases
1342 (modify-phases %standard-phases
1343 (add-after 'unpack 'configure
1344 (lambda* (#:key inputs #:allow-other-keys)
1345 (chmod "ggtags.el" #o644)
1346 (emacs-substitute-variables "ggtags.el"
1347 ("ggtags-executable-directory"
1348 (string-append (assoc-ref inputs "global") "/bin")))
1349 #t)))))
1350 (home-page "https://github.com/leoliu/ggtags")
1351 (synopsis "Frontend to the GNU Global source code tagging system")
1352 (description "@code{ggtags} provides a frontend to the GNU Global source
1353 code tagging system.
1354
1355 Features:
1356
1357 @itemize
1358 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1359 @item Automatically update Global's tag files when needed with tuning for
1360 large source trees.
1361 @item Intuitive navigation among multiple matches with mode-line display of
1362 current match, total matches and exit status.
1363 @item Read tag with completion.
1364 @item Show definition at point.
1365 @item Jump to #include files.
1366 @item Support search history and saving a search to register/bookmark.
1367 @item Query replace.
1368 @item Manage Global's environment variables on a per-project basis.
1369 @item Highlight (definition) tag at point.
1370 @item Abbreviated display of file names.
1371 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1372 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1373 @code{pygments} backend.
1374 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1375 @code{cscope} etc.
1376 @item Support projects on remote hosts (e.g. via @code{tramp}).
1377 @item Support eldoc.
1378 @item Search @code{GTAGSLIBPATH} for references and symbols.
1379 @end itemize\n")
1380 (license license:gpl3+)))
1381
1382 (define-public emacs-go-mode
1383 (package
1384 (name "emacs-go-mode")
1385 (version "1.5.0")
1386 (source (origin
1387 (method git-fetch)
1388 (uri (git-reference
1389 (url "https://github.com/dominikh/go-mode.el.git")
1390 (commit (string-append "v" version))))
1391 (file-name (git-file-name name version))
1392 (sha256
1393 (base32
1394 "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"))))
1395 (build-system emacs-build-system)
1396 (arguments
1397 `(#:phases
1398 (modify-phases %standard-phases
1399 (add-after 'unpack 'make-writable
1400 (lambda _
1401 (for-each make-file-writable (find-files "." "\\.el$"))
1402 #t)))))
1403 (home-page "https://github.com/dominikh/go-mode.el")
1404 (synopsis "Go mode for Emacs")
1405 (description
1406 "This package provides go-mode, an Emacs mode for working with software
1407 written in the Go programming language.")
1408 (license license:bsd-3)))
1409
1410 (define-public emacs-google-maps
1411 (package
1412 (name "emacs-google-maps")
1413 (version "1.0.0")
1414 (source (origin
1415 (method url-fetch)
1416 (uri (string-append "https://github.com/jd/google-maps.el/"
1417 "archive/" version ".tar.gz"))
1418 (file-name (string-append name "-" version ".tar.gz"))
1419 (sha256
1420 (base32
1421 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1422 (build-system emacs-build-system)
1423 (home-page "https://github.com/jd/google-maps.el")
1424 (synopsis "Access Google Maps from Emacs")
1425 (description "The @code{google-maps} package allows to display Google
1426 Maps directly inside Emacs.")
1427 (license license:gpl3+)))
1428
1429 (define-public emacs-graphviz-dot-mode
1430 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1431 (revision "1"))
1432 (package
1433 (name "emacs-graphviz-dot-mode")
1434 (version (string-append "0.3.11-" revision "."
1435 (string-take commit 7)))
1436 (source (origin
1437 (method git-fetch)
1438 (uri (git-reference
1439 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1440 (commit commit)))
1441 (file-name (string-append name "-" version "-checkout"))
1442 (sha256
1443 (base32
1444 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1445 (build-system emacs-build-system)
1446 (arguments
1447 `(#:phases
1448 (modify-phases %standard-phases
1449 (add-before 'install 'make-info
1450 (lambda* (#:key inputs #:allow-other-keys)
1451 (with-directory-excursion "texinfo"
1452 (substitute* "Makefile"
1453 (("\\/usr\\/bin\\/gzip")
1454 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1455 (invoke "make"
1456 "clean"
1457 "info"
1458 (string-append "TEXINFODIR="
1459 (assoc-ref inputs "texinfo")
1460 "/bin")))))
1461 (add-after 'install 'install-info
1462 (lambda* (#:key outputs #:allow-other-keys)
1463 (let* ((out (assoc-ref outputs "out"))
1464 (info (string-append out "/share/info")))
1465 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1466 #t))))))
1467 (native-inputs
1468 `(("texinfo" ,texinfo)
1469 ("gzip" ,gzip)))
1470 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1471 (synopsis "Major mode for editing Graphviz Dot files")
1472 (description
1473 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1474 files using the dot syntax, and use Graphviz to convert these files to
1475 diagrams.")
1476 (license license:gpl2+))))
1477
1478 (define-public emacs-mmm-mode
1479 (package
1480 (name "emacs-mmm-mode")
1481 (version "0.5.5")
1482 (source
1483 (origin
1484 (method url-fetch)
1485 (uri (string-append
1486 "https://github.com/purcell/mmm-mode/archive/"
1487 version ".tar.gz"))
1488 (file-name (string-append name "-" version ".tar.gz"))
1489 (sha256
1490 (base32
1491 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
1492 (build-system gnu-build-system)
1493 (arguments
1494 '(#:phases
1495 (modify-phases %standard-phases
1496 (add-after 'unpack 'autogen
1497 (lambda _
1498 (invoke "sh" "autogen.sh"))))))
1499 (native-inputs
1500 `(("autoconf" ,autoconf)
1501 ("automake" ,automake)
1502 ("emacs" ,emacs-minimal)
1503 ("texinfo" ,texinfo)))
1504 (home-page "https://github.com/purcell/mmm-mode")
1505 (synopsis "Allow multiple major modes in an Emacs buffer")
1506 (description
1507 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1508 single buffer.")
1509 (license license:gpl3+)))
1510
1511 (define-public emacs-tablist
1512 (package
1513 (name "emacs-tablist")
1514 (version "0.70")
1515 (source (origin
1516 (method url-fetch)
1517 (uri (string-append
1518 "https://github.com/politza/tablist/archive/v"
1519 version ".tar.gz"))
1520 (file-name (string-append name "-" version ".tar.gz"))
1521 (sha256
1522 (base32
1523 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1524 (build-system emacs-build-system)
1525 (home-page "https://github.com/politza/tablist")
1526 (synopsis "Extension for @code{tabulated-list-mode}")
1527 (description "Tablist is the Emacs package that provides several
1528 additional features to @code{tabulated-list-mode}: it adds marks,
1529 filters, new key bindings and faces. It can be enabled by
1530 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1531 (license license:gpl3+)))
1532
1533 (define-public emacs-pdf-tools
1534 (package
1535 (name "emacs-pdf-tools")
1536 (version "0.90")
1537 (home-page "https://github.com/politza/pdf-tools")
1538 (source (origin
1539 (method git-fetch)
1540 (uri (git-reference (url home-page)
1541 (commit (string-append "v" version))))
1542 (file-name (git-file-name name version))
1543 (sha256
1544 (base32
1545 "0iv2g5kd14zk3r5dzdw7b7hk4b5w7qpbilcqkja46jgxbb6xnpl9"))))
1546 (build-system gnu-build-system)
1547 (arguments
1548 `(#:tests? #f ; there are no tests
1549 #:modules ((guix build gnu-build-system)
1550 ((guix build emacs-build-system) #:prefix emacs:)
1551 (guix build utils)
1552 (guix build emacs-utils))
1553 #:imported-modules (,@%gnu-build-system-modules
1554 (guix build emacs-build-system)
1555 (guix build emacs-utils))
1556 #:phases
1557 (modify-phases %standard-phases
1558 ;; Build server side using 'gnu-build-system'.
1559 (add-after 'unpack 'enter-server-dir
1560 (lambda _ (chdir "server") #t))
1561 (add-after 'enter-server-dir 'autogen
1562 (lambda _
1563 (invoke "bash" "autogen.sh")))
1564
1565 ;; Build emacs side using 'emacs-build-system'.
1566 (add-after 'compress-documentation 'enter-lisp-dir
1567 (lambda _ (chdir "../lisp") #t))
1568 (add-after 'enter-lisp-dir 'emacs-patch-variables
1569 (lambda* (#:key outputs #:allow-other-keys)
1570 (for-each make-file-writable (find-files "."))
1571
1572 ;; Set path to epdfinfo program.
1573 (emacs-substitute-variables "pdf-info.el"
1574 ("pdf-info-epdfinfo-program"
1575 (string-append (assoc-ref outputs "out")
1576 "/bin/epdfinfo")))
1577 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1578 ;; upgrading" that pdf-tools tries to perform.
1579 (emacs-substitute-variables "pdf-tools.el"
1580 ("pdf-tools-handle-upgrades" '()))))
1581 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1582 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1583 (add-after 'emacs-set-emacs-load-path 'emacs-install
1584 (assoc-ref emacs:%standard-phases 'install))
1585 (add-after 'emacs-install 'emacs-build
1586 (assoc-ref emacs:%standard-phases 'build))
1587 (add-after 'emacs-install 'emacs-make-autoloads
1588 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1589 (native-inputs `(("autoconf" ,autoconf)
1590 ("automake" ,automake)
1591 ("pkg-config" ,pkg-config)
1592 ("emacs" ,emacs-minimal)))
1593 (inputs `(("poppler" ,poppler)
1594 ("cairo" ,cairo)
1595 ("glib" ,glib)
1596 ("libpng" ,libpng)
1597 ("zlib" ,zlib)))
1598 (propagated-inputs `(("tablist" ,emacs-tablist)))
1599 (synopsis "Emacs support library for PDF files")
1600 (description
1601 "PDF Tools is, among other things, a replacement of DocView for PDF
1602 files. The key difference is that pages are not pre-rendered by
1603 e.g. ghostscript and stored in the file-system, but rather created on-demand
1604 and stored in memory.")
1605 (license license:gpl3+)))
1606
1607 (define-public emacs-dash
1608 (package
1609 (name "emacs-dash")
1610 (version "2.14.1")
1611 (source (origin
1612 (method git-fetch)
1613 (uri (git-reference
1614 (url "https://github.com/magnars/dash.el.git")
1615 (commit version)))
1616 (file-name (git-file-name name version))
1617 (sha256
1618 (base32
1619 "1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
1620 (build-system emacs-build-system)
1621 (arguments
1622 `(#:tests? #t
1623 #:test-command '("./run-tests.sh")))
1624 (home-page "https://github.com/magnars/dash.el")
1625 (synopsis "Modern list library for Emacs")
1626 (description "This package provides a modern list API library for Emacs.")
1627 (license license:gpl3+)))
1628
1629 (define-public emacs-bui
1630 (package
1631 (name "emacs-bui")
1632 (version "1.2.1")
1633 (source (origin
1634 (method git-fetch)
1635 (uri (git-reference
1636 (url "https://notabug.org/alezost/emacs-bui.git")
1637 (commit (string-append "v" version))))
1638 (file-name (string-append name "-" version "-checkout"))
1639 (sha256
1640 (base32
1641 "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"))))
1642 (build-system emacs-build-system)
1643 (propagated-inputs
1644 `(("dash" ,emacs-dash)))
1645 (home-page "https://notabug.org/alezost/emacs-bui")
1646 (synopsis "Buffer interface library for Emacs")
1647 (description
1648 "BUI (Buffer User Interface) is a library for making @code{list} and
1649 @code{info} interfaces to display an arbitrary data of the same
1650 type, for example: packages, buffers, files, etc.")
1651 (license license:gpl3+)))
1652
1653 (define-public emacs-guix
1654 (package
1655 (name "emacs-guix")
1656 (version "0.5.1.1")
1657 (source (origin
1658 (method url-fetch)
1659 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1660 "releases/emacs-guix-" version ".tar.gz"))
1661 (sha256
1662 (base32
1663 "1gxg7lan3njc2yg2d02b2zij0d2cm2pv2q08nqz86s85jk3b6m03"))))
1664 (build-system gnu-build-system)
1665 (arguments
1666 `(#:configure-flags
1667 (let ((guix (assoc-ref %build-inputs "guix"))
1668 (gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
1669 (geiser (assoc-ref %build-inputs "geiser"))
1670 (dash (assoc-ref %build-inputs "dash"))
1671 (bui (assoc-ref %build-inputs "bui"))
1672 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1673 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
1674 (site-lisp "/share/emacs/site-lisp")
1675 (site-scm "/share/guile/site")
1676 (site-go "/lib/guile")
1677 (guile-dir (lambda (dir)
1678 (car (find-files dir
1679 (lambda (file stat)
1680 (string-prefix?
1681 "2." (basename file)))
1682 #:directories? #t)))))
1683 (list (string-append "--with-guix-site-dir="
1684 (guile-dir (string-append guix site-scm)))
1685 (string-append "--with-guix-site-ccache-dir="
1686 (guile-dir (string-append guix site-go))
1687 "/site-ccache")
1688 (string-append "--with-guile-gcrypt-site-dir="
1689 (guile-dir (string-append gcrypt site-scm)))
1690 (string-append "--with-guile-gcrypt-site-ccache-dir="
1691 (guile-dir (string-append gcrypt site-go))
1692 "/site-ccache")
1693 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1694 (string-append "--with-dash-lispdir="
1695 dash site-lisp "/guix.d/dash-"
1696 ,(package-version emacs-dash))
1697 (string-append "--with-bui-lispdir="
1698 bui site-lisp "/guix.d/bui-"
1699 ,(package-version emacs-bui))
1700 (string-append "--with-editindirect-lispdir="
1701 edit-indirect site-lisp "/guix.d/edit-indirect-"
1702 ,(package-version emacs-edit-indirect))
1703 (string-append "--with-popup-lispdir="
1704 magit-popup site-lisp "/guix.d/magit-popup-"
1705 ,(package-version emacs-magit-popup))))))
1706 (native-inputs
1707 `(("pkg-config" ,pkg-config)
1708 ("emacs" ,emacs-minimal)))
1709 (inputs
1710 `(("guile" ,guile-2.2)
1711 ("guix" ,guix)))
1712 (propagated-inputs
1713 `(("geiser" ,emacs-geiser)
1714 ("guile-gcrypt" ,guile-gcrypt)
1715 ("dash" ,emacs-dash)
1716 ("bui" ,emacs-bui)
1717 ("edit-indirect" ,emacs-edit-indirect)
1718 ("magit-popup" ,emacs-magit-popup)))
1719 (home-page "https://emacs-guix.gitlab.io/website/")
1720 (synopsis "Emacs interface for GNU Guix")
1721 (description
1722 "Emacs-Guix provides a visual interface, tools and features for the GNU
1723 Guix package manager. Particularly, it allows you to do various package
1724 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1725 @code{M-x guix-help} command.")
1726 (license license:gpl3+)))
1727
1728 (define-public emacs-build-farm
1729 (package
1730 (name "emacs-build-farm")
1731 (version "0.2.2")
1732 (source (origin
1733 (method git-fetch)
1734 (uri (git-reference
1735 (url "https://notabug.org/alezost/emacs-build-farm.git")
1736 (commit (string-append "v" version))))
1737 (file-name (string-append name "-" version "-checkout"))
1738 (sha256
1739 (base32
1740 "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"))))
1741 (build-system emacs-build-system)
1742 (propagated-inputs
1743 `(("bui" ,emacs-bui)
1744 ("magit-popup" ,emacs-magit-popup)))
1745 (home-page "https://notabug.org/alezost/emacs-build-farm")
1746 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1747 (description
1748 "This Emacs package provides an interface for Hydra and
1749 Cuirass (build farms used by Nix and Guix). It allows you to look at
1750 various data related to the build farm projects, jobsets, builds and
1751 evaluations. The entry point is @code{M-x build-farm} command.")
1752 (license license:gpl3+)))
1753
1754 (define-public emacs-d-mode
1755 (package
1756 (name "emacs-d-mode")
1757 (version "2.0.9")
1758 (source (origin
1759 (method url-fetch)
1760 (uri (string-append
1761 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1762 "archive/" version ".tar.gz"))
1763 (file-name (string-append name "-" version ".tar.gz"))
1764 (sha256
1765 (base32
1766 "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
1767 (build-system emacs-build-system)
1768 (propagated-inputs
1769 `(("emacs-undercover" ,emacs-undercover)))
1770 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1771 (synopsis "Emacs major mode for editing D code")
1772 (description "This package provides an Emacs major mode for highlighting
1773 code written in the D programming language. This mode is currently known to
1774 work with Emacs 24 and 25.")
1775 (license license:gpl2+)))
1776
1777 (define-public emacs-keyfreq
1778 (package
1779 (name "emacs-keyfreq")
1780 (version "20160516.716")
1781 (source
1782 (origin
1783 (method url-fetch)
1784 (uri (string-append "http://melpa.org/packages/keyfreq-"
1785 version ".el"))
1786 (sha256
1787 (base32
1788 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1789 (build-system emacs-build-system)
1790 (home-page "https://github.com/dacap/keyfreq")
1791 (synopsis "Track Emacs command frequencies")
1792 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1793 a command.")
1794 (license license:gpl3+)))
1795
1796 (define-public emacs-olivetti
1797 (package
1798 (name "emacs-olivetti")
1799 (version "1.5.7")
1800 (source (origin
1801 (method url-fetch)
1802 (uri (string-append
1803 "https://stable.melpa.org/packages/olivetti-"
1804 version ".el"))
1805 (sha256
1806 (base32
1807 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1808 (build-system emacs-build-system)
1809 (home-page "https://github.com/rnkn/olivetti")
1810 (synopsis "Emacs minor mode for a nice writing environment")
1811 (description "This package provides an Emacs minor mode that puts writing
1812 in the center.")
1813 (license license:gpl3+)))
1814
1815 (define-public emacs-undo-tree
1816 (package
1817 (name "emacs-undo-tree")
1818 (version "0.6.6")
1819 (source (origin
1820 (method git-fetch)
1821 (uri (git-reference
1822 (url "http://dr-qubit.org/git/undo-tree.git")
1823 (commit (string-append "release/" version))))
1824 (file-name (string-append name "-" version "-checkout"))
1825 (sha256
1826 (base32
1827 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1828 (build-system emacs-build-system)
1829 (home-page "http://www.dr-qubit.org/emacs.php")
1830 (synopsis "Treat undo history as a tree")
1831 (description "Tree-like interface to Emacs undo system, providing
1832 graphical tree presentation of all previous states of buffer that
1833 allows easily move between them.")
1834 (license license:gpl3+)))
1835
1836 (define-public emacs-s
1837 (package
1838 (name "emacs-s")
1839 (version "1.12.0")
1840 (source (origin
1841 (method url-fetch)
1842 (uri (string-append
1843 "https://github.com/magnars/s.el/archive/"
1844 version ".tar.gz"))
1845 (file-name (string-append name "-" version ".tar.gz"))
1846 (sha256
1847 (base32
1848 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1849 (build-system emacs-build-system)
1850 (arguments
1851 `(#:tests? #t
1852 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
1853 #:test-command '("./run-tests.sh")))
1854 (home-page "https://github.com/magnars/s.el")
1855 (synopsis "Emacs string manipulation library")
1856 (description "This package provides an Emacs library for manipulating
1857 strings.")
1858 (license license:gpl3+)))
1859
1860 (define-public emacs-symon
1861 (package
1862 (name "emacs-symon")
1863 (version "20160630")
1864 (source
1865 (origin
1866 (method url-fetch)
1867 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1868 version ".tar.gz"))
1869 (file-name (string-append name "-" version ".tar.gz"))
1870 (sha256
1871 (base32
1872 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1873 (build-system emacs-build-system)
1874 (home-page "https://github.com/zk-phi/symon")
1875 (synopsis "Tiny graphical system monitor")
1876 (description
1877 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1878 (license license:gpl2+)))
1879
1880 (define-public emacs-sx
1881 (let ((version "20180212")
1882 (revision "1")
1883 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1884 (package
1885 (name "emacs-sx")
1886 (version (git-version version revision commit))
1887 (source
1888 (origin
1889 (method git-fetch)
1890 (uri (git-reference
1891 (url "https://github.com/vermiculus/sx.el")
1892 (commit commit)))
1893 (file-name (git-file-name name version))
1894 (sha256
1895 (base32
1896 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1897 (build-system emacs-build-system)
1898 (propagated-inputs
1899 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1900 (home-page "https://github.com/vermiculus/sx.el")
1901 (synopsis "Emacs StackExchange client")
1902 (description
1903 "Emacs StackExchange client. Ask and answer questions on
1904 Stack Overflow, Super User, and other StackExchange sites.")
1905 (license license:gpl3+))))
1906
1907 (define-public emacs-f
1908 (package
1909 (name "emacs-f")
1910 (version "0.20.0")
1911 (source (origin
1912 (method git-fetch)
1913 (uri (git-reference
1914 (url "https://github.com/rejeep/f.el.git")
1915 (commit (string-append "v" version))))
1916 (file-name (git-file-name name version))
1917 (sha256
1918 (base32
1919 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
1920 (build-system emacs-build-system)
1921 (propagated-inputs
1922 `(("emacs-s" ,emacs-s)
1923 ("emacs-dash" ,emacs-dash)))
1924 (home-page "https://github.com/rejeep/f.el")
1925 (synopsis "Emacs API for working with files and directories")
1926 (description "This package provides an Emacs library for working with
1927 files and directories.")
1928 (license license:gpl3+)))
1929
1930 (define-public emacs-git-gutter
1931 (package
1932 (name "emacs-git-gutter")
1933 (version "0.90")
1934 (source (origin
1935 (method url-fetch)
1936 (uri (string-append
1937 "https://github.com/syohex/" name "/archive/"
1938 version ".tar.gz"))
1939 (file-name (string-append name "-" version ".tar.gz"))
1940 (sha256
1941 (base32
1942 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1943 (build-system emacs-build-system)
1944 (home-page "https://github.com/syohex/emacs-git-gutter")
1945 (synopsis "See and manage hunks of text in a version control system")
1946 (description
1947 "This package is an Emacs minor mode for displaying and interacting with
1948 hunks of text managed in a version control system. Added modified and deleted
1949 areas can be indicated with symbols on the edge of the buffer, and commands
1950 can be used to move between and perform actions on these hunks.
1951
1952 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1953 display and behaviour is easily customisable.")
1954 (license license:gpl3+)))
1955
1956 (define-public emacs-git-timemachine
1957 (package
1958 (name "emacs-git-timemachine")
1959 (version "4.5")
1960 (source
1961 (origin
1962 (method url-fetch)
1963 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
1964 "/-/archive/" version
1965 "/git-timemachine-" version ".tar.gz"))
1966 (file-name (string-append name "-" version ".tar.gz"))
1967 (sha256
1968 (base32
1969 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
1970 (build-system emacs-build-system)
1971 (home-page "https://gitlab.com/pidu/git-timemachine")
1972 (synopsis "Step through historic versions of Git-controlled files")
1973 (description "This package enables you to step through historic versions
1974 of files under Git version control from within Emacs.")
1975 (license license:gpl3+)))
1976
1977 (define-public emacs-minitest
1978 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1979 (revision "1"))
1980 (package
1981 (name "emacs-minitest")
1982 (version (git-version "0.8.0" revision commit))
1983 (source (origin
1984 (method git-fetch)
1985 (uri (git-reference
1986 (url "https://github.com/arthurnn/minitest-emacs")
1987 (commit commit)))
1988 (file-name (git-file-name name commit))
1989 (sha256
1990 (base32
1991 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1992 (build-system emacs-build-system)
1993 (arguments
1994 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1995 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1996 (propagated-inputs
1997 `(("emacs-dash" ,emacs-dash)
1998 ("emacs-f" ,emacs-f)))
1999 (home-page "https://github.com/arthurnn/minitest-emacs")
2000 (synopsis "Emacs minitest mode")
2001 (description
2002 "The minitest mode provides commands to run the tests for the current
2003 file or line, as well as rerunning the previous tests, or all the tests for a
2004 project.
2005
2006 This package also includes relevant snippets for yasnippet.")
2007 (license license:expat))))
2008
2009 (define-public emacs-el-mock
2010 (package
2011 (name "emacs-el-mock")
2012 (version "1.25.1")
2013 (source
2014 (origin
2015 (method url-fetch)
2016 (uri (string-append "https://github.com/rejeep/el-mock.el/"
2017 "archive/v" version ".tar.gz"))
2018 (file-name (string-append name "-" version ".tar.gz"))
2019 (sha256
2020 (base32
2021 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
2022 (build-system emacs-build-system)
2023 (home-page "https://github.com/rejeep/el-mock.el")
2024 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2025 (description
2026 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2027 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2028 Expectations, but it can be used in other contexts.")
2029 (license license:gpl3+)))
2030
2031 (define-public emacs-espuds
2032 (package
2033 (name "emacs-espuds")
2034 (version "0.3.3")
2035 (source
2036 (origin
2037 (method url-fetch)
2038 (uri (string-append "https://github.com/ecukes/espuds/"
2039 "archive/v" version ".tar.gz"))
2040 (file-name (string-append name "-" version ".tar.gz"))
2041 (sha256
2042 (base32
2043 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
2044 (build-system emacs-build-system)
2045 (propagated-inputs
2046 `(("emacs-s" ,emacs-s)
2047 ("emacs-dash" ,emacs-dash)
2048 ("emacs-f" ,emacs-f)))
2049 (home-page "https://github.com/ecukes/espuds")
2050 (synopsis "Common step definitions for Ecukes")
2051 (description "Espuds is a collection of the most commonly used step
2052 definitions for testing with the Ecukes framework.")
2053 (license license:gpl3+)))
2054
2055 (define-public emacs-spark
2056 (let ((version "20160503") ; no proper tag, use date of commit
2057 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2058 (revision "1"))
2059 (package
2060 (name "emacs-spark")
2061 (version (git-version version revision commit))
2062 (source
2063 (origin
2064 (method git-fetch)
2065 (uri (git-reference
2066 (url "https://github.com/alvinfrancis/spark.git")
2067 (commit commit)))
2068 (file-name (git-file-name name version))
2069 (sha256
2070 (base32
2071 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2072 (build-system emacs-build-system)
2073 (home-page "https://github.com/alvinfrancis/spark")
2074 (synopsis "Sparkline generation library for Emacs Lisp")
2075 (description "@code{emacs-spark} is a sparkline generation library for
2076 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2077 port of @code{cl-spark} to Emacs Lisp.")
2078 (license license:expat))))
2079
2080 (define-public emacs-es-mode
2081 (package
2082 (name "emacs-es-mode")
2083 (version "4.3.0")
2084 (source (origin
2085 (method url-fetch)
2086 (uri (string-append
2087 "https://github.com/dakrone/es-mode/archive/"
2088 version ".tar.gz"))
2089 (file-name (string-append name "-" version ".tar.gz"))
2090 (sha256
2091 (base32
2092 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
2093 (build-system emacs-build-system)
2094 (propagated-inputs
2095 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2096 ;; to be rendered incorrectly
2097 `(("emacs-dash" ,emacs-dash)
2098 ("emacs-org" ,emacs-org)
2099 ("emacs-spark" ,emacs-spark)))
2100 (home-page "https://github.com/dakrone/es-mode")
2101 (synopsis "Major mode for editing Elasticsearch queries")
2102 (description "@code{es-mode} includes highlighting, completion and
2103 indentation support for Elasticsearch queries. Also supported are
2104 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2105 be processed through @code{jq}, or in the case of aggregations, can be
2106 rendered in to a table. In addition, there is an @code{es-command-center}
2107 mode, which displays information about Elasticsearch clusters.")
2108 (license license:gpl3+)))
2109
2110 (define-public emacs-expand-region
2111 (package
2112 (name "emacs-expand-region")
2113 (version "0.11.0")
2114 (source
2115 (origin
2116 (method url-fetch)
2117 (uri (string-append "https://github.com/magnars/expand-region.el"
2118 "/archive/" version ".tar.gz"))
2119 (file-name (string-append name "-" version ".tar.gz"))
2120 (sha256
2121 (base32
2122 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
2123 (build-system emacs-build-system)
2124 (home-page "https://github.com/magnars/expand-region.el")
2125 (synopsis "Increase selected region by semantic units")
2126 (description
2127 "Expand region increases the selected region by semantic units. Just
2128 keep pressing the key until it selects what you want. There's also
2129 @code{er/contract-region} if you expand too far.")
2130 (license license:gpl3+)))
2131
2132 (define-public emacs-fill-column-indicator
2133 (package
2134 (name "emacs-fill-column-indicator")
2135 (version "1.89")
2136 (source
2137 (origin
2138 (method url-fetch)
2139 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2140 "/archive/v" version ".tar.gz"))
2141 (file-name (string-append name "-" version ".tar.gz"))
2142 (sha256
2143 (base32
2144 "09ab01np14bdcsr38xf95kpnvxzqr46mdjmphg3pigwnx39a3jvg"))))
2145 (build-system emacs-build-system)
2146 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2147 (synopsis "Graphically indicate the fill column")
2148 (description
2149 "Fill-column-indicator graphically indicates the location of the fill
2150 column by drawing a thin line down the length of the editing window.")
2151 (license license:gpl3+)))
2152
2153 (define-public emacs-grep-a-lot
2154 (package
2155 (name "emacs-grep-a-lot")
2156 (version "1.0.7")
2157 (source (origin
2158 (method git-fetch)
2159 (uri (git-reference
2160 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2161 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2162 (file-name (string-append name "-" version "-checkout"))
2163 (sha256
2164 (base32
2165 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2166 (build-system emacs-build-system)
2167 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2168 (synopsis "Enables multiple grep buffers in Emacs")
2169 (description
2170 "This Emacs package allows managing multiple grep buffers.")
2171 (license license:gpl3+)))
2172
2173 (define-public emacs-inf-ruby
2174 (package
2175 (name "emacs-inf-ruby")
2176 (version "2.5.1")
2177 (source
2178 (origin
2179 (method url-fetch)
2180 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2181 "archive/" version ".tar.gz"))
2182 (file-name (string-append name "-" version ".tar.gz"))
2183 (sha256
2184 (base32
2185 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2186 (build-system emacs-build-system)
2187 (home-page "https://github.com/nonsequitur/inf-ruby")
2188 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2189 (description
2190 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2191 for easy interaction with a ruby subprocess. Features include support for
2192 detecting specific uses of Ruby, e.g. when using rails, and using a
2193 appropriate console.")
2194 (license license:gpl3+)))
2195
2196 (define-public emacs-znc
2197 (package
2198 (name "emacs-znc")
2199 (version "0.0.2")
2200 (source
2201 (origin
2202 (method url-fetch)
2203 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2204 version ".el"))
2205 (sha256
2206 (base32
2207 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2208 (build-system emacs-build-system)
2209 (home-page "https://github.com/sshirokov/ZNC.el")
2210 (synopsis "Make ERC and ZNC get along better")
2211 (description
2212 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2213 IRC bouncer with ERC.")
2214 (license license:expat)))
2215
2216 (define-public emacs-shut-up
2217 (package
2218 (name "emacs-shut-up")
2219 (version "0.3.2")
2220 (source
2221 (origin
2222 (method url-fetch)
2223 (uri (string-append "https://github.com/cask/shut-up/"
2224 "archive/v" version ".tar.gz"))
2225 (file-name (string-append name "-" version ".tar.gz"))
2226 (sha256
2227 (base32
2228 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2229 (build-system emacs-build-system)
2230 (home-page "https://github.com/cask/shut-up")
2231 (synopsis "Silence Emacs")
2232 (description "This package silences most output of Emacs when running an
2233 Emacs shell script.")
2234 (license license:expat)))
2235
2236 (define-public emacs-undercover
2237 (package
2238 (name "emacs-undercover")
2239 (version "0.6.0")
2240 (source
2241 (origin
2242 (method url-fetch)
2243 (uri (string-append "https://github.com/sviridov/undercover.el/"
2244 "archive/v" version ".tar.gz"))
2245 (file-name (string-append name "-" version ".tar.gz"))
2246 (sha256
2247 (base32
2248 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2249 (build-system emacs-build-system)
2250 (propagated-inputs
2251 `(("emacs-dash" ,emacs-dash)
2252 ("emacs-shut-up" ,emacs-shut-up)))
2253 (home-page "https://github.com/sviridov/undercover.el")
2254 (synopsis "Test coverage library for Emacs Lisp")
2255 (description
2256 "Undercover is a test coverage library for software written in Emacs
2257 Lisp.")
2258 (license license:expat)))
2259
2260 (define-public emacs-paren-face
2261 (package
2262 (name "emacs-paren-face")
2263 (version "1.0.0")
2264 (source
2265 (origin
2266 (method url-fetch)
2267 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2268 version ".tar.gz"))
2269 (file-name (string-append name "-" version ".tar.gz"))
2270 (sha256
2271 (base32
2272 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2273 (build-system emacs-build-system)
2274 (home-page "https://github.com/tarsius/paren-face")
2275 (synopsis "Face for parentheses in lisp modes")
2276 (description
2277 "This library defines a face named @code{parenthesis} used just for
2278 parentheses. The intended purpose of this face is to make parentheses less
2279 visible in Lisp code by dimming them. Lispers probably don't need to be
2280 constantly made aware of the existence of the parentheses. Dimming them might
2281 be even more useful for people new to lisp who have not yet learned to
2282 subconsciously blend out the parentheses.")
2283 (license license:gpl3+)))
2284
2285 (define-public emacs-page-break-lines
2286 (package
2287 (name "emacs-page-break-lines")
2288 (version "0.11")
2289 (source
2290 (origin
2291 (method url-fetch)
2292 (uri (string-append "https://github.com/purcell/page-break-lines/"
2293 "archive/" version ".tar.gz"))
2294 (file-name (string-append name "-" version ".tar.gz"))
2295 (sha256
2296 (base32
2297 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2298 (build-system emacs-build-system)
2299 (home-page "https://github.com/purcell/page-break-lines")
2300 (synopsis "Display page breaks as tidy horizontal lines")
2301 (description
2302 "This library provides a global mode which displays form feed characters
2303 as horizontal rules.")
2304 (license license:gpl3+)))
2305
2306 (define-public emacs-simple-httpd
2307 (package
2308 (name "emacs-simple-httpd")
2309 (version "1.4.6")
2310 (source
2311 (origin
2312 (method url-fetch)
2313 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2314 "archive/" version ".tar.gz"))
2315 (file-name (string-append name "-" version ".tar.gz"))
2316 (sha256
2317 (base32
2318 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2319 (build-system emacs-build-system)
2320 (home-page "https://github.com/skeeto/emacs-http-server")
2321 (synopsis "HTTP server in pure Emacs Lisp")
2322 (description
2323 "This package provides a simple HTTP server written in Emacs Lisp to
2324 serve files and directory listings.")
2325 (license license:unlicense)))
2326
2327 (define-public emacs-skewer-mode
2328 (package
2329 (name "emacs-skewer-mode")
2330 (version "1.6.2")
2331 (source
2332 (origin
2333 (method url-fetch)
2334 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2335 version ".tar.gz"))
2336 (file-name (string-append name "-" version ".tar.gz"))
2337 (sha256
2338 (base32
2339 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2340 (build-system emacs-build-system)
2341 (propagated-inputs
2342 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2343 ("emacs-js2-mode" ,emacs-js2-mode)))
2344 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2345 (home-page "https://github.com/skeeto/skewer-mode")
2346 (synopsis "Live web development in Emacs")
2347 (description
2348 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2349 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2350 evaluated in the browser, just like Emacs does with an inferior Lisp process
2351 in Lisp modes.")
2352 (license license:unlicense)))
2353
2354 (define-public emacs-string-inflection
2355 (package
2356 (name "emacs-string-inflection")
2357 (version "1.0.6")
2358 (source (origin
2359 (method git-fetch)
2360 (uri (git-reference
2361 (url "https://github.com/akicho8/string-inflection")
2362 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2363 (file-name (string-append name "-" version "-checkout"))
2364 (sha256
2365 (base32
2366 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2367 (build-system emacs-build-system)
2368 (native-inputs
2369 `(("ert-runner" ,emacs-ert-runner)))
2370 (arguments
2371 `(#:tests? #t
2372 #:test-command '("ert-runner")))
2373 (home-page "https://github.com/akicho8/string-inflection")
2374 (synopsis "Convert symbol names between different naming conventions")
2375 (description
2376 "This Emacs package provides convenient methods for manipulating the
2377 naming style of a symbol. It supports different naming conventions such as:
2378
2379 @enumerate
2380 @item camel case
2381 @item Pascal case
2382 @item all upper case
2383 @item lower case separated by underscore
2384 @item etc...
2385 @end enumerate\n")
2386 (license license:gpl2+)))
2387
2388 (define-public emacs-stripe-buffer
2389 (package
2390 (name "emacs-stripe-buffer")
2391 (version "0.2.5")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2396 "archive/" version ".tar.gz"))
2397 (file-name (string-append name "-" version ".tar.gz"))
2398 (sha256
2399 (base32
2400 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2401 (build-system emacs-build-system)
2402 (home-page "https://github.com/sabof/stripe-buffer/")
2403 (synopsis "Add stripes to list buffers")
2404 (description
2405 "This Emacs package adds faces to add stripes to list buffers and org
2406 tables.")
2407 (license license:gpl2+)))
2408
2409 (define-public emacs-rich-minority
2410 (package
2411 (name "emacs-rich-minority")
2412 (version "1.0.1")
2413 (source
2414 (origin
2415 (method url-fetch)
2416 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2417 "archive/" version ".tar.gz"))
2418 (file-name (string-append name "-" version ".tar.gz"))
2419 (sha256
2420 (base32
2421 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2422 (build-system emacs-build-system)
2423 (home-page "https://github.com/Malabarba/rich-minority")
2424 (synopsis "Clean-up and beautify the list of minor modes")
2425 (description
2426 "This Emacs package hides and/or highlights minor modes in the
2427 mode-line.")
2428 (license license:gpl2+)))
2429
2430 (define-public emacs-robe
2431 (package
2432 (name "emacs-robe")
2433 (version "0.8.1")
2434 (source
2435 (origin
2436 (method url-fetch)
2437 (uri (string-append "https://github.com/dgutov/robe/"
2438 "archive/" version ".tar.gz"))
2439 (file-name (string-append name "-" version ".tar.gz"))
2440 (sha256
2441 (base32
2442 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2443 (build-system emacs-build-system)
2444 (arguments
2445 '(#:include (cons "^lib\\/" %default-include)))
2446 (propagated-inputs
2447 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2448 (home-page "https://github.com/dgutov/robe")
2449 (synopsis "Ruby code assistance tool for Emacs")
2450 (description
2451 "Robe can provide information on loaded classes and modules in Ruby code,
2452 as well as where methods are defined. This allows the user to jump to method
2453 definitions, modules and classes, display method documentation and provide
2454 method and constant name completion.")
2455 (license license:gpl3+)))
2456
2457 (define-public emacs-rspec
2458 (package
2459 (name "emacs-rspec")
2460 (version "1.11")
2461 (source
2462 (origin
2463 (method url-fetch)
2464 (uri (string-append "https://github.com/pezra/rspec-mode/"
2465 "archive/v" version ".tar.gz"))
2466 (file-name (string-append name "-" version ".tar.gz"))
2467 (sha256
2468 (base32
2469 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2470 (build-system emacs-build-system)
2471 (home-page "https://github.com/pezra/rspec-mode")
2472 (synopsis "Provides a rspec mode for working with RSpec")
2473 (description
2474 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2475 verify the spec associated with the current buffer, or entire project, as well
2476 as moving between the spec files, and coresponding code files.
2477
2478 Also included are keybindings for spec files and Dired buffers, as well as
2479 snippets for yasnippet.")
2480 (license license:gpl3+)))
2481
2482 (define-public emacs-smart-mode-line
2483 (package
2484 (name "emacs-smart-mode-line")
2485 (version "2.12.0")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2490 "archive/" version ".tar.gz"))
2491 (file-name (string-append name "-" version ".tar.gz"))
2492 (sha256
2493 (base32
2494 "1hn8s6laijmg7w1bgwdfrki6h9vxkbgr8rmmssvd5yqyad5w2sba"))))
2495 (build-system emacs-build-system)
2496 (propagated-inputs
2497 `(("emacs-rich-minority" ,emacs-rich-minority)))
2498 (home-page "https://github.com/Malabarba/smart-mode-line")
2499 (synopsis "Color-coded smart mode-line")
2500 (description
2501 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2502 read from small to large monitors by using colors, a prefix feature, and smart
2503 truncation.")
2504 (license license:gpl2+)))
2505
2506 (define-public emacs-sr-speedbar
2507 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2508 (revision "0"))
2509 (package
2510 (name "emacs-sr-speedbar")
2511 (version (git-version "20161025" revision commit))
2512 (source
2513 (origin
2514 (method git-fetch)
2515 (uri (git-reference
2516 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2517 (commit commit)))
2518 (file-name (git-file-name name version))
2519 (sha256
2520 (base32
2521 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2522 (build-system emacs-build-system)
2523 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2524 (synopsis "Same frame Emacs @code{speedbar}")
2525 (description
2526 "This Emacs package allows you to show @code{M-x speedbar} in the
2527 same frame (in an extra window). You can customize the initial width of
2528 the speedbar window.")
2529 (license license:gpl3+))))
2530
2531 (define-public emacs-shell-switcher
2532 (package
2533 (name "emacs-shell-switcher")
2534 (version "1.0.1")
2535 (source
2536 (origin
2537 (method url-fetch)
2538 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2539 "/archive/v" version ".tar.gz"))
2540 (file-name (string-append name "-" version ".tar.gz"))
2541 (sha256
2542 (base32
2543 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2544 (build-system emacs-build-system)
2545 (home-page "https://github.com/DamienCassou/shell-switcher")
2546 (synopsis "Provide fast switching between shell buffers")
2547 (description
2548 "This package provides commands to quickly switch between shell buffers.")
2549 (license license:gpl3+)))
2550
2551 (define-public emacs-ob-ipython
2552 (package
2553 (name "emacs-ob-ipython")
2554 (version "20150704.8807064693")
2555 (source (origin
2556 (method git-fetch)
2557 (uri (git-reference
2558 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2559 (url "https://github.com/gregsexton/ob-ipython.git")))
2560 (file-name (string-append name "-" version "-checkout"))
2561 (sha256
2562 (base32
2563 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2564 (build-system emacs-build-system)
2565 (propagated-inputs
2566 `(("emacs-f" ,emacs-f)))
2567 (home-page "http://www.gregsexton.org")
2568 (synopsis "Org-Babel functions for IPython evaluation")
2569 (description "This package adds support to Org-Babel for evaluating Python
2570 source code using IPython.")
2571 (license license:gpl3+)))
2572
2573 (define-public emacs-debbugs
2574 (package
2575 (name "emacs-debbugs")
2576 (version "0.16")
2577 (source (origin
2578 (method url-fetch)
2579 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2580 version ".tar"))
2581 (sha256
2582 (base32
2583 "0y3bq803c7820h15g66d1648skxfhlfa2v6vincj6xk5ssp44s9p"))))
2584 (build-system emacs-build-system)
2585 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2586 (propagated-inputs
2587 `(("emacs-async" ,emacs-async)))
2588 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2589 (synopsis "Access the Debbugs bug tracker in Emacs")
2590 (description
2591 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2592 Tracker} from within Emacs.
2593
2594 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2595 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2596 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2597 @code{M-x debbugs-org} and related commands.
2598
2599 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2600 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2601 (license license:gpl3+)))
2602
2603 (define-public emacs-ert-expectations
2604 (package
2605 (name "emacs-ert-expectations")
2606 (version "0.2")
2607 (source
2608 (origin
2609 (method url-fetch)
2610 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2611 (sha256
2612 (base32
2613 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2614 (build-system emacs-build-system)
2615 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2616 (synopsis "Simple unit test framework for Emacs Lisp")
2617 (description "@code{emacs-ert-expectations} is a simple unit test
2618 framework for Emacs Lisp to be used with @code{ert}.")
2619 (license license:gpl3+)))
2620
2621 (define-public emacs-deferred
2622 (package
2623 (name "emacs-deferred")
2624 (version "0.5.1")
2625 (home-page "https://github.com/kiwanami/emacs-deferred")
2626 (source (origin
2627 (method git-fetch)
2628 (uri (git-reference
2629 (url home-page)
2630 (commit (string-append "v" version))))
2631 (sha256
2632 (base32
2633 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2634 (file-name (string-append name "-" version))))
2635 (build-system emacs-build-system)
2636 (arguments
2637 `(#:phases
2638 (modify-phases %standard-phases
2639 (add-after 'unpack 'set-shell
2640 ;; Setting the SHELL environment variable is required for the tests
2641 ;; to find sh.
2642 (lambda _
2643 (setenv "SHELL" (which "sh"))
2644 #t))
2645 (add-before 'check 'fix-makefile
2646 (lambda _
2647 (substitute* "Makefile"
2648 (("\\$\\(CASK\\) exec ") ""))
2649 #t)))
2650 #:tests? #t
2651 #:test-command '("make" "test")))
2652 (native-inputs
2653 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2654 ("emacs-undercover" ,emacs-undercover)
2655 ("ert-runner" ,emacs-ert-runner)))
2656 (synopsis "Simple asynchronous functions for Emacs Lisp")
2657 (description
2658 "The @code{deferred.el} library provides support for asynchronous tasks.
2659 The API is almost the same as that of
2660 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2661 for asynchronous tasks.")
2662 (license license:gpl3+)))
2663
2664 (define-public emacs-butler
2665 (package
2666 (name "emacs-butler")
2667 (version "0.2.4")
2668 (home-page "https://github.com/AshtonKem/Butler")
2669 (source (origin
2670 (method git-fetch)
2671 (uri (git-reference
2672 (url home-page)
2673 (commit version)))
2674 (sha256
2675 (base32
2676 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2677 (file-name (string-append name "-" version))))
2678 (build-system emacs-build-system)
2679 (propagated-inputs
2680 `(("emacs-deferred" ,emacs-deferred)))
2681 (synopsis "Emacs client for Jenkins")
2682 (description
2683 "Butler provides an interface to connect to Jenkins continuous
2684 integration servers. Users can specify a list of server in the
2685 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2686 view the build status of those servers' build jobs, and possibly to trigger
2687 build jobs.")
2688 (license license:gpl3+)))
2689
2690 (define-public emacs-company
2691 (package
2692 (name "emacs-company")
2693 (version "0.9.7")
2694 (source
2695 (origin
2696 (method url-fetch)
2697 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2698 version ".tar.gz"))
2699 (file-name (string-append name "-" version ".tar.gz"))
2700 (sha256
2701 (base32
2702 "19flv38f2qhxda8lbk2ckywvibd72vbzmn4hchqz6d8acsknh4sb"))))
2703 (build-system emacs-build-system)
2704 (arguments
2705 `(#:phases
2706 (modify-phases %standard-phases
2707 (add-before 'check 'fix-bin-dir
2708 (lambda _
2709 ;; The company-files-candidates-normal-root test looks
2710 ;; for the /bin directory, but the build environment has
2711 ;; no /bin directory. Modify the test to look for the
2712 ;; /tmp directory.
2713 (substitute* "test/files-tests.el"
2714 (("/bin/") "/tmp/"))
2715 #t)))
2716 #:tests? #t
2717 #:test-command '("make" "test-batch")))
2718 (home-page "http://company-mode.github.io/")
2719 (synopsis "Modular text completion framework")
2720 (description
2721 "Company is a modular completion mechanism. Modules for retrieving
2722 completion candidates are called back-ends, modules for displaying them are
2723 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2724 These are distributed in separate files and can be used individually.")
2725 (license license:gpl3+)))
2726
2727 (define-public emacs-irony-mode
2728 (package
2729 (name "emacs-irony-mode")
2730 (version "1.2.0")
2731 (home-page "https://github.com/Sarcasm/irony-mode")
2732 (source (origin
2733 (method git-fetch)
2734 (uri (git-reference
2735 (url (string-append home-page ".git"))
2736 (commit (string-append "v" version))))
2737 (sha256
2738 (base32
2739 "0nhjrnlmss535jbshjjd30vydbr8py21vkx4p294w6d8vg2rssf8"))
2740 (file-name (string-append name "-" version ".tar.gz"))))
2741 (build-system emacs-build-system)
2742 (inputs `(("server" ,emacs-irony-mode-server)))
2743 (arguments `(#:phases
2744 (modify-phases %standard-phases
2745 (add-after 'unpack 'configure
2746 (lambda* (#:key inputs #:allow-other-keys)
2747 (chmod "irony.el" #o644)
2748 (emacs-substitute-variables "irony.el"
2749 ("irony-server-install-prefix"
2750 (assoc-ref inputs "server")))
2751 #t)))))
2752 (synopsis "C/C++/ObjC Code completion and syntax checks for Emacs")
2753 (description "Irony-mode provides Clang-assisted syntax checking and
2754 completion for C, C++, and ObjC in GNU Emacs. Using @code{libclang} it can
2755 provide syntax checking and autocompletion on compiler level which is very
2756 resistent against false positives. It also integrates well with other
2757 packages like @code{eldoc-mode} and especially @code{company-mode} as
2758 described on the homepage.")
2759 (license license:gpl3+)))
2760
2761 (define-public emacs-irony-mode-server
2762 (package (inherit emacs-irony-mode)
2763 (name "emacs-irony-mode-server")
2764 (inputs
2765 `(("clang" ,clang)))
2766 (arguments
2767 `(#:phases
2768 (modify-phases %standard-phases
2769 (replace 'configure
2770 (lambda* (#:key outputs #:allow-other-keys)
2771 (let ((out (assoc-ref outputs "out")))
2772 (invoke "cmake"
2773 "server"
2774 (string-append "-DCMAKE_INSTALL_PREFIX=" out)) #t))))))
2775 (build-system cmake-build-system)
2776 (synopsis "Server for the Emacs @dfn{irony mode}")))
2777
2778 (define-public emacs-company-irony
2779 (package
2780 (name "emacs-company-irony")
2781 (version "1.1.0")
2782 (source (origin
2783 (method git-fetch)
2784 (uri (git-reference
2785 (url "https://github.com/Sarcasm/company-irony.git")
2786 (commit (string-append "v" version))))
2787 (sha256 (base32
2788 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
2789 (file-name (git-file-name name version))))
2790 (build-system emacs-build-system)
2791 (inputs
2792 `(("emacs-irony-mode" ,emacs-irony-mode)
2793 ("emacs-company" ,emacs-company)))
2794 (synopsis "C++ completion backend for Company using irony-mode")
2795 (description "This backend for company-mode allows for C++ code completion
2796 with irony-mode using clang-tooling.")
2797 (home-page "https://github.com/Sarcasm/company-irony")
2798 (license license:gpl3+)))
2799
2800 (define-public emacs-flycheck-irony
2801 (package
2802 (name "emacs-flycheck-irony")
2803 (version "0.1.0")
2804 (source (origin
2805 (method git-fetch)
2806 (uri (git-reference
2807 (url "https://github.com/Sarcasm/flycheck-irony.git")
2808 (commit (string-append "v" version))))
2809 (sha256
2810 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))
2811 (file-name (string-append name "-" version))))
2812 (build-system emacs-build-system)
2813 (inputs
2814 `(("irony-mode" ,emacs-irony-mode)
2815 ("flycheck-mode" ,emacs-flycheck)
2816 ("emacs-company" ,emacs-company)))
2817 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2818 (description "This package provides a frontend for Flycheck that lets
2819 irony-mode do the syntax checking.")
2820 (home-page "https://github.com/Sarcasm/flycheck-irony")
2821 (license license:gpl3+)))
2822
2823 (define-public emacs-irony-eldoc
2824 (package
2825 (name "emacs-irony-eldoc")
2826 (version (package-version emacs-irony-mode))
2827 (source
2828 (origin
2829 (method git-fetch)
2830 (uri (git-reference
2831 (url "https://github.com/ikirill/irony-eldoc.git")
2832 (commit "0df5831eaae264a25422b061eb2792aadde8b3f2")))
2833 (sha256 (base32 "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"))
2834 (file-name (string-append name "-" version))))
2835 (build-system emacs-build-system)
2836 (inputs
2837 `(("irony-mode" ,emacs-irony-mode)))
2838 (synopsis "Eldoc integration for irony-mode")
2839 (description "Irony-eldoc is an eldoc extension that shows documentation
2840 for the current function or variable in the minibuffer.")
2841 (home-page "https://github.com/ikirill/irony-eldoc")
2842 (license license:gpl3+)))
2843
2844 (define-public emacs-company-quickhelp
2845 (package
2846 (name "emacs-company-quickhelp")
2847 (version "2.3.0")
2848 (source
2849 (origin
2850 (method url-fetch)
2851 (uri (string-append
2852 "https://github.com/expez/company-quickhelp/archive/"
2853 version ".tar.gz"))
2854 (file-name (string-append name "-" version ".tar.gz"))
2855 (sha256
2856 (base32
2857 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2858 (build-system emacs-build-system)
2859 (propagated-inputs
2860 `(("emacs-pos-tip" ,emacs-pos-tip)
2861 ("emacs-company" ,emacs-company)))
2862 (home-page "https://github.com/expez/company-quickhelp")
2863 (synopsis "Popup documentation for completion candidates")
2864 (description "@code{company-quickhelp} shows documentation for the
2865 completion candidate when using the Company text completion framework.")
2866 (license license:gpl3+)))
2867
2868 (define-public emacs-multiple-cursors
2869 (package
2870 (name "emacs-multiple-cursors")
2871 (version "1.4.0")
2872 (source
2873 (origin
2874 (method url-fetch)
2875 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2876 "archive/" version ".tar.gz"))
2877 (file-name (string-append name "-" version ".tar.gz"))
2878 (sha256
2879 (base32
2880 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2881 (build-system emacs-build-system)
2882 (home-page "https://github.com/magnars/multiple-cursors.el")
2883 (synopsis "Multiple cursors for Emacs")
2884 (description
2885 "This package adds support to Emacs for editing text with multiple
2886 simultaneous cursors.")
2887 (license license:gpl3+)))
2888
2889 (define-public emacs-typo
2890 (package
2891 (name "emacs-typo")
2892 (version "1.1")
2893 (home-page "https://github.com/jorgenschaefer/typoel")
2894 (source (origin
2895 (method git-fetch)
2896 (uri (git-reference
2897 (url home-page)
2898 (commit (string-append "v" version))))
2899 (sha256
2900 (base32
2901 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2902 (file-name (string-append name "-" version))))
2903 (build-system emacs-build-system)
2904 (synopsis "Minor mode for typographic editing")
2905 (description
2906 "This package provides two Emacs modes, @code{typo-mode} and
2907 @code{typo-global-mode}. These modes automatically insert Unicode characters
2908 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2909 automatically inserts a Unicode opening or closing quotation mark, depending
2910 on context.")
2911 (license license:gpl3+)))
2912
2913 (define-public emacs-scheme-complete
2914 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2915 (package
2916 (name "emacs-scheme-complete")
2917 (version (string-append "20151223." (string-take commit 8)))
2918 (source
2919 (origin
2920 (file-name (string-append name "-" version))
2921 (method git-fetch)
2922 (uri (git-reference
2923 (url "https://github.com/ashinn/scheme-complete.git")
2924 (commit commit)))
2925 (sha256
2926 (base32
2927 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2928 (patches
2929 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2930 (build-system emacs-build-system)
2931 (home-page "https://github.com/ashinn/scheme-complete")
2932 (synopsis "Smart tab completion for Scheme in Emacs")
2933 (description
2934 "This file provides a single function, @code{scheme-smart-complete},
2935 which you can use for intelligent, context-sensitive completion for any Scheme
2936 implementation in Emacs. To use it just load this file and bind that function
2937 to a key in your preferred mode.")
2938 (license license:public-domain))))
2939
2940 (define-public emacs-scel
2941 (let ((version "20170629")
2942 (revision "1")
2943 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
2944 (package
2945 (name "emacs-scel")
2946 (version (git-version version revision commit))
2947 (source
2948 (origin
2949 (method git-fetch)
2950 (uri (git-reference
2951 (url "https://github.com/supercollider/scel.git")
2952 (commit commit)))
2953 (file-name (string-append name "-" version "-checkout"))
2954 (sha256
2955 (base32
2956 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
2957 (build-system emacs-build-system)
2958 (arguments
2959 `(#:modules ((guix build emacs-build-system)
2960 ((guix build cmake-build-system) #:prefix cmake:)
2961 (guix build utils))
2962 #:imported-modules (,@%emacs-build-system-modules
2963 (guix build cmake-build-system))
2964 #:phases
2965 (modify-phases %standard-phases
2966 (add-after 'unpack 'configure
2967 (lambda* (#:key outputs #:allow-other-keys)
2968 (substitute* "el/CMakeLists.txt"
2969 (("share/emacs/site-lisp/SuperCollider")
2970 (string-append
2971 "share/emacs/site-lisp/guix.d/scel-" ,version)))
2972 ((assoc-ref cmake:%standard-phases 'configure)
2973 #:outputs outputs
2974 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
2975 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
2976 (lambda _
2977 (setenv "EMACSLOADPATH"
2978 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
2979 #t))
2980 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
2981 (inputs
2982 `(("supercollider" ,supercollider)))
2983 (native-inputs
2984 `(("cmake" ,cmake)))
2985 (home-page "https://github.com/supercollider/scel")
2986 (synopsis "SuperCollider Emacs interface")
2987 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
2988 SuperCollider is a platform for audio synthesis and algorithmic composition.")
2989 (license license:gpl2+))))
2990
2991 (define-public emacs-mit-scheme-doc
2992 (package
2993 (name "emacs-mit-scheme-doc")
2994 (version "20140203")
2995 (source
2996 (origin
2997 (modules '((guix build utils)))
2998 (snippet
2999 ;; keep only file of interest
3000 '(begin
3001 (for-each delete-file '("dot-emacs.el" "Makefile"))
3002 (install-file "6.945-config/mit-scheme-doc.el" ".")
3003 (delete-file-recursively "6.945-config")
3004 #t))
3005 (file-name (string-append name "-" version ".tar.bz2"))
3006 (method url-fetch)
3007 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
3008 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
3009 (sha256
3010 (base32
3011 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
3012 (build-system emacs-build-system)
3013 (inputs `(("mit-scheme" ,mit-scheme)))
3014 (arguments
3015 `(#:phases
3016 (modify-phases %standard-phases
3017 (add-after 'unpack 'configure-doc
3018 (lambda* (#:key inputs #:allow-other-keys)
3019 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
3020 (doc-dir (string-append mit-scheme-dir "/share/doc/"
3021 "mit-scheme-"
3022 ,(package-version mit-scheme))))
3023 (substitute* "mit-scheme-doc.el"
3024 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
3025 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
3026 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
3027 (synopsis "MIT-Scheme documentation lookup for Emacs")
3028 (description
3029 "This package provides a set of Emacs functions to search definitions of
3030 identifiers in the MIT-Scheme documentation.")
3031 (license license:gpl2+)))
3032
3033 (define-public emacs-constants
3034 (package
3035 (name "emacs-constants")
3036 (version "2.6")
3037 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
3038 (source
3039 (origin
3040 (file-name (string-append name "-" version ".tar.gz"))
3041 (method url-fetch)
3042 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
3043 "/archive/v" version ".tar.gz"))
3044 (sha256
3045 (base32
3046 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
3047 (build-system emacs-build-system)
3048 (synopsis "Enter definition of constants into an Emacs buffer")
3049 (description
3050 "This package provides functions for inserting the definition of natural
3051 constants and units into an Emacs buffer.")
3052 (license license:gpl2+)))
3053
3054 (define-public emacs-tagedit
3055 (package
3056 (name "emacs-tagedit")
3057 (version "1.4.0")
3058 (source
3059 (origin
3060 (method url-fetch)
3061 (uri (string-append "https://github.com/magnars/tagedit/"
3062 "archive/" version ".tar.gz"))
3063 (file-name (string-append name "-" version ".tar.gz"))
3064 (sha256
3065 (base32
3066 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
3067 (build-system emacs-build-system)
3068 (propagated-inputs
3069 `(("emacs-s" ,emacs-s)
3070 ("emacs-dash" ,emacs-dash)))
3071 (home-page "https://github.com/magnars/tagedit")
3072 (synopsis "Some paredit-like features for html-mode")
3073 (description
3074 "This package provides a collection of paredit-like functions for editing
3075 in @code{html-mode}.")
3076 (license license:gpl3+)))
3077
3078 (define-public emacs-slime
3079 (package
3080 (name "emacs-slime")
3081 (version "2.23")
3082 (source
3083 (origin
3084 (file-name (string-append name "-" version ".tar.gz"))
3085 (method url-fetch)
3086 (uri (string-append
3087 "https://github.com/slime/slime/archive/v"
3088 version ".tar.gz"))
3089 (sha256
3090 (base32
3091 "01gkrqfpifcx1vipwrbhns2r4s8izp3z1w4p41azc943s1a2d5nc"))))
3092 (build-system emacs-build-system)
3093 (native-inputs
3094 `(("texinfo" ,texinfo)))
3095 (arguments
3096 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
3097 #:exclude '("^slime-tests.el" "^contrib/test/"
3098 "^contrib/Makefile$" "^contrib/README.md$")
3099 #:phases
3100 (modify-phases %standard-phases
3101 (add-before 'install 'configure
3102 (lambda* _
3103 (emacs-substitute-variables "slime.el"
3104 ("inferior-lisp-program" "sbcl"))
3105 #t))
3106 (add-before 'install 'install-doc
3107 (lambda* (#:key outputs #:allow-other-keys)
3108 (let* ((out (assoc-ref outputs "out"))
3109 (info-dir (string-append out "/share/info"))
3110 (doc-dir (string-append out "/share/doc/"
3111 ,name "-" ,version))
3112 (doc-files '("doc/slime-refcard.pdf"
3113 "README.md" "NEWS" "PROBLEMS"
3114 "CONTRIBUTING.md")))
3115 (with-directory-excursion "doc"
3116 (substitute* "Makefile"
3117 (("infodir=/usr/local/info")
3118 (string-append "infodir=" info-dir)))
3119 (invoke "make" "html/index.html")
3120 (invoke "make" "slime.info")
3121 (install-file "slime.info" info-dir)
3122 (copy-recursively "html" (string-append doc-dir "/html")))
3123 (for-each (lambda (f)
3124 (install-file f doc-dir)
3125 (delete-file f))
3126 doc-files)
3127 (delete-file-recursively "doc")
3128 #t))))))
3129 (home-page "https://github.com/slime/slime")
3130 (synopsis "Superior Lisp Interaction Mode for Emacs")
3131 (description
3132 "SLIME extends Emacs with support for interactive programming in
3133 Common Lisp. The features are centered around @command{slime-mode},
3134 an Emacs minor mode that complements the standard @command{lisp-mode}.
3135 While lisp-mode supports editing Lisp source files, @command{slime-mode}
3136 adds support for interacting with a running Common Lisp process
3137 for compilation, debugging, documentation lookup, and so on.")
3138 (license (list license:gpl2+ license:public-domain))))
3139
3140 (define-public emacs-popup
3141 (package
3142 (name "emacs-popup")
3143 (version "0.5.3")
3144 (source (origin
3145 (method url-fetch)
3146 (uri (string-append
3147 "https://github.com/auto-complete/popup-el/archive/v"
3148 version ".tar.gz"))
3149 (file-name (string-append name "-" version ".tar.gz"))
3150 (sha256
3151 (base32
3152 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
3153 (build-system emacs-build-system)
3154 (home-page "https://github.com/auto-complete/popup-el")
3155 (synopsis "Visual Popup User Interface for Emacs")
3156 (description
3157 "Popup.el is a visual popup user interface library for Emacs.
3158 This provides a basic API and common UI widgets such as popup tooltips
3159 and popup menus.")
3160 (license license:gpl3+)))
3161
3162 (define-public emacs-puppet-mode
3163 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3164 (revision "1"))
3165 (package
3166 (name "emacs-puppet-mode")
3167 ;; The last release, 0.3 was several years ago, and there have been many
3168 ;; commits since
3169 (version (git-version "0.3" revision commit))
3170 (source
3171 (origin
3172 (method url-fetch)
3173 (uri (string-append
3174 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3175 commit "/puppet-mode.el"))
3176 (sha256
3177 (base32
3178 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3179 (build-system emacs-build-system)
3180 (home-page "https://github.com/voxpupuli/puppet-mode")
3181 (synopsis "Emacs major mode for the Puppet configuration language")
3182 (description
3183 "This package provides support for the Puppet configuration language,
3184 including syntax highlighting, indentation of expressions and statements,
3185 linting of manifests and integration with Puppet Debugger.")
3186 ;; Also incorporates work covered by the Apache License, Version 2.0
3187 (license license:gpl3+))))
3188
3189 (define-public emacs-god-mode
3190 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3191 (revision "1"))
3192 (package
3193 (name "emacs-god-mode")
3194 (version (string-append "20151005.925."
3195 revision "-" (string-take commit 9)))
3196 (source
3197 (origin
3198 (method git-fetch)
3199 (uri (git-reference
3200 (url "https://github.com/chrisdone/god-mode.git")
3201 (commit commit)))
3202 (file-name (string-append name "-" version "-checkout"))
3203 (sha256
3204 (base32
3205 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3206 (build-system emacs-build-system)
3207 (home-page "https://github.com/chrisdone/god-mode")
3208 (synopsis "Minor mode for entering commands without modifier keys")
3209 (description
3210 "This package provides a global minor mode for entering Emacs commands
3211 without modifier keys. It's similar to Vim's separation of commands and
3212 insertion mode. When enabled all keys are implicitly prefixed with
3213 @samp{C-} (among other helpful shortcuts).")
3214 (license license:gpl3+))))
3215
3216 (define-public emacs-jinja2-mode
3217 (package
3218 (name "emacs-jinja2-mode")
3219 (version "0.2")
3220 (source
3221 (origin
3222 (method url-fetch)
3223 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
3224 "archive/v" version ".tar.gz"))
3225 (file-name (string-append name "-" version ".tar.gz"))
3226 (sha256
3227 (base32
3228 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
3229 (build-system emacs-build-system)
3230 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3231 (synopsis "Major mode for jinja2")
3232 (description
3233 "Emacs major mode for jinja2 with: syntax highlighting,
3234 sgml/html integration, and indentation (working with sgml).")
3235 (license license:gpl3+)))
3236
3237 (define-public emacs-rfcview
3238 (package
3239 (name "emacs-rfcview")
3240 (version "0.13")
3241 (home-page "http://www.loveshack.ukfsn.org/emacs")
3242 (source (origin
3243 (method url-fetch)
3244 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3245 (sha256
3246 (base32
3247 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3248 (build-system emacs-build-system)
3249 (synopsis "Prettify Request for Comments (RFC) documents")
3250 (description "The Internet Engineering Task Force (IETF) and the Internet
3251 Society (ISOC) publish various Internet-related protocols and specifications
3252 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3253 documents. RFCs and STDs are published in a simple text form. This package
3254 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3255 read these documents in Emacs. It prettifies the text and adds
3256 hyperlinks/menus for easier navigation. It also provides functions for
3257 browsing the index of RFC documents and fetching them from remote servers or
3258 local directories.")
3259 (license license:gpl3+)))
3260
3261 (define-public emacs-ffap-rfc-space
3262 (package
3263 (name "emacs-ffap-rfc-space")
3264 (version "12")
3265 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3266 (source (origin
3267 (method url-fetch)
3268 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3269 (sha256
3270 (base32
3271 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3272 (build-system emacs-build-system)
3273 (synopsis "Make ffap recognize an RFC with a space before its number")
3274 (description "The Internet Engineering Task Force (IETF) and the
3275 Internet Society (ISOC) publish various Internet-related protocols and
3276 specifications as \"Request for Comments\" (RFC) documents. The
3277 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3278 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3279 and load the appropriate RFC from a remote server. However, it fails
3280 to recognize a name like \"RFC 1234\". This package enhances ffap so
3281 that it correctly finds RFCs even when a space appears before the
3282 number.")
3283 (license license:gpl3+)))
3284
3285 (define-public emacs-org-bullets
3286 (package
3287 (name "emacs-org-bullets")
3288 (version "0.2.4")
3289 (source
3290 (origin
3291 (method url-fetch)
3292 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
3293 version ".tar.gz"))
3294 (file-name (string-append name "-" version ".tar.gz"))
3295 (sha256
3296 (base32
3297 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
3298 (build-system emacs-build-system)
3299 (home-page "https://github.com/sabof/org-bullets")
3300 (synopsis "Show bullets in org-mode as UTF-8 characters")
3301 (description
3302 "This package provides an Emacs minor mode causing bullets in
3303 @code{org-mode} to be rendered as UTF-8 characters.")
3304 (license license:gpl3+)))
3305
3306 (define-public emacs-org-pomodoro
3307 (package
3308 (name "emacs-org-pomodoro")
3309 (version "2.1.0")
3310 (source
3311 (origin
3312 (method url-fetch)
3313 (uri (string-append
3314 "https://github.com/lolownia/org-pomodoro/archive/"
3315 version ".tar.gz"))
3316 (file-name (string-append name "-" version ".tar.gz"))
3317 (sha256
3318 (base32
3319 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3320 (build-system emacs-build-system)
3321 (propagated-inputs
3322 `(("emacs-alert" ,emacs-alert)))
3323 (home-page "https://github.com/lolownia/org-pomodoro")
3324 (synopsis "Pomodoro technique for org-mode")
3325 (description "@code{emacs-org-pomodoro} adds very basic support for
3326 Pomodoro technique in Emacs org-mode.
3327
3328 Run @code{M-x org-pomodoro} for the task at point or select one of the
3329 last tasks that you clocked time for. Each clocked-in pomodoro starts
3330 a timer of 25 minutes and after each pomodoro a break timer of 5
3331 minutes is started automatically. Every 4 breaks a long break is
3332 started with 20 minutes. All values are customizable.")
3333 (license license:gpl3+)))
3334
3335 (define-public emacs-org-trello
3336 (package
3337 (name "emacs-org-trello")
3338 (version "0.8.0")
3339 (source (origin
3340 (method url-fetch)
3341 (uri (string-append
3342 "https://github.com/org-trello/org-trello/archive/"
3343 version ".tar.gz"))
3344 (file-name (string-append name "-" version ".tar.gz"))
3345 (sha256
3346 (base32
3347 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
3348 (build-system emacs-build-system)
3349 (propagated-inputs
3350 `(("emacs-dash" ,emacs-dash)
3351 ("emacs-deferred" ,emacs-deferred)
3352 ("emacs-f" ,emacs-f)
3353 ("emacs-helm" ,emacs-helm)
3354 ("emacs-request" ,emacs-request)
3355 ("emacs-s" ,emacs-s)))
3356 (home-page "https://org-trello.github.io")
3357 (synopsis "Emacs minor mode for interacting with Trello")
3358 (description "This package provides an Emacs minor mode to extend
3359 @code{org-mode} with Trello abilities. Trello is an online project
3360 organizer.")
3361 (license license:gpl3+)))
3362
3363 (define-public emacs-atom-one-dark-theme
3364 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3365 (revision "0"))
3366 (package
3367 (name "emacs-atom-one-dark-theme")
3368 (version (git-version "0.4.0" revision commit))
3369 (source (origin
3370 (method git-fetch)
3371 (uri (git-reference
3372 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3373 (commit commit)))
3374 (sha256
3375 (base32
3376 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3377 (file-name (git-file-name name version))))
3378 (build-system emacs-build-system)
3379 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3380 (synopsis "Atom One Dark color theme for Emacs")
3381 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3382 (license license:gpl3+))))
3383
3384 (define-public emacs-zenburn-theme
3385 (package
3386 (name "emacs-zenburn-theme")
3387 (version "2.6")
3388 (source (origin
3389 (method url-fetch)
3390 (uri (string-append
3391 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3392 version ".tar.gz"))
3393 (file-name (string-append name "-" version ".tar.gz"))
3394 (sha256
3395 (base32
3396 "0qc9d1rwq55yzh8shbppyd6izy1grpyr8kqh5zdgm7c5jccngpr4"))))
3397 (build-system emacs-build-system)
3398 (home-page "https://github.com/bbatsov/zenburn-emacs")
3399 (synopsis "Low contrast color theme for Emacs")
3400 (description
3401 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3402 It is built on top of the custom theme support in Emacs 24 or later.")
3403 (license license:gpl3+)))
3404
3405 (define-public emacs-solarized-theme
3406 (package
3407 (name "emacs-solarized-theme")
3408 (version "1.2.2")
3409 (source (origin
3410 (method url-fetch)
3411 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3412 "archive/v" version ".tar.gz"))
3413 (file-name (string-append name "-" version ".tar.gz"))
3414 (sha256
3415 (base32
3416 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3417 (build-system emacs-build-system)
3418 (propagated-inputs
3419 `(("emacs-dash" ,emacs-dash)))
3420 (home-page "https://github.com/bbatsov/solarized-emacs")
3421 (synopsis "Port of the Solarized theme for Emacs")
3422 (description
3423 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3424 package provides a light and a dark variant.")
3425 (license license:gpl3+)))
3426
3427 (define-public emacs-ahungry-theme
3428 (package
3429 (name "emacs-ahungry-theme")
3430 (version "1.10.0")
3431 (source
3432 (origin (method url-fetch)
3433 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3434 version ".tar"))
3435 (sha256
3436 (base32
3437 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3438 (build-system emacs-build-system)
3439 (home-page "https://github.com/ahungry/color-theme-ahungry")
3440 (synopsis "Ahungry color theme for Emacs")
3441 (description "Ahungry theme for Emacs provides bright and bold colors.
3442 If you load it from a terminal, you will be able to make use of the
3443 transparent background. If you load it from a GUI, it will default to a
3444 dark background.")
3445 (license license:gpl3+)))
3446
3447 (define-public emacs-2048-game
3448 (package
3449 (name "emacs-2048-game")
3450 (version "20151026.1233")
3451 (source
3452 (origin
3453 (method url-fetch)
3454 (uri (string-append "https://melpa.org/packages/2048-game-"
3455 version ".el"))
3456 (sha256
3457 (base32
3458 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3459 (build-system emacs-build-system)
3460 (home-page "https://bitbucket.org/zck/2048.el")
3461 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3462 (description
3463 "This program is an implementation of 2048 for Emacs.
3464 The goal of this game is to create a tile with value 2048. The size of the
3465 board and goal value can be customized.")
3466 (license license:gpl3+)))
3467
3468 (define-public emacs-base16-theme
3469 (package
3470 (name "emacs-base16-theme")
3471 (version "2.1")
3472 (source
3473 (origin
3474 (method url-fetch)
3475 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3476 version ".tar"))
3477 (sha256
3478 (base32
3479 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3480 (build-system emacs-build-system)
3481 (home-page "https://github.com/belak/base16-emacs")
3482 (synopsis "Base16 color themes for Emacs")
3483 (description
3484 "Base16 provides carefully chosen syntax highlighting and a default set
3485 of sixteen colors suitable for a wide range of applications. Base16 is not a
3486 single theme but a set of guidelines with numerous implementations.")
3487 (license license:expat)))
3488
3489 (define-public emacs-smartparens
3490 (package
3491 (name "emacs-smartparens")
3492 (version "1.11.0")
3493 (source (origin
3494 (method url-fetch)
3495 (uri (string-append
3496 "https://github.com/Fuco1/smartparens/archive/"
3497 version ".tar.gz"))
3498 (file-name (string-append name "-" version ".tar.gz"))
3499 (sha256
3500 (base32
3501 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3502 (build-system emacs-build-system)
3503 (propagated-inputs
3504 `(("emacs-dash" ,emacs-dash)
3505 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3506 (home-page "https://github.com/Fuco1/smartparens")
3507 (synopsis "Paredit-like insertion, wrapping and navigation with user
3508 defined pairs")
3509 (description
3510 "Smartparens is a minor mode for Emacs that deals with parens pairs
3511 and tries to be smart about it. It started as a unification effort to
3512 combine functionality of several existing packages in a single,
3513 compatible and extensible way to deal with parentheses, delimiters, tags
3514 and the like. Some of these packages include autopair, textmate,
3515 wrap-region, electric-pair-mode, paredit and others. With the basic
3516 features found in other packages it also brings many improvements as
3517 well as completely new features.")
3518 (license license:gpl3+)))
3519
3520 (define-public emacs-highlight-symbol
3521 (package
3522 (name "emacs-highlight-symbol")
3523 (version "1.3")
3524 (source (origin
3525 (method url-fetch)
3526 (uri (string-append
3527 "https://github.com/nschum/highlight-symbol.el/archive/"
3528 version ".tar.gz"))
3529 (file-name (string-append name "-" version ".tar.gz"))
3530 (sha256
3531 (base32
3532 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3533 (build-system emacs-build-system)
3534 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3535 (synopsis "Automatic and manual symbol highlighting for Emacs")
3536 (description
3537 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3538 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3539 the symbol at point highlighted.
3540
3541 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3542 @code{highlight-symbol-next-in-defun} and
3543 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3544 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3545 bindings @code{M-p} and @code{M-p} for navigation. When
3546 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3547 regardless of @code{highlight-symbol-idle-delay}.
3548
3549 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3550 (license license:gpl2+)))
3551
3552 (define-public emacs-hl-todo
3553 (package
3554 (name "emacs-hl-todo")
3555 (version "1.9.0")
3556 (source (origin
3557 (method url-fetch)
3558 (uri (string-append
3559 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3560 version "/hl-todo.el"))
3561 (file-name (string-append "hl-todo-" version ".el"))
3562 (sha256
3563 (base32
3564 "0728givzh7xv5i88ac9if8byj1p8bilrj1fnizca10s0rv100hdr"))))
3565 (build-system emacs-build-system)
3566 (home-page "https://github.com/tarsius/hl-todo")
3567 (synopsis "Emacs mode to highlight TODO and similar keywords")
3568 (description
3569 "This package provides an Emacs mode to highlight TODO and similar
3570 keywords in comments and strings. This package also provides commands for
3571 moving to the next or previous keyword and to invoke @code{occur} with a
3572 regexp that matches all known keywords.")
3573 (license license:gpl3+)))
3574
3575 (define-public emacs-perspective
3576 (package
3577 (name "emacs-perspective")
3578 (version "1.12")
3579 (source
3580 (origin
3581 (method url-fetch)
3582 (uri (string-append "https://github.com/nex3/perspective-el/"
3583 "archive/" version ".tar.gz"))
3584 (file-name (string-append name "-" version ".tar.gz"))
3585 (sha256
3586 (base32
3587 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3588 (build-system emacs-build-system)
3589 (home-page "https://github.com/nex3/perspective-el")
3590 (synopsis "Switch between named \"perspectives\"")
3591 (description
3592 "This package provides tagged workspaces in Emacs, similar to workspaces in
3593 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3594 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3595 perspective is composed of a window configuration and a set of buffers.
3596 Switching to a perspective activates its window configuration, and when in a
3597 perspective only its buffers are available by default.")
3598 ;; This package is released under the same license as Emacs (GPLv3+) or
3599 ;; the Expat license.
3600 (license license:gpl3+)))
3601
3602 (define-public emacs-test-simple
3603 (package
3604 (name "emacs-test-simple")
3605 (version "1.3.0")
3606 (source
3607 (origin
3608 (method url-fetch)
3609 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3610 version ".el"))
3611 (sha256
3612 (base32
3613 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3614 (build-system emacs-build-system)
3615 (home-page "https://github.com/rocky/emacs-test-simple")
3616 (synopsis "Simple unit test framework for Emacs Lisp")
3617 (description
3618 "Test Simple is a simple unit test framework for Emacs Lisp. It
3619 alleviates the need for context macros, enclosing specifications or required
3620 test tags. It supports both interactive and non-interactive use.")
3621 (license license:gpl3+)))
3622
3623 (define-public emacs-load-relative
3624 (package
3625 (name "emacs-load-relative")
3626 (version "1.3")
3627 (source
3628 (origin
3629 (method url-fetch)
3630 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3631 version ".el"))
3632 (sha256
3633 (base32
3634 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3635 (build-system emacs-build-system)
3636 (home-page "http://github.com/rocky/emacs-load-relative")
3637 (synopsis "Emacs Lisp relative file loading related functions")
3638 (description
3639 "Provides functions which facilitate writing multi-file Emacs packages
3640 and running from the source tree without having to \"install\" code or fiddle
3641 with @{load-path}.
3642
3643 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3644 another (presumably currently running) Emacs Lisp file.")
3645 (license license:gpl3+)))
3646
3647 (define-public emacs-loc-changes
3648 (package
3649 (name "emacs-loc-changes")
3650 (version "1.2")
3651 (source
3652 (origin
3653 (method url-fetch)
3654 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3655 version ".el"))
3656 (sha256
3657 (base32
3658 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3659 (build-system emacs-build-system)
3660 (home-page "https://github.com/rocky/emacs-loc-changes")
3661 (synopsis "Keeps track of positions even after buffer changes")
3662 (description
3663 "This Emacs package provides a mean to track important buffer positions
3664 after buffer changes.")
3665 (license license:gpl3+)))
3666
3667 (define-public emacs-realgud
3668 (package
3669 (name "emacs-realgud")
3670 (version "1.4.5")
3671 (source
3672 (origin
3673 (method url-fetch)
3674 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3675 version ".tar"))
3676 (sha256
3677 (base32
3678 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))
3679 (patches
3680 ;; Patch awaiting inclusion upstream (see:
3681 ;; https://github.com/realgud/realgud/pull/226).
3682 (search-patches "emacs-realgud-fix-configure-ac.patch"))))
3683 (build-system emacs-build-system)
3684 (arguments
3685 `(#:tests? #t
3686 #:phases
3687 (modify-phases %standard-phases
3688 (add-after 'set-emacs-load-path 'fix-autogen-script
3689 (lambda _
3690 (substitute* "autogen.sh"
3691 (("./configure") "sh configure"))))
3692 (add-after 'fix-autogen-script 'autogen
3693 (lambda _
3694 (setenv "CONFIG_SHELL" "sh")
3695 (invoke "sh" "autogen.sh")))
3696 (add-after 'fix-autogen-script 'set-home
3697 (lambda _
3698 (setenv "HOME" (getenv "TMPDIR"))))
3699 (add-before 'patch-el-files 'remove-realgud-pkg.el
3700 (lambda _
3701 ;; XXX: This file is auto-generated at some point and causes
3702 ;; substitute* to crash during the `patch-el-files' phase with:
3703 ;; ERROR: In procedure stat: No such file or directory:
3704 ;; "./realgud-pkg.el"
3705 (delete-file "./realgud-pkg.el")
3706 ;; FIXME: `patch-el-files' crashes on this file with error:
3707 ;; unable to locate "bashdb".
3708 (delete-file "./test/test-regexp-bashdb.el"))))
3709 #:include (cons* ".*\\.el$" %default-include)))
3710 (native-inputs
3711 `(("autoconf" ,autoconf)
3712 ("automake" ,automake)
3713 ("emacs-test-simple" ,emacs-test-simple)))
3714 (propagated-inputs
3715 `(("emacs-load-relative" ,emacs-load-relative)
3716 ("emacs-loc-changes" ,emacs-loc-changes)))
3717 (home-page "https://github.com/realgud/realgud/")
3718 (synopsis
3719 "Modular front-end for interacting with external debuggers")
3720 (description
3721 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3722 with external debuggers. It integrates various debuggers such as gdb, pdb,
3723 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3724 sources. Unlike GUD, it also supports running multiple debug sessions in
3725 parallel.")
3726 (license license:gpl3+)))
3727
3728 (define-public emacs-request
3729 (package
3730 (name "emacs-request")
3731 (version "0.3.0")
3732 (source (origin
3733 (method git-fetch)
3734 (uri (git-reference
3735 (url "https://github.com/tkf/emacs-request.git")
3736 (commit (string-append "v" version))))
3737 (file-name (string-append name "-" version "-checkout"))
3738 (sha256
3739 (base32
3740 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3741 (build-system emacs-build-system)
3742 (propagated-inputs
3743 `(("emacs-deferred" ,emacs-deferred)))
3744 (home-page "https://github.com/tkf/emacs-request")
3745 (synopsis "Package for speaking HTTP in Emacs Lisp")
3746 (description "This package provides a HTTP request library with multiple
3747 backends. It supports url.el which is shipped with Emacs and the curl command
3748 line program.")
3749 (license license:gpl3+)))
3750
3751 (define-public emacs-rudel
3752 (package
3753 (name "emacs-rudel")
3754 (version "0.3.1")
3755 (source
3756 (origin
3757 (method url-fetch)
3758 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3759 version ".tar"))
3760 (sha256
3761 (base32
3762 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3763 (build-system emacs-build-system)
3764 (home-page "http://rudel.sourceforge.net/")
3765 (synopsis "Collaborative editing framework")
3766 (description
3767 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3768 is to share buffers with other users in order to edit the contents of those
3769 buffers collaboratively. Rudel supports multiple backends to enable
3770 communication with other collaborative editors using different protocols,
3771 though currently Obby (for use with the Gobby editor) is the only
3772 fully-functional one.")
3773 (license license:gpl3+)))
3774
3775 (define-public emacs-hydra
3776 (package
3777 (name "emacs-hydra")
3778 (version "0.14.0")
3779 (source
3780 (origin
3781 (method git-fetch)
3782 (uri (git-reference
3783 (url "https://github.com/abo-abo/hydra")
3784 (commit version)))
3785 (file-name (git-file-name name version))
3786 (sha256
3787 (base32
3788 "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"))))
3789 (build-system emacs-build-system)
3790 (home-page "https://github.com/abo-abo/hydra")
3791 (synopsis "Make Emacs bindings that stick around")
3792 (description
3793 "This package can be used to tie related commands into a family of short
3794 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3795 the prefixed binding), all the heads can be called in succession with only a
3796 short extension. Any binding that isn't the Hydra's head vanquishes the
3797 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3798 serve its original purpose, calling the command assigned to it. This makes
3799 the Hydra very seamless; it's like a minor mode that disables itself
3800 automatically.")
3801 (license license:gpl3+)))
3802
3803 (define-public emacs-ivy
3804 (package
3805 (name "emacs-ivy")
3806 (version "0.11.0")
3807 (source
3808 (origin
3809 (method git-fetch)
3810 (uri (git-reference
3811 (url "https://github.com/abo-abo/swiper.git")
3812 (commit version)))
3813 (file-name (string-append name "-" version "-checkout"))
3814 (sha256
3815 (base32
3816 "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"))))
3817 (build-system emacs-build-system)
3818 (arguments
3819 `(#:phases
3820 (modify-phases %standard-phases
3821 (add-after 'install 'install-doc
3822 (lambda* (#:key outputs #:allow-other-keys)
3823 (let* ((out (assoc-ref outputs "out"))
3824 (info (string-append out "/share/info")))
3825 (with-directory-excursion "doc"
3826 (invoke "makeinfo" "ivy.texi")
3827 (install-file "ivy.info" info)
3828 #t)))))))
3829 (propagated-inputs
3830 `(("emacs-hydra" ,emacs-hydra)))
3831 (native-inputs
3832 `(("texinfo" ,texinfo)))
3833 (home-page "http://oremacs.com/swiper/")
3834 (synopsis "Incremental vertical completion for Emacs")
3835 (description
3836 "This package provides @code{ivy-read} as an alternative to
3837 @code{completing-read} and similar functions. No attempt is made to determine
3838 the best candidate. Instead, the user can navigate candidates with
3839 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3840 splitting the input text by spaces and re-building it into a regular
3841 expression.")
3842 (license license:gpl3+)))
3843
3844 (define-public emacs-ivy-yasnippet
3845 (let ((commit "32580b4fd23ebf9ca7dde96704f7d53df6e253cd")
3846 (revision "2"))
3847 (package
3848 (name "emacs-ivy-yasnippet")
3849 (version (git-version "0.1" revision commit))
3850 (source
3851 (origin
3852 (method git-fetch)
3853 (uri (git-reference
3854 (url "https://github.com/mkcms/ivy-yasnippet.git")
3855 (commit commit)))
3856 (file-name (git-file-name name version))
3857 (sha256
3858 (base32
3859 "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"))))
3860 (build-system emacs-build-system)
3861 (propagated-inputs
3862 `(("emacs-ivy" ,emacs-ivy)
3863 ("emacs-yasnippet" ,emacs-yasnippet)
3864 ("emacs-dash" ,emacs-dash)))
3865 (home-page "https://github.com/mkcms/ivy-yasnippet")
3866 (synopsis "Preview @code{yasnippets} with @code{ivy}")
3867 (description "This package allows you to select @code{yasnippet}
3868 snippets using @code{ivy} completion. When current selection changes in the
3869 minibuffer, the snippet contents are temporarily expanded in the buffer. To
3870 use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
3871 @code{yas-minor-mode} first).")
3872 (license license:gpl3+))))
3873
3874 (define-public emacs-ivy-rich
3875 (package
3876 (name "emacs-ivy-rich")
3877 (version "0.1.0")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
3882 version ".tar.gz"))
3883 (file-name (string-append name "-" version ".tar.gz"))
3884 (sha256
3885 (base32
3886 "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
3887 (build-system emacs-build-system)
3888 (propagated-inputs
3889 `(("emacs-ivy" ,emacs-ivy)))
3890 (home-page "https://github.com/Yevgnen/ivy-rich")
3891 (synopsis "More friendly interface for @code{ivy}")
3892 (description
3893 "This package extends @code{ivy} by showing more information in the
3894 minibuffer for each candidate. It adds columns showing buffer modes, file
3895 sizes, docstrings, etc. If @code{emacs-all-the-icons} is installed, it can
3896 show icons as well.")
3897 (license license:gpl3+)))
3898
3899 (define-public emacs-avy
3900 (package
3901 (name "emacs-avy")
3902 (version "0.4.0")
3903 (source
3904 (origin
3905 (method url-fetch)
3906 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3907 version ".tar.gz"))
3908 (file-name (string-append name "-" version ".tar.gz"))
3909 (sha256
3910 (base32
3911 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3912 (build-system emacs-build-system)
3913 (home-page "https://github.com/abo-abo/avy")
3914 (synopsis "Tree-based completion for Emacs")
3915 (description
3916 "This package provides a generic completion method based on building a
3917 balanced decision tree with each candidate being a leaf. To traverse the tree
3918 from the root to a desired leaf, typically a sequence of @code{read-key} can
3919 be used.
3920
3921 In order for @code{read-key} to make sense, the tree needs to be visualized
3922 appropriately, with a character at each branch node. So this completion
3923 method works only for things that you can see on your screen, all at once,
3924 such as the positions of characters, words, line beginnings, links, or
3925 windows.")
3926 (license license:gpl3+)))
3927
3928 (define-public emacs-ace-window
3929 (package
3930 (name "emacs-ace-window")
3931 (version "0.9.0")
3932 (source
3933 (origin
3934 (method url-fetch)
3935 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3936 version ".tar.gz"))
3937 (file-name (string-append name "-" version ".tar.gz"))
3938 (sha256
3939 (base32
3940 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3941 (build-system emacs-build-system)
3942 (propagated-inputs
3943 `(("emacs-avy" ,emacs-avy)))
3944 (home-page "https://github.com/abo-abo/ace-window")
3945 (synopsis "Quickly switch windows in Emacs")
3946 (description
3947 "@code{ace-window} is meant to replace @code{other-window}.
3948 In fact, when there are only two windows present, @code{other-window} is
3949 called. If there are more, each window will have its first character
3950 highlighted. Pressing that character will switch to that window.")
3951 (license license:gpl3+)))
3952
3953 (define-public emacs-iedit
3954 (package
3955 (name "emacs-iedit")
3956 (version "0.9.9.9")
3957 (source
3958 (origin
3959 (method url-fetch)
3960 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3961 version ".tar.gz"))
3962 (file-name (string-append name "-" version ".tar.gz"))
3963 (sha256
3964 (base32
3965 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3966 (build-system emacs-build-system)
3967 (home-page "http://www.emacswiki.org/emacs/Iedit")
3968 (synopsis "Edit multiple regions in the same way simultaneously")
3969 (description
3970 "This package is an Emacs minor mode and allows you to edit one
3971 occurrence of some text in a buffer (possibly narrowed) or region, and
3972 simultaneously have other occurrences edited in the same way.
3973
3974 You can also use Iedit mode as a quick way to temporarily show only the buffer
3975 lines that match the current text being edited. This gives you the effect of
3976 a temporary @code{keep-lines} or @code{occur}.")
3977 (license license:gpl3+)))
3978
3979 (define-public emacs-zoutline
3980 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
3981 (revision "0"))
3982 (package
3983 (name "emacs-zoutline")
3984 (version (git-version "0.1" revision commit))
3985 (home-page "https://github.com/abo-abo/zoutline")
3986 (source (origin
3987 (method git-fetch)
3988 (uri (git-reference (url home-page) (commit commit)))
3989 (sha256
3990 (base32
3991 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
3992 (file-name (git-file-name name version))))
3993 (build-system emacs-build-system)
3994 (synopsis "Simple outline library")
3995 (description
3996 "This library provides helpers for outlines. Outlines allow users to
3997 navigate code in a tree-like fashion.")
3998 (license license:gpl3+))))
3999
4000 (define-public emacs-lispy
4001 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
4002 ;; since.
4003 (let ((commit "f94cfc6b8f9c3afe7d028c366928049c011023de")
4004 (revision "1"))
4005 (package
4006 (name "emacs-lispy")
4007 (version (git-version "0.26.0" revision commit))
4008 (home-page "https://github.com/abo-abo/lispy")
4009 (source (origin
4010 (method git-fetch)
4011 (uri (git-reference (url home-page) (commit commit)))
4012 (sha256
4013 (base32
4014 "1bm2cpwizg1qfpm377gpx1af1hm5maw69if1csnk5vwaphmv8c4g"))
4015 (file-name (git-file-name name version))))
4016 (build-system emacs-build-system)
4017 (propagated-inputs
4018 `(("emacs-ace-window" ,emacs-ace-window)
4019 ("emacs-iedit" ,emacs-iedit)
4020 ("emacs-ivy" ,emacs-ivy)
4021 ("emacs-hydra" ,emacs-hydra)
4022 ("emacs-zoutline" ,emacs-zoutline)))
4023 (synopsis "Modal S-expression editing")
4024 (description
4025 "Due to the structure of Lisp syntax it's very rare for the programmer
4026 to want to insert characters right before \"(\" or right after \")\". Thus
4027 unprefixed printable characters can be used to call commands when the point is
4028 at one of these special locations. Lispy provides unprefixed keybindings for
4029 S-expression editing when point is at the beginning or end of an
4030 S-expression.")
4031 (license license:gpl3+))))
4032
4033 (define-public emacs-lispyville
4034 (let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
4035 (revision "1"))
4036 (package
4037 (name "emacs-lispyville")
4038 (version (git-version "0.1" revision commit))
4039 (home-page "https://github.com/noctuid/lispyville")
4040 (source (origin
4041 (method git-fetch)
4042 (uri (git-reference (url home-page) (commit commit)))
4043 (sha256
4044 (base32
4045 "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx"))
4046 (file-name (git-file-name name version))))
4047 (propagated-inputs
4048 `(("emacs-evil" ,emacs-evil)
4049 ("emacs-lispy" ,emacs-lispy)))
4050 (build-system emacs-build-system)
4051 (synopsis "Minor mode for integrating Evil with lispy")
4052 (description
4053 "LispyVille's main purpose is to provide a Lisp editing environment
4054 suited towards Evil users. It can serve as a minimal layer on top of lispy
4055 for better integration with Evil, but it does not require the use of lispy’s
4056 keybinding style. The provided commands allow for editing Lisp in normal
4057 state and will work even without lispy being enabled.")
4058 (license license:gpl3+))))
4059
4060 (define-public emacs-clojure-mode
4061 (package
4062 (name "emacs-clojure-mode")
4063 (version "5.6.1")
4064 (source (origin
4065 (method url-fetch)
4066 (uri (string-append
4067 "https://github.com/clojure-emacs/clojure-mode/archive/"
4068 version ".tar.gz"))
4069 (file-name (string-append name "-" version ".tar.gz"))
4070 (sha256
4071 (base32
4072 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
4073 (build-system emacs-build-system)
4074 (native-inputs
4075 `(("emacs-dash" ,emacs-dash)
4076 ("emacs-s" ,emacs-s)
4077 ("ert-runner" ,emacs-ert-runner)))
4078 (arguments
4079 `(#:tests? #t
4080 #:test-command '("ert-runner")))
4081 (home-page "https://github.com/clojure-emacs/clojure-mode")
4082 (synopsis "Major mode for Clojure code")
4083 (description
4084 "This Emacs package provides font-lock, indentation, navigation and basic
4085 refactoring for the @uref{http://clojure.org, Clojure programming language}.
4086 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
4087 (license license:gpl3+)))
4088
4089 (define-public emacs-epl
4090 (package
4091 (name "emacs-epl")
4092 (version "0.8")
4093 (source (origin
4094 (method url-fetch)
4095 (uri (string-append
4096 "https://github.com/cask/epl/archive/"
4097 version ".tar.gz"))
4098 (file-name (string-append name "-" version ".tar.gz"))
4099 (sha256
4100 (base32
4101 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
4102 (build-system emacs-build-system)
4103 (home-page "https://github.com/cask/epl")
4104 (synopsis "Emacs Package Library")
4105 (description
4106 "A package management library for Emacs, based on @code{package.el}.
4107
4108 The purpose of this library is to wrap all the quirks and hassle of
4109 @code{package.el} into a sane API.")
4110 (license license:gpl3+)))
4111
4112 (define-public emacs-queue
4113 (package
4114 (name "emacs-queue")
4115 (version "0.2")
4116 (source (origin
4117 (method url-fetch)
4118 (uri (string-append "https://elpa.gnu.org/packages/queue-"
4119 version ".el"))
4120 (sha256
4121 (base32
4122 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
4123 (build-system emacs-build-system)
4124 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
4125 (synopsis "Queue data structure for Emacs")
4126 (description
4127 "This Emacs library provides queue data structure. These queues can be
4128 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
4129 stack, i.e. elements can be added to the front or back of the queue, and can
4130 be removed from the front. This type of data structure is sometimes called an
4131 \"output-restricted deque\".")
4132 (license license:gpl3+)))
4133
4134 (define-public emacs-pkg-info
4135 (package
4136 (name "emacs-pkg-info")
4137 (version "0.6")
4138 (source (origin
4139 (method url-fetch)
4140 (uri (string-append
4141 "https://github.com/lunaryorn/pkg-info.el/archive/"
4142 version ".tar.gz"))
4143 (file-name (string-append name "-" version ".tar.gz"))
4144 (sha256
4145 (base32
4146 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
4147 (build-system emacs-build-system)
4148 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4149 (home-page "https://github.com/lunaryorn/pkg-info.el")
4150 (synopsis "Information about Emacs packages")
4151 (description
4152 "This library extracts information from the installed Emacs packages.")
4153 (license license:gpl3+)))
4154
4155 (define-public emacs-spinner
4156 (package
4157 (name "emacs-spinner")
4158 (version "1.7.3")
4159 (source (origin
4160 (method url-fetch)
4161 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
4162 version ".el"))
4163 (sha256
4164 (base32
4165 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
4166 (build-system emacs-build-system)
4167 (home-page "https://github.com/Malabarba/spinner.el")
4168 (synopsis "Emacs mode-line spinner for operations in progress")
4169 (description
4170 "This Emacs package adds spinners and progress-bars to the mode-line for
4171 ongoing operations.")
4172 (license license:gpl3+)))
4173
4174 (define-public emacs-sparql-mode
4175 (package
4176 (name "emacs-sparql-mode")
4177 (version "2.0.1")
4178 (source (origin
4179 (method url-fetch)
4180 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
4181 "v" version ".tar.gz"))
4182 (file-name (string-append name "-" version ".tar.gz"))
4183 (sha256
4184 (base32
4185 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
4186 (build-system emacs-build-system)
4187 (home-page "https://github.com/ljos/sparql-mode")
4188 (synopsis "SPARQL mode for Emacs")
4189 (description "This package provides a major mode for Emacs that provides
4190 syntax highlighting for SPARQL. It also provides a way to execute queries
4191 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4192 possible to query other endpoints like DBPedia.")
4193 (license license:gpl3+)))
4194
4195 (define-public emacs-better-defaults
4196 (package
4197 (name "emacs-better-defaults")
4198 (version "0.1.3")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (string-append "https://github.com/technomancy/better-defaults"
4203 "/archive/" version ".tar.gz"))
4204 (file-name (string-append name "-" version ".tar.gz"))
4205 (sha256
4206 (base32
4207 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4208 (build-system emacs-build-system)
4209 (home-page "https://github.com/technomancy/better-defaults")
4210 (synopsis "Better defaults for Emacs")
4211 (description
4212 "Better defaults attempts to address the most obvious deficiencies of the
4213 Emacs default configuration in uncontroversial ways that nearly everyone can
4214 agree upon.")
4215 (license license:gpl3+)))
4216
4217 (define-public emacs-eprime
4218 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4219 (package
4220 (name "emacs-eprime")
4221 (version (string-append "20140513-" (string-take commit 7)))
4222 (source (origin
4223 (method url-fetch)
4224 (uri (string-append "https://raw.githubusercontent.com"
4225 "/AndrewHynes/eprime-mode/"
4226 commit "/eprime-mode.el"))
4227 (file-name (string-append "eprime-" version ".el"))
4228 (sha256
4229 (base32
4230 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4231 (build-system emacs-build-system)
4232 (home-page "https://github.com/AndrewHynes/eprime-mode")
4233 (synopsis "E-prime checking mode for Emacs")
4234 (description "This package provides an E-prime checking mode for Emacs
4235 that highlights non-conforming text. The subset of the English language called
4236 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4237 (license license:gpl3+))))
4238
4239 (define-public emacs-julia-mode
4240 ;; XXX: Upstream version remained stuck at 0.3. See
4241 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4242 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4243 (revision "1"))
4244 (package
4245 (name "emacs-julia-mode")
4246 (version (string-append "0.3-" revision "." (string-take commit 8)))
4247 (source
4248 (origin
4249 (method git-fetch)
4250 (uri (git-reference
4251 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4252 (commit commit)))
4253 (file-name (string-append name "-" version "-checkout"))
4254 (sha256
4255 (base32
4256 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4257 (build-system emacs-build-system)
4258 (arguments
4259 `(#:tests? #t
4260 #:test-command '("emacs" "--batch"
4261 "-l" "julia-mode-tests.el"
4262 "-f" "ert-run-tests-batch-and-exit")))
4263 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4264 (synopsis "Major mode for Julia")
4265 (description "This Emacs package provides a mode for the Julia
4266 programming language.")
4267 (license license:expat))))
4268
4269 (define-public emacs-smex
4270 (package
4271 (name "emacs-smex")
4272 (version "3.0")
4273 (source (origin
4274 (method url-fetch)
4275 (uri (string-append "https://raw.githubusercontent.com"
4276 "/nonsequitur/smex/" version "/smex.el"))
4277 (file-name (string-append "smex-" version ".el"))
4278 (sha256
4279 (base32
4280 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4281 (build-system emacs-build-system)
4282 (home-page "https://github.com/nonsequitur/smex/")
4283 (synopsis "M-x interface with Ido-style fuzzy matching")
4284 (description
4285 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4286 convenient interface to your recently and most frequently used commands. And
4287 to all the other commands, too.")
4288 (license license:gpl3+)))
4289
4290 (define-public emacs-js2-mode
4291 (package
4292 (name "emacs-js2-mode")
4293 (version "20180301")
4294 (source (origin
4295 (method url-fetch)
4296 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
4297 version ".tar.gz"))
4298 (file-name (string-append name "-" version ".tar.gz"))
4299 (sha256
4300 (base32
4301 "13aghgwaqrmbf3pbifcry52kya454wnh1gbdh5805n1n6xgjm5w3"))))
4302 (build-system emacs-build-system)
4303 (home-page "https://github.com/mooz/js2-mode/")
4304 (synopsis "Improved JavaScript editing mode for Emacs")
4305 (description
4306 "Js2-mode provides a JavaScript major mode for Emacs that is more
4307 advanced than the built-in javascript-mode. Features include accurate syntax
4308 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4309 errors and strict-mode warnings, smart line-wrapping within comments and
4310 strings, and code folding.")
4311 (license license:gpl3+)))
4312
4313 (define-public emacs-nodejs-repl
4314 (package
4315 (name "emacs-nodejs-repl")
4316 (version "0.2.0")
4317 (source (origin
4318 (method url-fetch)
4319 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4320 "/archive/" version ".tar.gz"))
4321 (sha256
4322 (base32
4323 "0hq2cqdq2668yf48g7qnkci90nhih1gnhacsgz355jnib56lhmkz"))
4324 (file-name (string-append name "-" version ".tar.gz"))))
4325 (build-system emacs-build-system)
4326 (home-page "https://github.com/abicky/nodejs-repl.el")
4327 (synopsis "Node.js REPL inside Emacs")
4328 (description
4329 "This program is derived from comint-mode and provides the following
4330 features:
4331
4332 @itemize
4333 @item TAB completion same as Node.js REPL
4334 @item file name completion in string
4335 @item incremental history search
4336 @end itemize")
4337 (license license:gpl3+)))
4338
4339 (define-public emacs-typescript-mode
4340 (package
4341 (name "emacs-typescript-mode")
4342 (version "0.3")
4343 (source (origin
4344 (method url-fetch)
4345 (uri (string-append
4346 "https://github.com/ananthakumaran/typescript.el"
4347 "/archive/v" version ".tar.gz"))
4348 (sha256
4349 (base32
4350 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4351 (file-name (string-append name "-" version ".tar.gz"))))
4352 (build-system emacs-build-system)
4353 (home-page "https://github.com/ananthakumaran/typescript.el")
4354 (synopsis "Emacs major mode for editing Typescript code")
4355 (description
4356 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4357 This is much more robust and works with @code{cc-mode}'s comment
4358 filling (mostly). The modifications to the original @code{javascript.el} mode
4359 mainly consisted in replacing \"javascript\" with \"typescript\"
4360
4361 The main features of this Typescript mode are syntactic highlighting (enabled
4362 with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4363 indentation and filling of comments and C preprocessor fontification.")
4364 (license license:gpl3+)))
4365
4366 (define-public emacs-tide
4367 (package
4368 (name "emacs-tide")
4369 (version "2.8.3.1")
4370 (source (origin
4371 (method url-fetch)
4372 (uri (string-append "https://github.com/ananthakumaran/tide"
4373 "/archive/v" version ".tar.gz"))
4374 (sha256
4375 (base32
4376 "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
4377 (file-name (string-append name "-" version ".tar.gz"))))
4378 (build-system emacs-build-system)
4379 (propagated-inputs
4380 `(("emacs-dash" ,emacs-dash)
4381 ("emacs-s" ,emacs-s)
4382 ("emacs-flycheck" ,emacs-flycheck)
4383 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4384 (home-page "https://github.com/ananthakumaran/tide")
4385 (synopsis "Typescript IDE for Emacs")
4386 (description
4387 "Tide is an Interactive Development Environment (IDE) for Emacs which
4388 provides the following features:
4389
4390 @itemize
4391 @item ElDoc
4392 @item Auto complete
4393 @item Flycheck
4394 @item Jump to definition, Jump to type definition
4395 @item Find occurrences
4396 @item Rename symbol
4397 @item Imenu
4398 @item Compile On Save
4399 @item Highlight Identifiers
4400 @item Code Fixes
4401 @item Code Refactor
4402 @item Organize Imports
4403 @end itemize")
4404 (license license:gpl3+)))
4405
4406 (define-public emacs-markdown-mode
4407 (package
4408 (name "emacs-markdown-mode")
4409 (version "2.3")
4410 (source (origin
4411 (method url-fetch)
4412 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4413 "/markdown-mode/v" version
4414 "/markdown-mode.el"))
4415 (file-name (string-append "markdown-mode-" version ".el"))
4416 (sha256
4417 (base32
4418 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4419 (build-system emacs-build-system)
4420 (home-page "http://jblevins.org/projects/markdown-mode/")
4421 (synopsis "Emacs Major mode for Markdown files")
4422 (description
4423 "Markdown-mode is a major mode for editing Markdown-formatted text files
4424 in Emacs.")
4425 (license license:gpl3+)))
4426
4427 (define-public emacs-edit-indirect
4428 (package
4429 (name "emacs-edit-indirect")
4430 (version "0.1.5")
4431 (source
4432 (origin
4433 (method git-fetch)
4434 (uri (git-reference
4435 (url "https://github.com/Fanael/edit-indirect")
4436 (commit version)))
4437 (file-name (git-file-name name version))
4438 (sha256
4439 (base32
4440 "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r"))))
4441 (build-system emacs-build-system)
4442 (home-page "https://github.com/Fanael/edit-indirect")
4443 (synopsis "Edit regions in separate buffers")
4444 (description "This package allows you to edit regions in separate buffers,
4445 like @code{org-edit-src-code} but for arbitrary regions.")
4446 (license license:gpl3+)))
4447
4448 (define-public emacs-projectile
4449 (package
4450 (name "emacs-projectile")
4451 (version "0.14.0")
4452 (source (origin
4453 (method url-fetch)
4454 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4455 "/projectile/v" version "/projectile.el"))
4456 (file-name (string-append "projectile-" version ".el"))
4457 (sha256
4458 (base32
4459 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
4460 (build-system emacs-build-system)
4461 (propagated-inputs
4462 `(("emacs-dash" ,emacs-dash)
4463 ("emacs-pkg-info" ,emacs-pkg-info)))
4464 (home-page "https://github.com/bbatsov/projectile")
4465 (synopsis "Manage and navigate projects in Emacs easily")
4466 (description
4467 "This library provides easy project management and navigation. The
4468 concept of a project is pretty basic - just a folder containing special file.
4469 Currently git, mercurial and bazaar repos are considered projects by default.
4470 If you want to mark a folder manually as a project just create an empty
4471 .projectile file in it.")
4472 (license license:gpl3+)))
4473
4474 (define-public emacs-elfeed
4475 (package
4476 (name "emacs-elfeed")
4477 (version "3.0.0")
4478 (source (origin
4479 (method url-fetch)
4480 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4481 version ".tar.gz"))
4482 (file-name (string-append name "-" version ".tar.gz"))
4483 (sha256
4484 (base32
4485 "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
4486 (build-system emacs-build-system)
4487 (arguments
4488 `(#:tests? #t
4489 #:test-command '("make" "test")))
4490 (home-page "https://github.com/skeeto/elfeed")
4491 (synopsis "Atom/RSS feed reader for Emacs")
4492 (description
4493 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4494 and RSS, with a user interface inspired by notmuch.")
4495 (license license:gpl3+)))
4496
4497 (define-public emacs-el-x
4498 (package
4499 (name "emacs-el-x")
4500 (version "0.3.1")
4501 (source (origin
4502 (method git-fetch)
4503 (uri (git-reference
4504 (url "https://github.com/sigma/el-x.git")
4505 (commit (string-append "v" version))))
4506 (file-name (string-append name "-" version "-checkout"))
4507 (sha256
4508 (base32
4509 "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"))))
4510 (build-system emacs-build-system)
4511 (arguments
4512 `(#:phases
4513 (modify-phases %standard-phases
4514 ;; Move the source files to the top level, which is included in
4515 ;; the EMACSLOADPATH.
4516 (add-after 'unpack 'move-source-files
4517 (lambda _
4518 (let ((el-files (find-files "./lisp" ".*\\.el$")))
4519 (for-each (lambda (f)
4520 (rename-file f (basename f)))
4521 el-files))
4522 #t)))))
4523 (home-page "https://github.com/sigma/el-x")
4524 (synopsis "Emacs Lisp extensions")
4525 (description "command@{emacs-el-x} defines the @code{dflet} macro to
4526 provide the historic behavior of @code{flet}, as well as
4527 @code{declare-function} stub for older Emacs.")
4528 (license license:gpl2+)))
4529
4530 (define-public emacs-mocker
4531 (package
4532 (name "emacs-mocker")
4533 (version "0.3.1")
4534 (source (origin
4535 (method git-fetch)
4536 (uri (git-reference
4537 (url "https://github.com/sigma/mocker.el.git")
4538 (commit (string-append "v" version))))
4539 (file-name (string-append name "-" version "-checkout"))
4540 (sha256
4541 (base32
4542 "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"))))
4543 (build-system emacs-build-system)
4544 (arguments
4545 `(#:tests? #t
4546 #:test-command '("ert-runner")))
4547 (native-inputs
4548 `(("ert-runner" ,emacs-ert-runner)))
4549 (propagated-inputs
4550 `(("emacs-el-x" ,emacs-el-x)))
4551 (home-page "https://github.com/sigma/mocker.el")
4552 (synopsis "Mocking framework for Emacs Lisp")
4553 (description "Mocker.el is a framework for writing tests in Emacs Lisp.
4554 It uses regular Lisp rather than a domain specific language (DSL), which
4555 maximizes flexibility (at the expense of conciseness).")
4556 (license license:gpl2+)))
4557
4558 (define-public emacs-find-file-in-project
4559 (package
4560 (name "emacs-find-file-in-project")
4561 (version "5.4.7")
4562 (source (origin
4563 (method git-fetch)
4564 (uri (git-reference
4565 (url "https://github.com/technomancy/find-file-in-project.git")
4566 (commit version)))
4567 (file-name (string-append name "-" version "-checkout"))
4568 (sha256
4569 (base32
4570 "1sdnyqv69mipbgs9yax88m9b6crsa59rjhwrih197pifl4089awr"))))
4571 (build-system emacs-build-system)
4572 (arguments
4573 `(#:phases
4574 (modify-phases %standard-phases
4575 (add-before 'check 'set-shell
4576 ;; Otherwise Emacs shell-file-name is set to "/bin/sh", which doesn't
4577 ;; work.
4578 (lambda _
4579 (setenv "SHELL" (which "sh"))
4580 #t)))
4581 #:tests? #t
4582 #:test-command '("./tests/test.sh")))
4583 (home-page "https://github.com/technomancy/find-file-in-project")
4584 (synopsis "File/directory finder for Emacs")
4585 (description "@code{find-file-in-project} allows to find files or
4586 directories quickly in the current project. The project root is detected
4587 automatically when Git, Subversion or Mercurial are used. It also provides
4588 functions to assist in reviewing changes on files.")
4589 (license license:gpl3+)))
4590
4591 (define-public emacs-pyvenv
4592 (package
4593 (name "emacs-pyvenv")
4594 (version "1.11")
4595 (source (origin
4596 (method git-fetch)
4597 (uri (git-reference
4598 (url "https://github.com/jorgenschaefer/pyvenv.git")
4599 (commit (string-append "v" version))))
4600 (file-name (string-append name "-" version "-checkout"))
4601 (sha256
4602 (base32
4603 "1a346qdimr1dvj53q033aqnahwd2dhyn9jadrs019nm0bzgw7g63"))))
4604 (build-system emacs-build-system)
4605 (arguments
4606 `(#:phases
4607 (modify-phases %standard-phases
4608 ;; This phase incorrectly attempts to substitute "activate" and fails
4609 ;; doing so.
4610 (delete 'patch-el-files))
4611 #:tests? #t
4612 #:test-command '("ert-runner")))
4613 (native-inputs
4614 `(("ert-runner" ,emacs-ert-runner)
4615 ("emacs-mocker" ,emacs-mocker)))
4616 (home-page "https://github.com/jorgenschaefer/pyvenv")
4617 (synopsis "Virtualenv minor mode for Emacs")
4618 (description "pyvenv.el is a minor mode to support using Python virtual
4619 environments (virtualenv) inside Emacs.")
4620 (license license:gpl3+)))
4621
4622 (define-public emacs-highlight-indentation
4623 (package
4624 (name "emacs-highlight-indentation")
4625 (version "0.7.0")
4626 (source (origin
4627 (method git-fetch)
4628 (uri (git-reference
4629 (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
4630 (commit (string-append "v" version))))
4631 (file-name (string-append name "-" version "-checkout"))
4632 (sha256
4633 (base32
4634 "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
4635 (build-system emacs-build-system)
4636 (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
4637 (synopsis "Highlighting indentation for Emacs")
4638 (description "Provides two minor modes to highlight indentation guides in Emacs:
4639 @enumerate
4640 @item @code{highlight-indentation-mode}, which displays guidelines
4641 indentation (space indentation only).
4642 @item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
4643 @end enumerate")
4644 (license license:gpl2+)))
4645
4646 (define-public emacs-elpy
4647 (package
4648 (name "emacs-elpy")
4649 (version "1.28.0")
4650 (source (origin
4651 (method git-fetch)
4652 (uri (git-reference
4653 (url "https://github.com/jorgenschaefer/elpy.git")
4654 (commit version)))
4655 (file-name (string-append name "-" version "-checkout"))
4656 (sha256
4657 (base32
4658 "073bwxwjzcbmvpcz9q2xjwzx9x7hkvjni6fwvikh6yawzjp56jis"))))
4659 (build-system emacs-build-system)
4660 (arguments
4661 `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
4662 #:phases
4663 ;; TODO: Make `elpy-config' display Guix commands :)
4664 (modify-phases %standard-phases
4665 ;; One elpy test depends on being run inside a Python virtual
4666 ;; environment to pass. We have nothing to gain from doing so here,
4667 ;; so we just trick Elpy into thinking we are (see:
4668 ;; https://github.com/jorgenschaefer/elpy/pull/1293).
4669 (add-before 'check 'fake-virtualenv
4670 (lambda _
4671 (setenv "VIRTUAL_ENV" "/tmp")
4672 #t))
4673 (add-before 'check 'build-doc
4674 (lambda _
4675 (with-directory-excursion "docs"
4676 (invoke "make" "info" "man"))
4677 ;; Move .info file at the root so that it can installed by the
4678 ;; 'move-doc phase.
4679 (rename-file "docs/_build/texinfo/Elpy.info" "Elpy.info")
4680 #t))
4681 (add-after 'build-doc 'install-manpage
4682 (lambda* (#:key outputs #:allow-other-keys)
4683 (let* ((out (assoc-ref outputs "out"))
4684 (man1 (string-append out "/share/man/man1")))
4685 (mkdir-p man1)
4686 (copy-file "docs/_build/man/elpy.1"
4687 (string-append man1 "/elpy.1")))
4688 #t)))
4689 #:tests? #t
4690 #:test-command '("ert-runner")))
4691 (propagated-inputs
4692 `(("emacs-company" ,emacs-company)
4693 ("emacs-find-file-in-project" ,emacs-find-file-in-project)
4694 ("emacs-highlight-indentation" ,emacs-highlight-indentation)
4695 ("emacs-yasnippet" ,emacs-yasnippet)
4696 ("pyvenv" ,emacs-pyvenv)
4697 ("s" ,emacs-s)))
4698 (native-inputs
4699 `(("ert-runner" ,emacs-ert-runner)
4700 ("emacs-f" ,emacs-f)
4701 ("python" ,python-wrapper)
4702 ("python-autopep8" ,python-autopep8)
4703 ("python-black" ,python-black)
4704 ("python-flake8" ,python-flake8)
4705 ("python-jedi" ,python-jedi)
4706 ("python-yapf" ,python-yapf)
4707 ;; For documentation.
4708 ("python-sphinx" ,python-sphinx)
4709 ("texinfo" ,texinfo)))
4710 (home-page "https://github.com/jorgenschaefer/elpy")
4711 (synopsis "Python development environment for Emacs")
4712 (description "Elpy brings powerful Python editing to Emacs. It combines
4713 and configures a number of other packages written in Emacs Lisp as well as
4714 Python, together offering features such as navigation, documentation,
4715 completion, interactive development and more.")
4716 (license license:gpl3+)))
4717
4718 (define-public emacs-rainbow-delimiters
4719 (package
4720 (name "emacs-rainbow-delimiters")
4721 (version "2.1.3")
4722 (source (origin
4723 (method url-fetch)
4724 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4725 "/rainbow-delimiters/" version
4726 "/rainbow-delimiters.el"))
4727 (file-name (string-append "rainbow-delimiters-" version ".el"))
4728 (sha256
4729 (base32
4730 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4731 (build-system emacs-build-system)
4732 (home-page "https://github.com/Fanael/rainbow-delimiters")
4733 (synopsis "Highlight brackets according to their depth")
4734 (description
4735 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4736 highlights parentheses, brackets, and braces according to their depth. Each
4737 successive level is highlighted in a different color, making it easy to spot
4738 matching delimiters, orient yourself in the code, and tell which statements
4739 are at a given level.")
4740 (license license:gpl3+)))
4741
4742 (define-public emacs-rainbow-identifiers
4743 (package
4744 (name "emacs-rainbow-identifiers")
4745 (version "0.2.2")
4746 (source (origin
4747 (method url-fetch)
4748 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4749 "/rainbow-identifiers/" version
4750 "/rainbow-identifiers.el"))
4751 (file-name (string-append "rainbow-identifiers-" version ".el"))
4752 (sha256
4753 (base32
4754 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4755 (build-system emacs-build-system)
4756 (home-page "https://github.com/Fanael/rainbow-identifiers")
4757 (synopsis "Highlight identifiers in source code")
4758 (description
4759 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4760 identifiers based on their names. Each identifier gets a color based on a hash
4761 of its name.")
4762 (license license:bsd-2)))
4763
4764 (define-public emacs-rainbow-mode
4765 (package
4766 (name "emacs-rainbow-mode")
4767 (version "1.0.1")
4768 (source (origin
4769 (method url-fetch)
4770 (uri (string-append
4771 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4772 (sha256
4773 (base32
4774 "0cpga4ax635rfpj7y2vmh7ank0yw00dcy20gjg1mj74r97by8csf"))))
4775 (build-system emacs-build-system)
4776 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4777 (synopsis "Colorize color names in buffers")
4778 (description
4779 "This minor mode sets background color to strings that match color
4780 names, e.g. #0000ff is displayed in white with a blue background.")
4781 (license license:gpl3+)))
4782
4783 (define-public emacs-visual-fill-column
4784 (package
4785 (name "emacs-visual-fill-column")
4786 (version "1.11")
4787 (source (origin
4788 (method url-fetch)
4789 (uri (string-append "https://codeload.github.com/joostkremers/"
4790 "visual-fill-column/tar.gz/" version))
4791 (file-name (string-append name "-" version ".tar.gz"))
4792 (sha256
4793 (base32
4794 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4795 (build-system emacs-build-system)
4796 (home-page "https://github.com/joostkremers/visual-fill-column")
4797 (synopsis "Fill-column for visual-line-mode")
4798 (description
4799 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4800 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4801 wrapping lines at the window edge, which is the standard behaviour of
4802 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4803 @code{fill-column} is too large for the window, the text is wrapped at the
4804 window edge.")
4805 (license license:gpl3+)))
4806
4807 (define-public emacs-writeroom
4808 (package
4809 (name "emacs-writeroom")
4810 (version "3.7")
4811 (source (origin
4812 (method url-fetch)
4813 (uri (string-append
4814 "https://github.com/joostkremers/writeroom-mode/archive/"
4815 version ".tar.gz"))
4816 (file-name (string-append name "-" version ".tar.gz"))
4817 (sha256
4818 (base32
4819 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4820 (build-system emacs-build-system)
4821 (propagated-inputs
4822 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4823 (home-page "https://github.com/joostkremers/writeroom-mode")
4824 (synopsis "Distraction-free writing for Emacs")
4825 (description
4826 "This package defines a minor mode for distraction-free writing. Some of
4827 the default effects include entering fullscreen, deleting other windows of the
4828 current frame, disabling the mode line, and adding margins to the buffer that
4829 restrict the text width to 80 characters.")
4830 (license license:bsd-3)))
4831
4832 (define-public emacs-ido-completing-read+
4833 (package
4834 (name "emacs-ido-completing-read+")
4835 (version "3.12")
4836 (source (origin
4837 (method url-fetch)
4838 (uri (string-append "https://raw.githubusercontent.com"
4839 "/DarwinAwardWinner/ido-ubiquitous/v"
4840 version "/ido-completing-read+.el"))
4841 (file-name (string-append "ido-completing-read+-" version ".el"))
4842 (sha256
4843 (base32
4844 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4845 (build-system emacs-build-system)
4846 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4847 (synopsis "Replacement for completing-read using ido")
4848 (description
4849 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4850 Importantly, it detects edge cases that ordinary ido cannot handle and either
4851 adjusts them so ido can handle them, or else simply falls back to the standard
4852 Emacs completion function instead.")
4853 (license license:gpl3+)))
4854
4855 (define-public emacs-ido-ubiquitous
4856 (package
4857 (name "emacs-ido-ubiquitous")
4858 (version "3.12")
4859 (source (origin
4860 (method url-fetch)
4861 (uri (string-append "https://raw.githubusercontent.com"
4862 "/DarwinAwardWinner/ido-ubiquitous/v"
4863 version "/ido-ubiquitous.el"))
4864 (file-name (string-append "ido-ubiquitous-" version ".el"))
4865 (sha256
4866 (base32
4867 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4868 (build-system emacs-build-system)
4869 (propagated-inputs
4870 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4871 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4872 (synopsis "Use ido (nearly) everywhere")
4873 (description
4874 "Ido-ubiquitous enables ido-style completion for almost every function
4875 that uses the standard completion function completing-read.")
4876 (license license:gpl3+)))
4877
4878 (define-public emacs-yaml-mode
4879 (package
4880 (name "emacs-yaml-mode")
4881 (version "0.0.13")
4882 (source (origin
4883 (method url-fetch)
4884 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4885 "/yaml-mode/v" version "/yaml-mode.el"))
4886 (file-name (string-append "yaml-mode-" version ".el"))
4887 (sha256
4888 (base32
4889 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4890 (build-system emacs-build-system)
4891 (home-page "https://github.com/yoshiki/yaml-mode")
4892 (synopsis "Major mode for editing YAML files")
4893 (description
4894 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4895 serialization format. It was initially developed by Yoshiki Kurihara and many
4896 features were added by Marshall Vandegrift. As YAML and Python share the fact
4897 that indentation determines structure, this mode provides indentation and
4898 indentation command behavior very similar to that of python-mode.")
4899 (license license:gpl3+)))
4900
4901 (define-public emacs-web-mode
4902 (package
4903 (name "emacs-web-mode")
4904 (version "16")
4905 (source (origin
4906 (method url-fetch)
4907 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4908 "/web-mode/v" version "/web-mode.el"))
4909 (file-name (string-append "web-mode-" version ".el"))
4910 (sha256
4911 (base32
4912 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
4913 (build-system emacs-build-system)
4914 (synopsis "Major mode for editing web templates")
4915 (description "Web-mode is an Emacs major mode for editing web templates
4916 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4917 client/server side engines). Web-mode is compatible with many template
4918 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4919 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4920 Dust.js, React/JSX, Angularjs, ejs, etc.")
4921 (home-page "http://web-mode.org/")
4922 (license license:gpl3+)))
4923
4924 (define-public emacs-wgrep
4925 (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
4926 ;; Late commit fixes compatibility issue with Emacs 26+.
4927 (package
4928 (name "emacs-wgrep")
4929 (version (git-version "2.1.10" "1" commit))
4930 (source (origin
4931 (method git-fetch)
4932 (uri (git-reference
4933 (url "https://github.com/mhayashi1120/Emacs-wgrep")
4934 (commit commit)))
4935 (file-name (git-file-name name version))
4936 (sha256
4937 (base32
4938 "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
4939 (build-system emacs-build-system)
4940 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4941 (synopsis "Edit a grep buffer and apply those changes to the files")
4942 (description
4943 "Emacs wgrep allows you to edit a grep buffer and apply those changes
4944 to the file buffer. Several backends are supported beside the classic grep:
4945 ack, ag, helm and pt.")
4946 (license license:gpl3+))))
4947
4948 (define-public emacs-helm
4949 (package
4950 (name "emacs-helm")
4951 (version "3.0")
4952 (source (origin
4953 (method url-fetch)
4954 (uri (string-append
4955 "https://github.com/" name "/helm/archive/v"
4956 version ".tar.gz"))
4957 (file-name (string-append name "-" version ".tar.gz"))
4958 (sha256
4959 (base32
4960 "0k2r0ccppaqfjvyszaxa16vf7g2qzj1clhfr6v646ncsy17laciw"))))
4961 (build-system emacs-build-system)
4962 (propagated-inputs
4963 `(("emacs-async" ,emacs-async)
4964 ("emacs-popup" ,emacs-popup)))
4965 (home-page "https://emacs-helm.github.io/helm/")
4966 (synopsis "Incremental completion and selection narrowing
4967 framework for Emacs")
4968 (description "Helm is incremental completion and selection narrowing
4969 framework for Emacs. It will help steer you in the right direction when
4970 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4971 of @code{anything.el} originally written by Tamas Patrovic and can be
4972 considered to be its successor. Helm sets out to clean up the legacy code in
4973 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4974 not tied in the trap of backward compatibility.")
4975 (license license:gpl3+)))
4976
4977 (define-public emacs-helm-swoop
4978 (package
4979 (name "emacs-helm-swoop")
4980 (version "1.7.4")
4981 (source (origin
4982 (method url-fetch)
4983 (uri (string-append
4984 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4985 version
4986 ".tar.gz"))
4987 (file-name (string-append name "-" version ".tar.gz"))
4988 (sha256
4989 (base32
4990 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4991 (build-system emacs-build-system)
4992 (propagated-inputs
4993 `(("emacs-helm" ,emacs-helm)))
4994 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4995 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4996 (description
4997 "This package builds on the Helm interface to provide several commands
4998 for search-based navigation of buffers.")
4999 (license license:gpl2+)))
5000
5001 (define-public emacs-helm-projectile
5002 (package
5003 (name "emacs-helm-projectile")
5004 (version "0.14.0")
5005 (source (origin
5006 (method url-fetch)
5007 (uri (string-append
5008 "https://github.com/bbatsov/helm-projectile/archive/v"
5009 version
5010 ".tar.gz"))
5011 (file-name (string-append name "-" version ".tar.gz"))
5012 (sha256
5013 (base32
5014 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
5015 (build-system emacs-build-system)
5016 (propagated-inputs
5017 `(("emacs-dash" ,emacs-dash)
5018 ("emacs-helm" ,emacs-helm)
5019 ("emacs-projectile" ,emacs-projectile)))
5020 (home-page "https://github.com/bbatsov/helm-projectile")
5021 (synopsis "Helm integration for Projectile")
5022 (description
5023 "This Emacs library provides a Helm interface for Projectile.")
5024 (license license:gpl3+)))
5025
5026 (define-public emacs-helm-make
5027 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
5028 (revision "1"))
5029 (package
5030 (name "emacs-helm-make")
5031 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
5032 (source
5033 (origin
5034 (method git-fetch)
5035 (uri (git-reference
5036 (url "https://github.com/abo-abo/helm-make.git")
5037 (commit commit)))
5038 (file-name (string-append name "-" version "-checkout"))
5039 (sha256
5040 (base32
5041 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
5042 (build-system emacs-build-system)
5043 (propagated-inputs
5044 `(("emacs-helm" ,emacs-helm)
5045 ("emacs-projectile" ,emacs-projectile)))
5046 (home-page "https://github.com/abo-abo/helm-make")
5047 (synopsis "Select a Makefile target with helm")
5048 (description "@code{helm-make} or @code{helm-make-projectile} will give
5049 you a @code{helm} selection of directory Makefile's targets. Selecting a
5050 target will call @code{compile} on it.")
5051 (license license:gpl3+))))
5052
5053 (define-public emacs-cider
5054 (package
5055 (name "emacs-cider")
5056 (version "0.20.0")
5057 (source
5058 (origin
5059 (method git-fetch)
5060 (uri (git-reference
5061 (url "https://github.com/clojure-emacs/cider.git")
5062 (commit (string-append "v" version))))
5063 (file-name (git-file-name name version))
5064 (sha256
5065 (base32
5066 "0lfhzg9c931jbx27hpshk3l76gwbp6ggf668sqa77xrvymwdlsnw"))))
5067 (build-system emacs-build-system)
5068 (arguments
5069 '(#:exclude ; Don't exclude 'cider-test.el'.
5070 '("^\\.dir-locals\\.el$" "^test/")))
5071 (propagated-inputs
5072 `(("emacs-clojure-mode" ,emacs-clojure-mode)
5073 ("emacs-sesman" ,emacs-sesman)
5074 ("emacs-spinner" ,emacs-spinner)
5075 ("emacs-pkg-info" ,emacs-pkg-info)
5076 ("emacs-queue" ,emacs-queue)))
5077 (home-page "https://cider.readthedocs.io/")
5078 (synopsis "Clojure development environment for Emacs")
5079 (description
5080 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
5081 provide an interactive development experience similar to the one you'd get
5082 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
5083 Geiser) and Smalltalk.
5084
5085 CIDER is the successor to the now deprecated combination of using SLIME +
5086 swank-clojure for Clojure development.
5087
5088 There are plenty of differences between CIDER and SLIME, but the core ideas
5089 are pretty much the same (and SLIME served as the principle inspiration for
5090 CIDER).")
5091 (license license:gpl3+)))
5092
5093 ;; There hasn't been a tag or release since 2015, so we take the latest
5094 ;; commit.
5095 (define-public emacs-sly
5096 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
5097 (revision "1"))
5098 (package
5099 (name "emacs-sly")
5100 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
5101 (source
5102 (origin
5103 (method git-fetch)
5104 (uri (git-reference
5105 (url "https://github.com/joaotavora/sly.git")
5106 (commit commit)))
5107 (file-name (git-file-name name version))
5108 (sha256
5109 (base32
5110 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
5111 (build-system emacs-build-system)
5112 (arguments
5113 `(#:include (cons "^lib\\/" %default-include)
5114 #:phases
5115 ;; The package provides autoloads.
5116 (modify-phases %standard-phases
5117 (delete 'make-autoloads))))
5118 (home-page "https://github.com/joaotavora/sly")
5119 (synopsis "Sylvester the Cat's Common Lisp IDE")
5120 (description
5121 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
5122 contains the following improvements over it:
5123
5124 @enumerate
5125 @item Completely redesigned REPL based on Emacs's own full-featured
5126 @code{comint.el}
5127 @item Live code annotations via a new @code{sly-stickers} contrib
5128 @item Consistent interactive button interface. Everything can be copied to
5129 the REPL.
5130 @item Multiple inspectors with independent history
5131 @item Regexp-capable @code{M-x sly-apropos}
5132 @item Contribs are first class SLY citizens and enabled by default
5133 @item Use ASDF to loads contribs on demand.
5134 @end enumerate
5135
5136 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
5137 xref, etc...) are still available, but with better integration.")
5138 (license license:gpl3+))))
5139
5140 (define-public emacs-lua-mode
5141 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
5142 (revision "1"))
5143 (package
5144 (name "emacs-lua-mode")
5145 (version (string-append "20151025." revision "-" (string-take commit 9)))
5146 (home-page "https://github.com/immerrr/lua-mode/")
5147 (source (origin
5148 (method git-fetch)
5149 (uri (git-reference
5150 (url home-page)
5151 (commit commit)))
5152 (file-name (string-append name "-" version ".checkout"))
5153 (sha256
5154 (base32
5155 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
5156 (build-system emacs-build-system)
5157 (synopsis "Major mode for lua")
5158 (description
5159 "This Emacs package provides a mode for @uref{https://www.lua.org/,
5160 Lua programing language}.")
5161 (license license:gpl2+))))
5162
5163 (define-public emacs-ebuild-mode
5164 (package
5165 (name "emacs-ebuild-mode")
5166 (version "1.37")
5167 (source (origin
5168 (method url-fetch)
5169 (uri (string-append
5170 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
5171 "-" version ".tar.xz"))
5172 (file-name (string-append name "-" version ".tar.xz"))
5173 (sha256
5174 (base32
5175 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
5176 (build-system emacs-build-system)
5177 (home-page "https://devmanual.gentoo.org")
5178 (synopsis "Major modes for Gentoo package files")
5179 (description
5180 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
5181 news items, openrc and runscripts.")
5182 (license license:gpl2+)))
5183
5184 (define-public emacs-evil
5185 (package
5186 (name "emacs-evil")
5187 (version "1.2.14")
5188 (source
5189 (origin
5190 (method git-fetch)
5191 (uri (git-reference
5192 (url "https://github.com/emacs-evil/evil")
5193 (commit version)))
5194 (file-name (string-append name "-" version "-checkout"))
5195 (sha256
5196 (base32
5197 "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"))))
5198 (build-system emacs-build-system)
5199 (propagated-inputs
5200 `(("emacs-undo-tree" ,emacs-undo-tree)
5201 ("emacs-goto-chg" ,emacs-goto-chg)))
5202 (home-page "https://github.com/emacs-evil/evil")
5203 (synopsis "Extensible Vi layer for Emacs")
5204 (description
5205 "Evil is an extensible vi layer for Emacs. It emulates the
5206 main features of Vim, and provides facilities for writing custom
5207 extensions.")
5208 (license license:gpl3+)))
5209
5210 (define-public emacs-evil-collection
5211 (let ((commit "e7b57aae0131634d0da5e599717a86c4b3ca6092")
5212 (revision "7"))
5213 (package
5214 (name "emacs-evil-collection")
5215 (version (git-version "0.0.1" revision commit))
5216 (source (origin
5217 (method git-fetch)
5218 (uri (git-reference
5219 (url "https://github.com/emacs-evil/evil-collection")
5220 (commit commit)))
5221 (file-name (string-append name "-" version "-checkout"))
5222 (sha256
5223 (base32
5224 "1g7bxvgnsikpxxdimy0lymn3xz53fari048l827sjyw5kxi59d20"))))
5225 (build-system emacs-build-system)
5226 (propagated-inputs
5227 `(("emacs-evil" ,emacs-evil)))
5228 (home-page "https://github.com/emacs-evil/evil-collection")
5229 (synopsis "Collection of Evil bindings for many major and minor modes")
5230 (description "This is a collection of Evil bindings for the parts of
5231 Emacs that Evil does not cover properly by default, such as @code{help-mode},
5232 @code{M-x calendar}, Eshell and more.")
5233 (license license:gpl3+))))
5234
5235 (define-public emacs-goto-chg
5236 (package
5237 (name "emacs-goto-chg")
5238 (version "1.6")
5239 (source
5240 (origin
5241 (method url-fetch)
5242 ;; There is no versioned source.
5243 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
5244 (file-name (string-append "goto-chg-" version ".el"))
5245 (sha256
5246 (base32
5247 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
5248 (build-system emacs-build-system)
5249 ;; There is no other home page.
5250 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
5251 (synopsis "Go to the last change in the Emacs buffer")
5252 (description
5253 "This package provides @code{M-x goto-last-change} command that goes to
5254 the point of the most recent edit in the current Emacs buffer. When repeated,
5255 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
5256 used for reverse direction.")
5257 (license license:gpl2+)))
5258
5259 (define-public emacs-monroe
5260 (package
5261 (name "emacs-monroe")
5262 (version "0.3.1")
5263 (source
5264 (origin
5265 (method url-fetch)
5266 (uri (string-append "https://github.com/sanel/monroe/archive/"
5267 version ".tar.gz"))
5268 (file-name (string-append name "-" version ".tar.gz"))
5269 (sha256
5270 (base32
5271 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
5272 (build-system emacs-build-system)
5273 (home-page "https://github.com/sanel/monroe")
5274 (synopsis "Clojure nREPL client for Emacs")
5275 (description
5276 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
5277 distribution, primarily targeting Clojure users")
5278 (license license:gpl3+)))
5279
5280 (define-public emacs-orgalist
5281 (package
5282 (name "emacs-orgalist")
5283 (version "1.9")
5284 (source
5285 (origin
5286 (method url-fetch)
5287 (uri (string-append "https://elpa.gnu.org/packages/"
5288 "orgalist-" version ".el"))
5289 (sha256
5290 (base32
5291 "1rmmcyiiqkq54hn74nhzxzl4nvd902hv6gq341jwhrm7yiagffi6"))))
5292 (build-system emacs-build-system)
5293 (home-page "http://elpa.gnu.org/packages/orgalist.html")
5294 (synopsis "Manage Org-like lists in non-Org buffers")
5295 (description "Write Org mode's plain lists in non-Org buffers. More
5296 specifically, Orgalist supports the syntax of Org mode for numbered,
5297 unnumbered, description items, checkboxes, and counter cookies.
5298
5299 The library also implements radio lists, i.e., lists written in Org
5300 syntax later translated into the host format, e.g., LaTeX or HTML.")
5301 (license license:gpl3+)))
5302
5303 (define-public emacs-writegood-mode
5304 (package
5305 (name "emacs-writegood-mode")
5306 (version "2.0.2")
5307 (home-page "https://github.com/bnbeckwith/writegood-mode")
5308 (source (origin
5309 (method git-fetch)
5310 (uri (git-reference
5311 (url home-page)
5312 (commit (string-append "v" version))))
5313 (sha256
5314 (base32
5315 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5316 (file-name (string-append name "-checkout"))))
5317 (build-system emacs-build-system)
5318 (synopsis "Polish up poor writing on the fly")
5319 (description
5320 "This minor mode tries to find and highlight problems with your writing
5321 in English as you type. It primarily detects \"weasel words\" and abuse of
5322 passive voice.")
5323 (license license:gpl3+)))
5324
5325 (define-public emacs-neotree
5326 (package
5327 (name "emacs-neotree")
5328 (version "0.5.2")
5329 (home-page "https://github.com/jaypei/emacs-neotree")
5330 (source (origin
5331 (method url-fetch)
5332 (uri (string-append
5333 "https://github.com/jaypei/" name
5334 "/archive/" version ".tar.gz"))
5335 (sha256
5336 (base32
5337 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
5338 (file-name (string-append name "-" version ".tar.gz"))))
5339 (build-system emacs-build-system)
5340 (synopsis "Folder tree view for Emacs")
5341 (description "This Emacs package provides a folder tree view.")
5342 (license license:gpl3+)))
5343
5344 (define-public emacs-org
5345 (package
5346 (name "emacs-org")
5347 ;; emacs-org-contrib inherits from this package. Please update its sha256
5348 ;; checksum as well.
5349 (version "9.2.1")
5350 (source (origin
5351 (method url-fetch)
5352 (uri (string-append "http://elpa.gnu.org/packages/org-"
5353 version ".tar"))
5354 (sha256
5355 (base32
5356 "0ggca29pyksvfblyd2ciqhgi392wlqx0nmph7ck4m5wbzmk2qnry"))))
5357 (build-system emacs-build-system)
5358 (home-page "https://orgmode.org/")
5359 (synopsis "Outline-based notes management and organizer")
5360 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5361 lists, and project planning with a fast and effective lightweight markup
5362 language. It also is an authoring system with unique support for literate
5363 programming and reproducible research.")
5364 (license license:gpl3+)))
5365
5366 (define-public emacs-org-contrib
5367 (package
5368 (inherit emacs-org)
5369 (name "emacs-org-contrib")
5370 (version "20190203")
5371 (source (origin
5372 (method url-fetch)
5373 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5374 version ".tar"))
5375 (sha256
5376 (base32
5377 "060rm62p1660n9f6i5w8l932w7gn5ign93q92gva4jy4bkmvczyb"))))
5378 (arguments
5379 `(#:modules ((guix build emacs-build-system)
5380 (guix build utils)
5381 (guix build emacs-utils)
5382 (ice-9 ftw)
5383 (srfi srfi-1))
5384 #:phases
5385 (modify-phases %standard-phases
5386 (add-after 'install 'delete-org-files
5387 (lambda* (#:key inputs outputs #:allow-other-keys)
5388 (let* ((out (assoc-ref outputs "out"))
5389 (org (assoc-ref inputs "org"))
5390 (contrib-files
5391 (map basename (find-files out)))
5392 (org+contrib-files
5393 (map basename (find-files org)))
5394 (duplicates (lset-intersection
5395 string=? contrib-files org+contrib-files)))
5396 (with-directory-excursion
5397 (string-append
5398 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
5399 (for-each delete-file duplicates))
5400 #t))))))
5401 (propagated-inputs
5402 `(("arduino-mode" ,emacs-arduino-mode)
5403 ("cider" ,emacs-cider)
5404 ("org" ,emacs-org)
5405 ("scel" ,emacs-scel)))
5406 (synopsis "Contributed packages to Org mode")
5407 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5408 lists, and project planning with a fast and effective plain-text system.
5409
5410 This package is equivalent to org-plus-contrib, but only includes additional
5411 files that you would find in @file{contrib/} from the git repository.")))
5412
5413 (define-public emacs-flx
5414 (package
5415 (name "emacs-flx")
5416 (version "0.6.1")
5417 (source
5418 (origin
5419 (method url-fetch)
5420 (uri (string-append "https://github.com/lewang/"
5421 "flx/archive/v" version ".tar.gz"))
5422 (sha256
5423 (base32
5424 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5425 (file-name (string-append name "-" version ".tar.gz"))))
5426 (build-system emacs-build-system)
5427 (home-page "https://github.com/lewang/flx")
5428 (synopsis "Fuzzy matching for Emacs")
5429 (description
5430 "Flx provides fuzzy matching for emacs a la sublime text.
5431 The sorting algorithm is a balance between word beginnings (abbreviation)
5432 and contiguous matches (substring). The longer the substring match,
5433 the higher it scores. This maps well to how we think about matching.
5434 Flx has support for ido (interactively do things) through flx-ido.")
5435 (license license:gpl3+)))
5436
5437 (define-public emacs-cyberpunk-theme
5438 (package
5439 (name "emacs-cyberpunk-theme")
5440 (version "1.19")
5441 (source
5442 (origin
5443 (method url-fetch)
5444 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5445 "archive/" version ".tar.gz"))
5446 (sha256
5447 (base32
5448 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
5449 (file-name (string-append name "-" version ".tar.gz"))))
5450 (build-system emacs-build-system)
5451 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5452 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5453 (description
5454 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5455 known loosely as deftheme. Many mode-specific customizations are included.")
5456 (license license:gpl3+)))
5457
5458 (define-public emacs-danneskjold-theme
5459 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5460 (revision "1"))
5461 (package
5462 (name "emacs-danneskjold-theme")
5463 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5464 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5465 (source
5466 (origin
5467 (method git-fetch)
5468 (uri (git-reference
5469 (url home-page)
5470 (commit commit)))
5471 (file-name (string-append name "-" version "-checkout"))
5472 (sha256
5473 (base32
5474 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5475 (build-system emacs-build-system)
5476 (arguments
5477 `(#:phases
5478 (modify-phases %standard-phases
5479 (add-after 'unpack 'delete-screenshots
5480 (lambda _
5481 (delete-file-recursively "screenshots") #t)))))
5482 (synopsis "High-contrast Emacs theme")
5483 (description
5484 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5485 (license license:gpl3+))))
5486
5487 (define-public emacs-dream-theme
5488 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5489 (revision "1"))
5490 (package
5491 (name "emacs-dream-theme")
5492 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5493 (source
5494 (origin
5495 (method git-fetch)
5496 (uri (git-reference
5497 (url "https://github.com/djcb/dream-theme")
5498 (commit commit)))
5499 (file-name (string-append name "-" version "-checkout"))
5500 (sha256
5501 (base32
5502 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5503 (build-system emacs-build-system)
5504 (home-page "https://github.com/djcb/dream-theme")
5505 (synopsis "High-contrast Emacs theme")
5506 (description
5507 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5508 by zenburn, sinburn and similar themes, but slowly diverging from them.")
5509 (license license:gpl3+))))
5510
5511 (define-public emacs-auto-complete
5512 (package
5513 (name "emacs-auto-complete")
5514 (version "1.5.1")
5515 (source
5516 (origin
5517 (method url-fetch)
5518 (uri (string-append "https://github.com/auto-complete/"
5519 "auto-complete/archive/v" version ".tar.gz"))
5520 (sha256
5521 (base32
5522 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5523 (file-name (string-append name "-" version ".tar.gz"))))
5524 (build-system emacs-build-system)
5525 (propagated-inputs
5526 `(("emacs-popup" ,emacs-popup)))
5527 (home-page "https://github.com/auto-complete/auto-complete")
5528 (synopsis "Intelligent auto-completion extension for Emacs")
5529 (description
5530 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5531 It extends the standard Emacs completion interface and provides an environment
5532 that allows users to concentrate more on their own work. Its features are:
5533 a visual interface, reduce overhead of completion by using statistic method,
5534 extensibility.")
5535 (license license:gpl3+)))
5536
5537 (define-public emacs-nginx-mode
5538 (package
5539 (name "emacs-nginx-mode")
5540 (version "1.1.9")
5541 (source
5542 (origin
5543 (method url-fetch)
5544 (uri (string-append
5545 "https://github.com/ajc/nginx-mode/archive/v"
5546 version ".tar.gz"))
5547 (file-name (string-append name "-" version ".tar.gz"))
5548 (sha256
5549 (base32
5550 "0bzyrj6zz1hm67bkhw23bam7qc869s3zg7m1rb1c3aa4n0aw90cq"))))
5551 (build-system emacs-build-system)
5552 (home-page "https://github.com/ajc/nginx-mode")
5553 (synopsis "Emacs major mode for editing nginx config files")
5554 (description "This package provides an Emacs major mode for
5555 editing nginx config files.")
5556 (license license:gpl2+)))
5557
5558 (define-public emacs-stream
5559 (package
5560 (name "emacs-stream")
5561 (version "2.2.0")
5562 (home-page "https://github.com/NicolasPetton/stream")
5563 (source
5564 (origin
5565 (method url-fetch)
5566 (file-name (string-append name "-" version ".tar.gz"))
5567 (uri (string-append home-page "/archive/"version ".tar.gz"))
5568 (sha256
5569 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5570 (build-system emacs-build-system)
5571 (synopsis "Implementation of streams for Emacs")
5572 (description "This library provides an implementation of streams for Emacs.
5573 Streams are implemented as delayed evaluation of cons cells.")
5574 (license license:gpl3+)))
5575
5576 (define-public emacs-el-search
5577 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5578 (revision "1"))
5579 (package
5580 (name "emacs-el-search")
5581 ;; No ufficial release.
5582 (version (string-append "0.0-" revision "." (string-take commit 7)))
5583 (home-page "https://github.com/emacsmirror/el-search")
5584 (source
5585 (origin
5586 (method git-fetch)
5587 (file-name (string-append name "-" version ".tar.gz"))
5588 (uri (git-reference
5589 (commit commit)
5590 (url (string-append home-page ".git"))))
5591 (sha256
5592 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5593 (build-system emacs-build-system)
5594 (inputs `(("emacs-stream" ,emacs-stream)))
5595 (synopsis "Expression based interactive search for emacs-lisp-mode")
5596 (description "This package provides expression based interactive search
5597 procedures for emacs-lisp-mode.")
5598 (license license:gpl3+))))
5599
5600 (define-public emacs-ht
5601 (package
5602 (name "emacs-ht")
5603 (version "2.1")
5604 (source
5605 (origin
5606 (method url-fetch)
5607 (uri (string-append
5608 "https://github.com/Wilfred/ht.el/archive/"
5609 version ".tar.gz"))
5610 (file-name (string-append name "-" version ".tar.gz"))
5611 (sha256
5612 (base32
5613 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5614 (build-system emacs-build-system)
5615 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5616 (home-page "https://github.com/Wilfred/ht.el")
5617 (synopsis "Hash table library for Emacs")
5618 (description
5619 "This package simplifies the use of hash tables in elisp. It also
5620 provides functions to convert hash tables from and to alists and plists.")
5621 (license license:gpl3+)))
5622
5623 (define-public emacs-log4e
5624 (package
5625 (name "emacs-log4e")
5626 (version "0.3.0")
5627 (source
5628 (origin
5629 (method url-fetch)
5630 (uri (string-append
5631 "https://github.com/aki2o/log4e/archive/v"
5632 version ".tar.gz"))
5633 (file-name (string-append name "-" version ".tar.gz"))
5634 (sha256
5635 (base32
5636 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5637 (build-system emacs-build-system)
5638 (arguments
5639 `(#:phases
5640 (modify-phases %standard-phases
5641 (add-after 'unpack 'remove-tests
5642 ;; Guile builder complains about null characters in some
5643 ;; strings of test files. Remove "test" directory (it is not
5644 ;; needed anyway).
5645 (lambda _
5646 (delete-file-recursively "test"))))))
5647 (home-page "https://github.com/aki2o/log4e")
5648 (synopsis "Logging framework for elisp")
5649 (description
5650 "This package provides a logging framework for elisp. It allows
5651 you to deal with multiple log levels.")
5652 (license license:gpl3+)))
5653
5654 (define-public emacs-gntp
5655 (package
5656 (name "emacs-gntp")
5657 (version "0.1")
5658 (source
5659 (origin
5660 (method url-fetch)
5661 (uri (string-append
5662 "https://github.com/tekai/gntp.el/archive/v"
5663 version ".tar.gz"))
5664 (file-name (string-append name "-" version ".tar.gz"))
5665 (sha256
5666 (base32
5667 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5668 (build-system emacs-build-system)
5669 (home-page "https://github.com/tekai/gntp.el")
5670 (synopsis "Growl Notification Protocol for Emacs")
5671 (description
5672 "This package implements the Growl Notification Protocol GNTP
5673 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5674 It is incomplete as it only lets you send but not receive
5675 notifications.")
5676 (license license:bsd-3)))
5677
5678 (define-public emacs-alert
5679 (package
5680 (name "emacs-alert")
5681 (version "1.2")
5682 (source
5683 (origin
5684 (method url-fetch)
5685 (uri (string-append
5686 "https://github.com/jwiegley/alert/archive/v"
5687 version ".tar.gz"))
5688 (file-name (string-append name "-" version ".tar.gz"))
5689 (sha256
5690 (base32
5691 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5692 (build-system emacs-build-system)
5693 (propagated-inputs
5694 `(("emacs-gntp" ,emacs-gntp)
5695 ("emacs-log4e" ,emacs-log4e)))
5696 (home-page "https://github.com/jwiegley/alert")
5697 (synopsis "Growl-style notification system for Emacs")
5698 (description
5699 "Alert is a Growl-workalike for Emacs which uses a common notification
5700 interface and multiple, selectable \"styles\", whose use is fully
5701 customizable by the user.")
5702 (license license:gpl2+)))
5703
5704 (define-public emacs-mu4e-alert
5705 (package
5706 (name "emacs-mu4e-alert")
5707 (version "1.0")
5708 (source
5709 (origin
5710 (method url-fetch)
5711 (uri (string-append
5712 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5713 version ".tar.gz"))
5714 (file-name (string-append name "-" version ".tar.gz"))
5715 (sha256
5716 (base32
5717 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
5718 (build-system emacs-build-system)
5719 (propagated-inputs
5720 `(("emacs-alert" ,emacs-alert)
5721 ("emacs-s" ,emacs-s)
5722 ("emacs-ht" ,emacs-ht)
5723 ("mu" ,mu)))
5724 (home-page "https://github.com/iqbalansari/mu4e-alert")
5725 (synopsis "Desktop notification for mu4e")
5726 (description
5727 "This package provides desktop notifications for mu4e.
5728 Additionally it can display the number of unread emails in the
5729 mode-line.")
5730 (license license:gpl3+)))
5731
5732 (define-public emacs-pretty-mode
5733 (package
5734 (name "emacs-pretty-mode")
5735 (version "2.0.3")
5736 (source
5737 (origin
5738 (method url-fetch)
5739 (uri (string-append "https://github.com/akatov/pretty-mode/"
5740 "archive/" version ".tar.gz"))
5741 (file-name (string-append name "-" version ".tar.gz"))
5742 (sha256
5743 (base32
5744 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5745 (build-system emacs-build-system)
5746 (home-page "https://github.com/akatov/pretty-mode")
5747 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5748 (description
5749 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5750 (license license:gpl3+)))
5751
5752 (define-public emacs-yasnippet
5753 (package
5754 (name "emacs-yasnippet")
5755 (version "0.13.0")
5756 (source (origin
5757 (method url-fetch)
5758 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5759 "archive/" version ".tar.gz"))
5760 (file-name (string-append name "-" version ".tar.gz"))
5761 (sha256
5762 (base32
5763 "12ls2x17agzbrj1xynjbmfa11igqxia4hj4fv6fpr66yci2r1plc"))
5764 (modules '((guix build utils)))
5765 (snippet
5766 '(begin
5767 ;; YASnippet expects a "snippets" subdirectory in the same
5768 ;; directory as yasnippet.el, but we don't install it
5769 ;; because it's a git submodule pointing to an external
5770 ;; repository. Adjust `yas-snippet-dirs' to prevent
5771 ;; warnings about a missing directory.
5772 (substitute* "yasnippet.el"
5773 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5774 "))\n"))
5775 #t))))
5776 (build-system emacs-build-system)
5777 (home-page "https://github.com/joaotavora/yasnippet")
5778 (synopsis "Yet another snippet extension for Emacs")
5779 (description
5780 "YASnippet is a template system for Emacs. It allows you to type an
5781 abbreviation and automatically expand it into function templates.")
5782 (license license:gpl3+)))
5783
5784 (define-public emacs-yasnippet-snippets
5785 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5786 (revision "1"))
5787 (package
5788 (name "emacs-yasnippet-snippets")
5789 (version (string-append "1-" revision "." (string-take commit 8)))
5790 (source
5791 (origin
5792 (method git-fetch)
5793 (uri (git-reference
5794 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5795 (commit commit)))
5796 (file-name (string-append name "-" version "-checkout"))
5797 (sha256
5798 (base32
5799 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5800 (build-system trivial-build-system)
5801 (arguments
5802 `(#:modules ((ice-9 ftw)
5803 (ice-9 regex)
5804 (guix build utils))
5805 #:builder
5806 (begin
5807 (use-modules (ice-9 ftw)
5808 (ice-9 regex)
5809 (guix build utils))
5810 (with-directory-excursion (assoc-ref %build-inputs "source")
5811 (for-each (lambda (dir)
5812 (copy-recursively
5813 dir
5814 (string-append %output
5815 "/share/emacs/yasnippet-snippets/"
5816 dir)))
5817 (scandir "." (lambda (fname)
5818 (and (string-match "-mode$" fname)
5819 (directory-exists? fname))))))
5820 #t)))
5821 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5822 (synopsis "Collection of YASnippet snippets for many languages")
5823 (description
5824 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5825 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5826 To make YASnippet aware of these snippets, add the above directory to
5827 @code{yas-snippet-dirs}.")
5828 (license license:expat))))
5829
5830 (define-public emacs-helm-c-yasnippet
5831 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5832 (revision "1"))
5833 (package
5834 (name "emacs-helm-c-yasnippet")
5835 (version (string-append "0.6.7" "-" revision "."
5836 (string-take commit 7)))
5837 (source (origin
5838 (method git-fetch)
5839 (uri (git-reference
5840 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5841 (commit commit)))
5842 (file-name (string-append name "-" version "-checkout"))
5843 (sha256
5844 (base32
5845 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5846 (build-system emacs-build-system)
5847 (propagated-inputs
5848 `(("emacs-helm" ,emacs-helm)
5849 ("emacs-yasnippet" ,emacs-yasnippet)))
5850 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5851 (synopsis "Helm integration for Yasnippet")
5852 (description "This Emacs library provides Helm interface for
5853 Yasnippet.")
5854 (license license:gpl2+))))
5855
5856 (define-public emacs-helm-system-packages
5857 (package
5858 (name "emacs-helm-system-packages")
5859 (version "1.10.1")
5860 (source (origin
5861 (method git-fetch)
5862 (uri (git-reference
5863 (url "https://github.com/emacs-helm/helm-system-packages")
5864 (commit (string-append "v" version))))
5865 (file-name (string-append name "-" version "-checkout"))
5866 (sha256
5867 (base32
5868 "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f"))))
5869 (build-system emacs-build-system)
5870 (inputs
5871 `(("recutils" ,recutils)))
5872 (propagated-inputs
5873 `(("emacs-helm" ,emacs-helm)))
5874 (arguments
5875 `(#:phases
5876 (modify-phases %standard-phases
5877 (add-after 'unpack 'configure
5878 (lambda* (#:key inputs outputs #:allow-other-keys)
5879 (let ((recutils (assoc-ref inputs "recutils")))
5880 ;; Specify the absolute file names of the various
5881 ;; programs so that everything works out-of-the-box.
5882 (substitute* "helm-system-packages-guix.el"
5883 (("recsel") (string-append recutils "/bin/recsel")))))))))
5884 (home-page "https://github.com/emacs-helm/helm-system-packages")
5885 (synopsis "Helm System Packages is an interface to your package manager")
5886 (description "List all available packages in Helm (with installed
5887 packages displayed in their own respective face). Fuzzy-search, mark and
5888 execute the desired action over any selections of packages: Install,
5889 uninstall, display packages details (in Org Mode) or insert details at point,
5890 find files owned by packages... And much more, including performing all the
5891 above over the network.")
5892 (license license:gpl3+)))
5893
5894 (define-public emacs-memoize
5895 (package
5896 (name "emacs-memoize")
5897 (version "1.1")
5898 (source
5899 (origin
5900 (method url-fetch)
5901 (uri (string-append
5902 "https://github.com/skeeto/emacs-memoize/archive/"
5903 version ".tar.gz"))
5904 (file-name (string-append name "-" version ".tar.gz"))
5905 (sha256
5906 (base32
5907 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
5908 (build-system emacs-build-system)
5909 (arguments
5910 `(#:tests? #t
5911 #:test-command '("emacs" "--batch"
5912 "-l" "memoize-test.el"
5913 "-f" "ert-run-tests-batch-and-exit")))
5914 (home-page "https://github.com/skeeto/emacs-memoize")
5915 (synopsis "Emacs lisp memoization library")
5916 (description "@code{emacs-memoize} is an Emacs library for
5917 memoizing functions.")
5918 (license license:unlicense)))
5919
5920 (define-public emacs-linum-relative
5921 (package
5922 (name "emacs-linum-relative")
5923 (version "0.5")
5924 (source
5925 (origin
5926 (method url-fetch)
5927 (uri (string-append
5928 "https://github.com/coldnew/linum-relative/archive/"
5929 version ".tar.gz"))
5930 (file-name (string-append name "-" version ".tar.gz"))
5931 (sha256
5932 (base32
5933 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5934 (build-system emacs-build-system)
5935 (home-page "https://github.com/coldnew/linum-relative")
5936 (synopsis "Relative line numbering for Emacs")
5937 (description "@code{emacs-linum-relative} displays the relative line
5938 number on the left margin in Emacs.")
5939 (license license:gpl2+)))
5940
5941 (define-public emacs-idle-highlight
5942 (package
5943 (name "emacs-idle-highlight")
5944 (version "1.1.3")
5945 (source
5946 (origin
5947 (method url-fetch)
5948 (uri (string-append
5949 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5950 version ".tar.gz"))
5951 (file-name (string-append name "-" version ".tar.gz"))
5952 (sha256
5953 (base32
5954 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5955 (build-system emacs-build-system)
5956 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5957 (synopsis "Highlights all occurrences of the word the point is on")
5958 (description
5959 "This Emacs package provides @code{idle-highlight-mode} that sets
5960 an idle timer to highlight all occurrences in the buffer of the word under
5961 the point.")
5962 (license license:gpl3+)))
5963
5964 (define-public emacs-ox-twbs
5965 (package
5966 (name "emacs-ox-twbs")
5967 (version "1.1.1")
5968 (source
5969 (origin
5970 (method url-fetch)
5971 (uri (string-append
5972 "https://github.com/marsmining/ox-twbs/archive/v"
5973 version ".tar.gz"))
5974 (file-name (string-append name "-" version ".tar.gz"))
5975 (sha256
5976 (base32
5977 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5978 (build-system emacs-build-system)
5979 (home-page "https://github.com/marsmining/ox-twbs")
5980 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5981 (description
5982 "This Emacs package outputs your org-mode docs with a simple, clean and
5983 modern look. It implements a new HTML back-end for exporting org-mode docs as
5984 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5985 jQuery and Bootstrap resources included via osscdn.")
5986 (license license:gpl3+)))
5987
5988 (define-public emacs-highlight-sexp
5989 (package
5990 (name "emacs-highlight-sexp")
5991 (version "1.0")
5992 (source
5993 (origin
5994 (method url-fetch)
5995 (uri (string-append
5996 "https://github.com/daimrod/highlight-sexp/archive/v"
5997 version ".tar.gz"))
5998 (file-name (string-append name "-" version ".tar.gz"))
5999 (sha256
6000 (base32
6001 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
6002 (build-system emacs-build-system)
6003 (home-page "https://github.com/daimrod/highlight-sexp")
6004 (synopsis "Minor mode that highlights the s-exp at the current position")
6005 (description
6006 "This Emacs package highlights the s-exp at the current position.")
6007 (license license:gpl3+)))
6008
6009 (define-public emacs-highlight-stages
6010 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
6011 (revision "1"))
6012 (package
6013 (name "emacs-highlight-stages")
6014 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
6015 (source
6016 (origin
6017 (method git-fetch)
6018 (uri (git-reference
6019 (url "https://github.com/zk-phi/highlight-stages.git")
6020 (commit commit)))
6021 (file-name (string-append name "-" version "-checkout"))
6022 (sha256
6023 (base32
6024 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
6025 (patches
6026 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
6027 (build-system emacs-build-system)
6028 (home-page "https://github.com/wigust/highlight-stages")
6029 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
6030 (description "@code{highlight-stages} provides an Emacs minor mode that
6031 highlights quasi-quoted expressions.")
6032 (license license:gpl3+))))
6033
6034 (define-public emacspeak
6035 (package
6036 (name "emacspeak")
6037 (version "49.0")
6038 (source
6039 (origin
6040 (method url-fetch)
6041 (uri (string-append
6042 "https://github.com/tvraman/emacspeak/releases/download/"
6043 version "/emacspeak-" version ".tar.bz2"))
6044 (sha256
6045 (base32
6046 "1smf26m7201z0bk49lzbw9zhbjfi6wylidfjixb8ylp6g0wnh8dx"))))
6047 (build-system gnu-build-system)
6048 (arguments
6049 '(#:make-flags (list (string-append "prefix="
6050 (assoc-ref %outputs "out")))
6051 #:phases
6052 (modify-phases %standard-phases
6053 (replace 'configure
6054 (lambda* (#:key outputs #:allow-other-keys)
6055 (let* ((out (assoc-ref outputs "out"))
6056 (lisp (string-append out
6057 "/share/emacs/site-lisp/emacspeak")))
6058 (setenv "SHELL" (which "sh"))
6059 ;; Configure Emacspeak according to etc/install.org.
6060 (invoke "make" "config"))))
6061 (add-after 'build 'build-espeak
6062 (lambda _
6063 (invoke "make" "espeak")))
6064 (replace 'install
6065 (lambda* (#:key inputs outputs #:allow-other-keys)
6066 (let* ((out (assoc-ref outputs "out"))
6067 (bin (string-append out "/bin"))
6068 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
6069 (info (string-append out "/share/info"))
6070 (emacs (string-append (assoc-ref inputs "emacs")
6071 "/bin/emacs")))
6072 ;; According to etc/install.org, the Emacspeak directory should
6073 ;; be copied to its installation destination.
6074 (for-each
6075 (lambda (file)
6076 (copy-recursively file (string-append lisp "/" file)))
6077 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
6078 "stumpwm" "xsl"))
6079 ;; Make sure emacspeak is loaded from the correct directory.
6080 (substitute* "etc/emacspeak.sh"
6081 (("/lisp/emacspeak-setup.el")
6082 (string-append lisp "/lisp/emacspeak-setup.el")))
6083 ;; Install the convenient startup script.
6084 (mkdir-p bin)
6085 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
6086 #t))
6087 (add-after 'install 'wrap-program
6088 (lambda* (#:key inputs outputs #:allow-other-keys)
6089 (let* ((out (assoc-ref outputs "out"))
6090 (emacspeak (string-append out "/bin/emacspeak"))
6091 (espeak (string-append (assoc-ref inputs "espeak")
6092 "/bin/espeak")))
6093 ;; The environment variable DTK_PROGRAM tells emacspeak what
6094 ;; program to use for speech.
6095 (wrap-program emacspeak
6096 `("DTK_PROGRAM" ":" prefix (,espeak)))
6097 #t))))
6098 #:tests? #f)) ; no check target
6099 (inputs
6100 `(("emacs" ,emacs)
6101 ("espeak" ,espeak)
6102 ("perl" ,perl)
6103 ("tcl" ,tcl)
6104 ("tclx" ,tclx)))
6105 (home-page "http://emacspeak.sourceforge.net")
6106 (synopsis "Audio desktop interface for Emacs")
6107 (description
6108 "Emacspeak is a speech interface that allows visually impaired users to
6109 interact independently and efficiently with the computer. Audio formatting
6110 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
6111 allows Emacspeak to produce rich aural presentations of electronic information.
6112 By seamlessly blending all aspects of the Internet such as Web-surfing and
6113 messaging, Emacspeak speech-enables local and remote information via a
6114 consistent and well-integrated user interface.")
6115 (license license:gpl2+)))
6116
6117 (define-public emacs-adaptive-wrap
6118 (package
6119 (name "emacs-adaptive-wrap")
6120 (version "0.5.1")
6121 (source (origin
6122 (method url-fetch)
6123 (uri (string-append
6124 "http://elpa.gnu.org/packages/adaptive-wrap-"
6125 version ".el"))
6126 (sha256
6127 (base32
6128 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
6129 (build-system emacs-build-system)
6130 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
6131 (synopsis "Smart line-wrapping with wrap-prefix")
6132 (description
6133 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
6134 minor mode which sets the wrap-prefix property on the fly so that
6135 single-long-line paragraphs get word-wrapped in a way similar to what
6136 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
6137 actually changing the buffer's text.")
6138 (license license:gpl3+)))
6139
6140 (define-public emacs-diff-hl
6141 (package
6142 (name "emacs-diff-hl")
6143 (version "1.8.5")
6144 (source
6145 (origin
6146 (method url-fetch)
6147 (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
6148 version ".tar"))
6149 (sha256
6150 (base32
6151 "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
6152 (build-system emacs-build-system)
6153 (home-page "https://github.com/dgutov/diff-hl")
6154 (synopsis
6155 "Highlight uncommitted changes using VC")
6156 (description
6157 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
6158 window (using the fringe, by default), allows you to jump between
6159 the hunks and revert them selectively.")
6160 (license license:gpl3+)))
6161
6162 (define-public emacs-diminish
6163 (package
6164 (name "emacs-diminish")
6165 (version "0.45")
6166 (source
6167 (origin
6168 (method url-fetch)
6169 (uri (string-append
6170 "https://github.com/myrjola/diminish.el/archive/v"
6171 version ".tar.gz"))
6172 (file-name (string-append name "-" version ".tar.gz"))
6173 (sha256
6174 (base32
6175 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
6176 (build-system emacs-build-system)
6177 (home-page "https://github.com/myrjola/diminish.el")
6178 (synopsis "Diminish minor modes with no modeline display")
6179 (description "@code{emacs-diminish} implements hiding or
6180 abbreviation of the mode line displays (lighters) of minor modes.")
6181 (license license:gpl2+)))
6182
6183 (define-public emacs-use-package
6184 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
6185 (revision "1"))
6186 (package
6187 (name "emacs-use-package")
6188 (version (git-version "2.3" revision commit))
6189 (source (origin
6190 (method git-fetch)
6191 (uri (git-reference
6192 (url "https://github.com/jwiegley/use-package")
6193 (commit commit)))
6194 (file-name (git-file-name name version))
6195 (sha256
6196 (base32
6197 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
6198 (build-system emacs-build-system)
6199 (propagated-inputs
6200 `(("emacs-diminish" ,emacs-diminish)))
6201 (arguments
6202 `(#:tests? #t
6203 #:test-command '("emacs" "--batch"
6204 "-l" "use-package-tests.el"
6205 "-f" "ert-run-tests-batch-and-exit")))
6206 (home-page "https://github.com/jwiegley/use-package")
6207 (synopsis "Declaration for simplifying your .emacs")
6208 (description "The use-package macro allows you to isolate package
6209 configuration in your @file{.emacs} file in a way that is both
6210 performance-oriented and tidy.")
6211 (license license:gpl2+))))
6212
6213 (define-public emacs-strace-mode
6214 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
6215 (revision "1"))
6216 (package
6217 (name "emacs-strace-mode")
6218 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
6219 (source (origin
6220 (method git-fetch)
6221 (uri (git-reference
6222 (url "https://github.com/pkmoore/strace-mode")
6223 (commit commit)))
6224 (file-name (string-append name "-" version "-checkout"))
6225 (sha256
6226 (base32
6227 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
6228 (build-system emacs-build-system)
6229 (home-page "https://github.com/pkmoore/strace-mode")
6230 (synopsis "Emacs major mode to highlight strace outputs")
6231 (description "@code{emacs-strace-mode} provides an Emacs major mode
6232 highlighting strace outputs.")
6233 (license license:gpl3+))))
6234
6235 (define-public emacs-default-encrypt
6236 (package
6237 (name "emacs-default-encrypt")
6238 (version "4.3")
6239 (source
6240 (origin
6241 (method url-fetch)
6242 (uri (string-append
6243 "https://www.informationelle-selbstbestimmung-im-internet.de"
6244 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
6245 (file-name (string-append "jl-encrypt-" version ".el"))
6246 (sha256
6247 (base32
6248 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6249 (build-system emacs-build-system)
6250 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6251 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6252 (description
6253 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6254 automatically encrypts messages that you send (e.g., email) when public keys
6255 for all recipients are available, and it protects you from accidentally
6256 sending un-encrypted messages. It can also be configured to automatically
6257 sign messages that you send. For details and instructions on how to use
6258 DefaultEncrypt, please refer to the home page or read the comments in the
6259 source file, @file{jl-encrypt.el}.")
6260 (license license:gpl3+)))
6261
6262 (define-public emacs-htmlize
6263 (package
6264 (name "emacs-htmlize")
6265 (version "1.53")
6266 (source
6267 (origin
6268 (method url-fetch)
6269 (uri (string-append
6270 "https://github.com/hniksic/emacs-htmlize/archive/release/"
6271 version ".tar.gz"))
6272 (file-name (string-append name "-" version ".tar.gz"))
6273 (sha256
6274 (base32
6275 "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
6276 (build-system emacs-build-system)
6277 (home-page "https://github.com/hniksic/emacs-htmlize")
6278 (synopsis "Convert buffer text and decorations to HTML")
6279 (description "@code{emacs-htmlize} converts the buffer text and
6280 the associated decorations to HTML. Output to CSS, inline CSS and
6281 fonts is supported.")
6282 (license license:gpl2+)))
6283
6284 (define-public emacs-xmlgen
6285 (package
6286 (name "emacs-xmlgen")
6287 (version "0.5")
6288 (source
6289 (origin
6290 (method url-fetch)
6291 (uri (string-append
6292 "https://github.com/philjackson/xmlgen/archive/"
6293 version ".tar.gz"))
6294 (file-name (string-append name "-" version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
6298 (build-system emacs-build-system)
6299 (arguments
6300 `(#:tests? #t
6301 #:test-command '("emacs" "--batch"
6302 "-l" "xmlgen-test.el"
6303 "-f" "ert-run-tests-batch-and-exit")))
6304 (home-page "https://github.com/philjackson/xmlgen")
6305 (synopsis "S-expression to XML domain specific language (DSL) in
6306 Emacs Lisp")
6307 (description "@code{emacs-xmlgen} provides S-expression to XML
6308 conversion for Emacs Lisp.")
6309 (license license:gpl2+)))
6310
6311 (define-public emacs-cdlatex
6312 (package
6313 (name "emacs-cdlatex")
6314 (version "4.7")
6315 (source
6316 (origin
6317 (method url-fetch)
6318 (uri (string-append
6319 "https://github.com/cdominik/cdlatex/archive/"
6320 version ".tar.gz"))
6321 (file-name (string-append name "-" version ".tar.gz"))
6322 (sha256
6323 (base32
6324 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
6325 (build-system emacs-build-system)
6326 (propagated-inputs
6327 `(("emacs-auctex" ,emacs-auctex)))
6328 (home-page "https://github.com/cdominik/cdlatex")
6329 (synopsis "Fast Emacs input methods for LaTeX environments and
6330 math")
6331 (description "CDLaTeX is an Emacs minor mode supporting fast
6332 insertion of environment templates and math in LaTeX. Similar
6333 commands are also offered as part of the AUCTeX package, but it is not
6334 the same - CDLaTeX focuses on speediness for inserting LaTeX
6335 constructs.")
6336 (license license:gpl3+)))
6337
6338 (define-public emacs-cnfonts
6339 (package
6340 (name "emacs-cnfonts")
6341 (version "0.9.1")
6342 (source (origin
6343 (method url-fetch)
6344 (uri (string-append
6345 "https://github.com/tumashu/cnfonts/archive/v"
6346 version ".tar.gz"))
6347 (file-name (string-append name "-" version ".tar.gz"))
6348 (sha256
6349 (base32
6350 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
6351 (build-system emacs-build-system)
6352 (home-page "https://github.com/tumashu/cnfonts")
6353 (synopsis "Emacs Chinese fonts setup tool")
6354 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6355 configuration of Chinese fonts.")
6356 (license license:gpl2+)))
6357
6358 (define-public emacs-php-mode
6359 (package
6360 (name "emacs-php-mode")
6361 (version "20171225.342")
6362 (source (origin
6363 (method url-fetch)
6364 (uri (string-append
6365 "https://melpa.org/packages/php-mode-"
6366 version ".tar"))
6367 (sha256
6368 (base32
6369 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6370 (build-system emacs-build-system)
6371 (home-page "https://github.com/ejmr/php-mode")
6372 (synopsis "Major mode for editing PHP code")
6373 (description "@code{php-mode} is a major mode for editing PHP source
6374 code. It's an extension of C mode; thus it inherits all C mode's navigation
6375 functionality. But it colors according to the PHP grammar and indents
6376 according to the PEAR coding guidelines. It also includes a couple handy
6377 IDE-type features such as documentation search and a source and class
6378 browser.")
6379 (license license:gpl3+)))
6380
6381 (define-public emacs-pos-tip
6382 (package
6383 (name "emacs-pos-tip")
6384 (version "0.4.6")
6385 (source (origin
6386 (method url-fetch)
6387 (uri (string-append
6388 "https://github.com/pitkali/pos-tip/archive/"
6389 version ".tar.gz"))
6390 (file-name (string-append name "-" version ".tar.gz"))
6391 (sha256
6392 (base32
6393 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
6394 (build-system emacs-build-system)
6395 ;; The following functions and variables needed by emacs-pos-tip are
6396 ;; not included in emacs-minimal:
6397 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6398 (arguments `(#:emacs ,emacs))
6399 (home-page "https://github.com/pitkali/pos-tip")
6400 (synopsis "Show tooltip at point")
6401 (description "The standard library tooltip.el provides a function for
6402 displaying a tooltip at the mouse position. However, locating a tooltip at an
6403 arbitrary buffer position in a window is not easy. Pos-tip provides such a
6404 function to be used by other frontend programs.")
6405 (license license:gpl2+)))
6406
6407 (define-public emacs-pyim-basedict
6408 (package
6409 (name "emacs-pyim-basedict")
6410 (version "0.3.1")
6411 (source (origin
6412 (method url-fetch)
6413 (uri (string-append
6414 "https://github.com/tumashu/pyim-basedict/archive/v"
6415 version ".tar.gz"))
6416 (file-name (string-append name "-" version ".tar.gz"))
6417 (sha256
6418 (base32
6419 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
6420 (build-system emacs-build-system)
6421 (home-page "https://github.com/tumashu/pyim-basedict")
6422 (synopsis "Input method dictionary of pyim")
6423 (description "Pyim-basedict is the default pinyin input method dictionary,
6424 containing words from the rime project.")
6425 (license license:gpl2+)))
6426
6427 (define-public emacs-pyim
6428 (package
6429 (name "emacs-pyim")
6430 (version "1.8")
6431 (source
6432 (origin
6433 (method git-fetch)
6434 (uri (git-reference
6435 (url "https://github.com/tumashu/pyim")
6436 (commit (string-append "v" version))))
6437 (file-name (git-file-name name version))
6438 (sha256
6439 (base32
6440 "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9"))))
6441 (build-system emacs-build-system)
6442 (propagated-inputs
6443 `(("emacs-async" ,emacs-async)
6444 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
6445 ("emacs-popup" ,emacs-popup)
6446 ("emacs-posframe" ,emacs-posframe)))
6447 (home-page "https://github.com/tumashu/pyim")
6448 (synopsis "Chinese input method")
6449 (description "Chinese input method which supports quanpin, shuangpin, wubi
6450 and cangjie.")
6451 (license license:gpl2+)))
6452
6453 (define-public emacs-posframe
6454 (package
6455 (name "emacs-posframe")
6456 (version "0.4.2")
6457 (source
6458 (origin
6459 (method url-fetch)
6460 (uri (string-append
6461 "https://elpa.gnu.org/packages/posframe-" version ".el"))
6462 (sha256
6463 (base32
6464 "1h8vvxvsg41vc1nnglqjs2q0k1yzfsn72skga9s76qa3zxmx6kds"))))
6465 (build-system emacs-build-system)
6466 ;; emacs-minimal does not include the function font-info
6467 (arguments `(#:emacs ,emacs))
6468 (home-page "https://github.com/tumashu/posframe")
6469 (synopsis "Pop a posframe (a child frame) at point")
6470 (description "@code{emacs-posframe} can pop a posframe at point. A
6471 posframe is a child frame displayed within its root window's buffer.
6472 @code{emacs-posframe} is fast and works well with CJK languages.")
6473 (license license:gpl3+)))
6474
6475 (define-public emacs-el2org
6476 (package
6477 (name "emacs-el2org")
6478 (version "0.6.0")
6479 (source (origin
6480 (method url-fetch)
6481 (uri (string-append
6482 "https://github.com/tumashu/el2org/archive/v"
6483 version ".tar.gz"))
6484 (file-name (string-append name "-" version ".tar.gz"))
6485 (sha256
6486 (base32
6487 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
6488 (build-system emacs-build-system)
6489 (home-page "https://github.com/tumashu/el2org")
6490 (synopsis "Convert Emacs-lisp file to org file")
6491 (description "El2org is a simple tool, which can convert Emacs-lisp file
6492 to org file, you can use this tool to write orgify commentary.")
6493 (license license:gpl2+)))
6494
6495 (define-public emacs-mustache
6496 (package
6497 (name "emacs-mustache")
6498 (version "0.23")
6499 (source (origin
6500 (method url-fetch)
6501 (uri (string-append
6502 "https://github.com/Wilfred/mustache.el/archive/"
6503 version ".tar.gz"))
6504 (file-name (string-append name "-" version ".tar.gz"))
6505 (sha256
6506 (base32
6507 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
6508 (build-system emacs-build-system)
6509 (propagated-inputs
6510 `(("emacs-dash" ,emacs-dash)
6511 ("emacs-ht" ,emacs-ht)
6512 ("emacs-s" ,emacs-s)))
6513 (home-page "https://github.com/Wilfred/mustache.el")
6514 (synopsis "Mustache templating library for Emacs")
6515 (description "Mustache templating library for Emacs, mustache is
6516 a simple web template system, which is described as a logic-less system
6517 because it lacks any explicit control flow statements, both looping and
6518 conditional evaluation can be achieved using section tags processing lists
6519 and lambdas.")
6520 (license license:gpl3+)))
6521
6522 (define-public emacs-org2web
6523 (package
6524 (name "emacs-org2web")
6525 (version "0.9.1")
6526 (source (origin
6527 (method url-fetch)
6528 (uri (string-append
6529 "https://github.com/tumashu/org2web/archive/v"
6530 version ".tar.gz"))
6531 (file-name (string-append name "-" version ".tar.gz"))
6532 (sha256
6533 (base32
6534 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
6535 (build-system emacs-build-system)
6536 (propagated-inputs
6537 `(("emacs-dash" ,emacs-dash)
6538 ("emacs-el2org" ,emacs-el2org)
6539 ("emacs-ht" ,emacs-ht)
6540 ("emacs-mustache" ,emacs-mustache)
6541 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6542 (home-page "https://github.com/tumashu/org2web")
6543 (synopsis "Static site generator based on org-mode ")
6544 (description "Org2web is a static site generator based on org-mode,
6545 which code derived from Kelvin H's org-page.")
6546 (license license:gpl2+)))
6547
6548 (define-public emacs-xelb
6549 (package
6550 (name "emacs-xelb")
6551 (version "0.17")
6552 (source (origin
6553 (method url-fetch)
6554 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6555 version ".tar"))
6556 (sha256
6557 (base32
6558 "0k98580vq253fjdgklgqlwl450saninfw39fbq8lv3xsnp3dcgml"))))
6559 (build-system emacs-build-system)
6560 ;; The following functions and variables needed by emacs-xelb are
6561 ;; not included in emacs-minimal:
6562 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6563 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6564 ;; x-display-pixel-width, x-display-pixel-height
6565 (arguments
6566 `(#:emacs ,emacs
6567 #:phases
6568 (modify-phases %standard-phases
6569 (add-after 'unpack 'regenerate-el-files
6570 (lambda* (#:key inputs #:allow-other-keys)
6571 (invoke "make"
6572 (string-append "PROTO_PATH="
6573 (assoc-ref inputs "xcb-proto")
6574 "/share/xcb")
6575 (string-append "EMACS_BIN="
6576 (assoc-ref inputs "emacs")
6577 "/bin/emacs -Q")))))))
6578 (native-inputs `(("xcb-proto" ,xcb-proto)))
6579 (home-page "https://github.com/ch11ng/xelb")
6580 (synopsis "X protocol Emacs Lisp binding")
6581 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6582 X11 protocol based on the XML description files from the XCB project. It
6583 features an object-oriented API and permits a certain degree of concurrency.
6584 It should enable you to implement low-level X11 applications.")
6585 (license license:gpl3+)))
6586
6587 (define-public emacs-exwm
6588 (package
6589 (name "emacs-exwm")
6590 (version "0.22")
6591 (synopsis "Emacs X window manager")
6592 (source (origin
6593 (method url-fetch)
6594 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6595 version ".tar"))
6596 (sha256
6597 (base32
6598 "0lppm8ng37i5s4x7xdrxhjbdcnpl6pyvn4g7w52zbckjsn8qnqh0"))))
6599 (build-system emacs-build-system)
6600 (propagated-inputs
6601 `(("emacs-xelb" ,emacs-xelb)))
6602 (inputs
6603 `(("xhost" ,xhost)
6604 ("dbus" ,dbus)))
6605 ;; The following functions and variables needed by emacs-exwm are
6606 ;; not included in emacs-minimal:
6607 ;; scroll-bar-mode, fringe-mode
6608 ;; x-display-pixel-width, x-display-pixel-height
6609 (arguments
6610 `(#:emacs ,emacs
6611 #:phases
6612 (modify-phases %standard-phases
6613 (add-after 'build 'install-xsession
6614 (lambda* (#:key inputs outputs #:allow-other-keys)
6615 (let* ((out (assoc-ref outputs "out"))
6616 (xsessions (string-append out "/share/xsessions"))
6617 (bin (string-append out "/bin"))
6618 (exwm-executable (string-append bin "/exwm")))
6619 ;; Add a .desktop file to xsessions
6620 (mkdir-p xsessions)
6621 (mkdir-p bin)
6622 (with-output-to-file
6623 (string-append xsessions "/exwm.desktop")
6624 (lambda _
6625 (format #t "[Desktop Entry]~@
6626 Name=~a~@
6627 Comment=~a~@
6628 Exec=~a~@
6629 TryExec=~@*~a~@
6630 Type=Application~%" ,name ,synopsis exwm-executable)))
6631 ;; Add a shell wrapper to bin
6632 (with-output-to-file exwm-executable
6633 (lambda _
6634 (format #t "#!~a ~@
6635 ~a +SI:localuser:$USER ~@
6636 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6637 (string-append (assoc-ref inputs "bash") "/bin/sh")
6638 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6639 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6640 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6641 '(cond
6642 ((file-exists-p "~/.exwm")
6643 (load-file "~/.exwm"))
6644 ((not (featurep 'exwm))
6645 (require 'exwm)
6646 (require 'exwm-config)
6647 (exwm-config-default)
6648 (message (concat "exwm configuration not found. "
6649 "Falling back to default configuration...")))))))
6650 (chmod exwm-executable #o555)
6651 #t))))))
6652 (home-page "https://github.com/ch11ng/exwm")
6653 (description "EXWM is a full-featured tiling X window manager for Emacs
6654 built on top of XELB.")
6655 (license license:gpl3+)))
6656
6657 (define-public emacs-switch-window
6658 (package
6659 (name "emacs-switch-window")
6660 (version "1.6.2")
6661 (source
6662 (origin
6663 (method git-fetch)
6664 (uri (git-reference
6665 (url "https://github.com/dimitri/switch-window")
6666 (commit (string-append "v" version))))
6667 (file-name (git-file-name name version))
6668 (sha256
6669 (base32
6670 "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"))))
6671 (build-system emacs-build-system)
6672 (home-page "https://github.com/dimitri/switch-window")
6673 (synopsis "Emacs window switch tool")
6674 (description "Switch-window is an emacs window switch tool, which
6675 offer a visual way to choose a window to switch to, delete, split or
6676 other operations.")
6677 (license license:wtfpl2)))
6678
6679 (define-public emacs-exwm-x
6680 (package
6681 (name "emacs-exwm-x")
6682 (version "1.9.0")
6683 (synopsis "Derivative window manager based on EXWM")
6684 (source
6685 (origin
6686 (method git-fetch)
6687 (uri (git-reference
6688 (url "https://github.com/tumashu/exwm-x")
6689 (commit (string-append "v" version))))
6690 (file-name (git-file-name name version))
6691 (sha256
6692 (base32
6693 "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4"))))
6694 (build-system emacs-build-system)
6695 (propagated-inputs
6696 `(("emacs-exwm" ,emacs-exwm)
6697 ("emacs-switch-window" ,emacs-switch-window)
6698 ("emacs-ivy" ,emacs-ivy)
6699 ("emacs-use-package" ,emacs-use-package)))
6700 (inputs
6701 `(("xhost" ,xhost)
6702 ("dbus" ,dbus)))
6703 ;; Need emacs instead of emacs-minimal,
6704 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6705 (arguments
6706 `(#:emacs ,emacs
6707 #:phases
6708 (modify-phases %standard-phases
6709 (add-after 'build 'install-xsession
6710 (lambda* (#:key inputs outputs #:allow-other-keys)
6711 (let* ((out (assoc-ref outputs "out"))
6712 (xsessions (string-append out "/share/xsessions"))
6713 (bin (string-append out "/bin"))
6714 (exwm-executable (string-append bin "/exwm-x")))
6715 ;; Add a .desktop file to xsessions
6716 (mkdir-p xsessions)
6717 (mkdir-p bin)
6718 (with-output-to-file
6719 (string-append xsessions "/exwm-x.desktop")
6720 (lambda _
6721 (format #t "[Desktop Entry]~@
6722 Name=~a~@
6723 Comment=~a~@
6724 Exec=~a~@
6725 TryExec=~@*~a~@
6726 Type=Application~%" ,name ,synopsis exwm-executable)))
6727 ;; Add a shell wrapper to bin
6728 (with-output-to-file exwm-executable
6729 (lambda _
6730 (format #t "#!~a ~@
6731 ~a +SI:localuser:$USER ~@
6732 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6733 (string-append (assoc-ref inputs "bash") "/bin/sh")
6734 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6735 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6736 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6737 '(require 'exwmx-loader))))
6738 (chmod exwm-executable #o555)
6739 #t))))))
6740 (home-page "https://github.com/tumashu/exwm-x")
6741 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6742 on mouse-control.")
6743 (license license:gpl3+)))
6744
6745 (define-public emacs-gnuplot
6746 (package
6747 (name "emacs-gnuplot")
6748 (version "0.7.0")
6749 (source
6750 (origin
6751 (method url-fetch)
6752 (uri (string-append
6753 "https://github.com/bruceravel/gnuplot-mode/archive/"
6754 version ".tar.gz"))
6755 (file-name (string-append name "-" version ".tar.gz"))
6756 (sha256
6757 (base32
6758 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6759 (build-system gnu-build-system)
6760 (native-inputs `(("emacs" ,emacs-minimal)))
6761 (arguments
6762 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6763 "/gnuplot-" version)))
6764 `(#:modules ((guix build gnu-build-system)
6765 (guix build utils)
6766 (guix build emacs-utils))
6767 #:imported-modules (,@%gnu-build-system-modules
6768 (guix build emacs-utils))
6769 #:configure-flags
6770 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6771 "/bin/emacs")
6772 (string-append "--with-lispdir=" %output ,elisp-dir))
6773 #:phases
6774 (modify-phases %standard-phases
6775 (add-after 'install 'generate-autoloads
6776 (lambda* (#:key outputs #:allow-other-keys)
6777 (emacs-generate-autoloads
6778 "gnuplot"
6779 (string-append (assoc-ref outputs "out") ,elisp-dir))
6780 #t))))))
6781 (home-page "https://github.com/bruceravel/gnuplot-mode")
6782 (synopsis "Emacs major mode for interacting with gnuplot")
6783 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6784 with gnuplot.")
6785 (license license:gpl2+)))
6786
6787 (define-public emacs-transpose-frame
6788 (package
6789 (name "emacs-transpose-frame")
6790 (version "0.1.0")
6791 (source
6792 (origin
6793 (method url-fetch)
6794 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
6795 (file-name (string-append "transpose-frame-" version ".el"))
6796 (sha256
6797 (base32
6798 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6799 (build-system emacs-build-system)
6800 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6801 (synopsis "Transpose window arrangement in current frame")
6802 (description "@code{emacs-transpose-frame} provides some interactive
6803 functions which allows users to transpose windows arrangement in currently
6804 selected frame.")
6805 (license license:bsd-2)))
6806
6807 (define-public emacs-key-chord
6808 (package
6809 (name "emacs-key-chord")
6810 (version "0.6")
6811 (source
6812 (origin
6813 (method url-fetch)
6814 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6815 (file-name (string-append "key-chord-" version ".el"))
6816 (sha256
6817 (base32
6818 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6819 (build-system emacs-build-system)
6820 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6821 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6822 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6823 mode for binding key chords to commands. A key chord is defined as two keys
6824 pressed simultaneously or a single key quickly pressed twice.")
6825 (license license:gpl2+)))
6826
6827 (define-public emacs-evil-surround
6828 (package
6829 (name "emacs-evil-surround")
6830 (version "1.0.0")
6831 (source
6832 (origin
6833 (method url-fetch)
6834 (uri (string-append
6835 "https://github.com/timcharper/evil-surround/archive/v"
6836 version ".tar.gz"))
6837 (file-name (string-append name "-" version ".tar.gz"))
6838 (sha256
6839 (base32
6840 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6841 (build-system emacs-build-system)
6842 (propagated-inputs
6843 `(("emacs-evil" ,emacs-evil)))
6844 (home-page "https://github.com/timcharper/evil-surround")
6845 (synopsis "Easily modify surrounding parantheses and quotes")
6846 (description "@code{emacs-evil-surround} allows easy deletion, change and
6847 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6848 (license license:gpl3+)))
6849
6850 (define-public emacs-evil-commentary
6851 (package
6852 (name "emacs-evil-commentary")
6853 (version "2.1.1")
6854 (source
6855 (origin
6856 (method url-fetch)
6857 (uri (string-append
6858 "https://github.com/linktohack/evil-commentary/archive/v"
6859 version ".tar.gz"))
6860 (file-name (string-append name "-" version ".tar.gz"))
6861 (sha256
6862 (base32
6863 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6864 (build-system emacs-build-system)
6865 (propagated-inputs
6866 `(("emacs-evil" ,emacs-evil)))
6867 (home-page "https://github.com/linktohack/evil-commentary")
6868 (synopsis "Comment out code in evil mode")
6869 (description "@code{emacs-evil-commentary} adds keybindings to easily
6870 comment out lines of code in evil mode. It provides @code{gcc} to comment out
6871 lines, and @code{gc} to comment out the target of a motion.")
6872 (license license:gpl3+)))
6873
6874 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6875 ;; therefore cannot be run
6876 (define-public emacs-ansi
6877 (package
6878 (name "emacs-ansi")
6879 (version "0.4.1")
6880 (source
6881 (origin
6882 (method url-fetch)
6883 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6884 version ".tar.gz"))
6885 (file-name (string-append name "-" version ".tar.gz"))
6886 (sha256
6887 (base32
6888 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6889 (build-system emacs-build-system)
6890 (propagated-inputs
6891 `(("emacs-dash" ,emacs-dash)
6892 ("emacs-s" ,emacs-s)))
6893 (home-page "https://github.com/rejeep/ansi.el")
6894 (synopsis "Convert strings to ANSI")
6895 (description "@code{emacs-ansi} defines functions that turns simple
6896 strings to ANSI strings. Turning a string into an ANSI string can be to add
6897 color to a text, add color in the background of a text or adding a style, such
6898 as bold, underscore or italic.")
6899 (license license:gpl3+)))
6900
6901 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
6902 ;; therefore cannot be run
6903 (define-public emacs-commander
6904 (package
6905 (name "emacs-commander")
6906 (version "0.7.0")
6907 (source
6908 (origin
6909 (method url-fetch)
6910 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6911 version ".tar.gz"))
6912 (file-name (string-append name "-" version ".tar.gz"))
6913 (sha256
6914 (base32
6915 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6916 (build-system emacs-build-system)
6917 (propagated-inputs
6918 `(("emacs-dash" ,emacs-dash)
6919 ("emacs-f" ,emacs-f)
6920 ("emacs-s" ,emacs-s)))
6921 (home-page "https://github.com/rejeep/commander.el")
6922 (synopsis "Emacs command line parser")
6923 (description "@code{emacs-commander} provides command line parsing for
6924 Emacs.")
6925 (license license:gpl3+)))
6926
6927 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6928 ;; cannot be run
6929 (define-public emacs-ert-runner
6930 (let ((version "0.7.0")
6931 (revision "1")
6932 (commit "90b8fdd5970ef76a4649be60003b37f82cdc1a65"))
6933 (package
6934 (name "emacs-ert-runner")
6935 (version (git-version "0.7.0" revision commit))
6936 (source
6937 (origin
6938 (method git-fetch)
6939 (uri (git-reference
6940 (url "https://github.com/rejeep/ert-runner.el.git")
6941 (commit commit)))
6942 (file-name (git-file-name name version))
6943 (sha256
6944 (base32
6945 "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz"))))
6946 (build-system emacs-build-system)
6947 (inputs
6948 `(("emacs-ansi" ,emacs-ansi)
6949 ("emacs-commander" ,emacs-commander)
6950 ("emacs-dash" ,emacs-dash)
6951 ("emacs-f" ,emacs-f)
6952 ("emacs-s" ,emacs-s)
6953 ("emacs-shut-up" ,emacs-shut-up)))
6954 (arguments
6955 `(#:phases
6956 (modify-phases %standard-phases
6957 (add-after 'install 'install-executable
6958 (lambda* (#:key inputs outputs #:allow-other-keys)
6959 (let ((out (assoc-ref outputs "out"))
6960 (source-directory (string-append
6961 (getenv "TMPDIR") "/source")))
6962 (substitute* "bin/ert-runner"
6963 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6964 (string-append "ERT_RUNNER=\"" out
6965 "/share/emacs/site-lisp/guix.d/ert-runner-"
6966 ,version)))
6967 (install-file "bin/ert-runner" (string-append out "/bin"))
6968 (wrap-program (string-append out "/bin/ert-runner")
6969 (list "EMACSLOADPATH" ":" 'prefix
6970 ;; Do not capture the transient source directory in
6971 ;; the wrapper.
6972 (delete source-directory
6973 (string-split (getenv "EMACSLOADPATH") #\:))))
6974 #t))))
6975 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6976 (home-page "https://github.com/rejeep/ert-runner.el")
6977 (synopsis "Opinionated Ert testing workflow")
6978 (description "@code{ert-runner} is a tool for Emacs projects tested
6979 using ERT. It assumes a certain test structure setup and can therefore make
6980 running tests easier.")
6981 (license license:gpl3+))))
6982
6983 (define-public ert-runner
6984 (deprecated-package "ert-runner" emacs-ert-runner))
6985
6986 (define-public emacs-disable-mouse
6987 (package
6988 (name "emacs-disable-mouse")
6989 (version "0.2")
6990 (source
6991 (origin
6992 (method url-fetch)
6993 (uri (string-append
6994 "https://github.com/purcell/disable-mouse/archive/"
6995 version ".tar.gz"))
6996 (file-name (string-append name "-" version ".tar.gz"))
6997 (sha256
6998 (base32
6999 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
7000 (build-system emacs-build-system)
7001 (home-page "https://github.com/purcell/disable-mouse")
7002 (synopsis "Disable mouse commands globally")
7003 (description
7004 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
7005 pair of minor modes which suppress all mouse events by intercepting them and
7006 running a customisable handler command (@code{ignore} by default). ")
7007 (license license:gpl3+)))
7008
7009 (define-public emacs-json-reformat
7010 (package
7011 (name "emacs-json-reformat")
7012 (version "0.0.6")
7013 (source
7014 (origin
7015 (method url-fetch)
7016 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
7017 version ".tar.gz"))
7018 (file-name (string-append name "-" version ".tar.gz"))
7019 (sha256
7020 (base32
7021 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
7022 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
7023 (build-system emacs-build-system)
7024 (propagated-inputs
7025 `(("emacs-undercover" ,emacs-undercover)))
7026 (native-inputs
7027 `(("emacs-dash" ,emacs-dash)
7028 ("emacs-shut-up" ,emacs-shut-up)
7029 ("ert-runner" ,emacs-ert-runner)))
7030 (arguments
7031 `(#:tests? #t
7032 #:test-command '("ert-runner")))
7033 (home-page "https://github.com/gongo/json-reformat")
7034 (synopsis "Reformatting tool for JSON")
7035 (description "@code{json-reformat} provides a reformatting tool for
7036 @url{http://json.org/, JSON}.")
7037 (license license:gpl3+)))
7038
7039 (define-public emacs-json-snatcher
7040 (package
7041 (name "emacs-json-snatcher")
7042 (version "1.0.0")
7043 (source
7044 (origin
7045 (method url-fetch)
7046 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
7047 version ".tar.gz"))
7048 (file-name (string-append name "-" version ".tar.gz"))
7049 (sha256
7050 (base32
7051 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
7052 (build-system emacs-build-system)
7053 (home-page "https://github.com/sterlingg/json-snatcher")
7054 (synopsis "Grabs the path to JSON values in a JSON file")
7055 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
7056 a @url{http://json.org/, JSON} file.")
7057 (license license:gpl3+)))
7058
7059 (define-public emacs-json-mode
7060 (package
7061 (name "emacs-json-mode")
7062 (version "1.7.0")
7063 (source
7064 (origin
7065 (method url-fetch)
7066 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
7067 "v" version ".tar.gz"))
7068 (file-name (string-append name "-" version ".tar.gz"))
7069 (sha256
7070 (base32
7071 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
7072 (build-system emacs-build-system)
7073 (propagated-inputs
7074 `(("emacs-json-reformat" ,emacs-json-reformat)
7075 ("emacs-json-snatcher" ,emacs-json-snatcher)))
7076 (home-page "https://github.com/joshwnj/json-mode")
7077 (synopsis "Major mode for editing JSON files")
7078 (description "@code{json-mode} extends the builtin js-mode syntax
7079 highlighting.")
7080 (license license:gpl3+)))
7081
7082 (define-public emacs-restclient
7083 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
7084 (revision "1")) ;Guix package revision,
7085 ;upstream doesn't have official releases
7086 (package
7087 (name "emacs-restclient")
7088 (version (string-append revision "."
7089 (string-take commit 7)))
7090 (source (origin
7091 (method git-fetch)
7092 (uri (git-reference
7093 (url "https://github.com/pashky/restclient.el.git")
7094 (commit commit)))
7095 (sha256
7096 (base32
7097 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
7098 (file-name (git-file-name name version))))
7099 (build-system emacs-build-system)
7100 (propagated-inputs
7101 `(("emacs-helm" ,emacs-helm)))
7102 (home-page "https://github.com/pashky/restclient.el")
7103 (synopsis "Explore and test HTTP REST webservices")
7104 (description
7105 "This tool allows for testing and exploration of HTTP REST Web services
7106 from within Emacs. Restclient runs queries from a plan-text query sheet,
7107 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
7108 (license license:public-domain))))
7109
7110 (define-public emacs-eimp
7111 (let ((version "1.4.0")
7112 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
7113 (revision "1"))
7114 (package
7115 (name "emacs-eimp")
7116 (version (git-version version revision commit))
7117 (source
7118 (origin
7119 (method git-fetch)
7120 (uri (git-reference
7121 (url "https://github.com/nicferrier/eimp.git")
7122 (commit commit)))
7123 (file-name (git-file-name name version))
7124 (sha256
7125 (base32
7126 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
7127 (build-system emacs-build-system)
7128 (arguments
7129 `(#:phases
7130 (modify-phases %standard-phases
7131 (add-after 'unpack 'configure
7132 (lambda* (#:key inputs #:allow-other-keys)
7133 (let ((imagemagick (assoc-ref inputs "imagemagick")))
7134 ;; eimp.el is read-only in git.
7135 (chmod "eimp.el" #o644)
7136 (emacs-substitute-variables "eimp.el"
7137 ("eimp-mogrify-program"
7138 (string-append imagemagick "/bin/mogrify"))))
7139 #t)))))
7140 (inputs
7141 `(("imagemagick" ,imagemagick)))
7142 (home-page "https://github.com/nicferrier/eimp")
7143 (synopsis "Interactive image manipulation utility for Emacs")
7144 (description "@code{emacs-eimp} allows interactive image manipulation
7145 from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
7146 the actual transformations.")
7147 (license license:gpl2+))))
7148
7149 (define-public emacs-dired-hacks
7150 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
7151 (revision "1"))
7152 (package
7153 (name "emacs-dired-hacks")
7154 (version (string-append "0.0.1-" revision "."
7155 (string-take commit 7)))
7156 (source (origin
7157 (method git-fetch)
7158 (uri (git-reference
7159 (url "https://github.com/Fuco1/dired-hacks.git")
7160 (commit commit)))
7161 (file-name (string-append name "-" version "-checkout"))
7162 (sha256
7163 (base32
7164 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
7165 (build-system emacs-build-system)
7166 (propagated-inputs
7167 `(("emacs-dash" ,emacs-dash)
7168 ("emacs-eimp" ,emacs-eimp)
7169 ("emacs-f" ,emacs-f)
7170 ("emacs-s" ,emacs-s)))
7171 (home-page "https://github.com/Fuco1/dired-hacks")
7172 (synopsis
7173 "Collection of useful dired additions")
7174 (description
7175 "Collection of Emacs dired mode additions:
7176 @itemize
7177 @item dired-avfs
7178 @item dired-columns
7179 @item dired-filter
7180 @item dired-hacks-utils
7181 @item dired-images
7182 @item dired-list
7183 @item dired-narrow
7184 @item dired-open
7185 @item dired-rainbow
7186 @item dired-ranger
7187 @item dired-subtree
7188 @item dired-tagsistant
7189 @end itemize\n")
7190 (license license:gpl3+))))
7191
7192 (define-public emacs-dired-sidebar
7193 (let ((commit "06bd0d40bab812c61a668129daf29ba359424454")
7194 (revision "0"))
7195 (package
7196 (name "emacs-dired-sidebar")
7197 (home-page "https://github.com/jojojames/dired-sidebar")
7198 (version (git-version "0.0.1" revision commit))
7199 (source (origin
7200 (method git-fetch)
7201 (uri (git-reference (url home-page) (commit commit)))
7202 (sha256
7203 (base32
7204 "0lvwvq6sl80sha9fq5m4568sg534dhmifyjqw75bqddcbf3by84x"))))
7205 (build-system emacs-build-system)
7206 (propagated-inputs
7207 `(("emacs-dired-subtree" ,emacs-dired-hacks)))
7208 (synopsis "Sidebar for Emacs using Dired")
7209 (description
7210 "This package provides a sidebar for Emacs similar to @code{NeoTree}
7211 or @code{treemacs}, but leveraging @code{Dired} to do the job of display.")
7212 (license license:gpl3+))))
7213
7214 (define-public emacs-which-key
7215 (package
7216 (name "emacs-which-key")
7217 (version "3.3.0")
7218 (source
7219 (origin
7220 (method url-fetch)
7221 (uri (string-append
7222 "https://github.com/justbur/emacs-which-key/archive/v"
7223 version ".tar.gz"))
7224 (sha256
7225 (base32
7226 "1lsj314111cp2hjjwnv3f46ws1za6bm39rgy3l19044xf6a68j5w"))
7227 (file-name (string-append name "-" version ".tar.gz"))))
7228 (build-system emacs-build-system)
7229 (arguments
7230 `(#:tests? #t
7231 #:test-command '("emacs" "--batch"
7232 "-l" "which-key-tests.el"
7233 "-f" "ert-run-tests-batch-and-exit")))
7234 (home-page "https://github.com/justbur/emacs-which-key")
7235 (synopsis "Display available key bindings in popup")
7236 (description
7237 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
7238 bindings following your currently entered incomplete command (a prefix) in a
7239 popup. For example, after enabling the minor mode if you enter C-x and wait
7240 for the default of 1 second, the minibuffer will expand with all of the
7241 available key bindings that follow C-x (or as many as space allows given your
7242 settings).")
7243 (license license:gpl3+)))
7244
7245 (define-public emacs-ws-butler
7246 (package
7247 (name "emacs-ws-butler")
7248 (version "0.6")
7249 (source (origin
7250 (method git-fetch)
7251 (uri (git-reference
7252 (url "https://github.com/lewang/ws-butler.git")
7253 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
7254 (file-name (string-append name "-" version "-checkout"))
7255 (sha256
7256 (base32
7257 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
7258 (build-system emacs-build-system)
7259 (native-inputs
7260 `(("ert-runner" ,emacs-ert-runner)))
7261 (arguments
7262 `(#:tests? #t
7263 #:test-command '("ert-runner" "tests")))
7264 (home-page "https://github.com/lewang/ws-butler")
7265 (synopsis "Trim spaces from end of lines")
7266 (description
7267 "This Emacs package automatically and unobtrusively trims whitespace
7268 characters from end of lines.")
7269 (license license:gpl3+)))
7270
7271 (define-public emacs-org-edit-latex
7272 (package
7273 (name "emacs-org-edit-latex")
7274 (version "0.8.0")
7275 (source
7276 (origin
7277 (method url-fetch)
7278 (uri (string-append
7279 "https://github.com/et2010/org-edit-latex/archive/v"
7280 version ".tar.gz"))
7281 (file-name (string-append name "-" version ".tar.gz"))
7282 (sha256
7283 (base32
7284 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
7285 (build-system emacs-build-system)
7286 (propagated-inputs
7287 `(("emacs-auctex" ,emacs-auctex)
7288 ;; The version of org in Emacs 25.2 is not sufficient, because the
7289 ;; `org-latex-make-preamble' function is required.
7290 ("emacs-org" ,emacs-org)))
7291 (home-page "https://github.com/et2010/org-edit-latex")
7292 (synopsis "Edit a latex fragment just like editing a src block")
7293 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
7294 It lets you edit a latex fragment in a dedicated buffer just like editing a
7295 src block.")
7296 (license license:gpl3+)))
7297
7298 (define-public emacs-emamux
7299 (package
7300 (name "emacs-emamux")
7301 (version "0.14")
7302 (source (origin
7303 (method url-fetch)
7304 (uri (string-append
7305 "https://github.com/syohex/emacs-emamux/archive/"
7306 version ".tar.gz"))
7307 (file-name (string-append name "-" version ".tar.gz"))
7308 (sha256
7309 (base32
7310 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
7311 (build-system emacs-build-system)
7312 (home-page "https://github.com/syohex/emacs-emamux")
7313 (synopsis "Manipulate Tmux from Emacs")
7314 (description
7315 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7316 multiplexer.")
7317 (license license:gpl3+)))
7318
7319 (define-public emacs-rpm-spec-mode
7320 (package
7321 (name "emacs-rpm-spec-mode")
7322 (version "0.16")
7323 (source
7324 (origin
7325 (method url-fetch)
7326 ;; URI has the Fedora release number instead of the version
7327 ;; number. This will have to updated manually every new release.
7328 (uri (string-append
7329 "https://src.fedoraproject.org/cgit/rpms"
7330 "/emacs-rpm-spec-mode.git/snapshot"
7331 "/emacs-rpm-spec-mode-f26.tar.gz"))
7332 (sha256
7333 (base32
7334 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7335 (build-system emacs-build-system)
7336 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7337 (synopsis "Emacs major mode for editing RPM spec files")
7338 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7339 editing RPM spec files.")
7340 (license license:gpl2+)))
7341
7342 (define-public emacs-git-messenger
7343 (package
7344 (name "emacs-git-messenger")
7345 (version "0.18")
7346 (source
7347 (origin
7348 (method url-fetch)
7349 (uri (string-append
7350 "https://github.com/syohex/emacs-git-messenger/archive/"
7351 version ".tar.gz"))
7352 (file-name (string-append name "-" version ".tar.gz"))
7353 (sha256
7354 (base32
7355 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
7356 (build-system emacs-build-system)
7357 (propagated-inputs
7358 `(("emacs-popup" ,emacs-popup)))
7359 (arguments
7360 `(#:tests? #t
7361 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7362 "-f" "ert-run-tests-batch-and-exit")))
7363 (home-page "https://github.com/syohex/emacs-git-messenger")
7364 (synopsis "Popup commit message at current line")
7365 (description "@code{emacs-git-messenger} provides
7366 @code{git-messenger:popup-message}, a function that when called, will popup
7367 the last git commit message for the current line. This uses git-blame
7368 internally.")
7369 (license license:gpl3+)))
7370
7371 (define-public emacs-gitpatch
7372 (package
7373 (name "emacs-gitpatch")
7374 (version "0.5.0")
7375 (source
7376 (origin
7377 (method url-fetch)
7378 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
7379 "v" version ".tar.gz"))
7380 (file-name (string-append name "-" version ".tar.gz"))
7381 (sha256
7382 (base32
7383 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
7384 (build-system emacs-build-system)
7385 (home-page "https://github.com/tumashu/gitpatch")
7386 (synopsis "Mail git patch from Emacs")
7387 (description "@code{emacs-gitpatch} lets users easily send git patches,
7388 created by @code{git format-patch}, from @code{magit}, @code{dired} and
7389 @code{ibuffer} buffers.")
7390 (license license:gpl3+)))
7391
7392 (define-public emacs-erc-hl-nicks
7393 (package
7394 (name "emacs-erc-hl-nicks")
7395 (version "1.3.3")
7396 (source
7397 (origin
7398 (method url-fetch)
7399 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7400 "/archive/" version ".tar.gz"))
7401 (file-name (string-append name "-" version ".tar.gz"))
7402 (sha256
7403 (base32
7404 "1a1r2kc3688g8c2ybkpwh88kgmnqhg3h3032g2yn4zr9m0n3vpkr"))))
7405 (build-system emacs-build-system)
7406 (synopsis "Nickname highlighting for Emacs ERC")
7407 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7408 client for Emacs. The main features are:
7409 @itemize
7410 @item Auto-colorizes nicknames without having to specify colors
7411 @item Ignores certain characters that IRC clients add to nicknames to avoid
7412 duplicates (nickname, nickname’, nickname\", etc.)
7413 @item Attempts to produce colors with a sufficient amount of contrast between
7414 the nick color and the background color
7415 @end itemize\n")
7416 (home-page "https://github.com/leathekd/erc-hl-nicks")
7417 (license license:gpl3+)))
7418
7419 (define-public emacs-engine-mode
7420 (package
7421 (name "emacs-engine-mode")
7422 (version "2.0.0")
7423 (source
7424 (origin
7425 (method url-fetch)
7426 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
7427 "v" version ".tar.gz"))
7428 (file-name (string-append name "-" version ".tar.gz"))
7429 (sha256
7430 (base32
7431 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
7432 (build-system emacs-build-system)
7433 (synopsis "Minor mode for defining and querying search engines")
7434 (description "@code{engine-mode} is a global minor mode for Emacs. It
7435 enables you to easily define search engines, bind them to keybindings, and
7436 query them from the comfort of your editor.")
7437 (home-page "https://github.com/hrs/engine-mode")
7438 (license license:gpl3+)))
7439
7440 (define-public emacs-prop-menu
7441 (package
7442 (name "emacs-prop-menu")
7443 (version "0.1.2")
7444 (source
7445 (origin
7446 (method url-fetch)
7447 (uri (string-append
7448 "http://stable.melpa.org/packages/prop-menu-"
7449 version ".el"))
7450 (sha256
7451 (base32
7452 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7453 (build-system emacs-build-system)
7454 (home-page
7455 "https://github.com/david-christiansen/prop-menu-el")
7456 (synopsis
7457 "Create and display a context menu based on text and overlay properties")
7458 (description
7459 "This is a library for computing context menus based on text
7460 properties and overlays. The intended use is to have tools that
7461 annotate source code and others that use these annotations, without
7462 requiring a direct coupling between them, but maintaining
7463 discoverability.
7464
7465 Major modes that wish to use this library should first define an
7466 appropriate value for @code{prop-menu-item-functions}. Then, they should
7467 bind @code{prop-menu-by-completing-read} to an appropriate
7468 key. Optionally, a mouse pop-up can be added by binding
7469 @code{prop-menu-show-menu} to a mouse event.")
7470 (license license:gpl3+)))
7471
7472 (define-public emacs-idris-mode
7473 (package
7474 (name "emacs-idris-mode")
7475 (version "0.9.19")
7476 (source
7477 (origin
7478 (method url-fetch)
7479 (uri (string-append
7480 "http://stable.melpa.org/packages/idris-mode-"
7481 version ".tar"))
7482 (sha256
7483 (base32
7484 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
7485 (build-system emacs-build-system)
7486 (propagated-inputs
7487 `(("emacs-prop-menu" ,emacs-prop-menu)))
7488 (home-page
7489 "https://github.com/idris-hackers/idris-mode")
7490 (synopsis "Major mode for editing Idris code")
7491 (description
7492 "This is an Emacs mode for editing Idris code. It requires the latest
7493 version of Idris, and some features may rely on the latest Git version of
7494 Idris.")
7495 (license license:gpl3+)))
7496
7497 (define-public emacs-browse-at-remote
7498 (package
7499 (name "emacs-browse-at-remote")
7500 (version "0.10.0")
7501 (source
7502 (origin
7503 (method url-fetch)
7504 (uri (string-append
7505 "https://github.com/rmuslimov/browse-at-remote/archive/"
7506 version ".tar.gz"))
7507 (file-name (string-append name "-" version ".tar.gz"))
7508 (sha256
7509 (base32
7510 "0ymslsp6i1naw25zckv25bf4aaq6qwkbkn95qyzlwg869l802686"))))
7511 (build-system emacs-build-system)
7512 (propagated-inputs
7513 `(("emacs-f" ,emacs-f)
7514 ("emacs-s" ,emacs-s)))
7515 (native-inputs
7516 `(("ert-runner" ,emacs-ert-runner)))
7517 (arguments
7518 `(#:tests? #t
7519 #:test-command '("ert-runner")))
7520 (home-page "https://github.com/rmuslimov/browse-at-remote")
7521 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7522 (description
7523 "This Emacs package allows you to open a target page on
7524 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7525 It supports dired buffers and opens them in tree mode at destination.")
7526 (license license:gpl3+)))
7527
7528 (define-public emacs-tiny
7529 (package
7530 (name "emacs-tiny")
7531 (version "0.2.1")
7532 (source
7533 (origin
7534 (method url-fetch)
7535 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7536 (sha256
7537 (base32
7538 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
7539 (build-system emacs-build-system)
7540 (home-page "https://github.com/abo-abo/tiny")
7541 (synopsis "Quickly generate linear ranges in Emacs")
7542 (description
7543 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
7544 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
7545 proficiency is an advantage, since you can transform your numeric range with
7546 an elisp expression.")
7547 (license license:gpl3+)))
7548
7549 (define-public emacs-emojify
7550 (package
7551 (name "emacs-emojify")
7552 (version "0.4")
7553 (source
7554 (origin
7555 (method url-fetch)
7556 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7557 "releases/download/v" version "/emojify-"
7558 version ".tar"))
7559 (sha256
7560 (base32
7561 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7562 (build-system emacs-build-system)
7563 (arguments
7564 `(#:phases
7565 (modify-phases %standard-phases
7566 (add-after 'install 'install-data
7567 (lambda* (#:key outputs #:allow-other-keys)
7568 (copy-recursively "data"
7569 (string-append (assoc-ref outputs "out")
7570 "/share/emacs/site-lisp/guix.d/"
7571 "emojify-" ,version "/data"))
7572 #t)))))
7573 (propagated-inputs
7574 `(("emacs-ht" ,emacs-ht)))
7575 (home-page "https://github.com/iqbalansari/emacs-emojify")
7576 (synopsis "Display emojis in Emacs")
7577 (description "This package displays emojis in Emacs similar to how Github,
7578 Slack, and other websites do. It can display plain ASCII like @code{:)} as
7579 well as Github-style emojis like @code{:smile:}. It provides a minor mode
7580 @code{emojify-mode} to enable the display of emojis in a buffer.")
7581 (license license:gpl3+)))
7582
7583 (define-public emacs-websocket
7584 (package
7585 (name "emacs-websocket")
7586 (version "1.10")
7587 (source
7588 (origin
7589 (method git-fetch)
7590 (uri (git-reference
7591 (url "https://github.com/ahyatt/emacs-websocket.git")
7592 (commit version)))
7593 (file-name (string-append name "-" version "-checkout"))
7594 (sha256
7595 (base32
7596 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
7597 (build-system emacs-build-system)
7598 (home-page "http://elpa.gnu.org/packages/websocket.html")
7599 (synopsis "Emacs WebSocket client and server")
7600 (description "This is an Elisp library for WebSocket clients to talk to
7601 WebSocket servers, and for WebSocket servers to accept connections from
7602 WebSocket clients. This library is designed to be used by other library
7603 writers, to write applications that use WebSockets, and is not useful by
7604 itself.")
7605 (license license:gpl3+)))
7606
7607 (define-public emacs-oauth2
7608 (package
7609 (name "emacs-oauth2")
7610 (version "0.11")
7611 (source
7612 (origin
7613 (method url-fetch)
7614 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7615 version ".el"))
7616 (sha256
7617 (base32
7618 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7619 (build-system emacs-build-system)
7620 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7621 (synopsis "OAuth 2.0 authorization protocol implementation")
7622 (description
7623 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7624 The main entry point is @code{oauth2-auth-and-store} which will return a token
7625 structure. This token structure can be then used with
7626 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
7627 retrieve any data that need OAuth authentication to be accessed. If the token
7628 needs to be refreshed, the code handles it automatically and stores the new
7629 value of the access token.")
7630 (license license:gpl3+)))
7631
7632 (define-public emacs-circe
7633 (package
7634 (name "emacs-circe")
7635 (version "2.10")
7636 (source
7637 (origin
7638 (method git-fetch)
7639 (uri (git-reference
7640 (url "https://github.com/jorgenschaefer/circe.git")
7641 (commit (string-append "v" version))))
7642 (file-name (git-file-name name version))
7643 (sha256
7644 (base32
7645 "10gi14kwxd81blddpvqh95lgmpbfgp0m955naxix3bs3r6a75n4s"))))
7646 (build-system emacs-build-system)
7647 (arguments
7648 `(#:tests? #t
7649 #:test-command '("buttercup" "-L" ".")
7650 #:phases
7651 (modify-phases %standard-phases
7652 ;; The HOME environment variable should be set to an existing
7653 ;; directory for the tests to succeed.
7654 (add-before 'check 'set-home
7655 (lambda _
7656 (setenv "HOME" "/tmp")
7657 #t)))))
7658 (native-inputs
7659 `(("emacs-buttercup" ,emacs-buttercup)))
7660 ;; In order to securely connect to an IRC server using TLS, Circe requires
7661 ;; the GnuTLS binary.
7662 (propagated-inputs
7663 `(("gnutls" ,gnutls)))
7664 (home-page "https://github.com/jorgenschaefer/circe")
7665 (synopsis "Client for IRC in Emacs")
7666 (description "Circe is a Client for IRC in Emacs. It integrates well with
7667 the rest of the editor, using standard Emacs key bindings and indicating
7668 activity in channels in the status bar so it stays out of your way unless you
7669 want to use it.")
7670 (license license:gpl3+)))
7671
7672 (define-public emacs-tracking
7673 (package
7674 (inherit emacs-circe)
7675 (name "emacs-tracking")
7676 (arguments
7677 ;; "tracking.el" is a library extracted from Circe package. It requires
7678 ;; "shorten.el".
7679 `(#:include '("^shorten.el$" "^tracking.el$")
7680 ,@(package-arguments emacs-circe)))
7681 (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking")
7682 (synopsis "Buffer tracking library")
7683 (description "@code{tracking.el} provides a way for different modes to
7684 notify the user that a buffer needs attention. The user then can cycle
7685 through them using @key{C-c C-SPC}.")
7686 (license license:gpl3+)))
7687
7688 (define-public emacs-slack
7689 (let ((commit "99a57501629a0329a9ca090c1ea1296462eda02d")
7690 (revision "5"))
7691 (package
7692 (name "emacs-slack")
7693 (version (git-version "0.0.2" revision commit))
7694 (source (origin
7695 (method git-fetch)
7696 (uri (git-reference
7697 (url "https://github.com/yuya373/emacs-slack.git")
7698 (commit commit)))
7699 (file-name (git-file-name name commit))
7700 (sha256
7701 (base32
7702 "0jw1diypfw8pmzkq0napgxmfc0gqka7zcccgnw359604lr30k2z2"))))
7703 (build-system emacs-build-system)
7704 (propagated-inputs
7705 `(("emacs-alert" ,emacs-alert)
7706 ("emacs-emojify" ,emacs-emojify)
7707 ("emacs-helm" ,emacs-helm)
7708 ("emacs-request" ,emacs-request)
7709 ("emacs-websocket" ,emacs-websocket)
7710 ("emacs-oauth2" ,emacs-oauth2)
7711 ("emacs-circe" ,emacs-circe)))
7712 (home-page "https://github.com/yuya373/emacs-slack")
7713 (synopsis "Slack client for Emacs")
7714 (description "This package provides an Emacs client for the Slack
7715 messaging service.")
7716 (license license:gpl3+))))
7717
7718 (define-public emacs-bash-completion
7719 (package
7720 (name "emacs-bash-completion")
7721 (version "2.1.0")
7722 (source
7723 (origin
7724 (method url-fetch)
7725 (uri (string-append
7726 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7727 version ".tar.gz"))
7728 (file-name (string-append name "-" version ".tar.gz"))
7729 (sha256
7730 (base32
7731 "1z0qck3v3ra6ivacn8n04w1v33a4xn01xx860761q31qzsv3sksq"))))
7732 (inputs `(("bash" ,bash)))
7733 (build-system emacs-build-system)
7734 (arguments
7735 `(#:phases
7736 (modify-phases %standard-phases
7737 (add-before 'install 'configure
7738 (lambda* (#:key inputs #:allow-other-keys)
7739 (let ((bash (assoc-ref inputs "bash")))
7740 (emacs-substitute-variables "bash-completion.el"
7741 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7742 #t)))))
7743 (home-page "https://github.com/szermatt/emacs-bash-completion")
7744 (synopsis "Bash completion for the shell buffer")
7745 (description
7746 "@code{bash-completion} defines dynamic completion hooks for shell-mode
7747 and shell-command prompts that are based on Bash completion.")
7748 (license license:gpl2+)))
7749
7750 (define-public emacs-easy-kill
7751 (package
7752 (name "emacs-easy-kill")
7753 (version "0.9.3")
7754 (source (origin
7755 (method url-fetch)
7756 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7757 version ".tar"))
7758 (sha256
7759 (base32
7760 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7761 (build-system emacs-build-system)
7762 (home-page "https://github.com/leoliu/easy-kill")
7763 (synopsis "Kill and mark things easily in Emacs")
7764 (description
7765 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7766 let users kill or mark things easily.")
7767 (license license:gpl3+)))
7768
7769 (define-public emacs-csv-mode
7770 (package
7771 (name "emacs-csv-mode")
7772 (version "1.7")
7773 (source
7774 (origin
7775 (method url-fetch)
7776 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7777 version ".el"))
7778 (sha256
7779 (base32
7780 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7781 (build-system emacs-build-system)
7782 (home-page
7783 "http://elpa.gnu.org/packages/csv-mode.html")
7784 (synopsis
7785 "Major mode for editing comma/char separated values")
7786 (description
7787 "This Emacs package implements CSV mode, a major mode for editing records
7788 in a generalized CSV (character-separated values) format.")
7789 (license license:gpl3+)))
7790
7791 (define-public emacs-transmission
7792 (package
7793 (name "emacs-transmission")
7794 (version "0.12.1")
7795 (source (origin
7796 (method url-fetch)
7797 (uri (string-append
7798 "https://github.com/holomorph/transmission/archive/"
7799 version ".tar.gz"))
7800 (file-name (string-append name "-" version ".tar.gz"))
7801 (sha256
7802 (base32
7803 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
7804 (build-system emacs-build-system)
7805 (home-page "https://github.com/holomorph/transmission")
7806 (synopsis "Emacs interface to a Transmission session")
7807 (description "This package provides an Emacs interface to interact with a
7808 running session of the Transmission Bittorrent client.
7809
7810 Features:
7811
7812 @itemize
7813 @item List, add, start/stop, verify, remove torrents.
7814 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
7815 @item Navigate to the corresponding file list, torrent info, peer info
7816 contexts.
7817 @item Toggle downloading and set priorities for individual files.
7818 @end itemize\n")
7819 (license license:gpl3+)))
7820
7821 (define-public emacs-polymode
7822 (package
7823 (name "emacs-polymode")
7824 (version "0.1.5")
7825 (source (origin
7826 (method git-fetch)
7827 (uri (git-reference
7828 (url "https://github.com/vspinu/polymode.git")
7829 (commit (string-append "v" version))))
7830 (file-name (git-file-name name version))
7831 (sha256
7832 (base32
7833 "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
7834 (build-system emacs-build-system)
7835 (arguments
7836 `(#:include (cons* "^modes/.*\\.el$" %default-include)
7837 #:phases
7838 (modify-phases %standard-phases
7839 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
7840 (lambda _
7841 (setenv "EMACSLOADPATH"
7842 (string-append (getenv "EMACSLOADPATH")
7843 ":" (getcwd) "/modes" ":")))))))
7844 (home-page "https://github.com/vspinu/polymode")
7845 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
7846 (description "Polymode is an Emacs package that offers generic support
7847 for multiple major modes inside a single Emacs buffer. It is lightweight,
7848 object oriented and highly extensible. Creating a new polymode typically
7849 takes only a few lines of code. Polymode also provides extensible facilities
7850 for external literate programming tools for exporting, weaving and tangling.")
7851 (license license:gpl3+)))
7852
7853 (define-public emacs-polymode-ansible
7854 (let ((commit "b26094d029e25dc797b94254f797e7807a57e4c8"))
7855 (package
7856 (name "emacs-polymode-ansible")
7857 ;; No upstream version release yet.
7858 (version (git-version "0.1" "1" commit))
7859 (source
7860 (origin
7861 (method git-fetch)
7862 (uri (git-reference
7863 (url "https://gitlab.com/mavit/poly-ansible")
7864 (commit commit)))
7865 (file-name (git-file-name name version))
7866 (sha256
7867 (base32
7868 "055shddqibib3hx2ykwdz910nrqws40cd407mq946l2bf6v87gj6"))))
7869 (build-system emacs-build-system)
7870 (propagated-inputs
7871 `(("emacs-ansible-doc" ,emacs-ansible-doc)
7872 ("emacs-jinja2-mode" ,emacs-jinja2-mode)
7873 ("emacs-polymode" ,emacs-polymode)
7874 ("emacs-yaml-mode" ,emacs-yaml-mode)))
7875 (properties '((upstream-name . "poly-ansible")))
7876 (home-page "https://gitlab.com/mavit/poly-ansible/")
7877 (synopsis "Polymode for Ansible - Jinja2 in YAML")
7878 (description
7879 "Edit YAML files for Ansible containing embedded Jinja2 templating.")
7880 (license license:gpl3+))))
7881
7882 (define-public eless
7883 (package
7884 (name "eless")
7885 (version "0.3")
7886 (source (origin
7887 (method url-fetch)
7888 (uri (string-append
7889 "https://github.com/kaushalmodi/eless/archive/"
7890 "v" version ".tar.gz"))
7891 (file-name (string-append name "-" version ".tar.gz"))
7892 (sha256
7893 (base32
7894 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7895 (build-system trivial-build-system)
7896 (inputs
7897 `(("bash" ,bash)))
7898 (native-inputs
7899 `(("tar" ,tar)
7900 ("gzip" ,gzip)))
7901 (arguments
7902 `(#:modules ((guix build utils))
7903 #:builder
7904 (begin
7905 (use-modules (guix build utils))
7906 (setenv "PATH" (string-append
7907 (assoc-ref %build-inputs "tar") "/bin" ":"
7908 (assoc-ref %build-inputs "gzip") "/bin"))
7909 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7910 (chdir (string-append "eless" "-" ,version))
7911 (substitute* "eless" (("/usr/bin/env bash")
7912 (string-append (assoc-ref %build-inputs "bash")
7913 "/bin/bash")))
7914 (install-file "eless" (string-append %output "/bin"))
7915 (install-file "doc/eless.info" (string-append %output "/share/info"))
7916 #t)))
7917 (home-page "https://github.com/kaushalmodi/eless")
7918 (synopsis "Use Emacs as a paginator")
7919 (description "@code{eless} provides a combination of Bash script
7920 and a minimal Emacs view-mode.
7921
7922 Feautures:
7923
7924 @itemize
7925 @item Independent of a user’s Emacs config.
7926 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7927 @item Not require an Emacs server to be already running.
7928 @item Syntax highlighting.
7929 @item Org-mode file rendering.
7930 @item @code{man} page viewer.
7931 @item Info viewer.
7932 @item Dired, wdired, (batch edit symbolic links).
7933 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
7934 @item Filter log files lines matching a regexp.
7935 @item Auto-revert log files similar to @code{tail -f}.
7936 @item Quickly change frame and font sizes.
7937 @end itemize\n")
7938 (license license:expat)))
7939
7940 (define-public emacs-evil-matchit
7941 (package
7942 (name "emacs-evil-matchit")
7943 (version "2.2.6")
7944 (source
7945 (origin
7946 (method url-fetch)
7947 (uri (string-append
7948 "https://github.com/redguardtoo/evil-matchit/archive/"
7949 version ".tar.gz"))
7950 (file-name (string-append name "-" version ".tar.gz"))
7951 (sha256
7952 (base32
7953 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
7954 (build-system emacs-build-system)
7955 (propagated-inputs
7956 `(("emacs-evil" ,emacs-evil)))
7957 (home-page "https://github.com/redguardtoo/evil-matchit")
7958 (synopsis "Vim matchit ported into Emacs")
7959 (description
7960 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7961 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7962 (license license:gpl3+)))
7963
7964 (define-public emacs-evil-smartparens
7965 (package
7966 (name "emacs-evil-smartparens")
7967 (version "0.4.0")
7968 (source
7969 (origin
7970 (method url-fetch)
7971 (uri (string-append
7972 "https://github.com/expez/evil-smartparens/archive/"
7973 version ".tar.gz"))
7974 (file-name (string-append name "-" version ".tar.gz"))
7975 (sha256
7976 (base32
7977 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7978 (build-system emacs-build-system)
7979 (propagated-inputs
7980 `(("emacs-evil" ,emacs-evil)
7981 ("emacs-smartparens" ,emacs-smartparens)))
7982 (home-page "https://github.com/expez/evil-smartparens")
7983 (synopsis "Emacs Evil integration for Smartparens")
7984 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7985 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7986 emulates Vim features and provides Vim-like key bindings.")
7987 (license license:gpl3+)))
7988
7989 (define-public emacs-evil-quickscope
7990 (package
7991 (name "emacs-evil-quickscope")
7992 (version "0.1.4")
7993 (source
7994 (origin
7995 (method url-fetch)
7996 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7997 version ".tar.gz"))
7998 (file-name (string-append name "-" version ".tar.gz"))
7999 (sha256
8000 (base32
8001 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
8002 (build-system emacs-build-system)
8003 (propagated-inputs
8004 `(("emacs-evil" ,emacs-evil)))
8005 (arguments
8006 `(#:tests? #t
8007 #:test-command '("emacs" "--batch"
8008 "-l" "evil-quickscope-tests.el"
8009 "-f" "ert-run-tests-batch-and-exit")))
8010 (home-page "https://github.com/blorbx/evil-quickscope")
8011 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
8012 (description "@code{emacs-evil-quickscope} highlights targets for Evil
8013 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
8014 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
8015 features and provides Vim-like key bindings.")
8016 (license license:gpl3+)))
8017
8018 (define-public emacs-bongo
8019 (package
8020 (name "emacs-bongo")
8021 (version "1.0")
8022 (source
8023 (origin
8024 (method url-fetch)
8025 (uri (string-append
8026 "https://github.com/dbrock/bongo/archive/"
8027 version ".tar.gz"))
8028 (file-name (string-append name "-" version ".tar.gz"))
8029 (sha256
8030 (base32
8031 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
8032 (build-system emacs-build-system)
8033 (home-page "https://github.com/dbrock/bongo")
8034 (synopsis "Media player for Emacs")
8035 (description
8036 "This package provides a flexible media player for Emacs. @code{Bongo}
8037 supports multiple backends such as @code{vlc}, @code{mpg123},
8038 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
8039 @code{afplay}.")
8040 (license license:gpl2+)))
8041
8042 (define-public emacs-groovy-modes
8043 (package
8044 (name "emacs-groovy-modes")
8045 (version "2.0")
8046 (source (origin
8047 (method url-fetch)
8048 (uri (string-append
8049 "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
8050 "/archive/" version ".tar.gz"))
8051 (file-name (string-append name "-" version ".tar.gz"))
8052 (sha256
8053 (base32
8054 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
8055 (build-system emacs-build-system)
8056 (propagated-inputs
8057 `(("emacs-s" ,emacs-s)))
8058 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
8059 (synopsis "Groovy related modes for Emacs")
8060 (description
8061 "This package provides @code{groovy-mode} for syntax highlighing in
8062 Groovy source files, REPL integration with run-groovy and Grails project
8063 navigation with the grails mode.")
8064 (license license:gpl3+)))
8065
8066 (define-public groovy-emacs-modes
8067 (deprecated-package "groovy-emacs-modes" emacs-groovy-modes))
8068
8069 (define-public emacs-org-tree-slide
8070 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
8071 (revision "0"))
8072 (package
8073 (name "emacs-org-tree-slide")
8074 (version (git-version "0.1" revision commit))
8075 (home-page "https://github.com/takaxp/org-tree-slide")
8076 (source (origin
8077 (method git-fetch)
8078 (uri (git-reference (url home-page) (commit commit)))
8079 (sha256
8080 (base32
8081 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
8082 (file-name (git-file-name name version))))
8083 (build-system emacs-build-system)
8084 (synopsis "Presentation tool for org-mode")
8085 (description
8086 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
8087 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
8088 @kbd{C-<} to jump to the next and previous slide.")
8089 (license license:gpl3+))))
8090
8091 (define-public emacs-scratch-el
8092 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
8093 (revision "1"))
8094 (package
8095 (name "emacs-scratch-el")
8096 (version (git-version "1.2" revision commit))
8097 (source (origin
8098 (method git-fetch)
8099 (uri (git-reference
8100 (url "https://github.com/ieure/scratch-el.git")
8101 (commit commit)))
8102 (file-name (git-file-name name version))
8103 (sha256
8104 (base32
8105 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
8106 (build-system emacs-build-system)
8107 (native-inputs
8108 `(("texinfo" ,texinfo)))
8109 (arguments
8110 '(#:phases
8111 (modify-phases %standard-phases
8112 (add-after 'install 'install-doc
8113 (lambda* (#:key outputs #:allow-other-keys)
8114 (unless (invoke "makeinfo" "scratch.texi")
8115 (error "makeinfo failed"))
8116 (install-file "scratch.info"
8117 (string-append (assoc-ref outputs "out")
8118 "/share/info"))
8119 #t)))))
8120 (home-page "https://github.com/ieure/scratch-el/")
8121 (synopsis "Create scratch buffers with the same mode as current buffer")
8122 (description "Scratch is an extension to Emacs that enables one to create
8123 scratch buffers that are in the same mode as the current buffer. This is
8124 notably useful when working on code in some language; you may grab code into a
8125 scratch buffer, and, by virtue of this extension, do so using the Emacs
8126 formatting rules for that language.")
8127 (license license:bsd-2))))
8128
8129 (define-public emacs-kv
8130 (package
8131 (name "emacs-kv")
8132 (version "0.0.19")
8133 (source
8134 (origin
8135 (method git-fetch)
8136 (uri (git-reference
8137 (url "https://github.com/nicferrier/emacs-kv.git")
8138 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
8139 (file-name (string-append name "-" version "-checkout"))
8140 (sha256
8141 (base32
8142 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
8143 (build-system emacs-build-system)
8144 (arguments
8145 `(#:tests? #t
8146 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
8147 "-f" "ert-run-tests-batch-and-exit")))
8148 (home-page "https://github.com/nicferrier/emacs-kv")
8149 (synopsis "Key/Value data structures library for Emacs Lisp")
8150 (description "@code{emacs-kv} is a collection of tools for dealing with
8151 key/value data structures such as plists, alists and hash-tables in Emacs
8152 Lisp.")
8153 (license license:gpl3+)))
8154
8155 (define-public emacs-esxml
8156 (package
8157 (name "emacs-esxml")
8158 (version "0.3.4")
8159 (source (origin
8160 (method git-fetch)
8161 (uri (git-reference
8162 (url "https://github.com/tali713/esxml.git")
8163 (commit version)))
8164 (file-name (git-file-name name version))
8165 (sha256
8166 (base32
8167 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
8168 (build-system emacs-build-system)
8169 (arguments
8170 `(#:phases
8171 (modify-phases %standard-phases
8172 (add-after 'unpack 'fix-sources
8173 (lambda _
8174 ;; See: https://github.com/tali713/esxml/pull/28.
8175 (substitute* "css-lite.el"
8176 ((";;; main interface")
8177 (string-append ";;; main interface\n"
8178 "(require 'cl-lib)"))
8179 (("mapcan")
8180 "cl-mapcan")
8181 (("',\\(cl-mapcan #'process-css-rule rules\\)")
8182 "(cl-mapcan #'process-css-rule ',rules)"))
8183 (substitute* "esxml-form.el"
8184 ((",esxml-form-field-defn")
8185 "#'esxml-form-field-defn"))
8186 ;; See: https://github.com/tali713/esxml/issues/25
8187 (delete-file "esxpath.el")
8188 #t)))))
8189 (propagated-inputs
8190 `(("emacs-kv" ,emacs-kv)))
8191 (home-page "https://github.com/tali713/esxml/")
8192 (synopsis "SXML for EmacsLisp")
8193 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
8194 Simply, this is the easiest way to write HTML or XML in Lisp. This library
8195 uses the native form of XML representation as used by many libraries already
8196 included within Emacs. See @code{esxml-to-xml} for a concise description of
8197 the format.")
8198 (license license:gpl3+)))
8199
8200 (define-public emacs-nov-el
8201 (package
8202 (name "emacs-nov-el")
8203 (version "0.2.6")
8204 (source (origin
8205 (method git-fetch)
8206 (uri (git-reference
8207 (url "https://github.com/wasamasa/nov.el.git")
8208 (commit version)))
8209 (file-name (git-file-name name version))
8210 (sha256
8211 (base32
8212 "188h5gzn1zf443g0b7q5bpmvvpr6ds5h8aci8vxc92py56rhyrvc"))))
8213 (build-system emacs-build-system)
8214 (arguments
8215 `(#:phases
8216 (modify-phases %standard-phases
8217 (add-after 'unpack 'embed-path-to-unzip
8218 (lambda _
8219 (substitute* "nov.el"
8220 (("\\(executable-find \"unzip\"\\)")
8221 (string-append "\"" (which "unzip") "\"")))
8222 #t)))))
8223 (propagated-inputs
8224 `(("emacs-dash" ,emacs-dash)
8225 ("emacs-esxml" ,emacs-esxml)))
8226 (inputs
8227 `(("unzip" ,unzip)))
8228 (home-page "https://github.com/wasamasa/nov.el/")
8229 (synopsis "Major mode for reading EPUBs in Emacs")
8230 (description "@code{nov.el} provides a major mode for reading EPUB
8231 documents.
8232
8233 Features:
8234
8235 @itemize
8236 @item Basic navigation (jump to TOC, previous/next chapter)
8237 @item Remembering and restoring the last read position
8238 @item Jump to next chapter when scrolling beyond end
8239 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
8240 @item Hyperlinks to internal and external targets
8241 @item Supports textual and image documents
8242 @item View source of document files
8243 @item Metadata display
8244 @item Image rescaling
8245 @end itemize
8246 ")
8247 (license license:gpl3+)))
8248
8249 (define-public epipe
8250 (package
8251 (name "epipe")
8252 (version "0.1.0")
8253 (source
8254 (origin
8255 (method url-fetch)
8256 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
8257 version ".tar.gz"))
8258 (file-name (string-append name "-" version ".tar.gz"))
8259 (sha256
8260 (base32
8261 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
8262 (build-system trivial-build-system)
8263 (inputs
8264 `(("bash" ,bash)
8265 ("perl" ,perl)))
8266 (native-inputs
8267 `(("tar" ,tar)
8268 ("gzip" ,gzip)))
8269 (arguments
8270 `(#:modules
8271 ((guix build utils))
8272 #:builder
8273 (begin
8274 (use-modules (guix build utils))
8275 ;; Extract source
8276 (setenv "PATH" (string-append
8277 (assoc-ref %build-inputs "tar") "/bin" ":"
8278 (assoc-ref %build-inputs "gzip") "/bin"))
8279 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
8280 (chdir (string-append ,name "-" ,version))
8281 ;; Patch shebangs
8282 (substitute* "epipe"
8283 (("/usr/bin/env bash")
8284 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
8285 (patch-shebang "epipe.pl"
8286 (list (string-append (assoc-ref %build-inputs "perl")
8287 "/bin")))
8288 ;; Installation
8289 (for-each (lambda (file)
8290 (install-file file (string-append %output "/bin")))
8291 '("epipe" "epipe.pl"))
8292 #t)))
8293 (home-page "https://github.com/cute-jumper/epipe")
8294 (synopsis "Pipe to the @code{emacsclient}")
8295 (description "@code{epipe} provides an utility to use your editor in
8296 the pipeline, featuring the support for running @code{emacsclient}.")
8297 (license license:gpl3+)))
8298
8299 (define-public emacs-hcl-mode
8300 (package
8301 (name "emacs-hcl-mode")
8302 (version "0.03")
8303 (source
8304 (origin
8305 (method url-fetch)
8306 (uri (string-append
8307 "https://github.com/syohex/emacs-hcl-mode/archive/"
8308 version ".tar.gz"))
8309 (file-name (string-append name "-" version ".tar.gz"))
8310 (sha256
8311 (base32
8312 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
8313 (build-system emacs-build-system)
8314 (home-page "https://github.com/syohex/emacs-hcl-mode")
8315 (synopsis "Major mode for the Hashicorp Configuration Language")
8316 (description
8317 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
8318 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
8319 highlighting and indentation support.")
8320 (license license:gpl3+)))
8321
8322 (define-public emacs-terraform-mode
8323 (package
8324 (name "emacs-terraform-mode")
8325 (version "0.06")
8326 (source
8327 (origin
8328 (method url-fetch)
8329 (uri (string-append
8330 "https://github.com/syohex/emacs-terraform-mode/archive/"
8331 version ".tar.gz"))
8332 (file-name (string-append name "-" version ".tar.gz"))
8333 (sha256
8334 (base32
8335 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
8336 (build-system emacs-build-system)
8337 (propagated-inputs
8338 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
8339 (home-page "https://github.com/syohex/emacs-terraform-mode")
8340 (synopsis "Major mode for Terraform")
8341 (description
8342 "@code{emacs-terraform-mode} provides a major mode for working with
8343 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
8344 functionality is inherited from @code{hcl-mode}.")
8345 (license license:gpl3+)))
8346
8347 (define-public emacs-exec-path-from-shell
8348 (package
8349 (name "emacs-exec-path-from-shell")
8350 (version "1.11")
8351 (source
8352 (origin
8353 (method url-fetch)
8354 (uri (string-append
8355 "https://stable.melpa.org/packages/exec-path-from-shell-"
8356 version ".el"))
8357 (sha256
8358 (base32
8359 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
8360 (build-system emacs-build-system)
8361 (home-page "https://github.com/purcell/exec-path-from-shell")
8362 (synopsis "Get environment variables such as @var{PATH} from the shell")
8363 (description
8364 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8365 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8366 the like work as expected on systems on which Emacs is not guaranteed to
8367 inherit a login shell's environment variables. It also allows other
8368 environment variables to be retrieved from the shell, so that Emacs will see
8369 the same values you get in a terminal.")
8370 (license license:gpl3+)))
8371
8372 (define-public emacs-deft
8373 (package
8374 (name "emacs-deft")
8375 (version "0.8")
8376 (source
8377 (origin
8378 (method url-fetch)
8379 (uri (string-append "https://stable.melpa.org/packages/deft-"
8380 version ".el"))
8381 (sha256
8382 (base32
8383 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8384 (build-system emacs-build-system)
8385 (home-page "https://jblevins.org/projects/deft/")
8386 (synopsis "Quickly browse, filter, and edit plain text notes")
8387 (description
8388 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8389 directories of plain text notes, inspired by Notational Velocity.")
8390 (license license:bsd-3)))
8391
8392 (define-public emacs-anzu
8393 (package
8394 (name "emacs-anzu")
8395 (version "0.62")
8396 (source
8397 (origin
8398 (method url-fetch)
8399 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
8400 version ".tar.gz"))
8401 (file-name (string-append name "-" version ".tar.gz"))
8402 (sha256
8403 (base32
8404 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
8405 (build-system emacs-build-system)
8406 (home-page "https://github.com/syohex/emacs-anzu")
8407 (synopsis "Show number of matches in mode-line while searching")
8408 (description
8409 "Anzu provides a minor mode which displays \"current match/total
8410 matches\" in the mode line in various search modes. This is an Emacs port of
8411 Anzu.zim.")
8412 (license license:gpl3+)))
8413
8414 (define-public emacs-emmet-mode
8415 (package
8416 (name "emacs-emmet-mode")
8417 (version "1.0.8")
8418 (source (origin
8419 (method url-fetch)
8420 (uri (string-append "https://github.com/smihica/emmet-mode"
8421 "/archive/" version ".tar.gz"))
8422 (file-name (string-append name "-" version ".tar.gz"))
8423 (sha256
8424 (base32
8425 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
8426 (build-system emacs-build-system)
8427 (home-page "https://github.com/smihica/emmet-mode")
8428 (synopsis "Unofficial Emmet's support for Emacs")
8429 (description
8430 "Unfold CSS-selector-like expressions to markup. It is intended to be
8431 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8432 (license license:gpl3+)))
8433
8434 (define-public emacs-ergoemacs-mode
8435 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8436 (revision "1"))
8437 (package
8438 (name "emacs-ergoemacs-mode")
8439 (version (git-version "5.16.10.12" revision commit))
8440 (source
8441 (origin
8442 (method git-fetch)
8443 (uri (git-reference
8444 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8445 (commit commit)))
8446 (sha256
8447 (base32
8448 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8449 (build-system emacs-build-system)
8450 (propagated-inputs
8451 `(("emacs-undo-tree" ,emacs-undo-tree)))
8452 (home-page "https://ergoemacs.github.io/")
8453 (synopsis "Emacs mode based on common modern interface and ergonomics")
8454 (description
8455 "This package provides an efficient Emacs keybinding set based on
8456 statistics of command frequency, and supports common shortcuts for open,
8457 close, copy, cut, paste, undo, redo.")
8458 (license license:gpl3+))))
8459
8460 (define-public emacs-password-store
8461 (package
8462 (name "emacs-password-store")
8463 (version "1.7.3")
8464 (source (origin
8465 (method url-fetch)
8466 (uri
8467 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8468 "password-store-" version ".tar.xz"))
8469 (sha256
8470 (base32
8471 "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b"))))
8472 (build-system emacs-build-system)
8473 (arguments
8474 `(#:phases
8475 (modify-phases %standard-phases
8476 (add-after 'unpack 'extract-el-file
8477 (lambda _
8478 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8479 (delete-file-recursively "contrib")
8480 (delete-file-recursively "man")
8481 (delete-file-recursively "src")
8482 (delete-file-recursively "tests"))))))
8483 (propagated-inputs
8484 `(("emacs-f" ,emacs-f)
8485 ("emacs-s" ,emacs-s)
8486 ("emacs-with-editor" ,emacs-with-editor)
8487 ("password-store" ,password-store)))
8488 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8489 (synopsis "Password store (pass) support for Emacs")
8490 (description
8491 "This package provides functions for working with pass (\"the
8492 standard Unix password manager\").")
8493 (license license:gpl2+)))
8494
8495 (define-public emacs-pass
8496 (package
8497 (name "emacs-pass")
8498 (version "1.8")
8499 (source (origin
8500 (method url-fetch)
8501 (uri (string-append
8502 "https://github.com/NicolasPetton/pass/archive/"
8503 version ".tar.gz"))
8504 (sha256
8505 (base32
8506 "0aiz90gklk0cb8n4v1s3l0mx6pp2b7f4k2c0fjpihwmga13yklwn"))
8507 (file-name (string-append name "-" version ".tar.gz"))))
8508 (build-system emacs-build-system)
8509 (propagated-inputs
8510 `(("emacs-password-store" ,emacs-password-store)
8511 ("emacs-f" ,emacs-f)))
8512 (home-page "https://github.com/NicolasPetton/pass")
8513 (synopsis "Major mode for @file{password-store.el}")
8514 (description "This is a major mode for managing password-store (pass)
8515 keychains. The keychain entries are displayed in a directory-like structure
8516 and can be consulted and modified.")
8517 (license license:gpl3+)))
8518
8519 (define-public emacs-evil-anzu
8520 (package
8521 (name "emacs-evil-anzu")
8522 (version "0.03")
8523 (source
8524 (origin
8525 (method url-fetch)
8526 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8527 "/archive/" version ".tar.gz"))
8528 (file-name (string-append name "-" version ".tar.gz"))
8529 (sha256
8530 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8531 (build-system emacs-build-system)
8532 (propagated-inputs
8533 `(("emacs-evil" ,emacs-evil)
8534 ("emacs-anzu" ,emacs-anzu)))
8535 (home-page "https://github.com/syohex/emacs-evil-anzu")
8536 (synopsis "Anzu for evil-mode")
8537 (description "@code{anzu} provides a minor mode that displays the current
8538 match and total match information in the mode-line in various search modes.")
8539 (license license:gpl3+)))
8540
8541 (define-public emacs-pg
8542 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8543 (package
8544 (name "emacs-pg")
8545 (version (git-version "0.1" "1" commit))
8546 (source (origin
8547 (method git-fetch)
8548 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8549 (commit commit)))
8550 (file-name (git-file-name name version))
8551 (sha256
8552 (base32
8553 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8554 (build-system emacs-build-system)
8555 (home-page "https://github.com/cbbrowne/pg.el")
8556 (synopsis "Emacs Lisp interface for PostgreSQL")
8557 (description
8558 "This package provides an Emacs Lisp interface for PostgreSQL.")
8559 (license license:gpl3+))))
8560
8561 (define-public emacs-cl-generic
8562 (package
8563 (name "emacs-cl-generic")
8564 (version "0.3")
8565 (source
8566 (origin
8567 (method url-fetch)
8568 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8569 version ".el"))
8570 (sha256
8571 (base32
8572 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8573 (build-system emacs-build-system)
8574 (home-page "https://elpa.gnu.org/packages/seq.html")
8575 (synopsis
8576 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8577 (description "This package provides a subset of the features of the
8578 @code{cl-generic} package introduced in Emacs-25, for use on previous
8579 @code{emacsen}.")
8580 (license license:gpl3+)))
8581
8582 (define-public emacs-finalize
8583 (package
8584 (name "emacs-finalize")
8585 (version "2.0.0")
8586 (source
8587 (origin
8588 (method url-fetch)
8589 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
8590 version ".tar.gz"))
8591 (file-name (string-append name "-" version ".tar.gz"))
8592 (sha256
8593 (base32
8594 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
8595 (build-system emacs-build-system)
8596 (propagated-inputs
8597 `(("emacs-cl-generic" ,emacs-cl-generic)))
8598 (home-page "https://github.com/skeeto/elisp-finalize")
8599 (synopsis "Finalizers for Emacs Lisp")
8600 (description
8601 "This package will allows to immediately run a callback (a finalizer)
8602 after its registered lisp object has been garbage collected. This allows for
8603 extra resources, such as buffers and processes, to be cleaned up after the
8604 object has been freed.")
8605 (license license:unlicense)))
8606
8607 (define-public emacs-emacsql
8608 (package
8609 (name "emacs-emacsql")
8610 (version "3.0.0")
8611 (source (origin
8612 (method git-fetch)
8613 (uri (git-reference
8614 (url "https://github.com/skeeto/emacsql.git")
8615 (commit (string-append version))))
8616 (file-name (git-file-name name version))
8617 (sha256
8618 (base32
8619 "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"))))
8620 (build-system emacs-build-system)
8621 (arguments
8622 `(#:modules ((guix build emacs-build-system)
8623 (guix build utils)
8624 (guix build emacs-utils)
8625 (srfi srfi-26))
8626 #:phases
8627 (modify-phases %standard-phases
8628 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8629 (add-before 'install 'patch-elisp-shell-shebangs
8630 (lambda _
8631 (substitute* (find-files "." "\\.el")
8632 (("/bin/sh") (which "sh")))
8633 #t))
8634 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8635 (lambda _
8636 (setenv "SHELL" "sh")))
8637 (add-after 'setenv-shell 'build-emacsql-sqlite
8638 (lambda _
8639 (invoke "make" "binary" "CC=gcc")))
8640 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
8641 ;; This build phase installs emacs-emacsql binary.
8642 (lambda* (#:key outputs #:allow-other-keys)
8643 (install-file "sqlite/emacsql-sqlite"
8644 (string-append (assoc-ref outputs "out")
8645 "/bin"))
8646 #t))
8647 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
8648 ;; This build phase removes interactive prompts
8649 ;; and makes sure Emacs look for binaries in the right places.
8650 (lambda* (#:key outputs #:allow-other-keys)
8651 (let ((file "emacsql-sqlite.el"))
8652 (chmod file #o644)
8653 (emacs-substitute-sexps file
8654 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
8655 ("(executable-find" (which "gcc"))
8656 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
8657 ;; in the right place.
8658 ("(defvar emacsql-sqlite-executable"
8659 (string-append (assoc-ref outputs "out")
8660 "/bin/emacsql-sqlite"))))))
8661 (replace 'install
8662 (lambda* (#:key outputs #:allow-other-keys)
8663 (let* ((out (assoc-ref outputs "out")))
8664 (install-file "sqlite/emacsql-sqlite"
8665 (string-append out "/bin"))
8666 (for-each (cut install-file <>
8667 (string-append out "/share/emacs/site-lisp/guix.d/"
8668 "emacsql" "-" ,version))
8669 (find-files "." "\\.elc*$")))
8670 #t)))))
8671 (inputs
8672 `(("emacs-minimal" ,emacs-minimal)
8673 ("mariadb" ,mariadb)
8674 ("postgresql" ,postgresql)))
8675 (propagated-inputs
8676 `(("emacs-finalize" ,emacs-finalize)
8677 ("emacs-pg" ,emacs-pg)))
8678 (home-page "https://github.com/skeeto/emacsql")
8679 (synopsis "Emacs high-level SQL database front-end")
8680 (description "Any readable Lisp value can be stored as a value in EmacSQL,
8681 including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
8682 has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
8683 object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
8684 (license license:gpl3+)))
8685
8686 (define-public emacs-closql
8687 (package
8688 (name "emacs-closql")
8689 (version "1.0.0")
8690 (source
8691 (origin
8692 (method git-fetch)
8693 (uri (git-reference
8694 (url "https://github.com/emacscollective/closql.git")
8695 (commit (string-append "v" version))))
8696 (file-name (git-file-name name version))
8697 (sha256
8698 (base32
8699 "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"))))
8700 (build-system emacs-build-system)
8701 (propagated-inputs
8702 `(("emacs-emacsql" ,emacs-emacsql)))
8703 (home-page "https://github.com/emacscollective/closql")
8704 (synopsis "Store EIEIO objects using EmacSQL")
8705 (description
8706 "This package allows to store uniform EIEIO objects in an EmacSQL
8707 database. SQLite is used as backend. This library imposes some restrictions
8708 on what kind of objects can be stored; it isn't intended to store arbitrary
8709 objects. All objects have to share a common superclass and subclasses cannot
8710 add any additional instance slots.")
8711 (license license:gpl3)))
8712
8713 (define-public emacs-epkg
8714 ;; The release version is to old for the current database scheme.
8715 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
8716 (package
8717 (name "emacs-epkg")
8718 (version (git-version "3.0.0" "1" commit))
8719 (source
8720 (origin
8721 (method git-fetch)
8722 (uri (git-reference
8723 (url "https://github.com/emacscollective/epkg.git")
8724 (commit commit)))
8725 (file-name (git-file-name name version))
8726 (sha256
8727 (base32
8728 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
8729 (build-system emacs-build-system)
8730 (propagated-inputs
8731 `(("emacs-closql" ,emacs-closql)
8732 ("emacs-dash" ,emacs-dash)))
8733 (home-page "https://emacsmirror.net")
8734 (synopsis "Browse the Emacsmirror package database")
8735 (description "This package provides access to a local copy of the
8736 Emacsmirror package database. It provides low-level functions for querying
8737 the database and a @file{package.el} user interface for browsing the database.
8738 Epkg itself is not a package manager.
8739
8740 Getting a local copy:
8741
8742 @example
8743 git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8744 cd ~/.emacs.d/epkgs
8745 git submodule init
8746 git config --global url.https://github.com/.insteadOf git@@github.com:
8747 git submodule update
8748 @end example
8749
8750 Some submodule may be missing. In this case Git will prompt for a GitHub user
8751 name and password. To skip it press a @key{Return} key.
8752
8753 You could get a Epkg package list by invoking @code{epkg-list-packages} in
8754 Emacs.")
8755 (license license:gpl3+))))
8756
8757 (define-public emacs-elisp-slime-nav
8758 (package
8759 (name "emacs-elisp-slime-nav")
8760 (version "0.9")
8761 (source
8762 (origin
8763 (method url-fetch)
8764 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8765 version ".tar.gz"))
8766 (file-name (string-append name "-" version ".tar.gz"))
8767 (sha256
8768 (base32
8769 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8770 (build-system emacs-build-system)
8771 (home-page "https://github.com/purcell/elisp-slime-nav")
8772 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8773 (description
8774 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8775 in @code{emacs-lisp-mode}, together with an elisp equivalent of
8776 @code{slime-describe-symbol}.")
8777 (license license:gpl3+)))
8778
8779 (define-public emacs-dedicated
8780 (package
8781 (name "emacs-dedicated")
8782 (version "1.0.0")
8783 (source (origin
8784 (method url-fetch)
8785 (uri (string-append
8786 "https://github.com/emacsorphanage/dedicated/archive/"
8787 version
8788 ".tar.gz"))
8789 (sha256
8790 (base32
8791 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8792 (file-name (string-append name "-" version ".tar.gz"))))
8793 (build-system emacs-build-system)
8794 (home-page "https://github.com/emacsorphanage/dedicated")
8795 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8796 (description
8797 "This simple Emacs minor mode allows you to toggle a window's
8798 \"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8799 files into that window. This can be quite handy since many commands will use
8800 another window to show results (compilation mode, starting info, and so on).
8801 A dedicated window won't be used for such a purpose. For details, please read
8802 the source file.")
8803 (license license:gpl2+)))
8804
8805 (define-public emacs-nnreddit
8806 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8807 (revision "1"))
8808 (package
8809 (name "emacs-nnreddit")
8810 (version (string-append "0.0.1-" revision "."
8811 (string-take commit 7)))
8812 (source (origin
8813 (method git-fetch)
8814 (uri (git-reference
8815 (url "https://github.com/paul-issartel/nnreddit.git")
8816 (commit commit)))
8817 (file-name (string-append name "-" version "-checkout"))
8818 (sha256
8819 (base32
8820 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8821 (build-system emacs-build-system)
8822 (home-page "https://github.com/paul-issartel/nnreddit")
8823 (synopsis "Reddit backend for the Gnus newsreader")
8824 (description "@url{https://www.reddit.com} backend for the Gnus
8825 newsreader.")
8826 (license license:gpl3+))))
8827
8828 (define-public emacs-makey
8829 (package
8830 (name "emacs-makey")
8831 (version "0.3")
8832 (source
8833 (origin
8834 (method url-fetch)
8835 (uri (string-append "https://github.com/mickeynp/makey/archive/"
8836 version ".tar.gz"))
8837 (file-name (string-append name "-" version ".tar.gz"))
8838 (sha256
8839 (base32
8840 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
8841 (build-system emacs-build-system)
8842 (home-page "https://github.com/mickeynp/makey")
8843 (synopsis "Emacs interactive command-line mode")
8844 (description
8845 "This package provides an Emacs interactive command-line mode.")
8846 (license license:gpl3+)))
8847
8848 (define-public emacs-outorg
8849 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
8850 (package
8851 (name "emacs-outorg")
8852 (version (git-version "2.0" "1" commit))
8853 (source
8854 (origin
8855 (method git-fetch)
8856 (uri (git-reference
8857 (url "https://github.com/alphapapa/outorg")
8858 (commit commit)))
8859 (file-name (git-file-name name version))
8860 (sha256
8861 (base32
8862 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
8863 (build-system emacs-build-system)
8864 (home-page "https://github.com/alphapapa/outorg")
8865 (synopsis "Org-style comment editing")
8866 (description "Outorg is for editing comment-sections of source-code
8867 files in temporary Org-mode buffers. It turns conventional
8868 literate-programming upside-down in that the default mode is the
8869 programming-mode, and special action has to be taken to switch to the
8870 text-mode (i.e. Org-mode).")
8871 (license license:gpl3+))))
8872
8873 (define-public emacs-outshine
8874 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
8875 (package
8876 (name "emacs-outshine")
8877 (version (git-version "2.0" "1" commit))
8878 (source (origin
8879 (method git-fetch)
8880 (uri (git-reference
8881 (url "https://github.com/alphapapa/outshine.git")
8882 (commit commit)))
8883 (file-name (git-file-name name version))
8884 (sha256
8885 (base32
8886 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
8887 (build-system emacs-build-system)
8888 (propagated-inputs
8889 `(("emacs-outorg" ,emacs-outorg)))
8890 (home-page "https://github.com/alphapapa/outshine")
8891 (synopsis "Emacs outline with outshine")
8892 (description "Outshine attempts to bring the look and feel of
8893 @code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
8894 of @code{outline-minor-mode} (@code{org-mode} itself derives from
8895 outline-mode), so there is no such thing like an outshine mode, only
8896 @code{outline-minor-mode} with outshine extensions loaded.")
8897 (license license:gpl3+))))
8898
8899 (define-public emacs-parsebib
8900 (package
8901 (name "emacs-parsebib")
8902 (version "2.3.1")
8903 (source
8904 (origin
8905 (method url-fetch)
8906 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
8907 version ".tar.gz"))
8908 (file-name (string-append name "-" version ".tar.gz"))
8909 (sha256
8910 (base32
8911 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
8912 (build-system emacs-build-system)
8913 (home-page "https://github.com/joostkremers/parsebib")
8914 (synopsis "Library for parsing bib files")
8915 (description
8916 "This package provides an Emacs library for parsing bib files.")
8917 (license license:gpl3+)))
8918
8919 (define-public emacs-biblio
8920 (package
8921 (name "emacs-biblio")
8922 (version "0.2")
8923 (source
8924 (origin
8925 (method url-fetch)
8926 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
8927 version ".tar.gz"))
8928 (file-name (string-append name "-" version ".tar.gz"))
8929 (sha256
8930 (base32
8931 "0vwrljmab8m1z83048gxx5mryml9f5pb3h0jpwkvqcl0ra152lzx"))))
8932 (build-system emacs-build-system)
8933 (propagated-inputs
8934 `(("emacs-seq" ,emacs-seq)
8935 ("emacs-dash" ,emacs-dash)
8936 ("emacs-let-alist" ,emacs-let-alist)))
8937 (home-page "https://github.com/cpitclaudel/biblio.el")
8938 (synopsis "Browse and import bibliographic references")
8939 (description "This package provides an extensible Emacs package for
8940 browsing and fetching references.
8941
8942 @file{biblio.el} makes it easy to browse and gather bibliographic references
8943 and publications from various sources, by keywords or by DOI. References are
8944 automatically fetched from well-curated sources, and formatted as BibTeX.")
8945 (license license:gpl3+)))
8946
8947 (define-public emacs-helm-bibtex
8948 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
8949 (revision "1"))
8950 (package
8951 (name "emacs-helm-bibtex")
8952 (version (string-append "2.0.0" "-" revision "."
8953 (string-take commit 7)))
8954 (source
8955 (origin
8956 (method git-fetch)
8957 (uri (git-reference
8958 (url "https://github.com/tmalsburg/helm-bibtex.git")
8959 (commit commit)))
8960 (file-name (string-append name "-" version "-checkout"))
8961 (sha256
8962 (base32
8963 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
8964 (build-system emacs-build-system)
8965 (propagated-inputs
8966 `(("emacs-helm" ,emacs-helm)
8967 ("emacs-parsebib" ,emacs-parsebib)
8968 ("emacs-s" ,emacs-s)
8969 ("emacs-dash" ,emacs-dash)
8970 ("emacs-f" ,emacs-f)
8971 ("emacs-biblio" ,emacs-biblio)
8972 ("emacs-ivy" ,emacs-ivy)))
8973 (home-page "https://github.com/tmalsburg/helm-bibtex")
8974 (synopsis "Bibliography manager based on Helm")
8975 (description "This package provides bibliography manager for Emacs,
8976 based on Helm and the bibtex-completion backend.
8977
8978 Key features:
8979
8980 @itemize
8981 @item Quick access to your bibliography from within Emacs
8982 @item Powerful search capabilities
8983 @item Provides instant search results as you type
8984 @item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
8985 @item Open the PDFs, URLs, or DOIs associated with an entry
8986 @item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
8987 BibTeX entries, or plain text references at point, attach PDFs to emails
8988 @item Support for note taking
8989 @item Quick access to online bibliographic databases such as Pubmed,
8990 arXiv, Google Scholar, Library of Congress, etc.
8991 @item Imports BibTeX entries from CrossRef and other sources.
8992 @end itemize\n")
8993 (license license:gpl3+))))
8994
8995 (define-public emacs-ewmctrl
8996 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
8997 (package
8998 (name "emacs-ewmctrl")
8999 (version (git-version "0.0.1" "1" commit))
9000 (source
9001 (origin
9002 (method git-fetch)
9003 (uri (git-reference
9004 (url "https://github.com/flexibeast/ewmctrl.git")
9005 (commit commit)))
9006 (file-name (git-file-name name version))
9007 (sha256
9008 (base32
9009 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
9010 (build-system emacs-build-system)
9011 (arguments
9012 '(#:phases
9013 (modify-phases %standard-phases
9014 (add-after 'unpack 'patch-ewmctrl
9015 ;; This build phase makes sure ‘ewmctrl’ looks
9016 ;; for ‘wmctrl’ in the right place.
9017 (lambda _
9018 (let ((file "ewmctrl.el"))
9019 (chmod file #o644)
9020 (emacs-substitute-sexps file
9021 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
9022 (inputs
9023 `(("wmctrl" ,wmctrl)))
9024 (home-page "https://github.com/flexibeast/ewmctrl")
9025 (synopsis "Emacs interface to @code{wmctrl}")
9026 (description "@code{ewmctrl} provides an Emacs interface to
9027 @code{wmctrl} command-line window-management program.")
9028 (license license:gpl3+))))
9029
9030 (define-public emacs-helm-gtags
9031 (package
9032 (name "emacs-helm-gtags")
9033 (version "1.5.6")
9034 (source (origin
9035 (method url-fetch)
9036 (uri (string-append
9037 "https://github.com/syohex/emacs-helm-gtags/archive/"
9038 version ".tar.gz"))
9039 (file-name (string-append name "-" version ".tar.gz"))
9040 (sha256
9041 (base32
9042 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
9043 (build-system emacs-build-system)
9044 (propagated-inputs
9045 `(("emacs-helm" ,emacs-helm)))
9046 (home-page "https://github.com/syohex/emacs-helm-gtags")
9047 (synopsis "Emacs Helm interface to GNU Global")
9048 (description
9049 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
9050 (license license:gpl3+)))
9051
9052 (define-public emacs-list-utils
9053 (package
9054 (name "emacs-list-utils")
9055 (version "0.4.4")
9056 (source
9057 (origin
9058 (method url-fetch)
9059 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
9060 "v" version ".tar.gz"))
9061 (file-name (string-append name "-" version ".tar.gz"))
9062 (sha256
9063 (base32
9064 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
9065 (build-system emacs-build-system)
9066 (home-page "https://github.com/rolandwalker/list-utils")
9067 (synopsis "List-manipulation utility functions")
9068 (description "This package provides a list manipulation library for Emacs.")
9069 (license license:gpl3+)))
9070
9071 (define-public emacs-move-text
9072 (package
9073 (name "emacs-move-text")
9074 (version "2.0.8")
9075 (source
9076 (origin
9077 (method url-fetch)
9078 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
9079 version ".tar.gz"))
9080 (file-name (string-append name "-" version ".tar.gz"))
9081 (sha256
9082 (base32
9083 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
9084 (build-system emacs-build-system)
9085 (home-page "https://github.com/emacsfodder/move-text")
9086 (synopsis "Move current line or region with M-up or M-down")
9087 (description "This package provide functions to move the current line
9088 using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
9089 region instead.")
9090 (license license:gpl3+)))
9091
9092 (define-public emacs-validate
9093 (package
9094 (name "emacs-validate")
9095 (version "1.0.5")
9096 (source (origin
9097 (method url-fetch)
9098 (uri (string-append "https://github.com/Malabarba/validate.el"
9099 "/archive/" version ".tar.gz"))
9100 (file-name (string-append name "-" version ".tar.gz"))
9101 (sha256
9102 (base32
9103 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
9104 (build-system emacs-build-system)
9105 (home-page "https://github.com/Malabarba/validate.el")
9106 (synopsis "Emacs library for scheme validation")
9107 (description "This Emacs library provides two functions that perform
9108 schema validation.")
9109 (license license:gpl3+)))
9110
9111 (define-public emacs-rainbow-blocks
9112 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
9113 (package
9114 (name "emacs-rainbow-blocks")
9115 (version (git-version "1.0.0" "1" commit))
9116 (source (origin
9117 (method git-fetch)
9118 (uri (git-reference
9119 (url "https://github.com/istib/rainbow-blocks.git")
9120 (commit commit)))
9121 (file-name (git-file-name name version))
9122 (sha256
9123 (base32
9124 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
9125 (build-system emacs-build-system)
9126 (home-page "https://github.com/istib/rainbow-blocks")
9127 (synopsis "Highlight sexp blocks")
9128 (description "Rainbow-blocks is an Emacs mode that highlights blocks
9129 made of parentheses, brackets, and braces according to their depth. Each
9130 successive level is highlighted in a different color. This makes it easy to
9131 orient yourself in the code, and tell which statements are at a given level.")
9132 (license license:gpl3+))))
9133
9134 (define-public emacs-hierarchy
9135 (package
9136 (name "emacs-hierarchy")
9137 (version "0.7.0")
9138 (source
9139 (origin
9140 (method url-fetch)
9141 (uri (string-append
9142 "https://github.com/DamienCassou/hierarchy/archive/"
9143 "v" version ".tar.gz"))
9144 (file-name (string-append name "-" version ".tar.gz"))
9145 (sha256
9146 (base32
9147 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
9148 (build-system emacs-build-system)
9149 (home-page "https://github.com/DamienCassou/hierarchy")
9150 (synopsis "Library to create and display hierarchy structures")
9151 (description "This package provides an Emacs library to create, query,
9152 navigate and display hierarchy structures.")
9153 (license license:gpl3+)))
9154
9155 (define-public emacs-tree-mode
9156 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
9157 (revision "1"))
9158 (package
9159 (name "emacs-tree-mode")
9160 (version (string-append "0.0.1" "-" revision "."
9161 (string-take commit 7)))
9162 (source
9163 (origin
9164 (method git-fetch)
9165 (uri (git-reference
9166 (url "https://github.com/emacsorphanage/tree-mode.git")
9167 (commit commit)))
9168 (file-name (string-append name "-" version "-checkout"))
9169 (sha256
9170 (base32
9171 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
9172 (build-system emacs-build-system)
9173 (home-page "https://github.com/emacsorphanage/tree-mode")
9174 (synopsis "Emacs mode to manage tree widgets")
9175 (description
9176 "This package provides an Emacs library to manage tree widgets.")
9177 (license license:gpl3+))))
9178
9179 (define-public emacs-md4rd
9180 (let ((commit "c55512c2f7680db2a1e73db6bdf93adecaf40fec")
9181 (revision "1"))
9182 (package
9183 (name "emacs-md4rd")
9184 (version (string-append "0.0.2" "-" revision "."
9185 (string-take commit 7)))
9186 (source (origin
9187 (method git-fetch)
9188 (uri (git-reference
9189 (url "https://github.com/ahungry/md4rd.git")
9190 (commit commit)))
9191 (file-name (string-append name "-" version "-checkout"))
9192 (sha256
9193 (base32
9194 "0mvv1mvsrpkrmikcpfqf2zbawnzgq33j6zjdrlv48mcw57xb2ak9"))))
9195 (propagated-inputs
9196 `(("emacs-hierarchy" ,emacs-hierarchy)
9197 ("emacs-request" ,emacs-request)
9198 ("emacs-dash" ,emacs-dash)
9199 ("emacs-s" ,emacs-s)
9200 ("emacs-tree-mode" ,emacs-tree-mode)))
9201 (build-system emacs-build-system)
9202 (home-page "https://github.com/ahungry/md4rd")
9203 (synopsis "Emacs Mode for Reddit")
9204 (description
9205 "This package allows to read Reddit from within Emacs interactively.")
9206 (license license:gpl3+))))
9207
9208 (define-public emacs-pulseaudio-control
9209 (let ((commit "7e1a87068379075a5e9ce36c64c686c03d20d379")
9210 (revision "3"))
9211 (package
9212 (name "emacs-pulseaudio-control")
9213 (version (git-version "0.0.1" revision commit))
9214 (source
9215 (origin
9216 (method git-fetch)
9217 (uri (git-reference
9218 (url "https://github.com/flexibeast/pulseaudio-control.git")
9219 (commit commit)))
9220 (file-name (git-file-name name version))
9221 (sha256
9222 (base32
9223 "0wcaqyh15x56255rrj350089z15pnwixa2vf0ly6dv0hjmzmh3mr"))))
9224 (build-system emacs-build-system)
9225 (arguments
9226 '(#:phases (modify-phases %standard-phases
9227 (add-after 'unpack 'patch-file-name
9228 (lambda* (#:key inputs #:allow-other-keys)
9229 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
9230 (chmod "pulseaudio-control.el" #o600)
9231 (emacs-substitute-variables "pulseaudio-control.el"
9232 ("pulseaudio-control-pactl-path"
9233 (string-append pulseaudio "/bin/pactl")))
9234 #t))))))
9235 (inputs `(("pulseaudio" ,pulseaudio)))
9236 (home-page "https://github.com/flexibeast/pulseaudio-control")
9237 (synopsis "Control @code{pulseaudio} from Emacs")
9238 (description
9239 "This package allows to control @code{pulseaudio} from Emacs.")
9240 (license license:gpl3+))))
9241
9242 (define-public emacs-datetime
9243 (package
9244 (name "emacs-datetime")
9245 (version "0.3")
9246 (source (origin
9247 (method url-fetch)
9248 (uri (string-append
9249 "https://github.com/doublep/datetime/archive/"
9250 version ".tar.gz"))
9251 (file-name (string-append name "-" version ".tar.gz"))
9252 (sha256
9253 (base32
9254 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
9255 (build-system emacs-build-system)
9256 (home-page "https://github.com/doublep/datetime/")
9257 (synopsis "Library to work with dates in Emacs")
9258 (description "Parsing, formatting, matching and recoding
9259 timestamps and date-time format strings library for Emacs.")
9260 (license license:gpl3+)))
9261
9262 (define-public emacs-org-mind-map
9263 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
9264 (revision "1"))
9265 (package
9266 (name "emacs-org-mind-map")
9267 (version (string-append "0.0.1" "-" revision "."
9268 (string-take commit 7)))
9269 (source
9270 (origin
9271 (method git-fetch)
9272 (uri (git-reference
9273 (url "https://github.com/theodorewiles/org-mind-map.git")
9274 (commit commit)))
9275 (file-name (string-append name "-" version "-checkout"))
9276 (sha256
9277 (base32
9278 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
9279 (propagated-inputs
9280 `(("emacs-dash" ,emacs-dash)))
9281 (build-system emacs-build-system)
9282 (home-page "https://github.com/theodorewiles/org-mind-map")
9283 (synopsis "Create Graphviz directed graphs from Org files")
9284 (description
9285 "This package creates Graphviz directed graphs from Org files.")
9286 (license license:gpl3+))))
9287
9288 (define-public emacs-npm-mode
9289 (package
9290 (name "emacs-npm-mode")
9291 (version "0.6.0")
9292 (source
9293 (origin
9294 (method url-fetch)
9295 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
9296 version ".tar.gz"))
9297 (file-name (string-append name "-" version ".tar.gz"))
9298 (sha256
9299 (base32
9300 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
9301 (build-system emacs-build-system)
9302 (home-page "https://github.com/mojochao/npm-mode")
9303 (synopsis "Minor mode for working with @code{npm} projects")
9304 (description
9305 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
9306 (license license:gpl3+)))
9307
9308 (define-public emacs-seq
9309 (package
9310 (name "emacs-seq")
9311 (version "2.20")
9312 (source
9313 (origin
9314 (method url-fetch)
9315 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
9316 (sha256
9317 (base32
9318 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
9319 (build-system emacs-build-system)
9320 (home-page "http://elpa.gnu.org/packages/seq.html")
9321 (synopsis "Sequence manipulation functions")
9322 (description "Sequence-manipulation functions that complement basic
9323 functions provided by @file{subr.el}.")
9324 (license license:gpl3+)))
9325
9326 (define-public emacs-itail
9327 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
9328 (revision "1"))
9329 (package
9330 (name "emacs-itail")
9331 (version (string-append "0.0.1" "-" revision "."
9332 (string-take commit 7)))
9333 (source
9334 (origin
9335 (method git-fetch)
9336 (uri (git-reference
9337 (url "https://github.com/re5et/itail.git")
9338 (commit commit)))
9339 (file-name (string-append name "-" version "-checkout"))
9340 (sha256
9341 (base32
9342 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
9343 (build-system emacs-build-system)
9344 (home-page "https://github.com/re5et/itail")
9345 (synopsis "Interactive @code{tail} Emacs mode")
9346 (description "@code{itail} provides interactive @code{tail} mode
9347 that allows you to filter the tail with unix pipes and highlight the
9348 contents of the tailed file. Works locally or on remote files using
9349 tramp.")
9350 (license license:gpl3+))))
9351
9352 (define-public emacs-loop
9353 (package
9354 (name "emacs-loop")
9355 (version "1.3")
9356 (source
9357 (origin
9358 (method url-fetch)
9359 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9360 version ".tar.gz"))
9361 (file-name (string-append name "-" version ".tar.gz"))
9362 (sha256
9363 (base32
9364 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9365 (build-system emacs-build-system)
9366 (home-page "https://github.com/Wilfred/loop.el")
9367 (synopsis "Imperative loop structures for Emacs")
9368 (description "Loop structures familiar to users of other languages. This
9369 library adds a selection of popular loop structures as well as break and
9370 continue.")
9371 (license license:gpl3+)))
9372
9373 (define-public emacs-elisp-refs
9374 (package
9375 (name "emacs-elisp-refs")
9376 (version "1.3")
9377 (source
9378 (origin
9379 (method url-fetch)
9380 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9381 version ".tar.gz"))
9382 (file-name (string-append name "-" version ".tar.gz"))
9383 (sha256
9384 (base32
9385 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
9386 (build-system emacs-build-system)
9387 (propagated-inputs
9388 `(("emacs-dash" ,emacs-dash)
9389 ("emacs-f" ,emacs-f)
9390 ("emacs-list-utils" ,emacs-list-utils)
9391 ("emacs-loop" ,emacs-loop)
9392 ("emacs-s" ,emacs-s)
9393 ("emacs-shut-up" ,emacs-shut-up)))
9394 (home-page "https://github.com/Wilfred/elisp-refs")
9395 (synopsis "Find callers of elisp functions or macros")
9396 (description "Find references to functions, macros or variables. Unlike a
9397 dumb text search, @code{elisp-refs} actually parses the code, so it's never
9398 confused by comments or @code{foo-bar} matching @code{foo}.")
9399 (license license:gpl3+)))
9400
9401 (define-public emacs-crux
9402 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9403 (revision "1"))
9404 (package
9405 (name "emacs-crux")
9406 (version (string-append "0.3.0" "-" revision "."
9407 (string-take commit 7)))
9408 (source
9409 (origin
9410 (method git-fetch)
9411 (uri (git-reference
9412 (url "https://github.com/bbatsov/crux.git")
9413 (commit commit)))
9414 (file-name (string-append name "-" version "-checkout"))
9415 (sha256
9416 (base32
9417 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9418 (build-system emacs-build-system)
9419 (home-page "https://github.com/bbatsov/crux")
9420 (synopsis "Collection of useful functions for Emacs")
9421 (description
9422 "@code{crux} provides a collection of useful functions for Emacs.")
9423 (license license:gpl3+))))
9424
9425 (define-public emacs-edit-server
9426 (package
9427 (name "emacs-edit-server")
9428 (version "1.13")
9429 (source
9430 (origin
9431 (method url-fetch)
9432 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9433 "v" version ".tar.gz"))
9434 (file-name (string-append name "-" version ".tar.gz"))
9435 (sha256
9436 (base32
9437 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9438 (build-system emacs-build-system)
9439 (arguments
9440 `(#:phases
9441 (modify-phases %standard-phases
9442 (add-after 'unpack 'chdir-elisp
9443 ;; Elisp directory is not in root of the source.
9444 (lambda _
9445 (chdir "servers"))))))
9446 (home-page "https://github.com/stsquad/emacs_chrome")
9447 (synopsis "Server that responds to edit requests from Chromium")
9448 (description
9449 "This package provides an edit server to respond to requests from Emacs.")
9450 (license license:gpl3+)))
9451
9452 (define-public emacs-m-buffer-el
9453 (package
9454 (name "emacs-m-buffer-el")
9455 (version "0.15")
9456 (source
9457 (origin
9458 (method url-fetch)
9459 (uri (string-append "https://github.com/phillord/m-buffer-el"
9460 "/archive/" "v" version ".tar.gz"))
9461 (file-name (string-append name "-" version ".tar.gz"))
9462 (sha256
9463 (base32
9464 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9465 (arguments
9466 `(#:phases
9467 (modify-phases %standard-phases
9468 (add-before 'install 'check
9469 (lambda* (#:key inputs #:allow-other-keys)
9470 (invoke "emacs" "--batch" "-L" "."
9471 "-l" "test/m-buffer-test.el"
9472 "-l" "test/m-buffer-at-test.el"
9473 "-f" "ert-run-tests-batch-and-exit"))))))
9474 (build-system emacs-build-system)
9475 (home-page "https://github.com/phillord/m-buffer-el")
9476 (synopsis "List oriented buffer operations for Emacs")
9477 (description "@code{m-buffer} provides a set of list-orientated functions
9478 for operating over the contents of Emacs buffers.")
9479 (license license:gpl3+)))
9480
9481 (define-public emacs-let-alist
9482 (package
9483 (name "emacs-let-alist")
9484 (version "1.0.5")
9485 (source
9486 (origin
9487 (method url-fetch)
9488 (uri (string-append
9489 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9490 (sha256
9491 (base32
9492 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9493 (build-system emacs-build-system)
9494 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9495 (synopsis "Easily let-bind values of an assoc-list by their names")
9496 (description "This package offers a single macro, @code{let-alist}. This
9497 macro takes a first argument (whose value must be an alist) and a body.")
9498 (license license:gpl3+)))
9499
9500 (define-public emacs-esup
9501 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9502 (revision "1"))
9503 (package
9504 (name "emacs-esup")
9505 (version (string-append "0.6" "-" revision "."
9506 (string-take commit 7)))
9507 (source
9508 (origin
9509 (method git-fetch)
9510 (uri (git-reference
9511 (url "https://github.com/jschaf/esup.git")
9512 (commit commit)))
9513 (file-name (string-append name "-" version "-checkout"))
9514 (sha256
9515 (base32
9516 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9517 ;; TODO: Add tests
9518 (build-system emacs-build-system)
9519 (home-page "https://github.com/jschaf/esup")
9520 (synopsis "Emacs start up profiler")
9521 (description "Benchmark Emacs Startup time without ever leaving
9522 your Emacs.")
9523 (license license:gpl2+))))
9524
9525 (define-public emacs-sourcemap
9526 (package
9527 (name "emacs-sourcemap")
9528 (version "0.03")
9529 (source
9530 (origin
9531 (method url-fetch)
9532 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9533 version ".tar.gz"))
9534 (file-name (string-append name "-" version ".tar.gz"))
9535 (sha256
9536 (base32
9537 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9538 (build-system emacs-build-system)
9539 (home-page "https://github.com/syohex/emacs-sourcemap")
9540 (synopsis "Sourcemap parser")
9541 (description "Sourcemap parser")
9542 (license license:gpl3+)))
9543
9544 (define-public emacs-macrostep
9545 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9546 (package
9547 (name "emacs-macrostep")
9548 (version (git-version "0.9" "1" commit))
9549 (source (origin
9550 (method git-fetch)
9551 (uri (git-reference
9552 (url "https://github.com/joddie/macrostep.git")
9553 (commit commit)))
9554 (file-name (string-append name "-" version "-checkout"))
9555 (sha256
9556 (base32
9557 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9558 (build-system emacs-build-system)
9559 (arguments
9560 '(#:phases
9561 (modify-phases %standard-phases
9562 (add-before 'check 'remove-test
9563 ;; Fails because of requirement ‘/bin/sh’.
9564 (lambda _
9565 (let ((file "macrostep-test.el"))
9566 (chmod file #o644)
9567 (emacs-batch-edit-file file
9568 `(progn (progn (goto-char (point-min))
9569 (re-search-forward
9570 "(ert-deftest macrostep-expand-c-macros")
9571 (beginning-of-line)
9572 (kill-sexp))
9573 (basic-save-buffer))))))
9574 (add-before 'install 'check
9575 (lambda _
9576 (invoke "emacs" "--batch" "-L" "."
9577 "-l" "macrostep-test.el"
9578 "-f" "ert-run-tests-batch-and-exit"))))))
9579 (home-page "https://github.com/joddie/macrostep")
9580 (synopsis "Interactive macro-expander for Emacs")
9581 (description "@code{macrostep} is an Emacs minor mode for interactively
9582 stepping through the expansion of macros in Emacs Lisp source code. It lets
9583 you see exactly what happens at each step of the expansion process by
9584 pretty-printing the expanded forms inline in the source buffer, which is
9585 temporarily read-only while macro expansions are visible. You can expand and
9586 collapse macro forms one step at a time, and evaluate or instrument the
9587 expansions for debugging with Edebug as normal (but see “Bugs and known
9588 limitations”, below). Single-stepping through the expansion is particularly
9589 useful for debugging macros that expand into another macro form. These can be
9590 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9591 until the top-level form is no longer a macro call.")
9592 (license license:gpl3+))))
9593
9594 (define-public emacs-parent-mode
9595 (package
9596 (name "emacs-parent-mode")
9597 (version "2.3")
9598 (source
9599 (origin
9600 (method url-fetch)
9601 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9602 version ".tar.gz"))
9603 (file-name (string-append name "-" version ".tar.gz"))
9604 (sha256
9605 (base32
9606 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9607 (build-system emacs-build-system)
9608 (home-page "https://github.com/Fanael/parent-mode")
9609 (synopsis "Get major mode's parent modes")
9610 (description "Get major mode's parent modes")
9611 (license license:gpl3+)))
9612
9613 (define-public emacs-lacarte
9614 (package
9615 (name "emacs-lacarte")
9616 (version "0.1")
9617 (source (origin
9618 (method url-fetch)
9619 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
9620 (sha256
9621 (base32
9622 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
9623 (build-system emacs-build-system)
9624 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
9625 (synopsis "Execute menu items as commands, with completion")
9626 (description "Execute menu items as commands, with completion.")
9627 (license license:gpl3)))
9628
9629 (define-public emacs-isearch-prop
9630 (let ((commit "5e9dc44cf582d998aaa73ccd4d07cbda01248156")
9631 (revision "1"))
9632 (package
9633 (name "emacs-isearch-prop")
9634 (version (git-version "0" revision commit))
9635 (source
9636 (origin
9637 (method git-fetch)
9638 (uri (git-reference
9639 (url "https://github.com/emacsmirror/isearch-prop.git")
9640 (commit commit)))
9641 (file-name (git-file-name name version))
9642 (sha256
9643 (base32
9644 "1xawppy705ybsgx566zvj8zk2aajq0sqvhvfs7nijqq32lx0a2zl"))))
9645 (build-system emacs-build-system)
9646 (home-page "https://www.emacswiki.org/emacs/isearch-prop.el")
9647 (synopsis "Extensions to @code{isearch.el}")
9648 (description "The Emacs library @code{isearch-prop.el} lets you search within
9649 contexts. You can limit incremental search to a set of zones of
9650 buffer text, search contexts that in effect constitute a multi-region.
9651 These zones can be defined in various ways, including some ways
9652 provided specially by this library.")
9653 (license license:gpl3+))))
9654
9655 (define-public emacs-company-lua
9656 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
9657 (package
9658 (name "emacs-company-lua")
9659 (version (git-version "0.1" "1" commit))
9660 (source
9661 (origin
9662 (method git-fetch)
9663 (uri (git-reference
9664 (url "https://github.com/ptrv/company-lua.git")
9665 (commit commit)))
9666 (file-name (git-file-name name version))
9667 (sha256
9668 (base32
9669 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
9670 (build-system emacs-build-system)
9671 (propagated-inputs
9672 `(("emacs-company" ,emacs-company)
9673 ("emacs-s" ,emacs-s)
9674 ("emacs-f" ,emacs-f)
9675 ("emacs-lua-mode" ,emacs-lua-mode)))
9676 (home-page "https://github.com/ptrv/company-lua")
9677 (synopsis "Company backend for Lua")
9678 (description
9679 "This package provides Company backend for Lua programming language.")
9680 (license license:gpl3+))))
9681
9682 (define-public emacs-beginend
9683 (package
9684 (name "emacs-beginend")
9685 (version "2.0.0")
9686 (source
9687 (origin
9688 (method url-fetch)
9689 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
9690 "v" version ".tar.gz"))
9691 (file-name (string-append name "-" version ".tar.gz"))
9692 (sha256
9693 (base32
9694 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
9695 ;; TODO: Run tests.
9696 (build-system emacs-build-system)
9697 (inputs
9698 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
9699 (home-page "https://github.com/DamienCassou/beginend")
9700 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
9701 (description "@code{beginend} redefines @code{M-<} and @code{M->}
9702 keybindings for Emacs modes so that point moves to meaningful
9703 locations. Redefined keys are still accessible by pressing the same
9704 key again.")
9705 (license license:gpl3+)))
9706
9707 (define-public emacs-mbsync
9708 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
9709 (revision "1"))
9710 (package
9711 (name "emacs-mbsync")
9712 (version (string-append "0.0.1" "-" revision "."
9713 (string-take commit 7)))
9714 (source
9715 (origin
9716 (method git-fetch)
9717 (uri (git-reference
9718 (url "https://github.com/dimitri/mbsync-el.git")
9719 (commit commit)))
9720 (file-name (string-append name "-" version "-checkout"))
9721 (sha256
9722 (base32
9723 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
9724 (build-system emacs-build-system)
9725 (home-page "https://github.com/dimitri/mbsync-el")
9726 (synopsis "Interface to mbsync for Emacs")
9727 (description "This package allows to call the @code{mbsync} from
9728 within Emacs.")
9729 (license license:gpl3+))))
9730
9731 (define-public emacs-ibuffer-projectile
9732 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
9733 (revision "1"))
9734 (package
9735 (name "emacs-ibuffer-projectile")
9736 (version (string-append "0.2" "-" revision "."
9737 (string-take commit 7)))
9738 (source
9739 (origin
9740 (method git-fetch)
9741 (uri (git-reference
9742 (url "https://github.com/purcell/ibuffer-projectile.git")
9743 (commit commit)))
9744 (file-name (string-append name "-" version "-checkout"))
9745 (sha256
9746 (base32
9747 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
9748 (build-system emacs-build-system)
9749 (propagated-inputs
9750 `(("emacs-projectile" ,emacs-projectile)))
9751 (home-page "https://github.com/purcell/ibuffer-projectile")
9752 (synopsis "Group ibuffer's list by projectile root")
9753 (description "Adds functionality to Emacs @code{ibuffer} for
9754 grouping buffers by their projectile root directory.")
9755 (license license:gpl3+))))
9756
9757 (define-public emacs-helm-mode-manager
9758 (package
9759 (name "emacs-helm-mode-manager")
9760 (version "1.0.0")
9761 (source
9762 (origin
9763 (method url-fetch)
9764 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9765 "archive/" version ".tar.gz"))
9766 (file-name (string-append name "-" version ".tar.gz"))
9767 (sha256
9768 (base32
9769 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9770 (build-system emacs-build-system)
9771 (propagated-inputs
9772 `(("emacs-helm" ,emacs-helm)))
9773 (home-page "https://github.com/istib/helm-mode-manager/")
9774 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9775 (description "This package provides a Helm interface for toggling Emacs
9776 major or minor mode.
9777
9778 @itemize
9779 @item @code{helm-switch-major-mode} list of all major modes
9780 @item @code{helm-enable-minor-mode} list of all inactive minor modes
9781 @item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9782 @end itemize\n
9783
9784 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9785 documentation.")
9786 (license license:gpl3+)))
9787
9788 (define-public emacs-hy-mode
9789 (package
9790 (name "emacs-hy-mode")
9791 (version "1.0.3")
9792 (source
9793 (origin
9794 (method url-fetch)
9795 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9796 "v" version ".tar.gz"))
9797 (file-name (string-append name "-" version ".tar.gz"))
9798 (sha256
9799 (base32
9800 "0b4pvbr2hf77bq2vsyfsv653q0dab7qzq85wc7kdziw7687jdf2z"))))
9801 (build-system emacs-build-system)
9802 (propagated-inputs
9803 `(("emacs-dash" ,emacs-dash)
9804 ("emacs-s" ,emacs-s)))
9805 (home-page "https://github.com/hylang/hy-mode")
9806 (synopsis "Major mode for Hylang")
9807 (description "This package provides a major mode for Hylang.")
9808 (license license:gpl3+)))
9809
9810 (define-public emacs-web-beautify
9811 (package
9812 (name "emacs-web-beautify")
9813 (version "0.3.2")
9814 (source
9815 (origin
9816 (method url-fetch)
9817 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9818 version ".tar.gz"))
9819 (file-name (string-append name "-" version ".tar.gz"))
9820 (sha256
9821 (base32
9822 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9823 (build-system emacs-build-system)
9824 (home-page "https://github.com/yasuyk/web-beautify")
9825 (synopsis "Format HTML, CSS and JavaScript, JSON")
9826 (description "This package provides an Emacs functions to format HTML,
9827 CSS, JavaScript, JSON.")
9828 (license license:gpl3+)))
9829
9830 (define-public emacs-helm-shell-history
9831 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9832 (package
9833 (name "emacs-helm-shell-history")
9834 (version (git-version "0.1" "1" commit))
9835 (source
9836 (origin
9837 (method git-fetch)
9838 (uri (git-reference
9839 (url "https://github.com/yuutayamada/helm-shell-history.git")
9840 (commit commit)))
9841 (file-name (git-file-name name version))
9842 (sha256
9843 (base32
9844 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9845 (build-system emacs-build-system)
9846 (arguments
9847 '(#:phases
9848 (modify-phases %standard-phases
9849 (add-before 'check 'patch-helm-shell-history-file
9850 (lambda _
9851 (let ((file "helm-shell-history.el"))
9852 (chmod file #o644)
9853 (emacs-substitute-sexps file
9854 ("(defvar helm-shell-history-file"
9855 `(expand-file-name "~/.bash_history"))))
9856 #t)))))
9857 (propagated-inputs
9858 `(("emacs-helm" ,emacs-helm)))
9859 (home-page "https://github.com/yuutayamada/helm-shell-history")
9860 (synopsis "Find shell history with Emacs Helm")
9861 (description "This package provides an Emacs Helm interface to search
9862 throw a shell history.")
9863 (license license:gpl3+))))
9864
9865 (define-public emacs-discover-my-major
9866 (package
9867 (name "emacs-discover-my-major")
9868 (version "1.0")
9869 (source
9870 (origin
9871 (method url-fetch)
9872 (uri
9873 (string-append "https://github.com/steckerhalter/discover-my-major"
9874 "/archive/" version ".tar.gz"))
9875 (file-name (string-append name "-" version ".tar.gz"))
9876 (sha256
9877 (base32
9878 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
9879 (build-system emacs-build-system)
9880 (propagated-inputs
9881 `(("emacs-makey" ,emacs-makey)))
9882 (home-page "https://github.com/steckerhalter/discover-my-major")
9883 (synopsis "Discover key bindings for the current Emacs major mode")
9884 (description "This package provides allows to discover key bindings and
9885 their meaning for the current Emacs major-mode.")
9886 (license license:gpl3+)))
9887
9888 (define-public emacs-org-ref
9889 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
9890 (revision "1"))
9891 (package
9892 (name "emacs-org-ref")
9893 (version (string-append "1.1.1" "-" revision "."
9894 (string-take commit 7)))
9895 (source
9896 (origin
9897 (method git-fetch)
9898 (uri (git-reference
9899 (url "https://github.com/jkitchin/org-ref.git")
9900 (commit commit)))
9901 (file-name (string-append name "-" version "-checkout"))
9902 (sha256
9903 (base32
9904 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
9905 (build-system emacs-build-system)
9906 (propagated-inputs
9907 `(("emacs-dash" ,emacs-dash)
9908 ("emacs-helm" ,emacs-helm)
9909 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
9910 ("emacs-ivy" ,emacs-ivy)
9911 ("emacs-hydra" ,emacs-hydra)
9912 ("emacs-key-chord" ,emacs-key-chord)
9913 ("emacs-s" ,emacs-s)
9914 ("emacs-f" ,emacs-f)
9915 ("emacs-pdf-tools" ,emacs-pdf-tools)))
9916 (home-page "https://github.com/jkitchin/org-ref")
9917 (synopsis "Citations, cross-references and bibliographies in org-mode")
9918 (description
9919 "Lisp code to setup bibliography, cite, ref and label org-mode links.
9920 Also sets up reftex and helm for org-mode citations. The links are
9921 clickable and do things that are useful.
9922
9923 The default setup uses helm-bibtex.
9924
9925 You should really read org-ref.org in this package for details.")
9926 (license license:gpl3+))))
9927
9928 (define-public emacs-org-reveal
9929 (package
9930 (name "emacs-org-reveal")
9931 ;; There are no proper tag, so we use the latest commit of the stable
9932 ;; branch, as does MELPA.
9933 (version "20161027.926")
9934 (source (origin
9935 (method git-fetch)
9936 (uri (git-reference
9937 (url "https://github.com/yjwen/org-reveal.git")
9938 (commit "001567cc12d50ba07612edd1718b86a12e8c2547")))
9939 (file-name (string-append name "-" version "-checkout"))
9940 (sha256
9941 (base32
9942 "18rma8smjrskbjyna076zhvx79zs5r5vinb537h8mw13pfxd6cm8"))))
9943 (build-system emacs-build-system)
9944 (home-page "https://github.com/yjwen/org-reveal")
9945 (synopsis "Org and Reveal.js powered HTML presentation tool")
9946 (description "Org-Reveal is a command@{org-mode} extension that allows to
9947 create beautiful presentations (slides) with 3D effects from simple but
9948 powerful Org contents.")
9949 (license license:gpl3+)))
9950
9951 (define-public emacs-add-hooks
9952 (package
9953 (name "emacs-add-hooks")
9954 (version "3.1.1")
9955 (source (origin
9956 (method url-fetch)
9957 (uri (string-append
9958 "https://github.com/nickmccurdy/add-hooks/archive/"
9959 version ".tar.gz"))
9960 (file-name (string-append name "-" version ".tar.gz"))
9961 (sha256
9962 (base32
9963 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
9964 (build-system emacs-build-system)
9965 (home-page "https://github.com/nickmccurdy/add-hooks/")
9966 (synopsis "Emacs function for setting multiple hooks")
9967 (description "This package provides a @code{add-hooks} function tidies up
9968 duplicate hook and function names further into a single declarative call.")
9969 (license license:gpl3+)))
9970
9971 (define-public emacs-fancy-narrow
9972 (package
9973 (name "emacs-fancy-narrow")
9974 (version "0.9.5")
9975 (source
9976 (origin
9977 (method url-fetch)
9978 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
9979 version ".tar.gz"))
9980 (file-name (string-append name "-" version ".tar.gz"))
9981 (sha256
9982 (base32
9983 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
9984 (build-system emacs-build-system)
9985 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
9986 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
9987 (description
9988 "Unlike @code{narrow-to-region}, which completely hides text outside
9989 the narrowed region, this package simply de-emphasizes the text, makes it
9990 read-only, and makes it unreachable. This leads to a much more natural
9991 feeling where the region stays static (instead of being brutally moved to a
9992 blank slate) and is clearly highlighted with respect to the rest of the
9993 buffer.")
9994 (license license:gpl2+)))
9995
9996 (define-public emacs-know-your-http-well
9997 (package
9998 (name "emacs-know-your-http-well")
9999 (version "0.5.0")
10000 (source
10001 (origin
10002 (method url-fetch)
10003 (uri (string-append
10004 "https://github.com/for-GET/know-your-http-well/archive/"
10005 "v" version ".tar.gz"))
10006 (file-name (string-append name "-" version ".tar.gz"))
10007 (sha256
10008 (base32
10009 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
10010 (arguments
10011 `(#:phases
10012 (modify-phases %standard-phases
10013 (add-after 'unpack 'install-json-files
10014 (lambda* (#:key outputs #:allow-other-keys)
10015 (for-each (lambda (directory)
10016 (copy-recursively directory
10017 (string-append
10018 (assoc-ref outputs "out")
10019 directory)))
10020 '("js" "json"))))
10021 (add-after 'unpack 'chdir-elisp
10022 ;; Elisp directory is not in root of the source.
10023 (lambda _
10024 (chdir "emacs"))))))
10025 (build-system emacs-build-system)
10026 (home-page "https://github.com/for-GET/know-your-http-well")
10027 (synopsis "Meaning of HTTP headers codes")
10028 (description "Meaning of HTTP headers codes.")
10029 (license license:gpl3+)))
10030
10031 (define-public emacs-navi-mode
10032 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
10033 (package
10034 (name "emacs-navi-mode")
10035 (version (git-version "2.0" "1" commit))
10036 (source
10037 (origin
10038 (method git-fetch)
10039 (uri (git-reference
10040 (url "https://github.com/alphapapa/navi.git")
10041 (commit commit)))
10042 (file-name (git-file-name name version))
10043 (sha256
10044 (base32
10045 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
10046 (build-system emacs-build-system)
10047 (propagated-inputs
10048 `(("emacs-outshine" ,emacs-outshine)
10049 ("emacs-outorg" ,emacs-outorg)))
10050 (home-page "https://github.com/alphapapa/navi")
10051 (synopsis "Emacs major-mode for easy buffer-navigation")
10052 (description
10053 "This package provides an Emacs major-mode for easy buffer-navigation")
10054 (license license:gpl3+))))
10055
10056 (define-public emacs-download-region
10057 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
10058 (revision "1"))
10059 (package
10060 (name "emacs-download-region")
10061 (version (string-append "0.0.1" "-" revision "."
10062 (string-take commit 7)))
10063 (source
10064 (origin
10065 (method git-fetch)
10066 (uri (git-reference
10067 (url "https://github.com/zk-phi/download-region.git")
10068 (commit commit)))
10069 (file-name (string-append name "-" version "-checkout"))
10070 (sha256
10071 (base32
10072 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
10073 (build-system emacs-build-system)
10074 (home-page "https://github.com/zk-phi/download-region")
10075 (synopsis "In buffer download manager for Emacs")
10076 (description "@code{download-region} provides in buffer
10077 downloading manager for Emacs.")
10078 (license license:gpl3+))))
10079
10080 (define-public emacs-helpful
10081 (package
10082 (name "emacs-helpful")
10083 (version "0.15")
10084 (source (origin
10085 (method url-fetch)
10086 (uri (string-append
10087 "https://github.com/Wilfred/helpful/archive/"
10088 version ".tar.gz"))
10089 (file-name (string-append name "-" version ".tar.gz"))
10090 (sha256
10091 (base32
10092 "1xmvhphzb4hbg647dz4lafy6hd19b7bk3lxni6irqrzdsrclhzn6"))))
10093 (build-system emacs-build-system)
10094 (propagated-inputs
10095 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
10096 (home-page "https://github.com/Wilfred/helpful")
10097 (synopsis "More contextual information in Emacs help")
10098 (description "@code{helpful} is an alternative to the built-in Emacs help
10099 that provides much more contextual information.
10100
10101 @itemize
10102 @item Show the source code for interactively defined functions (unlike the
10103 built-in Help).
10104 @item Fall back to the raw sexp if no source is available.
10105 @item Show where a function is being called.
10106 @item Docstrings will Highlight the summary (the first sentence), include
10107 cross-references, hide superfluous puncuation.
10108 @item Show you the properties that have been applied to the current
10109 symbol. This provides visibility of features like edebug or byte-code
10110 optimisation.
10111 @item Provide a separate @code{helpful-command} function to view interactive
10112 functions.
10113 @item Display any keybindings that apply to interactive functions.
10114 @item Trace, disassemble functions from inside Helpful. This is discoverable
10115 and doesn't require memorisation of commands.
10116 @end itemize\n")
10117 (license license:gpl3+)))
10118
10119 (define-public emacs-logview
10120 (package
10121 (name "emacs-logview")
10122 (version "0.9")
10123 (source (origin
10124 (method url-fetch)
10125 (uri (string-append
10126 "https://github.com/doublep/logview/archive/"
10127 version ".tar.gz"))
10128 (file-name (string-append name "-" version ".tar.gz"))
10129 (sha256
10130 (base32
10131 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
10132 (propagated-inputs
10133 `(("emacs-datetime" ,emacs-datetime)))
10134 (build-system emacs-build-system)
10135 (home-page "https://github.com/doublep/logview/")
10136 (synopsis "Emacs mode for viewing log files")
10137 (description "@code{logview} provides an Emacs mode to view log files.")
10138 (license license:gpl3+)))
10139
10140 (define-public emacs-suggest
10141 (package
10142 (name "emacs-suggest")
10143 (version "0.4")
10144 (source
10145 (origin
10146 (method url-fetch)
10147 (uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
10148 version ".tar.gz"))
10149 (file-name (string-append name "-" version ".tar.gz"))
10150 (sha256
10151 (base32
10152 "1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
10153 (build-system emacs-build-system)
10154 (propagated-inputs
10155 `(("emacs-loop" ,emacs-loop)
10156 ("emacs-dash" ,emacs-dash)
10157 ("emacs-s" ,emacs-s)
10158 ("emacs-f" ,emacs-f)))
10159 (home-page "https://github.com/Wilfred/suggest.el")
10160 (synopsis "Suggest Elisp functions that give the output requested")
10161 (description "Suggest.el will find functions that give the output
10162 requested. It's a great way of exploring list, string and arithmetic
10163 functions.")
10164 (license license:gpl3+)))
10165
10166 (define-public emacs-benchmark-init
10167 (package
10168 (name "emacs-benchmark-init")
10169 (version "1.0")
10170 (source (origin
10171 (method url-fetch)
10172 (uri (string-append
10173 "https://github.com/dholm/benchmark-init-el/archive/"
10174 version ".tar.gz"))
10175 (file-name (string-append name "-" version ".tar.gz"))
10176 (sha256
10177 (base32
10178 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
10179 (build-system emacs-build-system)
10180 (home-page "https://github.com/dholm/benchmark-init-el")
10181 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
10182 (description "@code{benchmark-init} provides a way to keep track of where
10183 time is being spent during Emacs startup in order to optimize startup time.")
10184 (license license:gpl3+)))
10185
10186 (define-public emacs-emms-player-simple-mpv
10187 ;; A new mpv backend is included in Emms from 5.0.
10188 (deprecated-package "emacs-emms-player-simple-mpv" emacs-emms))
10189
10190 (define-public emacs-magit-gerrit
10191 (let ((version "0.3")
10192 (revision "1")
10193 (commit "ece6f369694aca17f3ac166ed2801b432acfe20d"))
10194 (package
10195 (name "emacs-magit-gerrit")
10196 (version (git-version version revision commit))
10197 (source (origin
10198 (method git-fetch)
10199 (uri (git-reference
10200 (url "https://github.com/terranpro/magit-gerrit.git")
10201 (commit commit)))
10202 (file-name (git-file-name name version))
10203 (sha256
10204 (base32
10205 "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"))))
10206 (build-system emacs-build-system)
10207 (propagated-inputs
10208 `(("emacs-magit" ,emacs-magit)))
10209 (home-page "https://github.com/terranpro/magit-gerrit")
10210 (synopsis "Magit extension for Gerrit")
10211 (description "This Magit extension provides integration with Gerrit,
10212 which makes it possible to conduct Gerrit code reviews directly from within
10213 Emacs.")
10214 (license license:gpl3+))))
10215
10216 (define-public emacs-magit-org-todos-el
10217 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
10218 (package
10219 (name "emacs-magit-org-todos-el")
10220 (version (git-version "0.1.1" "1" commit))
10221 (source
10222 (origin
10223 (method git-fetch)
10224 (uri (git-reference
10225 (url "https://github.com/danielma/magit-org-todos.el.git")
10226 (commit commit)))
10227 (file-name (git-file-name name version))
10228 (sha256
10229 (base32
10230 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
10231 (propagated-inputs
10232 `(("magit" ,emacs-magit)))
10233 (build-system emacs-build-system)
10234 (home-page "https://github.com/danielma/magit-org-todos.el")
10235 (synopsis "Get todo.org into Emacs Magit status")
10236 (description "This package allows you to get @file{todo.org} into your
10237 magit status.
10238
10239 If you have a @file{todo.org} file with @code{TODO} items in the root of your
10240 repository, @code{magit-org-todos} will create a section in your Magit status
10241 buffer with each of your todos.")
10242 (license license:gpl3+))))
10243
10244 (define-public emacs-f3
10245 (package
10246 (name "emacs-f3")
10247 (version "0.1")
10248 (source
10249 (origin
10250 (method url-fetch)
10251 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
10252 version ".tar.gz"))
10253 (file-name (string-append name "-" version ".tar.gz"))
10254 (sha256
10255 (base32
10256 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
10257 (build-system emacs-build-system)
10258 (propagated-inputs
10259 `(("emacs-helm" ,emacs-helm)))
10260 (home-page "https://github.com/cosmicexplorer/f3")
10261 (synopsis "Fantastic File Finder for Emacs")
10262 (description
10263 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
10264 (license license:gpl3+)))
10265
10266 (define-public emacs-lice-el
10267 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
10268 (package
10269 (name "emacs-lice-el")
10270 (version (git-version "0.2" "1" commit))
10271 (source (origin
10272 (method git-fetch)
10273 (uri (git-reference
10274 (url "https://github.com/buzztaiki/lice-el.git")
10275 (commit commit)))
10276 (file-name (git-file-name name version))
10277 (sha256
10278 (base32
10279 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
10280 (build-system emacs-build-system)
10281 (home-page "https://github.com/buzztaiki/lice-el")
10282 (synopsis "License and header template for Emacs")
10283 (description "@code{lice.el} provides following features:
10284
10285 @itemize
10286 @item License template management.
10287 @item File header insertion.
10288 @end itemize\n")
10289 (license license:gpl3+))))
10290
10291 (define-public emacs-academic-phrases
10292 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
10293 (package
10294 (name "emacs-academic-phrases")
10295 (version (git-version "0.1" "1" commit))
10296 (source
10297 (origin
10298 (method git-fetch)
10299 (uri (git-reference
10300 (url "https://github.com/nashamri/academic-phrases.git")
10301 (commit commit)))
10302 (file-name (string-append name "-" version "-checkout"))
10303 (sha256
10304 (base32
10305 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
10306 (build-system emacs-build-system)
10307 (propagated-inputs
10308 `(("emacs-dash" ,emacs-dash)
10309 ("emacs-s" ,emacs-s)
10310 ("emacs-ht" ,emacs-ht)))
10311 (home-page "https://github.com/nashamri/academic-phrases")
10312 (synopsis "Bypass that mental block when writing your papers")
10313 (description
10314 "When writing your academic paper, you might get stuck trying to find
10315 the right phrase that captures your intention. This package tries to
10316 alleviate that problem by presenting you with a list of phrases organized by
10317 the topic or by the paper section that you are writing. This package has
10318 around 600 phrases so far.
10319
10320 Using this package is easy, just call @code{academic-phrases} to get a list of
10321 phrases organized by topic, or call @code{academic-phrases-by-section} to
10322 browse the phrases by the paper section and fill-in the blanks if required.")
10323 (license license:gpl3+))))
10324
10325 (define-public emacs-auto-yasnippet
10326 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
10327 (package
10328 (name "emacs-auto-yasnippet")
10329 (version (git-version "0.3.0" "1" commit))
10330 (source (origin
10331 (method git-fetch)
10332 (uri (git-reference
10333 (url "https://github.com/abo-abo/auto-yasnippet.git")
10334 (commit commit)))
10335 (file-name (string-append name "-" version "-checkout"))
10336 (sha256
10337 (base32
10338 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
10339 (build-system emacs-build-system)
10340 (arguments
10341 '(#:phases
10342 (modify-phases %standard-phases
10343 (add-before 'install 'check
10344 (lambda _
10345 (invoke "emacs" "--batch"
10346 "-l" "auto-yasnippet.el"
10347 "-l" "auto-yasnippet-test.el"
10348 "-f" "ert-run-tests-batch-and-exit"))))))
10349 (propagated-inputs
10350 `(("emacs-yasnippet" ,emacs-yasnippet)))
10351 (home-page "https://github.com/abo-abo/auto-yasnippet/")
10352 (synopsis "Quickly create disposable yasnippets")
10353 (description "This package provides a hybrid of keyboard macros and
10354 yasnippet. You create the snippet on the go, usually to be used just in the
10355 one place. It's fast, because you're not leaving the current buffer, and all
10356 you do is enter the code you'd enter anyway, just placing ~ where you'd like
10357 yasnippet fields and mirrors to be.")
10358 (license license:gpl3+))))
10359
10360 (define-public emacs-highlight-numbers
10361 (package
10362 (name "emacs-highlight-numbers")
10363 (version "0.2.3")
10364 (source
10365 (origin
10366 (method url-fetch)
10367 (uri (string-append
10368 "https://github.com/Fanael/highlight-numbers/archive/"
10369 version ".tar.gz"))
10370 (file-name (string-append name "-" version ".tar.gz"))
10371 (sha256
10372 (base32
10373 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
10374 (build-system emacs-build-system)
10375 (propagated-inputs
10376 `(("emacs-parent-mode" ,emacs-parent-mode)))
10377 (home-page "https://github.com/Fanael/highlight-numbers")
10378 (synopsis "Highlight numbers in source code")
10379 (description "@code{highlight-numbers-mode} provides a minor mode for
10380 syntax highlighting of numeric literals in source code.
10381
10382 It s customizable: it's easy to add or redefine what exactly consitutes a
10383 \"number\" in given major mode. See @code{highlight-numbers-modelist}.")
10384 (license license:gpl3+)))
10385
10386 (define-public emacs-darkroom
10387 (package
10388 (name "emacs-darkroom")
10389 (version "0.1")
10390 (source (origin
10391 (method url-fetch)
10392 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
10393 version ".el"))
10394 (sha256
10395 (base32
10396 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
10397 (build-system emacs-build-system)
10398 (home-page "https://elpa.gnu.org/packages/darkroom.html")
10399 (synopsis "Remove visual distractions and focus on writing")
10400 (description "@code{darkroom-mode} makes visual distractions disappear.
10401 The mode-line is temporarily elided, text is enlarged and margins are adjusted
10402 so that it's centered on the window.
10403
10404 @code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
10405 @code{darkroom-mode}, unless the current buffer lives in the sole window of
10406 the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
10407 split to display more windows and more buffers, the buffer exits
10408 @code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
10409 @code{darkroom-mode}.")
10410 (license license:gpl3+)))
10411
10412 (define-public emacs-rsw-elisp
10413 (package
10414 (name "emacs-rsw-elisp")
10415 (version "1.0.5")
10416 (source (origin
10417 (method url-fetch)
10418 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
10419 "/archive/" version ".tar.gz"))
10420 (file-name (string-append name "-" version ".tar.gz"))
10421 (sha256
10422 (base32
10423 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
10424 (build-system emacs-build-system)
10425 (home-page "https://github.com/rswgnu/rsw-elisp")
10426 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
10427 (description "This package improves and replaces the GNU Emacs commands
10428 that interactively evaluate Emacs Lisp expressions. The new commands replace
10429 standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
10430 the same way as the old commands when called non-interactively; only the
10431 interactive behavior should be different.")
10432 (license license:gpl3+)))
10433
10434 (define-public emacs-default-text-scale
10435 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10436 (revision "1"))
10437 (package
10438 (name "emacs-default-text-scale")
10439 (version (string-append "0.1" "-" revision "."
10440 (string-take commit 7)))
10441 (source (origin
10442 (method git-fetch)
10443 (uri (git-reference
10444 (url "https://github.com/purcell/default-text-scale")
10445 (commit commit)))
10446 (file-name (string-append name "-" version "-checkout"))
10447 (sha256
10448 (base32
10449 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10450 (build-system emacs-build-system)
10451 (home-page "https://github.com/purcell/default-text-scale")
10452 (synopsis "Adjust the font size in all Emacs frames")
10453 (description "This package provides commands for increasing or
10454 decreasing the default font size in all GUI Emacs frames.")
10455 (license license:gpl3+))))
10456
10457 (define-public emacs-visual-regexp
10458 (package
10459 (name "emacs-visual-regexp")
10460 (version "1.1.1")
10461 (source
10462 (origin
10463 (method url-fetch)
10464 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10465 "v" version ".tar.gz"))
10466 (file-name (string-append name "-" version ".tar.gz"))
10467 (sha256
10468 (base32
10469 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10470 (build-system emacs-build-system)
10471 (home-page "https://github.com/benma/visual-regexp.el/")
10472 (synopsis "Regexp command with interactive visual feedback")
10473 (description "This package provides an Emacs regexp command with
10474 interactive visual feedback.")
10475 (license license:gpl3+)))
10476
10477 (define-public emacs-faceup
10478 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10479 (revision "1"))
10480 (package
10481 (name "emacs-faceup")
10482 (version (string-append "0.0.1" "-" revision "."
10483 (string-take commit 7)))
10484 (source
10485 (origin
10486 (method git-fetch)
10487 (uri (git-reference
10488 (url "https://github.com/Lindydancer/faceup.git")
10489 (commit commit)))
10490 (file-name (string-append name "-" version "-checkout"))
10491 (sha256
10492 (base32
10493 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10494 (build-system emacs-build-system)
10495 (home-page "https://github.com/Lindydancer/faceup")
10496 (synopsis "Markup language for faces and font-lock regression testing")
10497 (description "Emacs is capable of highlighting buffers based on
10498 language-specific @code{font-lock} rules. This package makes it possible to
10499 perform regression test for packages that provide font-lock rules.")
10500 (license license:gpl3+))))
10501
10502 (define-public emacs-racket-mode
10503 (let ((commit "b977873e6128f8399432dcd60cc39f6a6f803d9c")
10504 (revision "2"))
10505 (package
10506 (name "emacs-racket-mode")
10507 (version (string-append "0.0.2" "-" revision "."
10508 (string-take commit 7)))
10509 (source
10510 (origin
10511 (method git-fetch)
10512 (uri (git-reference
10513 (url "https://github.com/greghendershott/racket-mode")
10514 (commit commit)))
10515 (file-name (string-append name "-" version "-checkout"))
10516 (sha256
10517 (base32
10518 "0vp4bbbplqvmnhjpl6ajrlydmrhqzil56cfbs18m5c5fddx0zlh7"))))
10519 (build-system emacs-build-system)
10520 (arguments
10521 `(#:include '("\\.el$" "\\.rkt$")))
10522 (propagated-inputs
10523 `(("emacs-faceup" ,emacs-faceup)
10524 ("emacs-s" ,emacs-s)))
10525 (home-page "https://github.com/greghendershott/racket-mode")
10526 (synopsis "Major mode for Racket language")
10527 (description "@code{racket-mode} provides:
10528
10529 @itemize
10530 @item Focus on Racket (not various Schemes).
10531 @item Follow DrRacket concepts where applicable.
10532 @item Thorough font-lock and indent.
10533 @end itemize\n")
10534 (license license:gpl3+))))
10535
10536 (define-public emacs-grep-context
10537 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10538 (package
10539 (name "emacs-grep-context")
10540 (version (git-version "0.1" "1" commit))
10541 (source
10542 (origin
10543 (method git-fetch)
10544 (uri (git-reference
10545 (url "https://github.com/mkcms/grep-context.git")
10546 (commit commit)))
10547 (file-name (string-append name "-" version "-checkout"))
10548 (sha256
10549 (base32
10550 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10551 (build-system emacs-build-system)
10552 (propagated-inputs
10553 `(("emacs-dash" ,emacs-dash)))
10554 (home-page "https://github.com/nashamri/academic-phrases")
10555 (synopsis "Increase context in compilation and grep buffers")
10556 (description
10557 "This package provides an Emacs package for more context in
10558 compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10559 @code{ivy}.")
10560 (license license:gpl3+))))
10561
10562 (define-public emacs-helm-firefox
10563 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10564 (revision "1"))
10565 (package
10566 (name "emacs-helm-firefox")
10567 (version (string-append "0.0.1" "-" revision "."
10568 (string-take commit 7)))
10569 (source
10570 (origin
10571 (method git-fetch)
10572 (uri (git-reference
10573 (url "https://github.com/emacs-helm/helm-firefox.git")
10574 (commit commit)))
10575 (file-name (string-append name "-" version "-checkout"))
10576 (sha256
10577 (base32
10578 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
10579 (propagated-inputs
10580 `(("emacs-helm" ,emacs-helm)))
10581 (build-system emacs-build-system)
10582 (home-page "https://github.com/emacs-helm/helm-firefox")
10583 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10584 (description "Display firefox bookmarks with Emacs Helm interface")
10585 (license license:gpl3+))))
10586
10587 (define-public emacs-interactive-align
10588 (package
10589 (name "emacs-interactive-align")
10590 (version "0.1.0")
10591 (source
10592 (origin
10593 (method url-fetch)
10594 (uri (string-append "https://github.com/mkcms/interactive-align/"
10595 "archive/" "v" version ".tar.gz"))
10596 (file-name (string-append name "-" version ".tar.gz"))
10597 (sha256
10598 (base32
10599 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
10600 (build-system emacs-build-system)
10601 (home-page "https://github.com/mkcms/interactive-align/")
10602 (synopsis "Interactive align-regexp command in Emacs")
10603 (description "Interactive align-regexp command in Emacs")
10604 (license license:gpl3+)))
10605
10606 (define-public emacs-shift-number
10607 (package
10608 (name "emacs-shift-number")
10609 (version "0.1")
10610 (source
10611 (origin
10612 (method url-fetch)
10613 (uri (string-append "https://github.com/alezost/shift-number.el"
10614 "/archive/" "v" version ".tar.gz"))
10615 (file-name (string-append name "-" version ".tar.gz"))
10616 (sha256
10617 (base32
10618 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
10619 (build-system emacs-build-system)
10620 (home-page "https://github.com/alezost/shift-number.el")
10621 (synopsis "Increase or decrease the number at point")
10622 (description "@code{emacs-shift-number} provides commands
10623 @code{shift-number-up} to increase and @code{shift-number-down} to
10624 decrease the number at point.")
10625 (license license:gpl3+)))
10626
10627 (define-public emacs-highlight-defined
10628 (package
10629 (name "emacs-highlight-defined")
10630 (version "0.1.5")
10631 (source
10632 (origin
10633 (method url-fetch)
10634 (uri (string-append
10635 "https://github.com/Fanael/highlight-defined/archive/"
10636 version ".tar.gz"))
10637 (file-name (string-append name "-" version ".tar.gz"))
10638 (sha256
10639 (base32
10640 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
10641 (build-system emacs-build-system)
10642 (home-page "https://github.com/Fanael/highlight-defined")
10643 (synopsis "Syntax highlighting of known Elisp symbols")
10644 (description "Minor mode providing syntax highlighting of known Emacs Lisp
10645 symbols. Currently the code distinguishes Lisp functions, built-in functions,
10646 macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
10647 (license license:gpl3+)))
10648
10649 (define-public emacs-parinfer-mode
10650 (package
10651 (name "emacs-parinfer-mode")
10652 (version "0.4.10")
10653 (source
10654 (origin
10655 (method url-fetch)
10656 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
10657 "v" version ".tar.gz"))
10658 (file-name (string-append name "-" version ".tar.gz"))
10659 (sha256
10660 (base32
10661 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
10662 (propagated-inputs
10663 `(("emacs-dash" ,emacs-dash)
10664 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
10665 ("emacs-company" ,emacs-company)))
10666 (build-system emacs-build-system)
10667 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
10668 (synopsis "Lisp structure editing mode")
10669 (description "@code{parinfer-mode} is a proof-of-concept editor
10670 mode for Lisp programming languages. It will infer some changes to
10671 keep Parens and Indentation inline with one another.")
10672 (license license:gpl3+)))
10673
10674 (define-public emacs-helm-eww
10675 (package
10676 (name "emacs-helm-eww")
10677 (version "1.1")
10678 (source (origin
10679 (method git-fetch)
10680 (uri (git-reference
10681 (url "https://github.com/emacs-helm/helm-eww.git")
10682 (commit version)))
10683 (file-name (string-append name "-" version "-checkout"))
10684 (sha256
10685 (base32
10686 "0dvlp7y6kqc4azg5b7jx5lz2rwd0ia7y0y3hcj9y23zd88r73lg7"))))
10687 (propagated-inputs
10688 `(("emacs-helm" ,emacs-helm)))
10689 (build-system emacs-build-system)
10690 (home-page "https://github.com/emacs-helm/helm-eww/")
10691 (synopsis "Helm interface to EWW")
10692 (description "This package provides a Helm interface for EWW buffers,
10693 bookmarks and history.")
10694 (license license:gpl3+)))
10695
10696 (define-public emacs-stumpwm-mode
10697 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
10698 (revision "1"))
10699 (package
10700 (name "emacs-stumpwm-mode")
10701 (version (string-append "0.0.1-" revision "."
10702 (string-take commit 7)))
10703 (source (origin
10704 (method git-fetch)
10705 (uri (git-reference
10706 (url "https://github.com/stumpwm/stumpwm-contrib.git")
10707 (commit commit)))
10708 (file-name (string-append name "-" version "-checkout"))
10709 (sha256
10710 (base32
10711 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
10712 (build-system emacs-build-system)
10713 (arguments
10714 `(#:phases
10715 (modify-phases %standard-phases
10716 (add-after 'unpack 'chdir-elisp
10717 ;; Elisp directory is not in root of the source.
10718 (lambda _
10719 (chdir "util/swm-emacs"))))))
10720 (home-page "https://github.com/stumpwm/stumpwm-contrib")
10721 (synopsis "Emacs minor-mode for Stumpwm")
10722 (description "Emacs minor-mode for Stumpwm")
10723 (license license:gpl3+))))
10724
10725 (define-public emacs-irfc
10726 (package
10727 (name "emacs-irfc")
10728 (version "20130824.507")
10729 (source
10730 (origin
10731 (method url-fetch)
10732 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
10733 (file-name (string-append "irfc-" version ".el"))
10734 (sha256
10735 (base32
10736 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
10737 (build-system emacs-build-system)
10738 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
10739 (synopsis "Interface for IETF RFC document")
10740 (description
10741 "This package provides an Emacs interface for IETF RFC document.")
10742 (license license:gpl3+)))
10743
10744 (define-public emacs-ido-vertical-mode
10745 (package
10746 (name "emacs-ido-vertical-mode")
10747 (version "0.1.6")
10748 (source
10749 (origin
10750 (method url-fetch)
10751 (uri (string-append
10752 "https://github.com/creichert/ido-vertical-mode.el/archive/"
10753 "v" version ".tar.gz"))
10754 (file-name (string-append name "-" version ".tar.gz"))
10755 (sha256
10756 (base32
10757 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
10758 (build-system emacs-build-system)
10759 (home-page "https://github.com/creichert/ido-vertical-mode.el")
10760 (synopsis "Makes ido-mode display vertically")
10761 (description "Makes ido-mode display prospects vertically.")
10762 (license license:gpl3+)))
10763
10764 (define-public emacs-wordgen
10765 (package
10766 (name "emacs-wordgen")
10767 (version "0.1.4")
10768 (source
10769 (origin
10770 (method url-fetch)
10771 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
10772 version ".tar.gz"))
10773 (file-name (string-append name "-" version ".tar.gz"))
10774 (sha256
10775 (base32
10776 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
10777 (build-system emacs-build-system)
10778 (home-page "https://github.com/Fanael/wordgen.el")
10779 (synopsis "Random word generator")
10780 (description "This package provides functions to generate random words
10781 using user-provided rules.")
10782 (license license:gpl3+)))
10783
10784 (define-public emacs-on-screen
10785 (package
10786 (name "emacs-on-screen")
10787 (version "1.3.2")
10788 (source
10789 (origin
10790 (method url-fetch)
10791 (uri (string-append
10792 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
10793 (file-name (string-append name "-" version ".el"))
10794 (sha256
10795 (base32
10796 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
10797 (build-system emacs-build-system)
10798 (home-page
10799 "https://github.com/michael-heerdegen/on-screen.el")
10800 (synopsis "Guide your eyes while scrolling")
10801 (description
10802 "Scrolling can be distracting because your eyes may lose
10803 orientation. This library implements a minor mode that highlights
10804 the previously visible buffer part after each scroll.")
10805 (license license:gpl3+)))
10806
10807 (define-public emacs-highlight-escape-sequences
10808 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
10809 (revision "1"))
10810 (package
10811 (name "emacs-highlight-escape-sequences")
10812 (version (string-append "0.0.1" "-" revision "."
10813 (string-take commit 7)))
10814 (source
10815 (origin
10816 (method git-fetch)
10817 (uri (git-reference
10818 (url "https://github.com/dgutov/highlight-escape-sequences.git")
10819 (commit commit)))
10820 (file-name (string-append name "-" version "-checkout"))
10821 (sha256
10822 (base32
10823 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
10824 (build-system emacs-build-system)
10825 (home-page "https://github.com/dgutov/highlight-escape-sequences")
10826 (synopsis "Highlight escape sequences in Emacs")
10827 (description "@code{highlight-escape-sequences} provides an
10828 Emacs minor mode to escape sequences in code.")
10829 (license license:gpl3+))))
10830
10831 (define-public emacs-dashboard
10832 (package
10833 (name "emacs-dashboard")
10834 (version "1.2.4")
10835 (source
10836 (origin
10837 (method url-fetch)
10838 (uri (string-append
10839 "https://github.com/rakanalh/emacs-dashboard/archive/"
10840 version ".tar.gz"))
10841 (file-name (string-append name "-" version ".tar.gz"))
10842 (sha256
10843 (base32
10844 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
10845 (build-system emacs-build-system)
10846 (propagated-inputs
10847 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
10848 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
10849 (home-page "https://github.com/rakanalh/emacs-dashboard")
10850 (synopsis "Startup screen extracted from Spacemacs")
10851 (description "This package provides an extensible Emacs dashboard, with
10852 sections for bookmarks, projectil projects, org-agenda and more. ")
10853 (license license:gpl3+)))
10854
10855 (define-public emacs-slime-company
10856 (package
10857 (name "emacs-slime-company")
10858 (version "1.1")
10859 (source
10860 (origin
10861 (method url-fetch)
10862 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
10863 "v" version ".tar.gz"))
10864 (sha256
10865 (base32
10866 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
10867 (file-name (string-append name "-" version ".tar.gz"))))
10868 (build-system emacs-build-system)
10869 (propagated-inputs
10870 `(("emacs-slime" ,emacs-slime)
10871 ("emacs-company" ,emacs-company)))
10872 (home-page "https://company-mode.github.io")
10873 (synopsis "SLIME completion backend for @code{company-mode}")
10874 (description
10875 "This is a backend implementation for the completion package
10876 @code{company-mode} which supports the normal and the fuzzy completion
10877 modes of SLIME.")
10878 (license license:gpl3+)))
10879
10880 (define-public emacs-sml-mode
10881 (package
10882 (name "emacs-sml-mode")
10883 (version "6.8")
10884 (source
10885 (origin
10886 (method url-fetch)
10887 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
10888 version ".el"))
10889 (sha256
10890 (base32
10891 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
10892 (build-system emacs-build-system)
10893 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
10894 (synopsis "Major mode for editing (Standard) ML")
10895 (description "SML-MODE is a major Emacs mode for editing Standard ML.
10896 It provides syntax highlighting and automatic indentation and
10897 comes with sml-proc which allows interaction with an inferior SML
10898 interactive loop.")
10899 (license license:gpl3+)))
10900
10901 (define-public emacs-eros
10902 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
10903 (revision "1"))
10904 (package
10905 (name "emacs-eros")
10906 (version (string-append "0.0.1" "-" revision "."
10907 (string-take commit 7)))
10908 (source
10909 (origin
10910 (method git-fetch)
10911 (uri (git-reference
10912 (url "https://github.com/xiongtx/eros.git")
10913 (commit commit)))
10914 (file-name (string-append name "-" version "-checkout"))
10915 (sha256
10916 (base32
10917 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
10918 (build-system emacs-build-system)
10919 (home-page "https://github.com/xiongtx/eros")
10920 (synopsis "Evaluation result overlays")
10921 (description "@code{eros} provides evaluation result overlays.")
10922 (license license:gpl3+))))
10923
10924 (define-public emacs-stickyfunc-enhance
10925 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
10926 (revision "1"))
10927 (package
10928 (name "emacs-stickyfunc-enhance")
10929 (version "0.1")
10930 (source
10931 (origin
10932 (method git-fetch)
10933 (uri (git-reference
10934 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
10935 (commit commit)))
10936 (file-name (string-append name "-" version "-checkout"))
10937 (sha256
10938 (base32
10939 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
10940 (build-system emacs-build-system)
10941 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
10942 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
10943 (description
10944 "@code{semantic-stickyfunc-mode} shows the function point is currently
10945 in at the first line of the current buffer. This is useful when you have a
10946 very long function that spreads more than a screen, and you don't have to
10947 scroll up to read the function name and then scroll down to original position.")
10948 (license license:gpl3+))))
10949
10950 (define-public emacs-git-auto-commit-mode
10951 (package
10952 (name "emacs-git-auto-commit-mode")
10953 (version "4.4.0")
10954 (source
10955 (origin
10956 (method url-fetch)
10957 (uri (string-append
10958 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
10959 version ".tar.gz"))
10960 (file-name (string-append name "-" version ".tar.gz"))
10961 (sha256
10962 (base32
10963 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
10964 (build-system emacs-build-system)
10965 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
10966 (synopsis "Emacs Minor mode to automatically commit and push")
10967 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
10968 tries to commit changes to a file after every save.
10969
10970 When @code{gac-automatically-push-p} is non-nil, it also tries to push to
10971 the current upstream.")
10972 (license license:gpl3+)))
10973
10974 (define-public emacs-company-restclient
10975 (package
10976 (name "emacs-company-restclient")
10977 (version "0.1.0")
10978 (source
10979 (origin
10980 (method url-fetch)
10981 (uri (string-append
10982 "https://github.com/iquiw/company-restclient/archive/"
10983 "v" version ".tar.gz"))
10984 (file-name (string-append name "-" version ".tar.gz"))
10985 (sha256
10986 (base32
10987 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
10988 (build-system emacs-build-system)
10989 (propagated-inputs
10990 `(("emacs-company" ,emacs-company)
10991 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
10992 ("emacs-restclient" ,emacs-restclient)))
10993 (home-page "https://github.com/iquiw/company-restclient")
10994 (synopsis "Company-mode completion back-end for restclient-mode")
10995 (description "@code{company-mode} back-end for
10996 @code{restclient-mode}.
10997
10998 It provides auto-completion for HTTP methods and headers in
10999 @code{restclient-mode}. Completion source is given by
11000 @code{know-your-http-well}.")
11001 (license license:gpl3+)))
11002
11003 (define-public emacs-noflet
11004 (let ((version "20170629")
11005 (revision "1")
11006 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
11007 (package
11008 (name "emacs-noflet")
11009 (version (git-version version revision commit))
11010 (source
11011 (origin
11012 (method git-fetch)
11013 (uri (git-reference
11014 (url "https://github.com/nicferrier/emacs-noflet")
11015 (commit commit)))
11016 (file-name (string-append name "-" version "-checkout"))
11017 (sha256
11018 (base32
11019 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
11020 (build-system emacs-build-system)
11021 (arguments
11022 `(#:phases
11023 (modify-phases %standard-phases
11024 (add-after 'unpack 'require-dash
11025 ;; noflet.el uses -map from dash, but (require 'dash) is
11026 ;; missing. So, add it.
11027 (lambda _
11028 (substitute* "noflet.el"
11029 ((";;; Code:") ";;; Code:\n(require 'dash)"))
11030 #t)))))
11031 (propagated-inputs
11032 `(("emacs-dash" ,emacs-dash)))
11033 (home-page "https://github.com/nicferrier/emacs-noflet")
11034 (synopsis "Locally override functions")
11035 (description "@code{emacs-noflet} let's you locally override functions,
11036 in the manner of @command{flet}, but with access to the original function
11037 through the symbol: @command{this-fn}.")
11038 (license license:gpl3+))))
11039
11040 (define-public emacs-dumb-jump
11041 (package
11042 (name "emacs-dumb-jump")
11043 (version "0.5.2")
11044 (source
11045 (origin
11046 (method url-fetch)
11047 (uri (string-append
11048 "https://github.com/jacktasia/dumb-jump/archive/v"
11049 version ".tar.gz"))
11050 (file-name (string-append name "-" version ".tar.gz"))
11051 (sha256
11052 (base32
11053 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
11054 (build-system emacs-build-system)
11055 (arguments
11056 `(#:tests? #f ; FIXME: Tests freeze when run.
11057 #:test-command '("ert-runner")
11058 #:phases
11059 (modify-phases %standard-phases
11060 (add-after 'unpack 'set-shell
11061 (lambda _
11062 ;; Setting the SHELL environment variable is required for the
11063 ;; tests to find sh.
11064 (setenv "SHELL" (which "sh"))
11065 #t)))))
11066 (native-inputs
11067 `(("emacs-el-mock" ,emacs-el-mock)
11068 ("emacs-noflet" ,emacs-noflet)
11069 ("emacs-undercover" ,emacs-undercover)
11070 ("ert-runner" ,emacs-ert-runner)))
11071 (propagated-inputs
11072 `(("emacs-f" ,emacs-f)
11073 ("emacs-popup" ,emacs-popup)))
11074 (home-page "https://github.com/jacktasia/dumb-jump")
11075 (synopsis "Jump to definition for multiple languages without configuration")
11076 (description "Dumb Jump is an Emacs \"jump to definition\" package with
11077 support for multiple programming languages that favors \"just working\" over
11078 speed or accuracy. This means minimal --- and ideally zero --- configuration
11079 with absolutely no stored indexes (tags) or persistent background processes.
11080 Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
11081 @command{rg} installed.")
11082 (license license:gpl3+)))
11083
11084 (define-public emacs-dts-mode
11085 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
11086 (revision "1"))
11087 (package
11088 (name "emacs-dts-mode")
11089 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
11090 (source
11091 (origin
11092 (method git-fetch)
11093 (uri (git-reference
11094 (url "https://github.com/bgamari/dts-mode.git")
11095 (commit commit)))
11096 (file-name (string-append name "-" version "-checkout"))
11097 (sha256
11098 (base32
11099 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
11100 (build-system emacs-build-system)
11101 (home-page "https://github.com/bgamari/dts-mode.git")
11102 (synopsis "Emacs minor mode for editing device tree files")
11103 (description
11104 "This package provides an Emacs minor mode for highlighting
11105 device tree files.")
11106 (license license:gpl3+))))
11107
11108 (define-public emacs-daemons
11109 (package
11110 (name "emacs-daemons")
11111 (version "2.0.0")
11112 (source
11113 (origin
11114 (method git-fetch)
11115 (uri (git-reference
11116 (url "https://github.com/cbowdon/daemons.el")
11117 (commit version)))
11118 (file-name (string-append name "-" version "-checkout"))
11119 (sha256
11120 (base32
11121 "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4"))))
11122 (build-system emacs-build-system)
11123 (home-page "https://github.com/cbowdon/daemons.el")
11124 (synopsis "Emacs UI for managing init system services")
11125 (description
11126 "This is an Emacs mode to give you a UI for managing init system
11127 daemons (services) for those getting tired of typing out @code{sudo service
11128 my_thing reload} all the time. It offers a consistent UI over different init
11129 systems.")
11130 (license license:gpl3+)))
11131
11132 (define-public emacs-esh-autosuggest
11133 (package
11134 (name "emacs-esh-autosuggest")
11135 (version "2.0.0")
11136 (source
11137 (origin
11138 (method git-fetch)
11139 (uri (git-reference
11140 (url "https://github.com/dieggsy/esh-autosuggest")
11141 (commit version)))
11142 (file-name (string-append name "-" version "-checkout"))
11143 (sha256
11144 (base32
11145 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
11146 (build-system emacs-build-system)
11147 (propagated-inputs `(("emacs-company" ,emacs-company)))
11148 (home-page "https://github.com/dieggsy/esh-autosuggest")
11149 (synopsis "Fish-like autosuggestions in Eshell")
11150 (description
11151 "This package assumes you use something other than company for eshell
11152 completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
11153 @code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
11154 for history autosuggestions.
11155
11156 Unless you're using @code{use-package}'s hook keyword, you can enable the
11157 autosuggestions with:
11158 @code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
11159 (license license:gpl3+)))
11160
11161 (define-public emacs-desktop-environment
11162 (package
11163 (name "emacs-desktop-environment")
11164 (version "0.2.0")
11165 (source
11166 (origin
11167 (method git-fetch)
11168 (uri (git-reference
11169 (url "https://github.com/DamienCassou/desktop-environment.git")
11170 (commit (string-append "v" version))))
11171 (file-name (string-append name "-" version "-checkout"))
11172 (sha256
11173 (base32
11174 "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r"))))
11175 (build-system emacs-build-system)
11176 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11177 (synopsis "Control your GNU/Linux desktop environment from Emacs")
11178 (description
11179 "This package helps you control your GNU/Linux desktop from Emacs.
11180 With @code{desktop-environment}, you can control the brightness and volume as
11181 well as take screenshots and lock your screen. The package depends on the
11182 availability of shell commands to do the hard work for us. These commands can
11183 be changed by customizing the appropriate variables.")
11184 (license license:gpl3+)))
11185
11186 (define-public emacs-org-caldav
11187 (package
11188 (name "emacs-org-caldav")
11189 (version "20180403")
11190 (source
11191 (origin
11192 (method url-fetch)
11193 (uri (string-append
11194 "https://github.com/dengste/org-caldav/raw/"
11195 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
11196 "/org-caldav.el"))
11197 (sha256
11198 (base32
11199 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
11200 (build-system emacs-build-system)
11201 (propagated-inputs `(("emacs-org" ,emacs-org)))
11202 (home-page "https://github.com/dengste/org-caldav")
11203 (synopsis
11204 "Sync Org files with external calendars via the CalDAV protocol")
11205 (description
11206 "Synchronize between events in Org-mode files and a CalDAV calendar.
11207 This code is still alpha.")
11208 (license license:gpl3+)))
11209
11210 (define-public emacs-zotxt
11211 (package
11212 (name "emacs-zotxt")
11213 (version "20180518")
11214 (source
11215 (origin
11216 (method url-fetch)
11217 (uri (string-append
11218 "https://github.com/egh/zotxt-emacs/archive/"
11219 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
11220 ".tar.gz"))
11221 (sha256
11222 (base32
11223 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
11224 (build-system emacs-build-system)
11225 (propagated-inputs
11226 `(("emacs-deferred" ,emacs-deferred)
11227 ("emacs-request" ,emacs-request)))
11228 (home-page "https://github.com/egh/zotxt-emacs")
11229 (synopsis "Integrate Emacs with Zotero")
11230 (description "This package provides two integration features between Emacs
11231 and the Zotero research assistant: Insertion of links to Zotero items into an
11232 Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
11233 (license license:gpl3+)))
11234
11235 (define-public emacs-evil-ediff
11236 ;; Evil-Ediff is included in Evil Collection from 20180617.
11237 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
11238
11239 (define-public emacs-evil-magit
11240 (let ((commit "dbf5a646a7ce1c35c229dfdc423bd5ecd927a3a8"))
11241 (package
11242 (name "emacs-evil-magit")
11243 (version (git-version "0.4.2" "1" commit))
11244 (source
11245 (origin
11246 (method git-fetch)
11247 (uri (git-reference
11248 (url "https://github.com/emacs-evil/evil-magit")
11249 (commit commit)))
11250 (file-name (string-append name "-" version "-checkout"))
11251 (sha256
11252 (base32
11253 "0ya0dkviq4pi92ab69a4j674y5r1hc1x3x7r7hlm97ag3a6zfkav"))))
11254 (build-system emacs-build-system)
11255 (propagated-inputs
11256 `(("emacs-evil" ,emacs-evil)
11257 ("magit" ,emacs-magit)))
11258 (home-page
11259 "https://github.com/emacs-evil/evil-magit")
11260 (synopsis "Evil-based key bindings for Magit")
11261 (description
11262 "This Emacs library configures Magit and Evil to play well with each other.
11263 For some background see @url{https://github.com/magit/evil-magit/issues/1}.
11264 See the README at @url{https://github.com/justbur/evil-magit} for a table
11265 describing the key binding changes.")
11266 (license license:gpl3+))))
11267
11268 (define-public emacs-evil-mu4e
11269 ;; Evil-mu4e is included in Evil Collection from 20180617.
11270 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
11271
11272 (define-public emacs-evil-multiedit
11273 (package
11274 (name "emacs-evil-multiedit")
11275 (version "1.3.9")
11276 (source
11277 (origin
11278 (method git-fetch)
11279 (uri (git-reference
11280 (url "https://github.com/hlissner/evil-multiedit")
11281 (commit (string-append "v" version))))
11282 (file-name (string-append name "-" version "-checkout"))
11283 (sha256
11284 (base32
11285 "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"))))
11286 (build-system emacs-build-system)
11287 (propagated-inputs
11288 `(("emacs-evil" ,emacs-evil)
11289 ("emacs-iedit" ,emacs-iedit)))
11290 (home-page
11291 "https://github.com/hlissner/evil-multiedit")
11292 (synopsis "Multiple cursors for Evil mode")
11293 (description
11294 "This plugin was an answer to the lack of proper multiple cursor support
11295 in Emacs+Evil. It allows you to select and edit matches interactively,
11296 integrating @code{iedit-mode} into Evil mode with an attempt at sensible
11297 defaults.")
11298 (license license:gpl3+)))
11299
11300 (define-public emacs-evil-org
11301 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
11302 (package
11303 (name "emacs-evil-org")
11304 (version (git-version "0.1.1" "1" commit))
11305 (source
11306 (origin
11307 (method git-fetch)
11308 (uri (git-reference
11309 (url "https://github.com/Somelauw/evil-org-mode")
11310 (commit commit)))
11311 (file-name (string-append name "-" version "-checkout"))
11312 (sha256
11313 (base32
11314 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
11315 (build-system emacs-build-system)
11316 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
11317 (home-page
11318 "https://github.com/Somelauw/evil-org-mode")
11319 (synopsis "Evil keybindings for Org mode")
11320 (description
11321 "This package adds supplemental Evil mode key-bindings to Emacs
11322 Org-mode. It features:
11323 @itemize
11324 @item normal, visual and insert mode bindings;
11325 @item key bindings organised in key themes;
11326 @item operators like > and < to work on headings;
11327 @item text objects;
11328 @item table support;
11329 @item calendar (date selection) support;
11330 @item agenda support.
11331 @end itemize\n")
11332 (license license:gpl3+))))
11333
11334 (define-public emacs-fish-completion
11335 (package
11336 (name "emacs-fish-completion")
11337 (version "1.0")
11338 (source
11339 (origin
11340 (method url-fetch)
11341 (uri (string-append
11342 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
11343 "archive.tar.gz?ref="
11344 version))
11345 (sha256
11346 (base32
11347 "1hpma1c5j50ja03ibr7h1xmyv7k8j3rbvqivad47kwqhlsgw0jk0"))))
11348 (build-system emacs-build-system)
11349 (inputs `(("fish" ,fish)))
11350 (arguments
11351 `(#:phases
11352 (modify-phases %standard-phases
11353 (add-after 'unpack 'configure
11354 (lambda* (#:key inputs outputs #:allow-other-keys)
11355 (let ((fish (assoc-ref inputs "fish")))
11356 ;; Specify the absolute file names of the various
11357 ;; programs so that everything works out-of-the-box.
11358 (emacs-substitute-variables
11359 "fish-completion.el"
11360 ("fish-completion-command"
11361 (string-append fish "/bin/fish")))))))))
11362 (home-page
11363 "https://gitlab.com/Ambrevar/emacs-fish-completion")
11364 (synopsis "Fish completion for Emacs pcomplete")
11365 (description
11366 "This package provides completion for the Fish shell to pcomplete (used
11367 by shell and Eshell). You can set it up globally with:
11368
11369 @example
11370 (when (and (executable-find \"fish\")
11371 (require 'fish-completion nil t))
11372 (global-fish-completion-mode))
11373 @end example
11374
11375 Alternatively, you can call the @code{fish-completion-mode} manually or in
11376 shell/Eshell mode hook.
11377
11378 The package @code{emacs-bash-completion} is an optional dependency: if available,
11379 @code{fish-completion-complete} can be configured to fall back on bash to further
11380 try completing. See @code{fish-completion-fallback-on-bash-p}.")
11381 (license license:gpl3+)))
11382
11383 (define-public emacs-gif-screencast
11384 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
11385 (package
11386 (name "emacs-gif-screencast")
11387 (version (git-version "20180616" "1" commit))
11388 (source
11389 (origin
11390 (method url-fetch)
11391 (uri (string-append
11392 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
11393 "repository/archive.tar.gz?ref="
11394 commit))
11395 (sha256
11396 (base32
11397 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
11398 (build-system emacs-build-system)
11399 (inputs
11400 `(("scrot" ,scrot)
11401 ("imagemagick" ,imagemagick)
11402 ("gifsicle" ,gifsicle)))
11403 (arguments
11404 `(#:phases
11405 (modify-phases %standard-phases
11406 (add-after 'unpack 'configure
11407 (lambda* (#:key inputs outputs #:allow-other-keys)
11408 (let ((scrot (assoc-ref inputs "scrot"))
11409 (imagemagick (assoc-ref inputs "imagemagick"))
11410 (gifsicle (assoc-ref inputs "gifsicle")))
11411 ;; Specify the absolute file names of the various
11412 ;; programs so that everything works out-of-the-box.
11413 (emacs-substitute-variables
11414 "gif-screencast.el"
11415 ("gif-screencast-program"
11416 (string-append scrot "/bin/scrot"))
11417 ("gif-screencast-convert-program"
11418 (string-append imagemagick "/bin/convert"))
11419 ("gif-screencast-cropping-program"
11420 (string-append imagemagick "/bin/mogrify"))
11421 ("gif-screencast-optimize-program"
11422 (string-append imagemagick "/bin/gifsicle")))))))))
11423 (home-page
11424 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
11425 (synopsis "One-frame-per-action GIF recording")
11426 (description
11427 "Call @code{gif-screencast} to start a recording.
11428 A screenshot is taken for every user action. Call
11429 @code{gif-screencast-stop} (<f9> by default) to finish recording and create
11430 the GIF result.")
11431 (license license:gpl3+))))
11432
11433 (define-public emacs-google-translate
11434 (package
11435 (name "emacs-google-translate")
11436 (version "0.11.16")
11437 (source
11438 (origin
11439 (method url-fetch)
11440 (uri (string-append "https://github.com/atykhonov/google-translate/"
11441 "archive/v" version ".tar.gz"))
11442 (file-name (string-append name "-" version ".tar.gz"))
11443 (sha256
11444 (base32
11445 "01n9spj1d0gjfj39x526rl3m9c28wnx9afipmf5s8y77cx3mfwhl"))))
11446 (build-system emacs-build-system)
11447 (home-page "https://github.com/atykhonov/google-translate")
11448 (synopsis "Emacs interface to Google Translate")
11449 (description
11450 "This packages provides an Emacs interface to the Google Translate
11451 on-line service.")
11452 (license license:gpl3+)))
11453
11454 (define-public emacs-helm-company
11455 (let ((commit "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f"))
11456 (package
11457 (name "emacs-helm-company")
11458 (version (git-version "0.2.3" "1" commit))
11459 (source
11460 (origin
11461 (method git-fetch)
11462 (uri (git-reference
11463 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11464 (commit commit)))
11465 (file-name (string-append name "-" version "-checkout"))
11466 (sha256
11467 (base32
11468 "1ciirsanhajdqm5iwl8k9ywf4jha1wdv4sc4d9kslyrfr9zn4q6k"))))
11469 (build-system emacs-build-system)
11470 (propagated-inputs
11471 `(("emacs-helm" ,emacs-helm)
11472 ("emacs-company" ,emacs-company)))
11473 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
11474 (synopsis "Helm interface for company-mode")
11475 (description
11476 "This is a Helm interface to company-mode, a text completion
11477 framework.")
11478 (license license:gpl3+))))
11479
11480 (define-public emacs-helm-descbinds
11481 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
11482 (package
11483 (name "emacs-helm-descbinds")
11484 (version (git-version "1.13" "1" commit))
11485 (source
11486 (origin
11487 (method git-fetch)
11488 (uri (git-reference
11489 (url "https://github.com/emacs-helm/helm-descbinds")
11490 (commit commit)))
11491 (file-name (string-append name "-" version "-checkout"))
11492 (sha256
11493 (base32
11494 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
11495 (build-system emacs-build-system)
11496 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11497 (home-page "https://github.com/emacs-helm/helm-descbinds")
11498 (synopsis "Convenient @code{describe-bindings} with Helm")
11499 (description
11500 "This package is a replacement of @code{describe-bindings} for Helm.
11501 @code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
11502 type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
11503 @code{helm-descbinds}. The bindings are presented in a similar way as
11504 @code{describe-bindings} does, but you can use completion to find the command
11505 you searched for and execute it, or view its documentation.")
11506 (license license:gpl3+))))
11507
11508 (define-public emacs-helm-emms
11509 (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
11510 (package
11511 (name "emacs-helm-emms")
11512 (version (git-version "1.3" "1" commit))
11513 (source
11514 (origin
11515 (method git-fetch)
11516 (uri (git-reference
11517 (url "https://github.com/emacs-helm/helm-emms")
11518 (commit commit)))
11519 (file-name (string-append name "-" version "-checkout"))
11520 (sha256
11521 (base32
11522 "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
11523 (build-system emacs-build-system)
11524 (propagated-inputs
11525 `(("emacs-helm" ,emacs-helm)
11526 ("emacs-emms" ,emacs-emms)))
11527 (home-page
11528 "https://github.com/emacs-helm/helm-emms")
11529 (synopsis "Emms for Helm")
11530 (description "Helm interface for Emms to browse all tracks and all folders
11531 from @code{emms-source-file-default-directory}.")
11532 (license license:gpl3+))))
11533
11534 (define-public emacs-helm-exwm
11535 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
11536 (package
11537 (name "emacs-helm-exwm")
11538 (version (git-version "20180703" "2" commit))
11539 (source
11540 (origin
11541 (method url-fetch)
11542 (uri (string-append
11543 "https://github.com/emacs-helm/helm-exwm/archive/"
11544 commit
11545 ".tar.gz"))
11546 (sha256
11547 (base32
11548 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
11549 (build-system emacs-build-system)
11550 (propagated-inputs
11551 `(("emacs-helm" ,emacs-helm)
11552 ("emacs-exwm" ,emacs-exwm)))
11553 (home-page
11554 "https://github.com/emacs-helm/helm-exwm")
11555 (synopsis "Helm for EXWM buffers")
11556 (description
11557 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
11558 @code{helm-exwm-switch} is a convenience X application launcher using Helm to
11559 switch between the various windows of one or several specific applications.
11560 See @code{helm-exwm-switch-browser} for an example.")
11561 (license license:gpl3+))))
11562
11563 (define-public emacs-helm-flycheck
11564 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
11565 (package
11566 (name "emacs-helm-flycheck")
11567 (version (git-version "0.4" "1" commit))
11568 (source
11569 (origin
11570 (method git-fetch)
11571 (uri (git-reference
11572 (url "https://github.com/yasuyk/helm-flycheck")
11573 (commit commit)))
11574 (file-name (string-append name "-" version "-checkout"))
11575 (sha256
11576 (base32
11577 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
11578 (build-system emacs-build-system)
11579 (propagated-inputs
11580 `(("emacs-dash" ,emacs-dash)
11581 ("emacs-flycheck" ,emacs-flycheck)
11582 ("emacs-helm" ,emacs-helm)))
11583 (home-page "https://github.com/yasuyk/helm-flycheck")
11584 (synopsis "Show Flycheck errors with Helm")
11585 (description
11586 "This integrates Flycheck with Helm.")
11587 (license license:gpl3+))))
11588
11589 (define-public emacs-helm-ls-git
11590 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
11591 (package
11592 (name "emacs-helm-ls-git")
11593 (version (git-version "1.9.1" "1" commit))
11594 (source
11595 (origin
11596 (method git-fetch)
11597 (uri (git-reference
11598 (url "https://github.com/emacs-helm/helm-ls-git")
11599 (commit commit)))
11600 (file-name (string-append name "-" version "-checkout"))
11601 (sha256
11602 (base32
11603 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
11604 (build-system emacs-build-system)
11605 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11606 (home-page "https://github.com/emacs-helm/helm-ls-git")
11607 (synopsis "Helm interface for listing the files in a Git repository")
11608 (description
11609 "This package provides a Helm interface for Git files.
11610 @itemize
11611 @item Display the open buffers in project.
11612 @item Display a status source showing state of project (modified files etc.).
11613 @item Display a list of all files in project under git control.
11614 @item Quickly look at diffs of modified files.
11615 @item Allow switching to @code{git status} with your preferred frontend
11616 (vc-dir, Magit,etc.).
11617 @item Full integration of git-grep, also allow usage of @code{helm-grep} (you
11618 can use ack-grep instead of grep).
11619 @item Integrate usage of gid from id-utils.
11620 @item Full integration with @code{helm-find-files}, allow you to browse
11621 projects unrelated to current-buffer.
11622 @item In addition, all actions of type files and buffers are provided.
11623 @end itemize\n")
11624 (license license:gpl3+))))
11625
11626 (define-public emacs-helm-mu
11627 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
11628 (package
11629 (name "emacs-helm-mu")
11630 (version (git-version "20180513" "1" commit))
11631 (source
11632 (origin
11633 (method url-fetch)
11634 (uri (string-append
11635 "https://github.com/emacs-helm/helm-mu/archive/"
11636 commit
11637 ".tar.gz"))
11638 (sha256
11639 (base32
11640 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
11641 (build-system emacs-build-system)
11642 (propagated-inputs
11643 `(("emacs-helm" ,emacs-helm)
11644 ("mu" ,mu)))
11645 (home-page
11646 "https://github.com/emacs-helm/helm-mu")
11647 (synopsis
11648 "Helm sources for searching emails and contacts")
11649 (description
11650 "Helm sources for searching emails and contacts using @code{mu} and
11651 @code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
11652 Emacs build on top of mu. Mu is highly efficient making it possible to get
11653 instant results even for huge maildirs. It also provides search operators,
11654 e.g: @code{from:Peter to:Anne flag:attach search term}.")
11655 (license license:gpl3+))))
11656
11657 (define-public emacs-helm-pass
11658 (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"))
11659 (package
11660 (name "emacs-helm-pass")
11661 (version (git-version "20180416" "1" commit))
11662 (source
11663 (origin
11664 (method url-fetch)
11665 (uri (string-append
11666 "https://github.com/jabranham/helm-pass/archive/"
11667 commit
11668 ".tar.gz"))
11669 (sha256
11670 (base32
11671 "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
11672 (build-system emacs-build-system)
11673 (propagated-inputs
11674 `(("emacs-helm" ,emacs-helm)
11675 ("emacs-password-store" ,emacs-password-store)))
11676 (home-page
11677 "https://github.com/jabranham/helm-pass")
11678 (synopsis "Helm interface to pass, the standard Unix password manager")
11679 (description
11680 "Users of @code{helm-pass} may also be interested in functionality
11681 provided by other Emacs packages dealing with pass:
11682 @itemize
11683 @item @code{emacs-password-store}, which @code{helm-pass} relies on.
11684 @item @code{emacs-pass}, a major mode for @code{pass}.
11685 @item @code{auth-source-pass.el}: integration of Emacs' auth-source with
11686 @code{pass}, included in Emacs 26+).
11687 @end itemize\n")
11688 (license license:gpl3+))))
11689
11690 (define-public emacs-image+
11691 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
11692 (package
11693 (name "emacs-image+")
11694 (version (git-version "0.6.2" "1" commit))
11695 (source
11696 (origin
11697 (method git-fetch)
11698 (uri (git-reference
11699 (url "https://github.com/mhayashi1120/Emacs-imagex")
11700 (commit commit)))
11701 (file-name (string-append name "-" version "-checkout"))
11702 (sha256
11703 (base32
11704 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
11705 (build-system emacs-build-system)
11706 (inputs `(("imagemagick" ,imagemagick)))
11707 (arguments
11708 `(#:phases
11709 (modify-phases %standard-phases
11710 (add-after 'unpack 'configure
11711 (lambda* (#:key inputs outputs #:allow-other-keys)
11712 (let ((imagemagick (assoc-ref inputs "imagemagick")))
11713 ;; Specify the absolute file names of the various
11714 ;; programs so that everything works out-of-the-box.
11715 (chmod "image+.el" #o666)
11716 (emacs-substitute-variables
11717 "image+.el"
11718 ("imagex-convert-command"
11719 (string-append imagemagick "/bin/convert"))
11720 ("imagex-identify-command"
11721 (string-append imagemagick "/bin/identify")))))))))
11722 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
11723 (synopsis "Image manipulation extensions for Emacs")
11724 (description
11725 "Image+ provides keybindings allowing you to zoom in or zoom out of an
11726 image, rotate it, save modified images, and more.")
11727 (license license:gpl3+))))
11728
11729 (define-public emacs-package-lint
11730 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
11731 (package
11732 (name "emacs-package-lint")
11733 (version (git-version "0.5" "1" commit))
11734 (source
11735 (origin
11736 (method git-fetch)
11737 (uri (git-reference
11738 (url "https://github.com/purcell/package-lint")
11739 (commit commit)))
11740 (file-name (string-append name "-" version "-checkout"))
11741 (sha256
11742 (base32
11743 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
11744 (build-system emacs-build-system)
11745 (home-page "https://github.com/purcell/package-lint")
11746 (synopsis "Linting library for elisp package authors")
11747 (description
11748 "This provides a list of issues with the Emacs package metadata of a file,
11749 e.g. the package dependencies it requires. See function
11750 @code{package-lint-buffer}. Checks will currently be enabled only if a
11751 \"Package-Requires:\" or \"Package-Version:\" header is present in the
11752 file.")
11753 (license license:gpl3+))))
11754
11755 (define-public emacs-picpocket
11756 (let ((version "40")
11757 (commit "6fd88b8711c4370662c0f9c462170187d092a046"))
11758 (package
11759 (name "emacs-picpocket")
11760 (version version)
11761 (source
11762 (origin
11763 (method git-fetch)
11764 (uri (git-reference
11765 (url "https://github.com/johanclaesson/picpocket")
11766 (commit commit)))
11767 (file-name (git-file-name name version))
11768 (sha256
11769 (base32 "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw"))))
11770 (build-system emacs-build-system)
11771 (arguments ; needed for running tests
11772 `(#:tests? #t
11773 #:emacs ,emacs
11774 #:test-command '("emacs" "--batch"
11775 "-l" "picpocket-test.el"
11776 "-f" "ert-run-tests-batch-and-exit")))
11777 (home-page "https://github.com/johanclaesson/picpocket")
11778 (synopsis "Image viewer for Emacs")
11779 (description
11780 "Picpocket is an image viewer for GNU Emacs. It has commands for:
11781
11782 @itemize
11783 @item File operations on the picture files (delete, move, copy, hardlink).
11784 @item Scale and rotate the picture.
11785 @item Associate pictures with tags which are saved to disk.
11786 @item Filter pictures according to tags.
11787 @item Customizing keystrokes for quick tagging and file operations.
11788 @item Undo and browse history of undoable commands.
11789 @end itemize")
11790 (license license:gpl3+))))
11791
11792 (define-public emacs-wgrep-helm
11793 ;; `emacs-wgrep-helm' was mistakenly added.
11794 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
11795
11796 (define-public emacs-mu4e-conversation
11797 (let ((commit "e7d4bfcb0d392b0aed1f705ccac2419a168d1f5e"))
11798 (package
11799 (name "emacs-mu4e-conversation")
11800 (version (git-version "20181126" "4" commit))
11801 (source
11802 (origin
11803 (method url-fetch)
11804 (uri (string-append
11805 "https://gitlab.com/Ambrevar/mu4e-conversation/"
11806 "repository/archive.tar.gz?ref="
11807 commit))
11808 (file-name (string-append name "-" version "-checkout"))
11809 (sha256
11810 (base32
11811 "0b52hf9rm2afba9pvgink9bwqm705sk0y5qikp0ff5sk53wqvy29"))))
11812 (build-system emacs-build-system)
11813 (propagated-inputs
11814 `(("mu" ,mu)))
11815 (home-page
11816 "https://gitlab.com/Ambrevar/mu4e-conversation")
11817 (synopsis
11818 "Show a complete thread in a single buffer")
11819 (description
11820 "This package offers an alternate view to mu4e's e-mail display. It
11821 shows all e-mails of a thread in a single view, where each correspondent has
11822 their own face. Threads can be displayed linearly (in which case e-mails are
11823 displayed in chronological order) or as an Org document where the node tree
11824 maps the thread tree.")
11825 (license license:gpl3+))))
11826
11827 (define-public emacs-pinentry
11828 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
11829 (revision "1"))
11830 (package
11831 (name "emacs-pinentry")
11832 (version (git-version "0.1" revision commit))
11833 (source
11834 (origin
11835 (method url-fetch)
11836 (uri (string-append
11837 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
11838 "/packages/pinentry/pinentry.el?id=" commit))
11839 (file-name (string-append "pinentry.el"))
11840 (sha256
11841 (base32
11842 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
11843 (build-system emacs-build-system)
11844 (propagated-inputs
11845 `(("gnupg" ,gnupg)))
11846 (home-page "https://elpa.gnu.org/packages/pinentry.html")
11847 (synopsis "GnuPG Pinentry server implementation")
11848 (description
11849 "This package allows GnuPG passphrase to be prompted through the
11850 minibuffer instead of graphical dialog.
11851
11852 To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
11853 reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
11854 server with @code{M-x pinentry-start}.")
11855 (license license:gpl3+))))
11856
11857 (define-public emacs-org-brain
11858 (package
11859 (name "emacs-org-brain")
11860 (version "0.5")
11861 (source
11862 (origin
11863 (method git-fetch)
11864 (uri (git-reference
11865 (url "https://github.com/Kungsgeten/org-brain.git")
11866 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
11867 (file-name (git-file-name name version))
11868 (sha256
11869 (base32
11870 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
11871 (build-system emacs-build-system)
11872 (home-page "https://github.com/Kungsgeten/org-brain")
11873 (synopsis "Org-mode wiki and concept-mapping for Emacs")
11874 (description "@code{emacs-org-brain} implements a variant of concept
11875 mapping in Emacs, using @code{org-mode}. An org-brain is a network of
11876 org-mode entries, where each entry is a file or a headline, and you can get a
11877 visual overview of the relationships between the entries: parents, children,
11878 siblings and friends. This visual overview can also be used to browse your
11879 entries. You can think of entries as nodes in a mind map, or pages in a
11880 wiki.")
11881 (license license:expat)))
11882
11883 (define-public emacs-recent-addresses
11884 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
11885 (revision "1"))
11886 (package
11887 (name "emacs-recent-addresses")
11888 (home-page "http://nschum.de/src/emacs/recent-addresses/")
11889 (version (git-version "0.1" revision commit))
11890 (source (origin
11891 (method git-fetch)
11892 (uri (git-reference
11893 ;; Note: Use a branch that works with Helm. Submitted
11894 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
11895 (url "https://github.com/civodul/recent-addresses.el")
11896 (commit commit)))
11897 (sha256
11898 (base32
11899 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
11900 (file-name (git-file-name name version))))
11901 (build-system emacs-build-system)
11902 (synopsis "Record recently-used email addressed and auto-complete them")
11903 (description
11904 "@code{recent-addresses} is an Emacs package that allows you to quickly
11905 look up previously used email addresses. It can be used alongside the Gnus
11906 email client.")
11907 (license license:gpl2+))))
11908
11909 (define-public emacs-fold-dwim
11910 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
11911 (revision "0"))
11912 (package
11913 (name "emacs-fold-dwim")
11914 (version (git-version "1.2" revision commit))
11915 (home-page "https://github.com/emacsattic/fold-dwim")
11916 (source (origin
11917 (method git-fetch)
11918 (uri (git-reference (url home-page) (commit commit)))
11919 (sha256
11920 (base32
11921 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
11922 (file-name (git-file-name name version))))
11923 (build-system emacs-build-system)
11924 (synopsis "Unified user interface for Emacs folding modes")
11925 (description
11926 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
11927 can do different things depending on the context. In this package, it means
11928 that, if the cursor is in a currently hidden folded construction, we want to
11929 show it; if it's not, we want to hide whatever fold the cursor is in.")
11930 (license license:gpl2+))))
11931
11932 (define-public emacs-markup-faces
11933 (package
11934 (name "emacs-markup-faces")
11935 (version "1.0.0")
11936 (source
11937 (origin
11938 (method url-fetch)
11939 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
11940 version ".el"))
11941 (sha256
11942 (base32
11943 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
11944 (build-system emacs-build-system)
11945 (home-page "https://github.com/sensorflo/markup-faces")
11946 (synopsis "Collection of Emacs faces for markup language modes")
11947 (description "emacs-markup-faces is like font-lock-faces, but tailored for
11948 markup languages instead programming languages. The sub group markup-faces-text
11949 is also intended for 'text viewing modes' such as info or (wo)man. This gives a
11950 common look and feel, or let's say theme, across different markup language modes
11951 and 'text viewing modes' respectively.")
11952 (license license:gpl3+)))
11953
11954 (define-public emacs-adoc-mode
11955 (package
11956 (name "emacs-adoc-mode")
11957 (version "0.6.6")
11958 (source
11959 (origin
11960 (method url-fetch)
11961 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
11962 version ".el"))
11963 (sha256
11964 (base32
11965 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
11966 (build-system emacs-build-system)
11967 (propagated-inputs
11968 `(("emacs-markup-faces" ,emacs-markup-faces)))
11969 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
11970 (synopsis "AsciiDoc mode for Emacs")
11971 (description "This package provides an Emacs major mode for editing AsciiDoc
11972 files. It focuses on highlighting the document to improve readability.")
11973 (license license:gpl2+)))
11974
11975 (define-public emacs-rust-mode
11976 (let ((commit
11977 ;; Last release is old (2016), use more recent commit to get bug
11978 ;; fixes.
11979 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
11980 (revision "0"))
11981 (package
11982 (name "emacs-rust-mode")
11983 (version (git-version "0.3.0" revision commit))
11984 (source (origin
11985 (method git-fetch)
11986 (uri
11987 (git-reference
11988 (url "https://github.com/rust-lang/rust-mode")
11989 (commit commit)))
11990 (file-name (git-file-name name version))
11991 (sha256
11992 (base32
11993 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
11994 (build-system emacs-build-system)
11995 (arguments
11996 `(#:phases
11997 (modify-phases %standard-phases
11998 (replace 'check
11999 (lambda _
12000 (invoke "sh" "run_rust_emacs_tests.sh"))))))
12001 (home-page "https://github.com/rust-lang/rust-mode")
12002 (synopsis "Major Emacs mode for editing Rust source code")
12003 (description "This package provides a major Emacs mode for editing Rust
12004 source code.")
12005 (license (list license:expat
12006 license:asl2.0)))))
12007
12008 (define-public emacs-ztree
12009 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
12010 (package
12011 (name "emacs-ztree")
12012 (version (git-version "1.0.5" "1" commit))
12013 (source
12014 (origin
12015 (method git-fetch)
12016 (uri (git-reference
12017 (url "https://github.com/fourier/ztree")
12018 (commit commit)))
12019 (file-name (git-file-name name version))
12020 (sha256
12021 (base32
12022 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
12023 (build-system emacs-build-system)
12024 (home-page "https://github.com/fourier/ztree")
12025 (synopsis "Directory tree comparison mode for Emacs")
12026 (description "Ztree is a project dedicated to implementation of several
12027 text-tree applications inside GNU Emacs. It consists of 2 subprojects:
12028 @command{ztree-diff} and @command{ztree-dir} (the basis of
12029 @command{ztree-diff}).")
12030 (license license:gpl3))))
12031
12032 (define-public emacs-helm-org-contacts
12033 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
12034 (package
12035 (name "emacs-helm-org-contacts")
12036 (version (git-version "20180707" "1" commit))
12037 (source
12038 (origin
12039 (method git-fetch)
12040 (uri (git-reference
12041 (url "https://github.com/tmalsburg/helm-org-contacts")
12042 (commit commit)))
12043 (file-name (git-file-name name version))
12044 (sha256
12045 (base32
12046 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
12047 (build-system emacs-build-system)
12048 (propagated-inputs
12049 `(("emacs-dash" ,emacs-dash)
12050 ("emacs-helm" ,emacs-helm)
12051 ("emacs-s" ,emacs-s)))
12052 (home-page "https://github.com/tmalsburg/helm-org-contacts")
12053 (synopsis "Helm source for org-contacts")
12054 (description "This Helm source can be used to search contacts stored in
12055 org-contacts format. There are actions for inserting postal addresses, email
12056 addresses, and phone numbers in the buffer where @command{helm-org-contacts}
12057 was called.")
12058 (license license:gpl3))))
12059
12060 (define-public emacs-dired-du
12061 (package
12062 (name "emacs-dired-du")
12063 (version "0.5.1")
12064 (source
12065 (origin
12066 (method url-fetch)
12067 (uri (string-append
12068 "https://elpa.gnu.org/packages/dired-du-"
12069 version ".tar"))
12070 (sha256
12071 (base32
12072 "1091scnrjh0a4gja4z6jxic6ghy1yryv46qk9c76pmh50cpw6766"))))
12073 (build-system emacs-build-system)
12074 (home-page "http://elpa.gnu.org/packages/dired-du.html")
12075 (synopsis "Dired with recursive directory sizes")
12076 (description
12077 "Display the recursive size of directories in Dired.
12078 This file defines a minor mode @command{dired-du-mode} to show the recursive
12079 size of directories in Dired buffers. If @command{du} program is available,
12080 then the directory sizes are obtained with it. Otherwise, the directory sizes
12081 are obtained with Lisp. The former is faster and provide a more precise
12082 value. For directories where the user doesn't have read permission, the
12083 recursive size is not obtained. Once this mode is enabled, every new Dired
12084 buffer displays recursive dir sizes.")
12085 (license license:gpl3+)))
12086
12087 (define-public emacs-pcre2el
12088 ;; Last release is very old so we get the latest commit.
12089 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
12090 (package
12091 (name "emacs-pcre2el")
12092 (version (git-version "1.8" "1" commit))
12093 (source
12094 (origin
12095 (method git-fetch)
12096 (uri (git-reference
12097 (url "https://github.com/joddie/pcre2el")
12098 (commit commit)))
12099 (file-name (git-file-name name version))
12100 (sha256
12101 (base32
12102 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
12103 (build-system emacs-build-system)
12104 (home-page "https://github.com/joddie/pcre2el")
12105 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
12106 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
12107 Tools) is a utility for working with regular expressions in Emacs, based on a
12108 recursive-descent parser for regexp syntax. In addition to converting (a
12109 subset of) PCRE syntax into its Emacs equivalent, it can do the following:
12110
12111 @itemize
12112 @item convert Emacs syntax to PCRE
12113 @item convert either syntax to @code{rx}, an S-expression based regexp syntax
12114 @item untangle complex regexps by showing the parse tree in @code{rx} form and
12115 highlighting the corresponding chunks of code
12116 @item show the complete list of strings (productions) matching a regexp,
12117 provided the list is finite
12118 @item provide live font-locking of regexp syntax (so far only for Elisp
12119 buffers – other modes on the TODO list).
12120 @end itemize\n")
12121 (license license:gpl3))))
12122
12123 (define-public emacs-magit-todos
12124 (package
12125 (name "emacs-magit-todos")
12126 (version "1.1")
12127 (source
12128 (origin
12129 (method git-fetch)
12130 (uri (git-reference
12131 (url "https://github.com/alphapapa/magit-todos")
12132 (commit version)))
12133 (file-name (git-file-name name version))
12134 (sha256
12135 (base32
12136 "1mvzbxshr6zjdim3jd368ar1hy5l7n22i03cpvzdmrw83kkwdyhd"))))
12137 (build-system emacs-build-system)
12138 (propagated-inputs
12139 `(("emacs-async" ,emacs-async)
12140 ("emacs-dash" ,emacs-dash)
12141 ("emacs-f" ,emacs-f)
12142 ("emacs-hl-todo" ,emacs-hl-todo)
12143 ("magit" ,emacs-magit)
12144 ("emacs-pcre2el" ,emacs-pcre2el)
12145 ("emacs-s" ,emacs-s)))
12146 (home-page "https://github.com/alphapapa/magit-todos")
12147 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
12148 (description "This package displays keyword entries from source code
12149 comments and Org files in the Magit status buffer. Activating an item jumps
12150 to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
12151 few (like NOTE).")
12152 (license license:gpl3)))
12153
12154 (define-public emacs-git-annex
12155 ;; Unreleased version has a fontification fix.
12156 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
12157 (revision "1"))
12158 (package
12159 (name "emacs-git-annex")
12160 (version (string-append "1.1-" revision "." (string-take commit 8)))
12161 (source
12162 (origin
12163 (method git-fetch)
12164 (uri (git-reference
12165 (url "https://github.com/jwiegley/git-annex-el")
12166 (commit commit)))
12167 (file-name (string-append name "-" version "-checkout"))
12168 (sha256
12169 (base32
12170 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
12171 (build-system emacs-build-system)
12172 (home-page "https://github.com/jwiegley/git-annex-el")
12173 (synopsis "Emacs integration for git-annex")
12174 (description "Enhances Dired and buffers visiting annex files with
12175 git-annex functionality. In Dired, the names of annex files are shortened by
12176 hiding the symbolic links and fontified based on whether content is present.
12177 Commands for performing some common operations (e.g., unlocking and adding
12178 files) are provided.")
12179 (license license:gpl2+))))
12180
12181 (define-public emacs-hackernews
12182 (let ((commit "d8c450bbc76d6bb65ec5cdb6c3b888a23f3769e9"))
12183 (package
12184 (name "emacs-hackernews")
12185 (version (git-version "0.4.0" "1" commit))
12186 (source
12187 (origin
12188 (method git-fetch)
12189 (uri (git-reference
12190 (url "https://github.com/clarete/hackernews.el")
12191 (commit commit)))
12192 (file-name (git-file-name name version))
12193 (sha256
12194 (base32
12195 "06mp4n6c300jv5lhwf50ircfjckzr2p1zd38s4mqnxxjlf1maim7"))))
12196 (build-system emacs-build-system)
12197 (home-page "https://github.com/clarete/hackernews.el")
12198 (synopsis "Hacker News client for Emacs")
12199 (description "The @command{hackernews} package is able to fetch stories
12200 from six different Hacker News feeds, namely top, new, best, ask, show and job
12201 stories. The default feed is top stories, which corresponds to the Hacker
12202 News homepage.")
12203 (license license:gpl3))))
12204
12205 (define-public emacs-youtube-dl
12206 (let ((commit "7c9d7a7d05b72a7d1b1257a36c5e2b2567b185dd"))
12207 (package
12208 (name "emacs-youtube-dl")
12209 (version (git-version "1.0" "1" commit))
12210 (source
12211 (origin
12212 (method git-fetch)
12213 (uri (git-reference
12214 (url "https://github.com/skeeto/youtube-dl-emacs/")
12215 (commit commit)))
12216 (file-name (git-file-name name version))
12217 (sha256
12218 (base32
12219 "0mh4s089a4x8s380agzb2306kdp1hl204px1n5rrrrdcls7imnh6"))))
12220 (build-system emacs-build-system)
12221 (inputs
12222 `(("youtube-dl" ,youtube-dl)))
12223 (arguments
12224 `(#:phases
12225 (modify-phases %standard-phases
12226 (add-after 'unpack 'configure
12227 (lambda* (#:key inputs #:allow-other-keys)
12228 (let ((youtube-dl (assoc-ref inputs "youtube-dl")))
12229 ;; .el is read-only in git.
12230 (chmod "youtube-dl.el" #o644)
12231 ;; Specify the absolute file names of the various
12232 ;; programs so that everything works out-of-the-box.
12233 (emacs-substitute-variables
12234 "youtube-dl.el"
12235 ("youtube-dl-program"
12236 (string-append youtube-dl "/bin/youtube-dl")))))))))
12237 (home-page "https://github.com/skeeto/youtube-dl-emacs/")
12238 (synopsis "Emacs youtube-dl download manager")
12239 (description "This package manages a video download queue for
12240 @command{youtube-dl}, which serves as the back end. It manages a single
12241 @command{youtube-dl} subprocess, downloading one video at a time. New videos
12242 can be queued at any time.")
12243 (license license:unlicense))))
12244
12245 (define-public emacs-org-web-tools
12246 (package
12247 (name "emacs-org-web-tools")
12248 (version "1.0")
12249 (source
12250 (origin
12251 (method git-fetch)
12252 (uri (git-reference
12253 (url "https://github.com/alphapapa/org-web-tools")
12254 (commit version)))
12255 (file-name (git-file-name name version))
12256 (sha256
12257 (base32
12258 "0kak9h5ny00d39gnwspv53nadnag01brw2fq9zk5wpfc91h9bjng"))))
12259 (build-system emacs-build-system)
12260 (propagated-inputs
12261 `(("emacs-dash" ,emacs-dash)
12262 ("emacs-esxml" ,emacs-esxml)
12263 ("emacs-s" ,emacs-s)))
12264 (inputs
12265 `(("pandoc" ,ghc-pandoc)))
12266 (arguments
12267 `(#:phases
12268 (modify-phases %standard-phases
12269 (add-after 'unpack 'patch-exec-paths
12270 (lambda* (#:key inputs #:allow-other-keys)
12271 (let ((pandoc (assoc-ref inputs "pandoc")))
12272 (substitute* "org-web-tools.el"
12273 (("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\"")))
12274 #t))))))
12275 (home-page "https://github.com/alphapapa/org-web-tools")
12276 (synopsis "Display/Process web page as Org-mode content")
12277 (description "This package contains library functions and commands useful
12278 for retrieving web page content and processing it into Org-mode content.
12279
12280 For example, you can copy a URL to the clipboard or kill-ring, then run a
12281 command that downloads the page, isolates the “readable” content with
12282 @command{eww-readable}, converts it to Org-mode content with Pandoc, and
12283 displays it in an Org-mode buffer. Another command does all of that but
12284 inserts it as an Org entry instead of displaying it in a new buffer.")
12285 (license license:gpl3+)))
12286
12287 (define-public emacs-blimp
12288 (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03"))
12289 (package
12290 (name "emacs-blimp")
12291 (version (git-version "0.0.0" "1" commit))
12292 (source
12293 (origin
12294 (method git-fetch)
12295 (uri (git-reference
12296 (url "https://github.com/walseb/blimp")
12297 (commit commit)))
12298 (file-name (git-file-name name version))
12299 (sha256
12300 (base32
12301 "09wmhpym516b81dfq8smdmysh1fn610dzlyvyl2rkx8600f0fizd"))))
12302 (build-system emacs-build-system)
12303 (propagated-inputs
12304 `(("emacs-eimp" ,emacs-eimp)))
12305 (home-page "https://github.com/walseb/blimp")
12306 (synopsis "Emacs wrapper around all Imagemagick commands")
12307 (description "Blimp (Bustling Image Manipulation Package) is a complete
12308 wrapper around all Imagemagick commands with descriptions, autocompletion (for
12309 some commands) and hints displayed in prompt using @command{eimp.el} to
12310 execute its commands and resize images.")
12311 (license license:gpl3+))))
12312
12313 (define-public emacs-synosaurus
12314 (let ((commit "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb"))
12315 (package
12316 (name "emacs-synosaurus")
12317 (version (git-version "0.1.0" "1" commit))
12318 (source
12319 (origin
12320 (method git-fetch)
12321 (uri (git-reference
12322 (url "https://github.com/hpdeifel/synosaurus")
12323 (commit commit)))
12324 (file-name (git-file-name name version))
12325 (sha256
12326 (base32
12327 "15by9jccab6kyplxa6k0glzaivxkqdigl33gl2qi2cvy6f2q7gva"))))
12328 (build-system emacs-build-system)
12329 (propagated-inputs
12330 `(("wordnet" ,wordnet)))
12331 (arguments
12332 `(#:phases
12333 (modify-phases %standard-phases
12334 (add-after 'unpack 'configure
12335 (lambda* (#:key inputs outputs #:allow-other-keys)
12336 (let ((wn (assoc-ref inputs "wordnet")))
12337 ;; .el is read-only in git.
12338 (chmod "synosaurus-wordnet.el" #o644)
12339 ;; Specify the absolute file names of the various
12340 ;; programs so that everything works out-of-the-box.
12341 (emacs-substitute-variables
12342 "synosaurus-wordnet.el"
12343 ("wordnet-command"
12344 (string-append wn "/bin/wn")))))))))
12345 (home-page "https://github.com/hpdeifel/synosaurus")
12346 (synopsis "Extensible thesaurus mode for Emacs")
12347 (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
12348 backends, including the @command{wordnet} offline backend.")
12349 (license license:gpl3+))))
12350
12351 (define-public emacs-all-the-icons
12352 (package
12353 (name "emacs-all-the-icons")
12354 (version "3.2.0")
12355 (source
12356 (origin
12357 (method git-fetch)
12358 (uri (git-reference
12359 (url "https://github.com/domtronn/all-the-icons.el.git")
12360 (commit version)))
12361 (file-name (git-file-name name version))
12362 (sha256
12363 (base32
12364 "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
12365 (build-system emacs-build-system)
12366 (arguments
12367 `(#:include '("\\.el$" "^data/" "^fonts/")
12368 ;; Compiling "test/" fails with "Symbol’s value as variable is void:
12369 ;; all-the-icons--root-code". Ignoring tests.
12370 #:exclude '("^test/")
12371 #:tests? #f))
12372 (propagated-inputs
12373 `(("f" ,emacs-f)
12374 ("memoize" ,emacs-memoize)))
12375 (home-page "https://github.com/domtronn/all-the-icons.el")
12376 (synopsis "Collect icon fonts and propertize them within Emacs")
12377 (description "All-the-icons is a utility package to collect various icon
12378 fonts and propertize them within Emacs. Icon fonts allow you to propertize
12379 and format icons the same way you would normal text. This enables things such
12380 as better scaling of and anti aliasing of the icons.")
12381 ;; Package is released under Expat license. Elisp files are licensed
12382 ;; under GPL3+. Fonts come with various licenses: Expat for
12383 ;; "all-the-icons.ttf" and "file-icons.ttf", Apache License 2.0 for
12384 ;; "material-design-icons.ttf", and SIL OFL 1.1 for "fontawesome.ttf",
12385 ;; "ocitcons.ttf" and "weathericons.ttf".
12386 (license
12387 (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0))))
12388
12389 (define-public emacs-powerline
12390 (package
12391 (name "emacs-powerline")
12392 (version "2.4")
12393 (source
12394 (origin
12395 (method git-fetch)
12396 (uri (git-reference
12397 (url "https://github.com/milkypostman/powerline.git")
12398 (commit version)))
12399 (file-name (git-file-name name version))
12400 (sha256
12401 (base32
12402 "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
12403 (build-system emacs-build-system)
12404 (home-page "https://github.com/milkypostman/powerline/")
12405 (synopsis "Mode-line plugin for Emacs")
12406 (description "Powerline is a utility plugin which allows you to create
12407 a better-looking, more functional Emacs mode-line. A collection of predefined
12408 themes comes with the package.")
12409 (license license:gpl3+)))
12410
12411 (define-public emacs-spaceline
12412 (package
12413 (name "emacs-spaceline")
12414 (version "2.0.1")
12415 (source
12416 (origin
12417 (method git-fetch)
12418 (uri (git-reference
12419 (url "https://github.com/TheBB/spaceline.git")
12420 (commit (string-append "v" version))))
12421 (file-name (git-file-name name version))
12422 (sha256
12423 (base32
12424 "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
12425 (build-system emacs-build-system)
12426 (propagated-inputs
12427 `(("dash" ,emacs-dash)
12428 ("powerline" ,emacs-powerline)
12429 ("s" ,emacs-s)))
12430 (home-page "https://github.com/TheBB/spaceline")
12431 (synopsis "Powerline theme from Spacemacs")
12432 (description "Spaceline provides Spacemacs' mode-line theme.
12433 This package provides features for three kinds of users.
12434
12435 @itemize
12436 @item You just want to use the Spacemacs mode-line theme and forget about it.
12437 @item You want to use something similar to the Spacemacs mode-line theme, but
12438 with a handful of easy tweaks.
12439 @item You want an easy-to-use library for building your own mode-line from
12440 scratch, and you think the Spacemacs theme looks good.
12441 @end itemize")
12442 (license license:gpl3+)))
12443
12444 (define-public emacs-column-marker
12445 (package
12446 (name "emacs-column-marker")
12447 (version "9")
12448 (source
12449 (origin
12450 (method url-fetch)
12451 (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
12452 (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
12453 (build-system emacs-build-system)
12454 (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
12455 (synopsis "Emacs mode for highlighting columns")
12456 (description
12457 "With @code{column-marker.el} you can highlight any number of text columns.
12458 Three such highlight column markers are provided by default. This is
12459 especially useful for languages like COBOL or Fortran where certain columns
12460 have special meaning. It is also handy for aligning text across long vertical
12461 distances. Multi-column characters, such as @kbd{TAB} are treated
12462 correctly.")
12463 (license license:gpl2+)))
12464
12465 (define-public emacs-slime-repl-ansi-color
12466 (let ((commit "ad03263f5d4de473bc173b64a6fc3dc1106393d7"))
12467 (package
12468 (name "emacs-slime-repl-ansi-color")
12469 (version (git-version "0.0.0" "1" commit))
12470 (source (origin
12471 (method git-fetch)
12472 (uri (git-reference
12473 (url "https://github.com/deadtrickster/slime-repl-ansi-color")
12474 (commit commit)))
12475 (file-name (git-file-name name version))
12476 (sha256
12477 (base32
12478 "0bpg7gxz310x7bnlg324c507sxc5gxwwz6h64h6kdq141r73vbi4"))))
12479 (build-system emacs-build-system)
12480 (home-page "https://github.com/deadtrickster/slime-repl-ansi-color")
12481 (synopsis "Color ANSI codes in the REPL of SLIME")
12482 (description "Color ANSI codes in the REPL of SLIME")
12483 (license license:gpl2+))))
12484
12485 (define-public emacs-helm-slime
12486 (package
12487 (name "emacs-helm-slime")
12488 (version "0.2.0")
12489 (source (origin
12490 (method git-fetch)
12491 (uri (git-reference
12492 (url "https://github.com/emacs-helm/helm-slime")
12493 (commit version)))
12494 (file-name (git-file-name name version))
12495 (sha256
12496 (base32
12497 "0vn93vv2wclnwq6f480z14jn9wfp0ylhp5dd48ycc9jicfsnxqfj"))))
12498 (build-system emacs-build-system)
12499 (propagated-inputs
12500 `(("emacs-helm" ,emacs-helm)
12501 ("emacs-slime" ,emacs-slime)))
12502 (home-page "https://github.com/emacs-helm/helm-slime")
12503 (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
12504 (description "Helm-SLIME defines a few new commands:
12505
12506 @itemize
12507 @item helm-slime-complete: Select a symbol from the SLIME completion systems.
12508 @item helm-slime-list-connections: Yet another slime-list-connections with Helm.
12509 @item: helm-slime-apropos: Yet another slime-apropos with Helm.
12510 @item helm-slime-repl-history: Select an input from the SLIME REPL history and insert it.
12511 @end itemize\n")
12512 (license license:gpl3+)))
12513
12514 (define-public emacs-gtk-look
12515 (package
12516 (name "emacs-gtk-look")
12517 (version "29")
12518 (source (origin
12519 (method url-fetch)
12520 (uri "https://download.tuxfamily.org/user42/gtk-look.el")
12521 (sha256
12522 (base32
12523 "14p2nwrd51cr1v06fxbjjn6jdrkf9d6vcxhmscm0kl677s25ypsp"))))
12524 (build-system emacs-build-system)
12525 (arguments
12526 `(#:phases
12527 (modify-phases %standard-phases
12528 (add-after 'unpack 'configure
12529 (lambda _
12530 ;; File is read-only.
12531 (chmod "gtk-look.el" #o644)
12532 (emacs-substitute-variables "gtk-look.el"
12533 ("gtk-lookup-devhelp-indices"
12534 '(list (expand-file-name "~/.guix-profile/share/gtk-doc/html/*/*.devhelp*"))))
12535 #t)))))
12536 (home-page "http://user42.tuxfamily.org/gtk-look/index.html")
12537 (synopsis "Find and display HTML documentation for GTK, GNOME and Glib")
12538 (description "@command{gtk-look} finds and displays HTML documentation for
12539 GTK, GNOME and Glib functions and variables in Emacs, similar to what
12540 info-lookup-symbol does for info files (C-h S). The documentation is expected
12541 to be devhelp indexes with HTML files. The location of the indexes can be
12542 customized. In addition to C code development @command{gtk-look} is good for
12543
12544 @itemize
12545 @item @command{perl-gtk2}, recognising class funcs like
12546 @command{Gtk2::Label->new} and bare method names like @command{set_text}.
12547 @item @command{guile-gnome}, recognising methods like @command{set-text} and
12548 classes like @command{<gtk-window>}.
12549 @end itemize\n")
12550 (license license:gpl3+)))
12551
12552 (define-public emacs-ov
12553 (package
12554 (name "emacs-ov")
12555 (version "1.0.6")
12556 (source (origin
12557 (method git-fetch)
12558 (uri (git-reference
12559 (url "https://github.com/ShingoFukuyama/ov.el.git")
12560 (commit version)))
12561 (file-name (git-file-name name version))
12562 (sha256
12563 (base32
12564 "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
12565 (build-system emacs-build-system)
12566 (home-page "https://github.com/ShingoFukuyama/ov.el")
12567 (synopsis "Overlay library for Emacs Lisp")
12568 (description "@code{ov.el} provides a simple way to manipulate overlays in
12569 Emacs.")
12570 (license license:gpl3+)))
12571
12572 (define-public emacs-matrix-client
12573 (let ((commit "a0623667b07a4bf60980c97b078e9faed97ace79"))
12574 (package
12575 (name "emacs-matrix-client")
12576 (version (git-version "0.0.0" "3" commit))
12577 (source (origin
12578 (method git-fetch)
12579 (uri (git-reference
12580 (url "https://github.com/jgkamat/matrix-client-el.git")
12581 (commit commit)))
12582 (file-name (git-file-name name version))
12583 (sha256
12584 (base32
12585 "1zya8id3y9wzjaj7nplq7br6nhm3lsskv0fkn1xr1y77fzcfgcdb"))))
12586 (build-system emacs-build-system)
12587 (propagated-inputs
12588 `(("a" ,emacs-a)
12589 ("anaphora" ,emacs-anaphora)
12590 ("dash" ,emacs-dash)
12591 ("esxml" ,emacs-esxml)
12592 ("f" ,emacs-f)
12593 ("frame-purpose" ,emacs-frame-purpose)
12594 ("ht" ,emacs-ht)
12595 ("ov" ,emacs-ov)
12596 ("rainbow-identifiers" ,emacs-rainbow-identifiers)
12597 ("request" ,emacs-request)
12598 ("s" ,emacs-s)
12599 ("tracking" ,emacs-tracking)))
12600 (home-page "https://github.com/jgkamat/matrix-client-el")
12601 (synopsis "Matrix client for Emacs")
12602 (description "@code{matrix-client} is a simple chat UI to Matrix.org
12603 rooms. It also provides an API which allows Emacs to seamlessly create
12604 RPC channels with users and other software.")
12605 (license license:gpl3+))))
12606
12607 (define-public emacs-sesman
12608 (package
12609 (name "emacs-sesman")
12610 (version "0.3.3")
12611 (source
12612 (origin
12613 (method git-fetch)
12614 (uri (git-reference
12615 (url "https://github.com/vspinu/sesman.git")
12616 (commit (string-append "v" version))))
12617 (file-name (git-file-name name version))
12618 (sha256
12619 (base32
12620 "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra"))))
12621 (build-system emacs-build-system)
12622 (arguments
12623 `(#:tests? #t
12624 #:test-command '("make" "test")))
12625 (home-page "https://github.com/vspinu/sesman")
12626 (synopsis "Session manager for Emacs based IDEs")
12627 (description "Sesman provides facilities for session management and
12628 interactive session association with the current contexts (project, directory,
12629 buffers). While sesman can be used to manage arbitrary sessions, it primary
12630 targets the Emacs based IDEs (CIDER, ESS, Geiser, Robe, SLIME etc.)")
12631 (license license:gpl3+)))
12632
12633 (define-public emacs-buttercup
12634 (package
12635 (name "emacs-buttercup")
12636 (version "1.16")
12637 (source
12638 (origin
12639 (method git-fetch)
12640 (uri (git-reference
12641 (url "https://github.com/jorgenschaefer/emacs-buttercup.git")
12642 (commit (string-append "v" version))))
12643 (file-name (git-file-name name version))
12644 (sha256
12645 (base32
12646 "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"))))
12647 (build-system emacs-build-system)
12648 (arguments
12649 `(#:tests? #t
12650 #:test-command '("make" "test")
12651 #:phases
12652 (modify-phases %standard-phases
12653 (add-after 'install 'install-bin
12654 (lambda* (#:key outputs #:allow-other-keys)
12655 (install-file "bin/buttercup"
12656 (string-append (assoc-ref outputs "out") "/bin"))
12657 #t)))))
12658 (home-page "https://github.com/jorgenschaefer/emacs-buttercup")
12659 (synopsis "Behavior driven emacs lisp testing framework")
12660 (description "Buttercup is a behavior-driven development framework for
12661 testing Emacs Lisp code. It allows to group related tests so they can share
12662 common set-up and tear-down code, and allows the programmer to \"spy\" on
12663 functions to ensure they are called with the right arguments during testing.")
12664 (license license:gpl3+)))
12665
12666 (define-public emacs-wordnut
12667 (let ((commit "feac531404041855312c1a046bde7ea18c674915")
12668 (revision "0"))
12669 (package
12670 (name "emacs-wordnut")
12671 (version (git-version "0.1" revision commit))
12672 (home-page "https://github.com/gromnitsky/wordnut")
12673 (source (origin
12674 (method git-fetch)
12675 (uri (git-reference (url home-page) (commit commit)))
12676 (sha256
12677 (base32
12678 "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn"))
12679 (patches
12680 (search-patches "emacs-wordnut-require-adaptive-wrap.patch"))
12681 (file-name (git-file-name name version))))
12682 (build-system emacs-build-system)
12683 (propagated-inputs
12684 `(("wordnet" ,wordnet)
12685 ("emacs-adaptive-wrap" ,emacs-adaptive-wrap)))
12686 (synopsis "Major mode for WordNet")
12687 (description "This Emacs package provides an interface for
12688 @code{wordnet}. Features include completion, if the query is not found
12689 too ambiguous and navigation in the result buffer.")
12690 (license license:gpl3+))))
12691
12692 (define-public emacs-frame-purpose
12693 (package
12694 (name "emacs-frame-purpose")
12695 (version "1.0")
12696 (source (origin
12697 (method git-fetch)
12698 (uri (git-reference
12699 (url "https://github.com/alphapapa/frame-purpose.el.git")
12700 (commit version)))
12701 (sha256
12702 (base32
12703 "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"))
12704 (file-name (git-file-name name version))))
12705 (build-system emacs-build-system)
12706 (inputs
12707 `(("dash" ,emacs-dash)))
12708 (synopsis "Purpose-specific frames for Emacs")
12709 (description "@code{frame-purpose} makes it easy to open purpose-specific
12710 frames that only show certain buffers, e.g. by buffers’ major mode, their
12711 filename or directory, etc, with custom frame/X-window titles, icons, and
12712 other frame parameters.")
12713 (home-page "https://github.com/alphapapa/frame-purpose.el")
12714 (license license:gpl3+)))
12715
12716 (define-public emacs-arduino-mode
12717 (let ((commit "3e2bad4569ad26e929e6db2cbcff0d6d36812698")) ;no release yet
12718 (package
12719 (name "emacs-arduino-mode")
12720 (version (git-version "0" "0" commit))
12721 (source (origin
12722 (method git-fetch)
12723 (uri (git-reference
12724 (url "https://github.com/bookest/arduino-mode.git")
12725 (commit commit)))
12726 (sha256
12727 (base32
12728 "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"))
12729 (file-name (git-file-name name version))))
12730 (build-system emacs-build-system)
12731 (synopsis "Emacs major mode for editing Arduino sketches")
12732 (description "Emacs major mode for editing Arduino sketches.")
12733 (home-page "https://github.com/bookest/arduino-mode")
12734 (license license:gpl3+))))
12735
12736 (define-public emacs-general
12737 (let ((commit "675050199b5a30d54a24b58a367db32c0bdc47f5"))
12738 (package
12739 (name "emacs-general")
12740 (version (git-version "0" "0" commit))
12741 (home-page "https://github.com/noctuid/general.el")
12742 (source (origin
12743 (method git-fetch)
12744 (uri (git-reference
12745 (url (string-append home-page ".git"))
12746 (commit commit)))
12747 (sha256
12748 (base32
12749 "175yyhzk57yk1sskxh3d2jzhrh2waiibbcfsll167qxr117yji5h"))
12750 (file-name (git-file-name name version))))
12751 (build-system emacs-build-system)
12752 (synopsis "More convenient key definitions in emacs")
12753 (description "@code{general.el} provides a more convenient method for
12754 binding keys in emacs (for both evil and non-evil users). Like
12755 @code{use-package}, which provides a convenient, unified interface for
12756 managing packages, @code{general.el} is intended to provide a convenient,
12757 unified interface for key definitions. While this package does implement some
12758 completely new functionality (such as the ability to make vim-style
12759 keybindings under non-prefix keys with an optional timeout), its primary
12760 purpose is to build on existing functionality to make key definition more
12761 clear and concise. @code{general-define-key} is user-extensible and supports
12762 defining multiple keys in multiple keymaps at once, implicitly wrapping key
12763 strings with (@code{kbd ...}), using named prefix key sequences (like the
12764 leader key in vim), and much more.")
12765 (license license:gpl3+))))
12766
12767 (define-public emacs-tldr
12768 (let ((commit "398b197c8d2238628b07e1b32d0f373876279f4c"))
12769 (package
12770 (name "emacs-tldr")
12771 (version (git-version "0" "0" commit))
12772 (home-page "https://github.com/kuanyui/tldr.el")
12773 (source (origin
12774 (method git-fetch)
12775 (uri (git-reference
12776 (url (string-append home-page ".git"))
12777 (commit commit)))
12778 (sha256
12779 (base32
12780 "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f"))
12781 (file-name (git-file-name name version))))
12782 (build-system emacs-build-system)
12783 (synopsis "Simplified and community-driven man pages for Emacs")
12784 (description "@code{emacs-tldr} allows the user to access tldr pages
12785 from within emacs. The @code{tldr} pages are a community effort to simplify
12786 the man pages with practical examples.")
12787 (license license:wtfpl2))))
12788
12789 (define-public emacs-window-layout
12790 (package
12791 (name "emacs-window-layout")
12792 (version "1.4")
12793 (home-page "https://github.com/kiwanami/emacs-window-layout")
12794 (source (origin
12795 (method git-fetch)
12796 (uri (git-reference
12797 (url home-page)
12798 (commit (string-append "v" version))))
12799 (sha256
12800 (base32
12801 "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"))
12802 (file-name (git-file-name name version))))
12803 (build-system emacs-build-system)
12804 (synopsis "Simple window layout management framework for emacs")
12805 (description "A window-layout management library that can split a frame
12806 or a window into some windows according to a layout recipe.")
12807 (license license:gpl3+)))
12808
12809 (define-public emacs-e2wm
12810 (package
12811 (name "emacs-e2wm")
12812 (version "1.4")
12813 (home-page "https://github.com/kiwanami/emacs-window-manager")
12814 (source (origin
12815 (method git-fetch)
12816 (uri (git-reference
12817 (url home-page)
12818 (commit (string-append "v" version))))
12819 (sha256
12820 (base32
12821 "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"))
12822 (file-name (git-file-name name version))))
12823 (build-system emacs-build-system)
12824 (propagated-inputs
12825 `(("emacs-window-layout" ,emacs-window-layout)))
12826 (synopsis "Equilibrium Emacs Window Manager")
12827 (description "E2WM is a window manager for Emacs. It enables to
12828 customize the place of pop-up window, how the windows are split, how the
12829 buffers are located in the windows, keybinds to manipulate windows and
12830 buffers, etc. It also has plug-ins to help your Emacs life.")
12831 (license license:gpl3+)))
12832
12833 (define-public emacs-ctable
12834 (let ((commit "b8830d1ca95abb100a81bc32011bd17d5ecba000"))
12835 (package
12836 (name "emacs-ctable")
12837 (version (git-version "0.1.2" "1" commit))
12838 (home-page "https://github.com/kiwanami/emacs-ctable")
12839 (source (origin
12840 (method git-fetch)
12841 (uri (git-reference
12842 (url home-page)
12843 (commit commit)))
12844 (sha256
12845 (base32
12846 "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"))
12847 (file-name (git-file-name name version))))
12848 (build-system emacs-build-system)
12849 (synopsis "Table component for Emacs Lisp")
12850 (description "This program is a table component for Emacs Lisp. Other
12851 programs can use this table component for the application UI.")
12852 (license license:gpl3+))))
12853
12854 (define-public emacs-epc
12855 (let ((commit "e1bfa5ca163273859336e3cc89b4b6460f7f8cda"))
12856 (package
12857 (name "emacs-epc")
12858 (version (git-version "0.1.1" "1" commit))
12859 (home-page "https://github.com/kiwanami/emacs-epc")
12860 (source (origin
12861 (method git-fetch)
12862 (uri (git-reference
12863 (url home-page)
12864 (commit commit)))
12865 (sha256
12866 (base32
12867 "15nkrjgi64f829isfd6xrhl4zw8jirr8pkas7nisrbk1av868hx0"))
12868 (file-name (git-file-name name version))))
12869 (build-system emacs-build-system)
12870 (propagated-inputs
12871 `(("emacs-deferred" ,emacs-deferred)
12872 ("emacs-ctable" ,emacs-ctable)))
12873 (synopsis "RPC stack for Emacs Lisp")
12874 (description "This program is an asynchronous RPC stack for Emacs.
12875 Using this RPC stack, Emacs can communicate with the peer process
12876 smoothly. Because the protocol employs S-expression encoding and consists of
12877 asynchronous communications, the RPC response is fairly good.")
12878 (license license:gpl3+))))
12879
12880 (define-public emacs-edbi
12881 (let ((commit "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"))
12882 (package
12883 (name "emacs-edbi")
12884 (version (git-version "0.1.3" "1" commit))
12885 (home-page "https://github.com/kiwanami/emacs-edbi")
12886 (source (origin
12887 (method git-fetch)
12888 (uri (git-reference
12889 (url home-page)
12890 (commit commit)))
12891 (sha256
12892 (base32
12893 "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"))
12894 (file-name (git-file-name name version))))
12895 (build-system emacs-build-system)
12896 (inputs
12897 `(("perl" ,perl)
12898 ("perl-rpc-epc-service" ,perl-rpc-epc-service)
12899 ("perl-dbi" ,perl-dbi)
12900 ;; TODO: Adding support for perl-dbd-mysql and others would
12901 ;; dramatically increase the closure size. Make several packages?
12902 ("perl-dbd-sqlite" ,perl-dbd-sqlite)))
12903 (propagated-inputs
12904 `(("emacs-e2wm" ,emacs-e2wm)
12905 ("emacs-epc" ,emacs-epc)))
12906 (arguments
12907 `(#:include '("\\.el$" "\\.pl$")
12908 #:phases
12909 (modify-phases %standard-phases
12910 (add-after 'install 'patch-path
12911 (lambda* (#:key inputs outputs #:allow-other-keys)
12912 (let ((perl (assoc-ref inputs "perl"))
12913 (dir (string-append (assoc-ref outputs "out")
12914 "/share/emacs/site-lisp/guix.d/edbi-"
12915 ,version)))
12916 (substitute* (string-append dir "/edbi.el")
12917 (("\"perl\"") (string-append "\"" perl "/bin/perl\"")))
12918 (chmod (string-append dir "/edbi-bridge.pl") #o555)
12919 (wrap-program (string-append dir "/edbi-bridge.pl")
12920 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
12921 #t))))))
12922 (synopsis "Database Interface for Emacs Lisp")
12923 (description "This program connects the database server through Perl's
12924 DBI, and provides DB-accessing API and the simple management UI.")
12925 (license license:gpl3+))))
12926
12927 (define-public emacs-edbi-sqlite
12928 (let ((commit "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"))
12929 (package
12930 (name "emacs-edbi-sqlite")
12931 (version (git-version "0.1.1" "1" commit))
12932 (home-page "https://github.com/proofit404/edbi-sqlite")
12933 (source (origin
12934 (method git-fetch)
12935 (uri (git-reference
12936 (url home-page)
12937 (commit commit)))
12938 (sha256
12939 (base32
12940 "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"))
12941 (file-name (git-file-name name version))))
12942 (build-system emacs-build-system)
12943 (propagated-inputs
12944 `(("emacs-edbi" ,emacs-edbi)))
12945 (synopsis "Open SQLite files in Emacs")
12946 (description "This package is a convenience wrapper for @command{edbi}
12947 to open SQLite databases.")
12948 (license license:gpl3+))))
12949
12950 (define-public emacs-nix-mode
12951 (package
12952 (name "emacs-nix-mode")
12953 (version "1.2.2")
12954 (source
12955 (origin
12956 (method url-fetch)
12957 (uri (string-append "https://github.com/NixOS/nix-mode/archive/v"
12958 version ".tar.gz"))
12959 (file-name (string-append name "-" version ".tar.gz"))
12960 (sha256
12961 (base32
12962 "06aqz0czznsj8835jqnk794sy2p6pa8kxfqwh0nl5d5vxivria6z"))))
12963 (build-system emacs-build-system)
12964 (inputs
12965 `(("emacs-company" ,emacs-company)
12966 ("emacs-mmm-mode" ,emacs-mmm-mode)))
12967 (home-page "https://github.com/NixOS/nix-mode")
12968 (synopsis "Emacs major mode for editing Nix expressions")
12969 (description "@code{nixos-mode} provides an Emacs major mode for editing
12970 Nix expressions. It supports syntax highlighting, indenting and refilling of
12971 comments.")
12972 (license license:lgpl2.1+)))
12973
12974 (define-public emacs-simple-mpc
12975 ;; There have been no releases.
12976 (let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2")
12977 (revision "1"))
12978 (package
12979 (name "emacs-simple-mpc")
12980 (version (git-version "0" revision commit))
12981 (source
12982 (origin
12983 (method git-fetch)
12984 (uri (git-reference
12985 (url "https://github.com/jorenvo/simple-mpc.git")
12986 (commit commit)))
12987 (file-name (git-file-name name version))
12988 (sha256
12989 (base32
12990 "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"))))
12991 (build-system emacs-build-system)
12992 (propagated-inputs `(("emacs-s" ,emacs-s)))
12993 (home-page "https://github.com/jorenvo/simple-mpc")
12994 (synopsis "Simple Emacs frontend to mpc")
12995 (description "This package provides an Emacs major mode which acts as a
12996 front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).")
12997 (license license:gpl3+))))
12998
12999 (define-public emacs-mkmcc-gnuplot-mode
13000 (package
13001 (name "emacs-mkmcc-gnuplot-mode")
13002 (version "1.2.0")
13003 (source
13004 (origin
13005 (method git-fetch)
13006 (uri (git-reference
13007 (url "https://github.com/mkmcc/gnuplot-mode")
13008 (commit "601f6392986f0cba332c87678d31ae0d0a496ce7")))
13009 (file-name (string-append name "-" version "-checkout"))
13010 (sha256
13011 (base32
13012 "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb"))))
13013 (build-system emacs-build-system)
13014 (home-page "https://mkmcc.github.io/software/gnuplot-mode.html")
13015 (synopsis "Minimal emacs major mode for editing gnuplot scripts")
13016 (description "@code{emacs-mkmcc-gnuplot-mode} is a minimal emacs major
13017 mode for editing gnuplot scripts. It provides syntax highlighting,
13018 indentation and a command to plot the file.")
13019 (license license:gpl3+)))
13020
13021 (define-public emacs-dtrt-indent
13022 (package
13023 (name "emacs-dtrt-indent")
13024 (version "0.8")
13025 (source (origin
13026 (method git-fetch)
13027 (uri (git-reference
13028 (url "https://github.com/jscheid/dtrt-indent")
13029 (commit version)))
13030 (file-name (git-file-name name version))
13031 (sha256
13032 (base32
13033 "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"))))
13034 (build-system emacs-build-system)
13035 (home-page "https://github.com/jscheid/dtrt-indent")
13036 (synopsis "Minor mode that guesses the indentation offset")
13037 (description "This package provides a minor mode that guesses the
13038 indentation offset originally used for creating source code files and
13039 transparently adjusts the corresponding settings in Emacs, making it more
13040 convenient to edit foreign files.")
13041 (license license:gpl2+)))
13042
13043 (define-public emacs-repo
13044 (package
13045 (name "emacs-repo")
13046 (version "0.1.3")
13047 (source (origin
13048 (method git-fetch)
13049 (uri (git-reference
13050 (url "https://github.com/canatella/repo-el")
13051 (commit version)))
13052 (file-name (git-file-name name version))
13053 (sha256
13054 (base32
13055 "0rbvcvm7bfr6ncji7cllfxyyr6x7n9fx863byp243phsj3n93adz"))))
13056 (build-system emacs-build-system)
13057 (native-inputs
13058 `(("emacs-el-mock" ,emacs-el-mock)
13059 ("ert-runner" ,emacs-ert-runner)))
13060 (propagated-inputs
13061 `(("emacs-f" ,emacs-f)
13062 ("magit" ,emacs-magit)))
13063 (home-page "https://github.com/canatella/repo-el")
13064 (synopsis "Emacs interface for the Google Repo tool")
13065 (description "This package provides integration of the Google Repo tool
13066 with emacs. It displays the output of the @code{repo status} command in a
13067 buffer and launches Magit from the status buffer for the project at point.")
13068 (license license:gpl3+)))
13069
13070 (define-public emacs-alect-themes
13071 (package
13072 (name "emacs-alect-themes")
13073 (version "0.9")
13074 (source (origin
13075 (method git-fetch)
13076 (uri (git-reference
13077 (url "https://github.com/alezost/alect-themes")
13078 (commit (string-append "v" version))))
13079 (file-name (git-file-name name version))
13080 (sha256
13081 (base32
13082 "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9"))))
13083 (build-system emacs-build-system)
13084 (home-page "https://github.com/alezost/alect-themes")
13085 (synopsis "Low contrast, light, dark and black color theme for Emacs")
13086 (description "@code{emacs-alect-themes} provides configurable light, dark
13087 and black color themes for Emacs. The themes are intended to be used with
13088 GUI.")
13089 (license license:gpl3+)))
13090
13091 (define-public emacs-google-c-style
13092 (let ((commit "6271f3f473ceb3a7fef99388a3040903b1a145f1")
13093 (revision "0"))
13094 (package
13095 (name "emacs-google-c-style")
13096 (version (git-version "0.1" revision commit))
13097 (source (origin
13098 (method git-fetch)
13099 (uri (git-reference
13100 (url "https://github.com/google/styleguide")
13101 (commit commit)))
13102 (file-name (git-file-name name version))
13103 (sha256
13104 (base32
13105 "1jghyyasdl15c4gaqaxmdn43am63k6bykn5ab83f1ahv9zi1krxk"))))
13106 (build-system emacs-build-system)
13107 (home-page "https://github.com/google/styleguide")
13108 (synopsis "Emacs settings file for Google C/C++ style")
13109 (description "@code{emacs-google-c-style} provides an Emacs settings
13110 file for Google C and C++ style.")
13111 (license license:gpl1+))))
13112
13113 (define-public emacs-redshank
13114 (let ((commit "f98e68f532e622bcd464292ca4a9cf5fbea14ebb")
13115 (revision "1"))
13116 (package
13117 (name "emacs-redshank")
13118 (version (git-version "0.1" revision commit))
13119 (source (origin
13120 (method git-fetch)
13121 (uri (git-reference
13122 (url "http://www.foldr.org/~michaelw/projects/redshank.git")
13123 (commit commit)))
13124 (file-name (git-file-name name version))
13125 (sha256
13126 (base32
13127 "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"))))
13128 (build-system emacs-build-system)
13129 (propagated-inputs
13130 `(("emacs-paredit" ,emacs-paredit)))
13131 (home-page "http://www.foldr.org/~michaelw/emacs/redshank/")
13132 (synopsis "Common Lisp Editing Extensions (for Emacs)")
13133 (description "Redshank is a collection of code-wrangling Emacs macros
13134 mostly geared towards Common Lisp, but some are useful for other Lisp
13135 dialects, too. Redshank's code transformations aim to be expression-based (as
13136 opposed to character-based).")
13137 (license license:gpl1+))))
13138
13139 (define-public emacs-disk-usage
13140 (package
13141 (name "emacs-disk-usage")
13142 (version "1.1.0")
13143 (home-page "https://gitlab.com/ambrevar/emacs-disk-usage.git")
13144 (source (origin
13145 (method git-fetch)
13146 (uri (git-reference
13147 (url home-page)
13148 (commit version)))
13149 (file-name (git-file-name name version))
13150 (sha256
13151 (base32
13152 "1c9jmjn8vf0v4776v79pc5w0labfs4v9aysbv2w9423rg4mangbg"))))
13153 (build-system emacs-build-system)
13154 (synopsis "Sort and browse disk usage listings with Emacs")
13155 (description "Disk Usage is a file system analyzer: it offers a tabulated
13156 view of file listings sorted by size. Directory sizes are computed
13157 recursively. The results are cached for speed.")
13158 (license license:gpl3+)))
13159
13160 (define-public emacs-orgit
13161 (let ((commit "ddb830c38cb71e5cf86db7fa62d6ee88ab3962d5"))
13162 (package
13163 (name "emacs-orgit")
13164 (version (git-version "1.5.1" "1" commit))
13165 (home-page "https://github.com/magit/orgit")
13166 (source (origin
13167 (method git-fetch)
13168 (uri (git-reference
13169 (url home-page)
13170 (commit commit)))
13171 (file-name (git-file-name name version))
13172 (sha256
13173 (base32
13174 "0fy4n71yskfkjl6w9mzrw3pfd5lp8f48g2c9bxiwg7mwzsmsb9nb"))))
13175 (build-system emacs-build-system)
13176 (propagated-inputs
13177 `(("emacs-dash" ,emacs-dash)
13178 ("emacs-magit" ,emacs-magit)))
13179 (synopsis "Support for Org links to Magit buffers")
13180 (description "This package defines several Org link types, which can be
13181 used to link to certain Magit buffers. Use the command
13182 @command{org-store-link} while such a buffer is current to store a link.
13183 Later you can insert it into an Org buffer using the command
13184 @code{org-insert-link}.")
13185 (license license:gpl3+))))