gnu: emacs-pdf-tools: Update to 0.90.
[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 ;;;
45 ;;; This file is part of GNU Guix.
46 ;;;
47 ;;; GNU Guix is free software; you can redistribute it and/or modify it
48 ;;; under the terms of the GNU General Public License as published by
49 ;;; the Free Software Foundation; either version 3 of the License, or (at
50 ;;; your option) any later version.
51 ;;;
52 ;;; GNU Guix is distributed in the hope that it will be useful, but
53 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
54 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
55 ;;; GNU General Public License for more details.
56 ;;;
57 ;;; You should have received a copy of the GNU General Public License
58 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
59
60 (define-module (gnu packages emacs-xyz)
61 #:use-module ((guix licenses) #:prefix license:)
62 #:use-module (guix packages)
63 #:use-module (guix cvs-download)
64 #:use-module (guix download)
65 #:use-module (guix git-download)
66 #:use-module (guix build-system gnu)
67 #:use-module (guix build-system cmake)
68 #:use-module (guix build-system emacs)
69 #:use-module (guix build-system glib-or-gtk)
70 #:use-module (guix build-system perl)
71 #:use-module (guix build-system trivial)
72 #:use-module (gnu packages)
73 #:use-module (gnu packages admin)
74 #:use-module (gnu packages audio)
75 #:use-module (gnu packages bash)
76 #:use-module (gnu packages cmake)
77 #:use-module (gnu packages code)
78 #:use-module (gnu packages databases)
79 #:use-module (gnu packages emacs)
80 #:use-module (gnu packages guile)
81 #:use-module (gnu packages gtk)
82 #:use-module (gnu packages gnome)
83 #:use-module (gnu packages ncurses)
84 #:use-module (gnu packages python)
85 #:use-module (gnu packages python-xyz)
86 #:use-module (gnu packages tex)
87 #:use-module (gnu packages texinfo)
88 #:use-module (gnu packages tcl)
89 #:use-module (gnu packages tls)
90 #:use-module (gnu packages pkg-config)
91 #:use-module (gnu packages xorg)
92 #:use-module (gnu packages lesstif)
93 #:use-module (gnu packages llvm)
94 #:use-module (gnu packages image)
95 #:use-module (gnu packages linux)
96 #:use-module (gnu packages libevent)
97 #:use-module (gnu packages version-control)
98 #:use-module (gnu packages imagemagick)
99 #:use-module (gnu packages w3m)
100 #:use-module (gnu packages wget)
101 #:use-module (gnu packages autotools)
102 #:use-module (gnu packages base)
103 #:use-module (gnu packages compression)
104 #:use-module (gnu packages xml)
105 #:use-module (gnu packages glib)
106 #:use-module (gnu packages acl)
107 #:use-module (gnu packages mail)
108 #:use-module (gnu packages package-management)
109 #:use-module (gnu packages perl)
110 #:use-module (gnu packages pdf)
111 #:use-module (gnu packages scheme)
112 #:use-module (gnu packages xiph)
113 #:use-module (gnu packages mp3)
114 #:use-module (gnu packages gettext)
115 #:use-module (gnu packages fribidi)
116 #:use-module (gnu packages gd)
117 #:use-module (gnu packages fontutils)
118 #:use-module (gnu packages password-utils)
119 #:use-module (gnu packages pulseaudio)
120 #:use-module (gnu packages xdisorg)
121 #:use-module (gnu packages shells)
122 #:use-module (gnu packages sqlite)
123 #:use-module (gnu packages gnupg)
124 #:use-module (gnu packages video)
125 #:use-module (gnu packages haskell)
126 #:use-module (gnu packages wordnet)
127 #:use-module (guix utils)
128 #:use-module (srfi srfi-1)
129 #:use-module (ice-9 match))
130
131 ;;;
132 ;;; Emacs hacking.
133 ;;;
134
135 (define-public emacs-geiser
136 (package
137 (name "emacs-geiser")
138 (version "0.10")
139 (source (origin
140 (method url-fetch)
141 (uri (string-append "mirror://savannah/geiser/" version
142 "/geiser-" version ".tar.gz"))
143 (sha256
144 (base32
145 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
146 (build-system gnu-build-system)
147 (arguments
148 '(#:phases
149 (modify-phases %standard-phases
150 (add-after 'install 'post-install
151 (lambda* (#:key outputs #:allow-other-keys)
152 (symlink "geiser-install.el"
153 (string-append (assoc-ref outputs "out")
154 "/share/emacs/site-lisp/"
155 "geiser-autoloads.el"))
156 #t)))))
157 (inputs `(("guile" ,guile-2.2)))
158 (native-inputs `(("emacs" ,emacs-minimal)))
159 (home-page "https://nongnu.org/geiser/")
160 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
161 (description
162 "Geiser is a collection of Emacs major and minor modes that conspire with
163 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
164 continuously running Scheme interpreter takes the center of the stage in
165 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
166 implementation, Emacs and, ultimately, the schemer, giving them access to live
167 metadata.")
168 (license license:bsd-3)))
169
170 (define-public geiser
171 (deprecated-package "geiser" emacs-geiser))
172
173 (define-public emacs-paredit
174 (package
175 (name "emacs-paredit")
176 (version "24")
177 (source (origin
178 (method url-fetch)
179 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
180 version ".el"))
181 (sha256
182 (base32
183 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
184 (build-system emacs-build-system)
185 (home-page "http://mumble.net/~campbell/emacs/paredit/")
186 (synopsis "Emacs minor mode for editing parentheses")
187 (description
188 "ParEdit (paredit.el) is a minor mode for performing structured editing
189 of S-expression data. The typical example of this would be Lisp or Scheme
190 source code.
191
192 ParEdit helps **keep parentheses balanced** and adds many keys for moving
193 S-expressions and moving around in S-expressions. Its behavior can be jarring
194 for those who may want transient periods of unbalanced parentheses, such as
195 when typing parentheses directly or commenting out code line by line.")
196 (license license:gpl3+)))
197
198 (define-public paredit
199 (deprecated-package "paredit" emacs-paredit))
200
201 (define-public git-modes
202 (package
203 (name "emacs-git-modes")
204 (version "1.2.8")
205 (source (origin
206 (method git-fetch)
207 (uri (git-reference
208 (url "https://github.com/magit/git-modes")
209 (commit version)))
210 (file-name (git-file-name name version))
211 (sha256
212 (base32
213 "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
214 (build-system emacs-build-system)
215 (home-page "https://github.com/magit/git-modes")
216 (synopsis "Emacs major modes for Git configuration files")
217 (description
218 "This package provides Emacs major modes for editing various Git
219 configuration files, such as .gitattributes, .gitignore, and .git/config.")
220 (license license:gpl3+)))
221
222 (define-public git-modes/old-name
223 (deprecated-package "git-modes" git-modes))
224
225 (define-public emacs-with-editor
226 (package
227 (name "emacs-with-editor")
228 (version "2.8.0")
229 (source (origin
230 (method git-fetch)
231 (uri (git-reference
232 (url "https://github.com/magit/with-editor.git")
233 (commit (string-append "v" version))))
234 (file-name (git-file-name name version))
235 (sha256
236 (base32
237 "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))))
238 (build-system emacs-build-system)
239 (propagated-inputs
240 `(("emacs-dash" ,emacs-dash)))
241 (home-page "https://github.com/magit/with-editor")
242 (synopsis "Emacs library for using Emacsclient as EDITOR")
243 (description
244 "This package provides an Emacs library to use the Emacsclient as
245 @code{$EDITOR} of child processes, making sure they know how to call home.
246 For remote processes a substitute is provided, which communicates with Emacs
247 on stdout instead of using a socket as the Emacsclient does.")
248 (license license:gpl3+)))
249
250 (define-public emacs-magit
251 (package
252 (name "emacs-magit")
253 (version "2.13.1")
254 (source (origin
255 (method git-fetch)
256 (uri (git-reference
257 (url "https://github.com/magit/magit")
258 (commit version)))
259 (file-name (git-file-name name version))
260 (sha256
261 (base32
262 "1kmjjcvhcb21qi6kmrlhf92ync8va5l41n9ban8kj25h7dbqyiym"))))
263 (build-system gnu-build-system)
264 (native-inputs `(("texinfo" ,texinfo)
265 ("emacs" ,emacs-minimal)))
266 (inputs
267 `(("git" ,git)
268 ("perl" ,perl)))
269 (propagated-inputs
270 `(("dash" ,emacs-dash)
271 ("ghub" ,emacs-ghub)
272 ("graphql" ,emacs-graphql)
273 ("treepy" ,emacs-treepy)
274 ("magit-popup" ,emacs-magit-popup)
275 ("with-editor" ,emacs-with-editor)))
276 (arguments
277 `(#:test-target "test"
278 #:tests? #f ; tests are not included in the release
279
280 #:make-flags
281 (list (string-append "PREFIX=" %output)
282 ;; Don't put .el files in a sub-directory.
283 (string-append "lispdir=" %output "/share/emacs/site-lisp")
284 (string-append "DASH_DIR="
285 (assoc-ref %build-inputs "dash")
286 "/share/emacs/site-lisp/guix.d/dash-"
287 ,(package-version emacs-dash))
288 (string-append "GHUB_DIR="
289 (assoc-ref %build-inputs "ghub")
290 "/share/emacs/site-lisp/guix.d/ghub-"
291 ,(package-version emacs-ghub))
292 (string-append "GRAPHQL_DIR="
293 (assoc-ref %build-inputs "graphql")
294 "/share/emacs/site-lisp/guix.d/graphql-"
295 ,(package-version emacs-graphql))
296 (string-append "TREEPY_DIR="
297 (assoc-ref %build-inputs "treepy")
298 "/share/emacs/site-lisp/guix.d/treepy-"
299 ,(package-version emacs-treepy))
300 (string-append "MAGIT_POPUP_DIR="
301 (assoc-ref %build-inputs "magit-popup")
302 "/share/emacs/site-lisp/guix.d/magit-popup-"
303 ,(package-version emacs-magit-popup))
304 (string-append "WITH_EDITOR_DIR="
305 (assoc-ref %build-inputs "with-editor")
306 "/share/emacs/site-lisp/guix.d/with-editor-"
307 ,(package-version emacs-with-editor)))
308
309 #:phases
310 (modify-phases %standard-phases
311 (delete 'configure)
312 (add-before
313 'build 'patch-exec-paths
314 (lambda* (#:key inputs #:allow-other-keys)
315 (let ((perl (assoc-ref inputs "perl")))
316 (substitute* "lisp/magit-sequence.el"
317 (("perl") (string-append perl "/bin/perl")))
318 #t))))))
319 (home-page "https://magit.vc/")
320 (synopsis "Emacs interface for the Git version control system")
321 (description
322 "With Magit, you can inspect and modify your Git repositories with Emacs.
323 You can review and commit the changes you have made to the tracked files, for
324 example, and you can browse the history of past changes. There is support for
325 cherry picking, reverting, merging, rebasing, and other common Git
326 operations.")
327 (license license:gpl3+)))
328
329 (define-public magit
330 (deprecated-package "magit" emacs-magit))
331
332 (define-public emacs-magit-svn
333 (package
334 (name "emacs-magit-svn")
335 (version "2.2.1")
336 (source (origin
337 (method git-fetch)
338 (uri (git-reference
339 (url "https://github.com/magit/magit-svn")
340 (commit version)))
341 (file-name (git-file-name name version))
342 (sha256
343 (base32
344 "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"))))
345 (build-system trivial-build-system)
346 (native-inputs `(("emacs" ,emacs-minimal)))
347 (propagated-inputs `(("dash" ,emacs-dash)
348 ("ghub" ,emacs-ghub)
349 ("graphql" ,emacs-graphql)
350 ("treepy" ,emacs-treepy)
351 ("with-editor" ,emacs-with-editor)
352 ("magit" ,emacs-magit)
353 ("magit-popup" ,emacs-magit-popup)))
354 (arguments
355 `(#:modules ((guix build utils)
356 (guix build emacs-utils))
357
358 #:builder
359 (begin
360 (use-modules (guix build utils)
361 (guix build emacs-utils))
362
363 (let ((emacs (string-append (assoc-ref %build-inputs "emacs")
364 "/bin/emacs"))
365 (magit (string-append (assoc-ref %build-inputs "magit")
366 "/share/emacs/site-lisp"))
367 (magit-popup (string-append (assoc-ref %build-inputs "magit-popup")
368 "/share/emacs/site-lisp/guix.d/magit-popup-"
369 ,(package-version emacs-magit-popup)))
370 (ghub (string-append (assoc-ref %build-inputs "ghub")
371 "/share/emacs/site-lisp/guix.d/ghub-"
372 ,(package-version emacs-ghub)))
373 (graphql (string-append (assoc-ref %build-inputs "graphql")
374 "/share/emacs/site-lisp/guix.d/graphql-"
375 ,(package-version emacs-graphql)))
376 (treepy (string-append (assoc-ref %build-inputs "treepy")
377 "/share/emacs/site-lisp/guix.d/treepy-"
378 ,(package-version emacs-treepy)))
379 (dash (string-append (assoc-ref %build-inputs "dash")
380 "/share/emacs/site-lisp/guix.d/dash-"
381 ,(package-version emacs-dash)))
382 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
383 "/share/emacs/site-lisp/guix.d/with-editor-"
384 ,(package-version emacs-with-editor)))
385 (source (assoc-ref %build-inputs "source"))
386 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
387
388 (install-file (string-append source "/magit-svn.el")
389 lisp-dir)
390
391 (with-directory-excursion lisp-dir
392 (parameterize ((%emacs emacs))
393 (emacs-generate-autoloads ,name lisp-dir)
394 (setenv "EMACSLOADPATH"
395 (string-append ":" magit ":" magit-popup ":" ghub ":"
396 ":" graphql ":" treepy ":" dash ":" with-editor))
397 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
398 #t))))
399 (home-page "https://github.com/magit/magit-svn")
400 (synopsis "Git-SVN extension to Magit")
401 (description
402 "This package is an extension to Magit, the Git Emacs mode, providing
403 support for Git-SVN.")
404 (license license:gpl3+)))
405
406 (define-public magit-svn
407 (deprecated-package "magit-svn" emacs-magit-svn))
408
409 (define-public emacs-magit-popup
410 (package
411 (name "emacs-magit-popup")
412 (version "2.12.5")
413 (source (origin
414 (method git-fetch)
415 (uri (git-reference
416 (url "https://github.com/magit/magit-popup.git")
417 (commit (string-append "v" version))))
418 (file-name (git-file-name name version))
419 (sha256
420 (base32
421 "13riknyqr6vxqll80sfhvz165flvdz367rbd0pr5slb01bnfsi2i"))))
422 (build-system emacs-build-system)
423 (arguments
424 `(#:phases
425 (modify-phases %standard-phases
426 (add-before 'install 'make-info
427 (lambda _
428 (invoke "make" "info"))))))
429 (native-inputs
430 `(("texinfo" ,texinfo)))
431 (propagated-inputs
432 `(("emacs-dash" ,emacs-dash)))
433 (home-page "https://github.com/magit/magit-popup")
434 (synopsis "Define prefix-infix-suffix command combos")
435 (description
436 "This library implements a generic interface for toggling switches and
437 setting options and then invoking an Emacs command which does something with
438 these arguments. The prototypical use is for the command to call an external
439 process, passing on the arguments as command line arguments.")
440 (license license:gpl3+)))
441
442 (define-public emacs-treepy
443 (package
444 (name "emacs-treepy")
445 (version "0.1.1")
446 (source (origin
447 (method git-fetch)
448 (uri (git-reference
449 (url "https://github.com/volrath/treepy.el.git")
450 (commit version)))
451 (file-name (git-file-name name version))
452 (sha256
453 (base32
454 "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))))
455 (build-system emacs-build-system)
456 (home-page
457 "https://github.com/volrath/treepy.el")
458 (synopsis "Tree traversal tools")
459 (description
460 "Generic tools for recursive and iterative tree traversal based on
461 clojure.walk and clojure.zip respectively.")
462 (license license:gpl3+)))
463
464 (define-public emacs-graphql
465 (package
466 (name "emacs-graphql")
467 (version "0.1.1")
468 (source (origin
469 (modules '((guix build utils)))
470 ;; Remove examples file with references to external packages as
471 ;; they do not exist at compilation time.
472 (snippet
473 '(begin (delete-file "examples.el")
474 #t))
475 (method git-fetch)
476 (uri (git-reference
477 (url "https://github.com/vermiculus/graphql.el.git")
478 (commit version)))
479 (file-name (git-file-name name version))
480 (sha256
481 (base32
482 "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"))))
483 (build-system emacs-build-system)
484 (home-page
485 "https://github.com/vermiculus/graphql.el")
486 (synopsis "GraphQL utilities")
487 (description
488 "GraphQL.el provides a generally-applicable domain-specific language for
489 creating and executing GraphQL queries against your favorite web services.
490 GraphQL is a data query language and runtime designed and used to request and
491 deliver data to mobile and web apps.")
492 (license license:gpl3+)))
493
494 (define-public emacs-ghub
495 (package
496 (name "emacs-ghub")
497 (version "3.2.0")
498 (source (origin
499 (method git-fetch)
500 (uri (git-reference
501 (url "https://github.com/magit/ghub")
502 (commit (string-append "v" version))))
503 (file-name (git-file-name name version))
504 (sha256
505 (base32
506 "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl"))))
507 (build-system emacs-build-system)
508 (arguments
509 `(#:phases
510 (modify-phases %standard-phases
511 (add-before 'install 'make-info
512 (lambda _
513 (invoke "make" "info"))))))
514 (native-inputs
515 `(("texinfo" ,texinfo)))
516 (propagated-inputs
517 `(("dash" ,emacs-dash)
518 ("graphql" ,emacs-graphql)
519 ("treepy" ,emacs-treepy)))
520 (home-page "https://github.com/magit/ghub")
521 (synopsis "Emacs client libraries for the APIs of various Git forges")
522 (description
523 "Ghub provides basic support for using the APIs of various Git forges from
524 Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
525 Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
526 handful of functions that are not resource-specific.")
527 (license license:gpl3+)))
528
529 (define-public emacs-scribble-mode
530 (let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
531 (version "0.0")
532 (revision 0))
533 (package
534 (name "emacs-scribble-mode")
535 (version (if (zero? revision)
536 version
537 (string-append version "-"
538 (number->string revision)
539 "." (string-take commit 7))))
540 (source (origin
541 (method git-fetch)
542 (uri (git-reference
543 (url "https://github.com/emacs-pe/scribble-mode.git")
544 (commit commit)))
545 (sha256
546 (base32
547 "0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
548 (build-system emacs-build-system)
549 (home-page "https://github.com/emacs-pe/scribble-mode")
550 (synopsis "Emacs mode for editing the Scribble documentation syntax.")
551 (description
552 "This package provides basic syntax highlighting and editing support
553 for editing Racket's Scribble documentation syntax in Emacs.")
554 (license license:gpl3+))))
555
556 (define-public emacs-haskell-mode
557 (package
558 (name "emacs-haskell-mode")
559 (version "16.1")
560 (source (origin
561 (method git-fetch)
562 (uri (git-reference
563 (url "https://github.com/haskell/haskell-mode")
564 (commit (string-append "v" version))))
565 (file-name (git-file-name name version))
566 (sha256
567 (base32 "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"))
568 (patches
569 (search-patches ; backport test failure fixes
570 "haskell-mode-unused-variables.patch"
571 "haskell-mode-make-check.patch"))))
572 (inputs
573 `(("emacs-el-search" ,emacs-el-search) ; for tests
574 ("emacs-stream" ,emacs-stream))) ; for tests
575 (propagated-inputs
576 `(("emacs-dash" ,emacs-dash)))
577 (native-inputs
578 `(("emacs" ,emacs-minimal)
579 ("texinfo" ,texinfo)))
580 (build-system gnu-build-system)
581 (arguments
582 `(#:make-flags (list (string-append "EMACS="
583 (assoc-ref %build-inputs "emacs")
584 "/bin/emacs"))
585 #:modules ((ice-9 match)
586 (srfi srfi-26)
587 ,@%gnu-build-system-modules)
588 #:phases
589 (modify-phases %standard-phases
590 (delete 'configure)
591 (add-before
592 'build 'pre-build
593 (lambda* (#:key inputs #:allow-other-keys)
594 (define (el-dir store-dir)
595 (match (find-files store-dir "\\.el$")
596 ((f1 f2 ...) (dirname f1))
597 (_ "")))
598
599 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
600 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
601
602 (setenv "SHELL" "sh")
603 (setenv "EMACSLOADPATH"
604 (string-concatenate
605 (map (match-lambda
606 (((? emacs-prefix? name) . dir)
607 (string-append (el-dir dir) ":"))
608 (_ ""))
609 inputs)))
610 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
611 ;; embed filename to fix test failure
612 (let ((file "tests/haskell-cabal-tests.el"))
613 (substitute* file
614 (("\\(buffer-file-name\\)")
615 (format #f "(or (buffer-file-name) ~s)" file))))
616 #t)))
617 (replace
618 'install
619 (lambda* (#:key outputs #:allow-other-keys)
620 (let* ((out (assoc-ref outputs "out"))
621 (el-dir (string-append out "/share/emacs/site-lisp"))
622 (doc (string-append
623 out "/share/doc/haskell-mode-" ,version))
624 (info (string-append out "/share/info")))
625 (define (copy-to-dir dir files)
626 (for-each (lambda (f)
627 (install-file f dir))
628 files))
629
630 (with-directory-excursion "doc"
631 (invoke "makeinfo" "haskell-mode.texi")
632 (install-file "haskell-mode.info" info))
633 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
634 (copy-to-dir el-dir (find-files "." "\\.elc?"))
635 ;; These are part of other packages.
636 (with-directory-excursion el-dir
637 (for-each delete-file '("dash.el" "ert.el")))
638 #t))))))
639 (home-page "https://github.com/haskell/haskell-mode")
640 (synopsis "Haskell mode for Emacs")
641 (description
642 "This is an Emacs mode for editing, debugging and developing Haskell
643 programs.")
644 (license license:gpl3+)))
645
646 (define-public haskell-mode
647 (deprecated-package "haskell-mode" emacs-haskell-mode))
648
649 (define-public emacs-flycheck
650 (package
651 (name "emacs-flycheck")
652 (version "31")
653 (source (origin
654 (method url-fetch)
655 (uri (string-append
656 "https://github.com/flycheck/flycheck/releases/download/"
657 version "/flycheck-" version ".tar"))
658 (sha256
659 (base32
660 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
661 (modules '((guix build utils)))
662 (snippet `(begin
663 ;; Change 'flycheck-version' so that it does not
664 ;; attempt to get its version from pkg-info.el.
665 (substitute* "flycheck.el"
666 (("\\(pkg-info-version-info 'flycheck\\)")
667 (string-append "\"" ,version "\"")))
668 #t))))
669 (build-system emacs-build-system)
670 (propagated-inputs
671 `(("emacs-dash" ,emacs-dash)))
672 (home-page "https://www.flycheck.org")
673 (synopsis "On-the-fly syntax checking")
674 (description
675 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
676 replacement for the older Flymake extension which is part of GNU Emacs, with
677 many improvements and additional features.
678
679 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
680 checking for over 30 programming and markup languages with more than 70
681 different tools. It highlights errors and warnings inline in the buffer, and
682 provides an optional IDE-like error list.")
683 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
684
685 (define-public emacs-a
686 (package
687 (name "emacs-a")
688 (version "0.1.1")
689 (source (origin
690 (method git-fetch)
691 (uri (git-reference
692 (url "https://github.com/plexus/a.el.git")
693 (commit (string-append "v" version))))
694 (file-name (git-file-name name version))
695 (sha256
696 (base32
697 "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
698 (build-system emacs-build-system)
699 (home-page "https://github.com/plexus/a.el/")
700 (synopsis
701 "Emacs library for dealing with association lists and hash tables")
702 (description "@code{emacs-a} provides Emacs Lisp functions for dealing
703 with associative structures in a uniform and functional way. These functions
704 can take association lists, hash tables, and in some cases vectors (where the
705 index is considered the key).")
706 (license license:gpl3+)))
707
708 (define-public emacs-anaphora
709 (package
710 (name "emacs-anaphora")
711 (version "1.0.4")
712 (source
713 (origin
714 (method git-fetch)
715 (uri (git-reference
716 (url "https://github.com/rolandwalker/anaphora.git")
717 (commit (string-append "v" version))))
718 (file-name (git-file-name name version))
719 (sha256
720 (base32
721 "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"))))
722 (build-system emacs-build-system)
723 (home-page "https://github.com/rolandwalker/anaphora/")
724 (synopsis "Anaphoric expressions for Emacs Lisp")
725 (description "@code{emacs-anaphora} implements anaphoric expressions for
726 Emacs Lisp.
727
728 Anaphoric expressions implicitly create one or more temporary variables which
729 can be referred to during the expression. This technique can improve clarity
730 in certain cases. It also enables recursion for anonymous functions.")
731 (license license:public-domain)))
732
733 \f
734 ;;;
735 ;;; Web browsing.
736 ;;;
737
738 (define-public emacs-w3m
739 ;; Emacs-w3m follows a "rolling release" model.
740 (package
741 (name "emacs-w3m")
742 (version "2018-11-11")
743 (source (origin
744 (method cvs-fetch)
745 (uri (cvs-reference
746 (root-directory
747 ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot")
748 (module "emacs-w3m")
749 (revision version)))
750 (file-name (string-append name "-" version "-checkout"))
751 (sha256
752 (base32
753 "0nvahdbjs12zg7zsk4gql02mvnv56cf1rwj2f5p42lwp3xvswiwp"))))
754 (build-system gnu-build-system)
755 (native-inputs `(("autoconf" ,autoconf)
756 ("texinfo" ,texinfo)
757 ("emacs" ,emacs-minimal)))
758 (inputs `(("w3m" ,w3m)
759 ("imagemagick" ,imagemagick)))
760 (arguments
761 `(#:modules ((guix build gnu-build-system)
762 (guix build utils)
763 (guix build emacs-utils))
764 #:imported-modules (,@%gnu-build-system-modules
765 (guix build emacs-utils))
766 #:configure-flags
767 (let ((out (assoc-ref %outputs "out")))
768 (list (string-append "--with-lispdir="
769 out "/share/emacs/site-lisp")
770 (string-append "--with-icondir="
771 out "/share/images/emacs-w3m")
772 ;; Leave .el files uncompressed, otherwise GC can't
773 ;; identify run-time dependencies. See
774 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
775 "--without-compress-install"))
776 #:tests? #f ; no check target
777 #:phases
778 (modify-phases %standard-phases
779 (add-after 'unpack 'autoconf
780 (lambda _
781 (invoke "autoconf")))
782 (add-before 'configure 'support-emacs!
783 (lambda _
784 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
785 ;; unsupported.
786 (substitute* "configure"
787 (("EMACS_FLAVOR=unsupported")
788 "EMACS_FLAVOR=emacs"))
789 #t))
790 (add-before 'build 'patch-exec-paths
791 (lambda* (#:key inputs outputs #:allow-other-keys)
792 (let ((out (assoc-ref outputs "out"))
793 (w3m (assoc-ref inputs "w3m"))
794 (imagemagick (assoc-ref inputs "imagemagick"))
795 (coreutils (assoc-ref inputs "coreutils")))
796 (make-file-writable "w3m.el")
797 (emacs-substitute-variables "w3m.el"
798 ("w3m-command" (string-append w3m "/bin/w3m"))
799 ("w3m-touch-command"
800 (string-append coreutils "/bin/touch"))
801 ("w3m-icon-directory"
802 (string-append out "/share/images/emacs-w3m")))
803 (make-file-writable "w3m-image.el")
804 (emacs-substitute-variables "w3m-image.el"
805 ("w3m-imagick-convert-program"
806 (string-append imagemagick "/bin/convert"))
807 ("w3m-imagick-identify-program"
808 (string-append imagemagick "/bin/identify")))
809 #t)))
810 (replace 'install
811 (lambda* (#:key outputs #:allow-other-keys)
812 (invoke "make" "install" "install-icons")
813 (with-directory-excursion
814 (string-append (assoc-ref outputs "out")
815 "/share/emacs/site-lisp")
816 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
817 (symlink "w3m-load.el" "w3m-autoloads.el")
818 #t))))))
819 (home-page "http://emacs-w3m.namazu.org/")
820 (synopsis "Simple Web browser for Emacs based on w3m")
821 (description
822 "Emacs-w3m is an emacs interface for the w3m web browser.")
823 (license license:gpl2+)))
824
825 (define-public emacs-wget
826 (package
827 (name "emacs-wget")
828 (version "0.5.0")
829 (source (origin
830 (method url-fetch)
831 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
832 version ".orig.tar.gz"))
833 (sha256
834 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
835 (build-system gnu-build-system)
836 (inputs `(("wget" ,wget)))
837 (native-inputs `(("emacs" ,emacs-minimal)))
838 (arguments
839 `(#:modules ((guix build gnu-build-system)
840 (guix build utils)
841 (guix build emacs-utils))
842 #:imported-modules (,@%gnu-build-system-modules
843 (guix build emacs-utils))
844 #:tests? #f ; no check target
845 #:phases
846 (modify-phases %standard-phases
847 (replace 'configure
848 (lambda* (#:key outputs #:allow-other-keys)
849 (substitute* "Makefile"
850 (("/usr/local") (assoc-ref outputs "out"))
851 (("/site-lisp/emacs-wget") "/site-lisp"))
852 #t))
853 (add-before 'build 'patch-exec-paths
854 (lambda* (#:key inputs outputs #:allow-other-keys)
855 (let ((wget (assoc-ref inputs "wget")))
856 (emacs-substitute-variables "wget.el"
857 ("wget-command" (string-append wget "/bin/wget"))))
858 #t))
859 (add-after 'install 'post-install
860 (lambda* (#:key outputs #:allow-other-keys)
861 (emacs-generate-autoloads
862 "wget" (string-append (assoc-ref outputs "out")
863 "/share/emacs/site-lisp/"))
864 #t)))))
865 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
866 (synopsis "Simple file downloader for Emacs based on wget")
867 (description
868 "Emacs-wget is an emacs interface for the wget file downloader.")
869 (license license:gpl2+)))
870
871 \f
872 ;;;
873 ;;; Multimedia.
874 ;;;
875
876 (define-public emacs-emms
877 (package
878 (name "emacs-emms")
879 (version "5.1")
880 (source (origin
881 (method url-fetch)
882 (uri (string-append "mirror://gnu/emms/emms-"
883 version ".tar.gz"))
884 (sha256
885 (base32
886 "149ddczyx6x10zn4mn8g0rll1rwf4yciv8x6j0qdnlbwszblx2x6"))
887 (modules '((guix build utils)))
888 (snippet
889 '(begin
890 (substitute* "Makefile"
891 (("/usr/bin/install-info")
892 ;; No need to use 'install-info' since it would create a
893 ;; useless 'dir' file.
894 "true")
895 (("^INFODIR=.*")
896 ;; Install Info files to $out/share/info, not $out/info.
897 "INFODIR := $(PREFIX)/share/info\n")
898 (("/site-lisp/emms")
899 ;; Install directly in share/emacs/site-lisp, not in a
900 ;; sub-directory.
901 "/site-lisp")
902 (("^all: (.*)\n" _ rest)
903 ;; Build 'emms-print-metadata'.
904 (string-append "all: " rest " emms-print-metadata\n")))
905 #t))))
906 (build-system gnu-build-system)
907 (arguments
908 `(#:modules ((guix build gnu-build-system)
909 (guix build utils)
910 (guix build emacs-utils)
911 (ice-9 ftw))
912 #:imported-modules (,@%gnu-build-system-modules
913 (guix build emacs-utils))
914
915 #:phases
916 (modify-phases %standard-phases
917 (replace 'configure
918 (lambda* (#:key inputs outputs #:allow-other-keys)
919 (let ((out (assoc-ref outputs "out"))
920 (flac (assoc-ref inputs "flac"))
921 (vorbis (assoc-ref inputs "vorbis-tools"))
922 (alsa (assoc-ref inputs "alsa-utils"))
923 (mpg321 (assoc-ref inputs "mpg321"))
924 (mp3info (assoc-ref inputs "mp3info"))
925 (opus (assoc-ref inputs "opus-tools")))
926 ;; Specify the installation directory.
927 (substitute* "Makefile"
928 (("PREFIX=.*$")
929 (string-append "PREFIX := " out "\n")))
930
931 (setenv "SHELL" (which "sh"))
932 (setenv "CC" "gcc")
933
934 ;; Specify the absolute file names of the various
935 ;; programs so that everything works out-of-the-box.
936 (with-directory-excursion "lisp"
937 (emacs-substitute-variables
938 "emms-player-mpg321-remote.el"
939 ("emms-player-mpg321-remote-command"
940 (string-append mpg321 "/bin/mpg321")))
941 (substitute* "emms-player-simple.el"
942 (("\"ogg123\"")
943 (string-append "\"" vorbis "/bin/ogg123\"")))
944 (substitute* "emms-player-simple.el"
945 (("\"mpg321\"")
946 (string-append "\"" mpg321 "/bin/mpg321\"")))
947 (emacs-substitute-variables "emms-info-ogginfo.el"
948 ("emms-info-ogginfo-program-name"
949 (string-append vorbis "/bin/ogginfo")))
950 (emacs-substitute-variables "emms-info-opusinfo.el"
951 ("emms-info-opusinfo-program-name"
952 (string-append opus "/bin/opusinfo")))
953 (emacs-substitute-variables "emms-info-libtag.el"
954 ("emms-info-libtag-program-name"
955 (string-append out "/bin/emms-print-metadata")))
956 (emacs-substitute-variables "emms-info-mp3info.el"
957 ("emms-info-mp3info-program-name"
958 (string-append mp3info "/bin/mp3info")))
959 (emacs-substitute-variables "emms-info-metaflac.el"
960 ("emms-info-metaflac-program-name"
961 (string-append flac "/bin/metaflac")))
962 (emacs-substitute-variables "emms-source-file.el"
963 ("emms-source-file-gnu-find" (which "find")))
964 (substitute* "emms-volume-amixer.el"
965 (("\"amixer\"")
966 (string-append "\"" alsa "/bin/amixer\"")))
967 (substitute* "emms-tag-editor.el"
968 (("\"mp3info\"")
969 (string-append "\"" mp3info "/bin/mp3info\"")))))))
970 (add-before 'install 'pre-install
971 (lambda* (#:key outputs #:allow-other-keys)
972 ;; The 'install' rule expects the target directories to exist.
973 (let* ((out (assoc-ref outputs "out"))
974 (bin (string-append out "/bin"))
975 (man1 (string-append out "/share/man/man1")))
976 (mkdir-p bin)
977 (mkdir-p man1)
978
979 ;; Ensure that files are not rejected by gzip
980 (let ((early-1980 315619200)) ; 1980-01-02 UTC
981 (ftw "." (lambda (file stat flag)
982 (unless (<= early-1980 (stat:mtime stat))
983 (utime file early-1980 early-1980))
984 #t)))
985 #t)))
986 (add-after 'install 'post-install
987 (lambda* (#:key outputs #:allow-other-keys)
988 (let ((out (assoc-ref outputs "out")))
989 (symlink "emms-auto.el"
990 (string-append out "/share/emacs/site-lisp/"
991 "emms-autoloads.el")))
992 #t)))
993 #:tests? #f))
994 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
995 ("texinfo" ,texinfo)))
996 (inputs `(("alsa-utils" ,alsa-utils)
997 ("flac" ,flac) ;for metaflac
998 ("vorbis-tools" ,vorbis-tools)
999 ("mpg321" ,mpg321)
1000 ("taglib" ,taglib)
1001 ("mp3info" ,mp3info)
1002 ("opus-tools" ,opus-tools)))
1003 (properties '((upstream-name . "emms")))
1004 (synopsis "Emacs Multimedia System")
1005 (description
1006 "EMMS is the Emacs Multimedia System. It is a small front-end which
1007 can control one of the supported external players. Thus, it supports
1008 whatever formats are supported by your music player. It also
1009 supports tagging and playlist management, all behind a clean and
1010 light user interface.")
1011 (home-page "https://www.gnu.org/software/emms/")
1012 (license license:gpl3+)))
1013
1014 (define-public emacs-emms-player-mpv
1015 ;; A new mpv backend is included in Emms from 5.0.
1016 (deprecated-package "emacs-emms-player-mpv" emacs-emms))
1017
1018 (define-public emacs-emms-mode-line-cycle
1019 (package
1020 (name "emacs-emms-mode-line-cycle")
1021 (version "0.2.5")
1022 (source
1023 (origin
1024 (method git-fetch)
1025 (uri (git-reference
1026 (url "https://github.com/momomo5717/emms-mode-line-cycle")
1027 (commit version)))
1028 (file-name (git-file-name name version))
1029 (sha256
1030 (base32
1031 "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"))))
1032 (build-system emacs-build-system)
1033 (propagated-inputs
1034 `(("emms" ,emacs-emms)))
1035 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1036 (synopsis "Display the EMMS mode line as a ticker")
1037 (description
1038 "This is a minor mode for updating the EMMS mode-line string cyclically
1039 within a specified width. It is useful for displaying long track titles.")
1040 (license license:gpl3+)))
1041
1042 \f
1043 ;;;
1044 ;;; Miscellaneous.
1045 ;;;
1046
1047 (define-public emacs-bbdb
1048 (package
1049 (name "emacs-bbdb")
1050 (version "3.1.2")
1051 (source (origin
1052 (method url-fetch)
1053 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1054 version ".tar.gz"))
1055 (sha256
1056 (base32
1057 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1058 (modules '((guix build utils)))
1059 (snippet
1060 ;; We don't want to build and install the PDF.
1061 '(begin
1062 (substitute* "doc/Makefile.in"
1063 (("^doc_DATA = .*$")
1064 "doc_DATA =\n"))
1065 #t))))
1066 (build-system gnu-build-system)
1067 (arguments
1068 '(#:phases
1069 (modify-phases %standard-phases
1070 (add-after 'install 'post-install
1071 (lambda* (#:key outputs #:allow-other-keys)
1072 ;; Add an autoloads file with the right name for guix.el.
1073 (let* ((out (assoc-ref outputs "out"))
1074 (site (string-append out "/share/emacs/site-lisp")))
1075 (with-directory-excursion site
1076 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1077 #t)))))
1078 (native-inputs `(("emacs" ,emacs-minimal)))
1079 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1080 (synopsis "Contact management utility for Emacs")
1081 (description
1082 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1083 an address book for email and snail mail addresses, phone numbers and the
1084 like. It can be linked with various Emacs mail clients (Message and Mail
1085 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1086 (license license:gpl3+)))
1087
1088 (define-public bbdb
1089 (deprecated-package "bbdb" emacs-bbdb))
1090
1091 (define-public emacs-aggressive-indent
1092 (package
1093 (name "emacs-aggressive-indent")
1094 (version "1.8.3")
1095 (source (origin
1096 (method url-fetch)
1097 (uri (string-append "https://elpa.gnu.org/packages/"
1098 "aggressive-indent-" version ".el"))
1099 (sha256
1100 (base32
1101 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1102 (build-system emacs-build-system)
1103 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1104 (synopsis "Minor mode to aggressively keep your code always indented")
1105 (description
1106 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1107 always indented. It reindents after every change, making it more reliable
1108 than @code{electric-indent-mode}.")
1109 (license license:gpl2+)))
1110
1111 (define-public emacs-ag
1112 (package
1113 (name "emacs-ag")
1114 (version "0.47")
1115 (source (origin
1116 (method url-fetch)
1117 (uri (string-append
1118 "https://github.com/Wilfred/ag.el/archive/"
1119 version ".tar.gz"))
1120 (file-name (string-append name "-" version ".tar.gz"))
1121 (sha256
1122 (base32
1123 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1124 (build-system emacs-build-system)
1125 (arguments
1126 `(#:phases
1127 (modify-phases %standard-phases
1128 (add-before 'install 'make-info
1129 (lambda _
1130 (with-directory-excursion "docs"
1131 (invoke "make" "info"))))
1132 (add-after 'install 'install-info
1133 (lambda* (#:key outputs #:allow-other-keys)
1134 (let* ((out (assoc-ref outputs "out"))
1135 (info (string-append out "/share/info")))
1136 (install-file "docs/_build/texinfo/agel.info" info)
1137 #t))))))
1138 (native-inputs
1139 `(("python-sphinx" ,python-sphinx)
1140 ("texinfo" ,texinfo)))
1141 (propagated-inputs
1142 `(("dash" ,emacs-dash)
1143 ("s" ,emacs-s)
1144 ;; We need to use 'ag' as the executable on remote systems.
1145 ("the-silver-searcher" ,the-silver-searcher)))
1146 (home-page "https://github.com/Wilfred/ag.el")
1147 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1148 (description "This package provides the ability to use the silver
1149 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1150 include version control system awareness, use of Perl compatible regular
1151 expressions, editing the search results directly and searching file names
1152 rather than the contents of files.")
1153 (license license:gpl3+)))
1154
1155 (define-public emacs-async
1156 (package
1157 (name "emacs-async")
1158 (home-page "https://github.com/jwiegley/emacs-async")
1159 (version "1.9.3")
1160 (source (origin
1161 (method git-fetch)
1162 (uri (git-reference
1163 (url home-page)
1164 (commit (string-append "v" version))))
1165 (file-name (git-file-name name version))
1166 (sha256
1167 (base32
1168 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
1169 (build-system emacs-build-system)
1170 (synopsis "Asynchronous processing in Emacs")
1171 (description
1172 "This package provides the ability to call asynchronous functions and
1173 processes. For example, it can be used to run dired commands (for copying,
1174 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1175 as a library for other Emacs packages.")
1176 (license license:gpl3+)))
1177
1178 (define-public emacs-auctex
1179 (package
1180 (name "emacs-auctex")
1181 (version "12.1.0")
1182 (source
1183 (origin
1184 (method url-fetch)
1185 (uri (string-append
1186 "https://elpa.gnu.org/packages/auctex-"
1187 version
1188 ".tar"))
1189 (sha256
1190 (base32
1191 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1192 (build-system emacs-build-system)
1193 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1194 ;; ('emacs-minimal' does not provide dbus).
1195 (arguments
1196 `(#:emacs ,emacs
1197 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1198 #:exclude '("^tests/" "^latex/README")))
1199 (native-inputs
1200 `(("perl" ,perl)))
1201 (home-page "https://www.gnu.org/software/auctex/")
1202 (synopsis "Integrated environment for TeX")
1203 (description
1204 "AUCTeX is a comprehensive customizable integrated environment for
1205 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1206 or XEmacs.")
1207 (license license:gpl3+)))
1208
1209 (define-public emacs-autothemer
1210 (package
1211 (name "emacs-autothemer")
1212 (version "0.2.2")
1213 (source
1214 (origin
1215 (method url-fetch)
1216 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1217 version ".tar.gz"))
1218 (file-name (string-append name "-" version ".tar.gz"))
1219 (sha256
1220 (base32
1221 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1222 (build-system emacs-build-system)
1223 (propagated-inputs
1224 `(("emacs-dash" ,emacs-dash)))
1225 (home-page "https://github.com/sebastiansturm/autothemer")
1226 (synopsis "Conveniently create Emacs themes")
1227 (description
1228 "Autothemer provides a thin layer on top of @code{deftheme} and
1229 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1230 a set of simplified face specifications and a user-supplied color palette")
1231 (license license:gpl3+)))
1232
1233 (define-public emacs-howm
1234 (package
1235 (name "emacs-howm")
1236 (version "1.4.4")
1237 (source
1238 (origin
1239 (method url-fetch)
1240 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1241 version ".tar.gz"))
1242 (sha256
1243 (base32
1244 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1245 (build-system gnu-build-system)
1246 (native-inputs
1247 `(("emacs" ,emacs-minimal)))
1248 (arguments
1249 `(#:configure-flags
1250 (list (string-append "--with-howmdir=" %output
1251 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1252 #:modules ((guix build gnu-build-system)
1253 ((guix build emacs-build-system) #:prefix emacs:)
1254 (guix build utils))
1255 #:imported-modules (,@%gnu-build-system-modules
1256 (guix build emacs-build-system)
1257 (guix build emacs-utils))
1258 #:phases
1259 (modify-phases %standard-phases
1260 (add-after 'install 'make-autoloads
1261 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1262 (home-page "http://howm.osdn.jp/")
1263 (synopsis "Note-taking tool for Emacs")
1264 (description "Howm is a note-taking tool for Emacs. Like
1265 code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1266 searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1267 (license license:gpl1+)))
1268
1269 (define-public emacs-calfw
1270 (package
1271 (name "emacs-calfw")
1272 (version "1.6")
1273 (source
1274 (origin
1275 (method url-fetch)
1276 (uri (string-append
1277 "https://github.com/kiwanami/emacs-calfw/archive/v"
1278 version ".tar.gz"))
1279 (file-name (string-append name "-" version ".tar.gz"))
1280 (sha256
1281 (base32
1282 "1zr91xr0f1xfcv78yxka8vs5ximmq2ixmqf2pkb57kwwnxlypq4i"))))
1283 (build-system emacs-build-system)
1284 (propagated-inputs
1285 `(("emacs-howm" ,emacs-howm)))
1286 (home-page "https://github.com/kiwanami/emacs-calfw/")
1287 (synopsis "Calendar framework for Emacs")
1288 (description
1289 "This package displays a calendar view with various schedule data in the
1290 Emacs buffer.")
1291 (license license:gpl3+)))
1292
1293 (define-public emacs-direnv
1294 (package
1295 (name "emacs-direnv")
1296 (version "1.2.0")
1297 (source
1298 (origin
1299 (method url-fetch)
1300 (uri (string-append
1301 "https://github.com/wbolster/emacs-direnv/archive/"
1302 version ".tar.gz"))
1303 (file-name (string-append name "-" version ".tar.gz"))
1304 (sha256
1305 (base32
1306 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1307 (build-system emacs-build-system)
1308 (propagated-inputs
1309 `(("dash" ,emacs-dash)
1310 ("with-editor" ,emacs-with-editor)))
1311 (home-page "https://github.com/wbolster/emacs-direnv")
1312 (synopsis "Direnv integration for Emacs")
1313 (description
1314 "This package provides support for invoking direnv to get the environment
1315 for the current file and updating the environment within Emacs to match.
1316
1317 Direnv can be invoked manually, and a global minor mode is included that will
1318 update the environment when the active buffer changes.
1319
1320 Using emacs-direnv means that programs started from Emacs will use the
1321 environment set through Direnv.")
1322 (license license:gpl3+)))
1323
1324 (define-public emacs-ggtags
1325 (package
1326 (name "emacs-ggtags")
1327 (version "0.8.13")
1328 (source
1329 (origin
1330 (method url-fetch)
1331 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1332 version ".el"))
1333 (sha256
1334 (base32
1335 "1qa7lcrcmf76sf6dy8sxbg4adq7rg59fm0n5848w3qxgsr0h45fg"))))
1336 (build-system emacs-build-system)
1337 (inputs
1338 `(("global" ,global)))
1339 (arguments
1340 `(#:phases
1341 (modify-phases %standard-phases
1342 (add-after 'unpack 'configure
1343 (lambda* (#:key inputs #:allow-other-keys)
1344 (chmod "ggtags.el" #o644)
1345 (emacs-substitute-variables "ggtags.el"
1346 ("ggtags-executable-directory"
1347 (string-append (assoc-ref inputs "global") "/bin")))
1348 #t)))))
1349 (home-page "https://github.com/leoliu/ggtags")
1350 (synopsis "Frontend to the GNU Global source code tagging system")
1351 (description "@code{ggtags} provides a frontend to the GNU Global source
1352 code tagging system.
1353
1354 Features:
1355
1356 @itemize
1357 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1358 @item Automatically update Global's tag files when needed with tuning for
1359 large source trees.
1360 @item Intuitive navigation among multiple matches with mode-line display of
1361 current match, total matches and exit status.
1362 @item Read tag with completion.
1363 @item Show definition at point.
1364 @item Jump to #include files.
1365 @item Support search history and saving a search to register/bookmark.
1366 @item Query replace.
1367 @item Manage Global's environment variables on a per-project basis.
1368 @item Highlight (definition) tag at point.
1369 @item Abbreviated display of file names.
1370 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1371 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1372 @code{pygments} backend.
1373 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1374 @code{cscope} etc.
1375 @item Support projects on remote hosts (e.g. via @code{tramp}).
1376 @item Support eldoc.
1377 @item Search @code{GTAGSLIBPATH} for references and symbols.
1378 @end itemize\n")
1379 (license license:gpl3+)))
1380
1381 (define-public emacs-go-mode
1382 (package
1383 (name "emacs-go-mode")
1384 (version "1.5.0")
1385 (source (origin
1386 (method git-fetch)
1387 (uri (git-reference
1388 (url "https://github.com/dominikh/go-mode.el.git")
1389 (commit (string-append "v" version))))
1390 (file-name (git-file-name name version))
1391 (sha256
1392 (base32
1393 "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"))))
1394 (build-system emacs-build-system)
1395 (arguments
1396 `(#:phases
1397 (modify-phases %standard-phases
1398 (add-after 'unpack 'make-writable
1399 (lambda _
1400 (for-each make-file-writable (find-files "." "\\.el$"))
1401 #t)))))
1402 (home-page "https://github.com/dominikh/go-mode.el")
1403 (synopsis "Go mode for Emacs")
1404 (description
1405 "This package provides go-mode, an Emacs mode for working with software
1406 written in the Go programming language.")
1407 (license license:bsd-3)))
1408
1409 (define-public emacs-google-maps
1410 (package
1411 (name "emacs-google-maps")
1412 (version "1.0.0")
1413 (source (origin
1414 (method url-fetch)
1415 (uri (string-append "https://github.com/jd/google-maps.el/"
1416 "archive/" version ".tar.gz"))
1417 (file-name (string-append name "-" version ".tar.gz"))
1418 (sha256
1419 (base32
1420 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1421 (build-system emacs-build-system)
1422 (home-page "https://github.com/jd/google-maps.el")
1423 (synopsis "Access Google Maps from Emacs")
1424 (description "The @code{google-maps} package allows to display Google
1425 Maps directly inside Emacs.")
1426 (license license:gpl3+)))
1427
1428 (define-public emacs-graphviz-dot-mode
1429 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1430 (revision "1"))
1431 (package
1432 (name "emacs-graphviz-dot-mode")
1433 (version (string-append "0.3.11-" revision "."
1434 (string-take commit 7)))
1435 (source (origin
1436 (method git-fetch)
1437 (uri (git-reference
1438 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1439 (commit commit)))
1440 (file-name (string-append name "-" version "-checkout"))
1441 (sha256
1442 (base32
1443 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1444 (build-system emacs-build-system)
1445 (arguments
1446 `(#:phases
1447 (modify-phases %standard-phases
1448 (add-before 'install 'make-info
1449 (lambda* (#:key inputs #:allow-other-keys)
1450 (with-directory-excursion "texinfo"
1451 (substitute* "Makefile"
1452 (("\\/usr\\/bin\\/gzip")
1453 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1454 (invoke "make"
1455 "clean"
1456 "info"
1457 (string-append "TEXINFODIR="
1458 (assoc-ref inputs "texinfo")
1459 "/bin")))))
1460 (add-after 'install 'install-info
1461 (lambda* (#:key outputs #:allow-other-keys)
1462 (let* ((out (assoc-ref outputs "out"))
1463 (info (string-append out "/share/info")))
1464 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1465 #t))))))
1466 (native-inputs
1467 `(("texinfo" ,texinfo)
1468 ("gzip" ,gzip)))
1469 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1470 (synopsis "Major mode for editing Graphviz Dot files")
1471 (description
1472 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1473 files using the dot syntax, and use Graphviz to convert these files to
1474 diagrams.")
1475 (license license:gpl2+))))
1476
1477 (define-public emacs-mmm-mode
1478 (package
1479 (name "emacs-mmm-mode")
1480 (version "0.5.5")
1481 (source
1482 (origin
1483 (method url-fetch)
1484 (uri (string-append
1485 "https://github.com/purcell/mmm-mode/archive/"
1486 version ".tar.gz"))
1487 (file-name (string-append name "-" version ".tar.gz"))
1488 (sha256
1489 (base32
1490 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
1491 (build-system gnu-build-system)
1492 (arguments
1493 '(#:phases
1494 (modify-phases %standard-phases
1495 (add-after 'unpack 'autogen
1496 (lambda _
1497 (invoke "sh" "autogen.sh"))))))
1498 (native-inputs
1499 `(("autoconf" ,autoconf)
1500 ("automake" ,automake)
1501 ("emacs" ,emacs-minimal)
1502 ("texinfo" ,texinfo)))
1503 (home-page "https://github.com/purcell/mmm-mode")
1504 (synopsis "Allow multiple major modes in an Emacs buffer")
1505 (description
1506 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1507 single buffer.")
1508 (license license:gpl3+)))
1509
1510 (define-public emacs-tablist
1511 (package
1512 (name "emacs-tablist")
1513 (version "0.70")
1514 (source (origin
1515 (method url-fetch)
1516 (uri (string-append
1517 "https://github.com/politza/tablist/archive/v"
1518 version ".tar.gz"))
1519 (file-name (string-append name "-" version ".tar.gz"))
1520 (sha256
1521 (base32
1522 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1523 (build-system emacs-build-system)
1524 (home-page "https://github.com/politza/tablist")
1525 (synopsis "Extension for @code{tabulated-list-mode}")
1526 (description "Tablist is the Emacs package that provides several
1527 additional features to @code{tabulated-list-mode}: it adds marks,
1528 filters, new key bindings and faces. It can be enabled by
1529 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1530 (license license:gpl3+)))
1531
1532 (define-public emacs-pdf-tools
1533 (package
1534 (name "emacs-pdf-tools")
1535 (version "0.90")
1536 (home-page "https://github.com/politza/pdf-tools")
1537 (source (origin
1538 (method git-fetch)
1539 (uri (git-reference (url home-page)
1540 (commit (string-append "v" version))))
1541 (file-name (git-file-name name version))
1542 (sha256
1543 (base32
1544 "0iv2g5kd14zk3r5dzdw7b7hk4b5w7qpbilcqkja46jgxbb6xnpl9"))))
1545 (build-system gnu-build-system)
1546 (arguments
1547 `(#:tests? #f ; there are no tests
1548 #:modules ((guix build gnu-build-system)
1549 ((guix build emacs-build-system) #:prefix emacs:)
1550 (guix build utils)
1551 (guix build emacs-utils))
1552 #:imported-modules (,@%gnu-build-system-modules
1553 (guix build emacs-build-system)
1554 (guix build emacs-utils))
1555 #:phases
1556 (modify-phases %standard-phases
1557 ;; Build server side using 'gnu-build-system'.
1558 (add-after 'unpack 'enter-server-dir
1559 (lambda _ (chdir "server") #t))
1560 (add-after 'enter-server-dir 'autogen
1561 (lambda _
1562 (invoke "bash" "autogen.sh")))
1563
1564 ;; Build emacs side using 'emacs-build-system'.
1565 (add-after 'compress-documentation 'enter-lisp-dir
1566 (lambda _ (chdir "../lisp") #t))
1567 (add-after 'enter-lisp-dir 'emacs-patch-variables
1568 (lambda* (#:key outputs #:allow-other-keys)
1569 (for-each make-file-writable (find-files "."))
1570
1571 ;; Set path to epdfinfo program.
1572 (emacs-substitute-variables "pdf-info.el"
1573 ("pdf-info-epdfinfo-program"
1574 (string-append (assoc-ref outputs "out")
1575 "/bin/epdfinfo")))
1576 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1577 ;; upgrading" that pdf-tools tries to perform.
1578 (emacs-substitute-variables "pdf-tools.el"
1579 ("pdf-tools-handle-upgrades" '()))))
1580 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1581 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1582 (add-after 'emacs-set-emacs-load-path 'emacs-install
1583 (assoc-ref emacs:%standard-phases 'install))
1584 (add-after 'emacs-install 'emacs-build
1585 (assoc-ref emacs:%standard-phases 'build))
1586 (add-after 'emacs-install 'emacs-make-autoloads
1587 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1588 (native-inputs `(("autoconf" ,autoconf)
1589 ("automake" ,automake)
1590 ("pkg-config" ,pkg-config)
1591 ("emacs" ,emacs-minimal)))
1592 (inputs `(("poppler" ,poppler)
1593 ("cairo" ,cairo)
1594 ("glib" ,glib)
1595 ("libpng" ,libpng)
1596 ("zlib" ,zlib)))
1597 (propagated-inputs `(("tablist" ,emacs-tablist)))
1598 (synopsis "Emacs support library for PDF files")
1599 (description
1600 "PDF Tools is, among other things, a replacement of DocView for PDF
1601 files. The key difference is that pages are not pre-rendered by
1602 e.g. ghostscript and stored in the file-system, but rather created on-demand
1603 and stored in memory.")
1604 (license license:gpl3+)))
1605
1606 (define-public emacs-dash
1607 (package
1608 (name "emacs-dash")
1609 (version "2.14.1")
1610 (source (origin
1611 (method git-fetch)
1612 (uri (git-reference
1613 (url "https://github.com/magnars/dash.el.git")
1614 (commit version)))
1615 (file-name (git-file-name name version))
1616 (sha256
1617 (base32
1618 "1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
1619 (build-system emacs-build-system)
1620 (arguments
1621 `(#:tests? #t
1622 #:test-command '("./run-tests.sh")))
1623 (home-page "https://github.com/magnars/dash.el")
1624 (synopsis "Modern list library for Emacs")
1625 (description "This package provides a modern list API library for Emacs.")
1626 (license license:gpl3+)))
1627
1628 (define-public emacs-bui
1629 (package
1630 (name "emacs-bui")
1631 (version "1.2.1")
1632 (source (origin
1633 (method git-fetch)
1634 (uri (git-reference
1635 (url "https://notabug.org/alezost/emacs-bui.git")
1636 (commit (string-append "v" version))))
1637 (file-name (string-append name "-" version "-checkout"))
1638 (sha256
1639 (base32
1640 "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"))))
1641 (build-system emacs-build-system)
1642 (propagated-inputs
1643 `(("dash" ,emacs-dash)))
1644 (home-page "https://notabug.org/alezost/emacs-bui")
1645 (synopsis "Buffer interface library for Emacs")
1646 (description
1647 "BUI (Buffer User Interface) is a library for making @code{list} and
1648 @code{info} interfaces to display an arbitrary data of the same
1649 type, for example: packages, buffers, files, etc.")
1650 (license license:gpl3+)))
1651
1652 (define-public emacs-guix
1653 (package
1654 (name "emacs-guix")
1655 (version "0.5.1.1")
1656 (source (origin
1657 (method url-fetch)
1658 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1659 "releases/emacs-guix-" version ".tar.gz"))
1660 (sha256
1661 (base32
1662 "1gxg7lan3njc2yg2d02b2zij0d2cm2pv2q08nqz86s85jk3b6m03"))))
1663 (build-system gnu-build-system)
1664 (arguments
1665 `(#:configure-flags
1666 (let ((guix (assoc-ref %build-inputs "guix"))
1667 (gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
1668 (geiser (assoc-ref %build-inputs "geiser"))
1669 (dash (assoc-ref %build-inputs "dash"))
1670 (bui (assoc-ref %build-inputs "bui"))
1671 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1672 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
1673 (site-lisp "/share/emacs/site-lisp")
1674 (site-scm "/share/guile/site")
1675 (site-go "/lib/guile")
1676 (guile-dir (lambda (dir)
1677 (car (find-files dir
1678 (lambda (file stat)
1679 (string-prefix?
1680 "2." (basename file)))
1681 #:directories? #t)))))
1682 (list (string-append "--with-guix-site-dir="
1683 (guile-dir (string-append guix site-scm)))
1684 (string-append "--with-guix-site-ccache-dir="
1685 (guile-dir (string-append guix site-go))
1686 "/site-ccache")
1687 (string-append "--with-guile-gcrypt-site-dir="
1688 (guile-dir (string-append gcrypt site-scm)))
1689 (string-append "--with-guile-gcrypt-site-ccache-dir="
1690 (guile-dir (string-append gcrypt site-go))
1691 "/site-ccache")
1692 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1693 (string-append "--with-dash-lispdir="
1694 dash site-lisp "/guix.d/dash-"
1695 ,(package-version emacs-dash))
1696 (string-append "--with-bui-lispdir="
1697 bui site-lisp "/guix.d/bui-"
1698 ,(package-version emacs-bui))
1699 (string-append "--with-editindirect-lispdir="
1700 edit-indirect site-lisp "/guix.d/edit-indirect-"
1701 ,(package-version emacs-edit-indirect))
1702 (string-append "--with-popup-lispdir="
1703 magit-popup site-lisp "/guix.d/magit-popup-"
1704 ,(package-version emacs-magit-popup))))))
1705 (native-inputs
1706 `(("pkg-config" ,pkg-config)
1707 ("emacs" ,emacs-minimal)))
1708 (inputs
1709 `(("guile" ,guile-2.2)
1710 ("guix" ,guix)))
1711 (propagated-inputs
1712 `(("geiser" ,emacs-geiser)
1713 ("guile-gcrypt" ,guile-gcrypt)
1714 ("dash" ,emacs-dash)
1715 ("bui" ,emacs-bui)
1716 ("edit-indirect" ,emacs-edit-indirect)
1717 ("magit-popup" ,emacs-magit-popup)))
1718 (home-page "https://emacs-guix.gitlab.io/website/")
1719 (synopsis "Emacs interface for GNU Guix")
1720 (description
1721 "Emacs-Guix provides a visual interface, tools and features for the GNU
1722 Guix package manager. Particularly, it allows you to do various package
1723 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1724 @code{M-x guix-help} command.")
1725 (license license:gpl3+)))
1726
1727 (define-public emacs-build-farm
1728 (package
1729 (name "emacs-build-farm")
1730 (version "0.2.2")
1731 (source (origin
1732 (method git-fetch)
1733 (uri (git-reference
1734 (url "https://notabug.org/alezost/emacs-build-farm.git")
1735 (commit (string-append "v" version))))
1736 (file-name (string-append name "-" version "-checkout"))
1737 (sha256
1738 (base32
1739 "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"))))
1740 (build-system emacs-build-system)
1741 (propagated-inputs
1742 `(("bui" ,emacs-bui)
1743 ("magit-popup" ,emacs-magit-popup)))
1744 (home-page "https://notabug.org/alezost/emacs-build-farm")
1745 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1746 (description
1747 "This Emacs package provides an interface for Hydra and
1748 Cuirass (build farms used by Nix and Guix). It allows you to look at
1749 various data related to the build farm projects, jobsets, builds and
1750 evaluations. The entry point is @code{M-x build-farm} command.")
1751 (license license:gpl3+)))
1752
1753 (define-public emacs-d-mode
1754 (package
1755 (name "emacs-d-mode")
1756 (version "2.0.9")
1757 (source (origin
1758 (method url-fetch)
1759 (uri (string-append
1760 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1761 "archive/" version ".tar.gz"))
1762 (file-name (string-append name "-" version ".tar.gz"))
1763 (sha256
1764 (base32
1765 "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
1766 (build-system emacs-build-system)
1767 (propagated-inputs
1768 `(("emacs-undercover" ,emacs-undercover)))
1769 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1770 (synopsis "Emacs major mode for editing D code")
1771 (description "This package provides an Emacs major mode for highlighting
1772 code written in the D programming language. This mode is currently known to
1773 work with Emacs 24 and 25.")
1774 (license license:gpl2+)))
1775
1776 (define-public emacs-keyfreq
1777 (package
1778 (name "emacs-keyfreq")
1779 (version "20160516.716")
1780 (source
1781 (origin
1782 (method url-fetch)
1783 (uri (string-append "http://melpa.org/packages/keyfreq-"
1784 version ".el"))
1785 (sha256
1786 (base32
1787 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1788 (build-system emacs-build-system)
1789 (home-page "https://github.com/dacap/keyfreq")
1790 (synopsis "Track Emacs command frequencies")
1791 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1792 a command.")
1793 (license license:gpl3+)))
1794
1795 (define-public emacs-olivetti
1796 (package
1797 (name "emacs-olivetti")
1798 (version "1.5.7")
1799 (source (origin
1800 (method url-fetch)
1801 (uri (string-append
1802 "https://stable.melpa.org/packages/olivetti-"
1803 version ".el"))
1804 (sha256
1805 (base32
1806 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1807 (build-system emacs-build-system)
1808 (home-page "https://github.com/rnkn/olivetti")
1809 (synopsis "Emacs minor mode for a nice writing environment")
1810 (description "This package provides an Emacs minor mode that puts writing
1811 in the center.")
1812 (license license:gpl3+)))
1813
1814 (define-public emacs-undo-tree
1815 (package
1816 (name "emacs-undo-tree")
1817 (version "0.6.6")
1818 (source (origin
1819 (method git-fetch)
1820 (uri (git-reference
1821 (url "http://dr-qubit.org/git/undo-tree.git")
1822 (commit (string-append "release/" version))))
1823 (file-name (string-append name "-" version "-checkout"))
1824 (sha256
1825 (base32
1826 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1827 (build-system emacs-build-system)
1828 (home-page "http://www.dr-qubit.org/emacs.php")
1829 (synopsis "Treat undo history as a tree")
1830 (description "Tree-like interface to Emacs undo system, providing
1831 graphical tree presentation of all previous states of buffer that
1832 allows easily move between them.")
1833 (license license:gpl3+)))
1834
1835 (define-public emacs-s
1836 (package
1837 (name "emacs-s")
1838 (version "1.12.0")
1839 (source (origin
1840 (method url-fetch)
1841 (uri (string-append
1842 "https://github.com/magnars/s.el/archive/"
1843 version ".tar.gz"))
1844 (file-name (string-append name "-" version ".tar.gz"))
1845 (sha256
1846 (base32
1847 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1848 (build-system emacs-build-system)
1849 (arguments
1850 `(#:tests? #t
1851 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
1852 #:test-command '("./run-tests.sh")))
1853 (home-page "https://github.com/magnars/s.el")
1854 (synopsis "Emacs string manipulation library")
1855 (description "This package provides an Emacs library for manipulating
1856 strings.")
1857 (license license:gpl3+)))
1858
1859 (define-public emacs-symon
1860 (package
1861 (name "emacs-symon")
1862 (version "20160630")
1863 (source
1864 (origin
1865 (method url-fetch)
1866 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1867 version ".tar.gz"))
1868 (file-name (string-append name "-" version ".tar.gz"))
1869 (sha256
1870 (base32
1871 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1872 (build-system emacs-build-system)
1873 (home-page "https://github.com/zk-phi/symon")
1874 (synopsis "Tiny graphical system monitor")
1875 (description
1876 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1877 (license license:gpl2+)))
1878
1879 (define-public emacs-sx
1880 (let ((version "20180212")
1881 (revision "1")
1882 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1883 (package
1884 (name "emacs-sx")
1885 (version (git-version version revision commit))
1886 (source
1887 (origin
1888 (method git-fetch)
1889 (uri (git-reference
1890 (url "https://github.com/vermiculus/sx.el")
1891 (commit commit)))
1892 (file-name (git-file-name name version))
1893 (sha256
1894 (base32
1895 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1896 (build-system emacs-build-system)
1897 (propagated-inputs
1898 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1899 (home-page "https://github.com/vermiculus/sx.el")
1900 (synopsis "Emacs StackExchange client")
1901 (description
1902 "Emacs StackExchange client. Ask and answer questions on
1903 Stack Overflow, Super User, and other StackExchange sites.")
1904 (license license:gpl3+))))
1905
1906 (define-public emacs-f
1907 (package
1908 (name "emacs-f")
1909 (version "0.20.0")
1910 (source (origin
1911 (method git-fetch)
1912 (uri (git-reference
1913 (url "https://github.com/rejeep/f.el.git")
1914 (commit (string-append "v" version))))
1915 (file-name (git-file-name name version))
1916 (sha256
1917 (base32
1918 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
1919 (build-system emacs-build-system)
1920 (propagated-inputs
1921 `(("emacs-s" ,emacs-s)
1922 ("emacs-dash" ,emacs-dash)))
1923 (home-page "https://github.com/rejeep/f.el")
1924 (synopsis "Emacs API for working with files and directories")
1925 (description "This package provides an Emacs library for working with
1926 files and directories.")
1927 (license license:gpl3+)))
1928
1929 (define-public emacs-git-gutter
1930 (package
1931 (name "emacs-git-gutter")
1932 (version "0.90")
1933 (source (origin
1934 (method url-fetch)
1935 (uri (string-append
1936 "https://github.com/syohex/" name "/archive/"
1937 version ".tar.gz"))
1938 (file-name (string-append name "-" version ".tar.gz"))
1939 (sha256
1940 (base32
1941 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1942 (build-system emacs-build-system)
1943 (home-page "https://github.com/syohex/emacs-git-gutter")
1944 (synopsis "See and manage hunks of text in a version control system")
1945 (description
1946 "This package is an Emacs minor mode for displaying and interacting with
1947 hunks of text managed in a version control system. Added modified and deleted
1948 areas can be indicated with symbols on the edge of the buffer, and commands
1949 can be used to move between and perform actions on these hunks.
1950
1951 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1952 display and behaviour is easily customisable.")
1953 (license license:gpl3+)))
1954
1955 (define-public emacs-git-timemachine
1956 (package
1957 (name "emacs-git-timemachine")
1958 (version "4.5")
1959 (source
1960 (origin
1961 (method url-fetch)
1962 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
1963 "/-/archive/" version
1964 "/git-timemachine-" version ".tar.gz"))
1965 (file-name (string-append name "-" version ".tar.gz"))
1966 (sha256
1967 (base32
1968 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
1969 (build-system emacs-build-system)
1970 (home-page "https://gitlab.com/pidu/git-timemachine")
1971 (synopsis "Step through historic versions of Git-controlled files")
1972 (description "This package enables you to step through historic versions
1973 of files under Git version control from within Emacs.")
1974 (license license:gpl3+)))
1975
1976 (define-public emacs-minitest
1977 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1978 (revision "1"))
1979 (package
1980 (name "emacs-minitest")
1981 (version (git-version "0.8.0" revision commit))
1982 (source (origin
1983 (method git-fetch)
1984 (uri (git-reference
1985 (url "https://github.com/arthurnn/minitest-emacs")
1986 (commit commit)))
1987 (file-name (git-file-name name commit))
1988 (sha256
1989 (base32
1990 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1991 (build-system emacs-build-system)
1992 (arguments
1993 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1994 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1995 (propagated-inputs
1996 `(("emacs-dash" ,emacs-dash)
1997 ("emacs-f" ,emacs-f)))
1998 (home-page "https://github.com/arthurnn/minitest-emacs")
1999 (synopsis "Emacs minitest mode")
2000 (description
2001 "The minitest mode provides commands to run the tests for the current
2002 file or line, as well as rerunning the previous tests, or all the tests for a
2003 project.
2004
2005 This package also includes relevant snippets for yasnippet.")
2006 (license license:expat))))
2007
2008 (define-public emacs-el-mock
2009 (package
2010 (name "emacs-el-mock")
2011 (version "1.25.1")
2012 (source
2013 (origin
2014 (method url-fetch)
2015 (uri (string-append "https://github.com/rejeep/el-mock.el/"
2016 "archive/v" version ".tar.gz"))
2017 (file-name (string-append name "-" version ".tar.gz"))
2018 (sha256
2019 (base32
2020 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
2021 (build-system emacs-build-system)
2022 (home-page "https://github.com/rejeep/el-mock.el")
2023 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2024 (description
2025 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2026 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2027 Expectations, but it can be used in other contexts.")
2028 (license license:gpl3+)))
2029
2030 (define-public emacs-espuds
2031 (package
2032 (name "emacs-espuds")
2033 (version "0.3.3")
2034 (source
2035 (origin
2036 (method url-fetch)
2037 (uri (string-append "https://github.com/ecukes/espuds/"
2038 "archive/v" version ".tar.gz"))
2039 (file-name (string-append name "-" version ".tar.gz"))
2040 (sha256
2041 (base32
2042 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
2043 (build-system emacs-build-system)
2044 (propagated-inputs
2045 `(("emacs-s" ,emacs-s)
2046 ("emacs-dash" ,emacs-dash)
2047 ("emacs-f" ,emacs-f)))
2048 (home-page "https://github.com/ecukes/espuds")
2049 (synopsis "Common step definitions for Ecukes")
2050 (description "Espuds is a collection of the most commonly used step
2051 definitions for testing with the Ecukes framework.")
2052 (license license:gpl3+)))
2053
2054 (define-public emacs-spark
2055 (let ((version "20160503") ; no proper tag, use date of commit
2056 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2057 (revision "1"))
2058 (package
2059 (name "emacs-spark")
2060 (version (git-version version revision commit))
2061 (source
2062 (origin
2063 (method git-fetch)
2064 (uri (git-reference
2065 (url "https://github.com/alvinfrancis/spark.git")
2066 (commit commit)))
2067 (file-name (git-file-name name version))
2068 (sha256
2069 (base32
2070 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2071 (build-system emacs-build-system)
2072 (home-page "https://github.com/alvinfrancis/spark")
2073 (synopsis "Sparkline generation library for Emacs Lisp")
2074 (description "@code{emacs-spark} is a sparkline generation library for
2075 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2076 port of @code{cl-spark} to Emacs Lisp.")
2077 (license license:expat))))
2078
2079 (define-public emacs-es-mode
2080 (package
2081 (name "emacs-es-mode")
2082 (version "4.3.0")
2083 (source (origin
2084 (method url-fetch)
2085 (uri (string-append
2086 "https://github.com/dakrone/es-mode/archive/"
2087 version ".tar.gz"))
2088 (file-name (string-append name "-" version ".tar.gz"))
2089 (sha256
2090 (base32
2091 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
2092 (build-system emacs-build-system)
2093 (propagated-inputs
2094 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2095 ;; to be rendered incorrectly
2096 `(("emacs-dash" ,emacs-dash)
2097 ("emacs-org" ,emacs-org)
2098 ("emacs-spark" ,emacs-spark)))
2099 (home-page "https://github.com/dakrone/es-mode")
2100 (synopsis "Major mode for editing Elasticsearch queries")
2101 (description "@code{es-mode} includes highlighting, completion and
2102 indentation support for Elasticsearch queries. Also supported are
2103 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2104 be processed through @code{jq}, or in the case of aggregations, can be
2105 rendered in to a table. In addition, there is an @code{es-command-center}
2106 mode, which displays information about Elasticsearch clusters.")
2107 (license license:gpl3+)))
2108
2109 (define-public emacs-expand-region
2110 (package
2111 (name "emacs-expand-region")
2112 (version "0.11.0")
2113 (source
2114 (origin
2115 (method url-fetch)
2116 (uri (string-append "https://github.com/magnars/expand-region.el"
2117 "/archive/" version ".tar.gz"))
2118 (file-name (string-append name "-" version ".tar.gz"))
2119 (sha256
2120 (base32
2121 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
2122 (build-system emacs-build-system)
2123 (home-page "https://github.com/magnars/expand-region.el")
2124 (synopsis "Increase selected region by semantic units")
2125 (description
2126 "Expand region increases the selected region by semantic units. Just
2127 keep pressing the key until it selects what you want. There's also
2128 @code{er/contract-region} if you expand too far.")
2129 (license license:gpl3+)))
2130
2131 (define-public emacs-fill-column-indicator
2132 (package
2133 (name "emacs-fill-column-indicator")
2134 (version "1.89")
2135 (source
2136 (origin
2137 (method url-fetch)
2138 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2139 "/archive/v" version ".tar.gz"))
2140 (file-name (string-append name "-" version ".tar.gz"))
2141 (sha256
2142 (base32
2143 "09ab01np14bdcsr38xf95kpnvxzqr46mdjmphg3pigwnx39a3jvg"))))
2144 (build-system emacs-build-system)
2145 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2146 (synopsis "Graphically indicate the fill column")
2147 (description
2148 "Fill-column-indicator graphically indicates the location of the fill
2149 column by drawing a thin line down the length of the editing window.")
2150 (license license:gpl3+)))
2151
2152 (define-public emacs-grep-a-lot
2153 (package
2154 (name "emacs-grep-a-lot")
2155 (version "1.0.7")
2156 (source (origin
2157 (method git-fetch)
2158 (uri (git-reference
2159 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2160 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2161 (file-name (string-append name "-" version "-checkout"))
2162 (sha256
2163 (base32
2164 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2165 (build-system emacs-build-system)
2166 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2167 (synopsis "Enables multiple grep buffers in Emacs")
2168 (description
2169 "This Emacs package allows managing multiple grep buffers.")
2170 (license license:gpl3+)))
2171
2172 (define-public emacs-inf-ruby
2173 (package
2174 (name "emacs-inf-ruby")
2175 (version "2.5.1")
2176 (source
2177 (origin
2178 (method url-fetch)
2179 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2180 "archive/" version ".tar.gz"))
2181 (file-name (string-append name "-" version ".tar.gz"))
2182 (sha256
2183 (base32
2184 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2185 (build-system emacs-build-system)
2186 (home-page "https://github.com/nonsequitur/inf-ruby")
2187 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2188 (description
2189 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2190 for easy interaction with a ruby subprocess. Features include support for
2191 detecting specific uses of Ruby, e.g. when using rails, and using a
2192 appropriate console.")
2193 (license license:gpl3+)))
2194
2195 (define-public emacs-znc
2196 (package
2197 (name "emacs-znc")
2198 (version "0.0.2")
2199 (source
2200 (origin
2201 (method url-fetch)
2202 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2203 version ".el"))
2204 (sha256
2205 (base32
2206 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2207 (build-system emacs-build-system)
2208 (home-page "https://github.com/sshirokov/ZNC.el")
2209 (synopsis "Make ERC and ZNC get along better")
2210 (description
2211 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2212 IRC bouncer with ERC.")
2213 (license license:expat)))
2214
2215 (define-public emacs-shut-up
2216 (package
2217 (name "emacs-shut-up")
2218 (version "0.3.2")
2219 (source
2220 (origin
2221 (method url-fetch)
2222 (uri (string-append "https://github.com/cask/shut-up/"
2223 "archive/v" version ".tar.gz"))
2224 (file-name (string-append name "-" version ".tar.gz"))
2225 (sha256
2226 (base32
2227 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2228 (build-system emacs-build-system)
2229 (home-page "https://github.com/cask/shut-up")
2230 (synopsis "Silence Emacs")
2231 (description "This package silences most output of Emacs when running an
2232 Emacs shell script.")
2233 (license license:expat)))
2234
2235 (define-public emacs-undercover
2236 (package
2237 (name "emacs-undercover")
2238 (version "0.6.0")
2239 (source
2240 (origin
2241 (method url-fetch)
2242 (uri (string-append "https://github.com/sviridov/undercover.el/"
2243 "archive/v" version ".tar.gz"))
2244 (file-name (string-append name "-" version ".tar.gz"))
2245 (sha256
2246 (base32
2247 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2248 (build-system emacs-build-system)
2249 (propagated-inputs
2250 `(("emacs-dash" ,emacs-dash)
2251 ("emacs-shut-up" ,emacs-shut-up)))
2252 (home-page "https://github.com/sviridov/undercover.el")
2253 (synopsis "Test coverage library for Emacs Lisp")
2254 (description
2255 "Undercover is a test coverage library for software written in Emacs
2256 Lisp.")
2257 (license license:expat)))
2258
2259 (define-public emacs-paren-face
2260 (package
2261 (name "emacs-paren-face")
2262 (version "1.0.0")
2263 (source
2264 (origin
2265 (method url-fetch)
2266 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2267 version ".tar.gz"))
2268 (file-name (string-append name "-" version ".tar.gz"))
2269 (sha256
2270 (base32
2271 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2272 (build-system emacs-build-system)
2273 (home-page "https://github.com/tarsius/paren-face")
2274 (synopsis "Face for parentheses in lisp modes")
2275 (description
2276 "This library defines a face named @code{parenthesis} used just for
2277 parentheses. The intended purpose of this face is to make parentheses less
2278 visible in Lisp code by dimming them. Lispers probably don't need to be
2279 constantly made aware of the existence of the parentheses. Dimming them might
2280 be even more useful for people new to lisp who have not yet learned to
2281 subconsciously blend out the parentheses.")
2282 (license license:gpl3+)))
2283
2284 (define-public emacs-page-break-lines
2285 (package
2286 (name "emacs-page-break-lines")
2287 (version "0.11")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "https://github.com/purcell/page-break-lines/"
2292 "archive/" version ".tar.gz"))
2293 (file-name (string-append name "-" version ".tar.gz"))
2294 (sha256
2295 (base32
2296 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2297 (build-system emacs-build-system)
2298 (home-page "https://github.com/purcell/page-break-lines")
2299 (synopsis "Display page breaks as tidy horizontal lines")
2300 (description
2301 "This library provides a global mode which displays form feed characters
2302 as horizontal rules.")
2303 (license license:gpl3+)))
2304
2305 (define-public emacs-simple-httpd
2306 (package
2307 (name "emacs-simple-httpd")
2308 (version "1.4.6")
2309 (source
2310 (origin
2311 (method url-fetch)
2312 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2313 "archive/" version ".tar.gz"))
2314 (file-name (string-append name "-" version ".tar.gz"))
2315 (sha256
2316 (base32
2317 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2318 (build-system emacs-build-system)
2319 (home-page "https://github.com/skeeto/emacs-http-server")
2320 (synopsis "HTTP server in pure Emacs Lisp")
2321 (description
2322 "This package provides a simple HTTP server written in Emacs Lisp to
2323 serve files and directory listings.")
2324 (license license:unlicense)))
2325
2326 (define-public emacs-skewer-mode
2327 (package
2328 (name "emacs-skewer-mode")
2329 (version "1.6.2")
2330 (source
2331 (origin
2332 (method url-fetch)
2333 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2334 version ".tar.gz"))
2335 (file-name (string-append name "-" version ".tar.gz"))
2336 (sha256
2337 (base32
2338 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2339 (build-system emacs-build-system)
2340 (propagated-inputs
2341 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2342 ("emacs-js2-mode" ,emacs-js2-mode)))
2343 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2344 (home-page "https://github.com/skeeto/skewer-mode")
2345 (synopsis "Live web development in Emacs")
2346 (description
2347 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2348 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2349 evaluated in the browser, just like Emacs does with an inferior Lisp process
2350 in Lisp modes.")
2351 (license license:unlicense)))
2352
2353 (define-public emacs-string-inflection
2354 (package
2355 (name "emacs-string-inflection")
2356 (version "1.0.6")
2357 (source (origin
2358 (method git-fetch)
2359 (uri (git-reference
2360 (url "https://github.com/akicho8/string-inflection")
2361 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2362 (file-name (string-append name "-" version "-checkout"))
2363 (sha256
2364 (base32
2365 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2366 (build-system emacs-build-system)
2367 (native-inputs
2368 `(("ert-runner" ,emacs-ert-runner)))
2369 (arguments
2370 `(#:tests? #t
2371 #:test-command '("ert-runner")))
2372 (home-page "https://github.com/akicho8/string-inflection")
2373 (synopsis "Convert symbol names between different naming conventions")
2374 (description
2375 "This Emacs package provides convenient methods for manipulating the
2376 naming style of a symbol. It supports different naming conventions such as:
2377
2378 @enumerate
2379 @item camel case
2380 @item Pascal case
2381 @item all upper case
2382 @item lower case separated by underscore
2383 @item etc...
2384 @end enumerate\n")
2385 (license license:gpl2+)))
2386
2387 (define-public emacs-stripe-buffer
2388 (package
2389 (name "emacs-stripe-buffer")
2390 (version "0.2.5")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2395 "archive/" version ".tar.gz"))
2396 (file-name (string-append name "-" version ".tar.gz"))
2397 (sha256
2398 (base32
2399 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2400 (build-system emacs-build-system)
2401 (home-page "https://github.com/sabof/stripe-buffer/")
2402 (synopsis "Add stripes to list buffers")
2403 (description
2404 "This Emacs package adds faces to add stripes to list buffers and org
2405 tables.")
2406 (license license:gpl2+)))
2407
2408 (define-public emacs-rich-minority
2409 (package
2410 (name "emacs-rich-minority")
2411 (version "1.0.1")
2412 (source
2413 (origin
2414 (method url-fetch)
2415 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2416 "archive/" version ".tar.gz"))
2417 (file-name (string-append name "-" version ".tar.gz"))
2418 (sha256
2419 (base32
2420 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2421 (build-system emacs-build-system)
2422 (home-page "https://github.com/Malabarba/rich-minority")
2423 (synopsis "Clean-up and beautify the list of minor modes")
2424 (description
2425 "This Emacs package hides and/or highlights minor modes in the
2426 mode-line.")
2427 (license license:gpl2+)))
2428
2429 (define-public emacs-robe
2430 (package
2431 (name "emacs-robe")
2432 (version "0.8.1")
2433 (source
2434 (origin
2435 (method url-fetch)
2436 (uri (string-append "https://github.com/dgutov/robe/"
2437 "archive/" version ".tar.gz"))
2438 (file-name (string-append name "-" version ".tar.gz"))
2439 (sha256
2440 (base32
2441 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2442 (build-system emacs-build-system)
2443 (arguments
2444 '(#:include (cons "^lib\\/" %default-include)))
2445 (propagated-inputs
2446 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2447 (home-page "https://github.com/dgutov/robe")
2448 (synopsis "Ruby code assistance tool for Emacs")
2449 (description
2450 "Robe can provide information on loaded classes and modules in Ruby code,
2451 as well as where methods are defined. This allows the user to jump to method
2452 definitions, modules and classes, display method documentation and provide
2453 method and constant name completion.")
2454 (license license:gpl3+)))
2455
2456 (define-public emacs-rspec
2457 (package
2458 (name "emacs-rspec")
2459 (version "1.11")
2460 (source
2461 (origin
2462 (method url-fetch)
2463 (uri (string-append "https://github.com/pezra/rspec-mode/"
2464 "archive/v" version ".tar.gz"))
2465 (file-name (string-append name "-" version ".tar.gz"))
2466 (sha256
2467 (base32
2468 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2469 (build-system emacs-build-system)
2470 (home-page "https://github.com/pezra/rspec-mode")
2471 (synopsis "Provides a rspec mode for working with RSpec")
2472 (description
2473 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2474 verify the spec associated with the current buffer, or entire project, as well
2475 as moving between the spec files, and coresponding code files.
2476
2477 Also included are keybindings for spec files and Dired buffers, as well as
2478 snippets for yasnippet.")
2479 (license license:gpl3+)))
2480
2481 (define-public emacs-smart-mode-line
2482 (package
2483 (name "emacs-smart-mode-line")
2484 (version "2.12.0")
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2489 "archive/" version ".tar.gz"))
2490 (file-name (string-append name "-" version ".tar.gz"))
2491 (sha256
2492 (base32
2493 "1hn8s6laijmg7w1bgwdfrki6h9vxkbgr8rmmssvd5yqyad5w2sba"))))
2494 (build-system emacs-build-system)
2495 (propagated-inputs
2496 `(("emacs-rich-minority" ,emacs-rich-minority)))
2497 (home-page "https://github.com/Malabarba/smart-mode-line")
2498 (synopsis "Color-coded smart mode-line")
2499 (description
2500 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2501 read from small to large monitors by using colors, a prefix feature, and smart
2502 truncation.")
2503 (license license:gpl2+)))
2504
2505 (define-public emacs-sr-speedbar
2506 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2507 (revision "0"))
2508 (package
2509 (name "emacs-sr-speedbar")
2510 (version (git-version "20161025" revision commit))
2511 (source
2512 (origin
2513 (method git-fetch)
2514 (uri (git-reference
2515 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2516 (commit commit)))
2517 (file-name (git-file-name name version))
2518 (sha256
2519 (base32
2520 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2521 (build-system emacs-build-system)
2522 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2523 (synopsis "Same frame Emacs @code{speedbar}")
2524 (description
2525 "This Emacs package allows you to show @code{M-x speedbar} in the
2526 same frame (in an extra window). You can customize the initial width of
2527 the speedbar window.")
2528 (license license:gpl3+))))
2529
2530 (define-public emacs-shell-switcher
2531 (package
2532 (name "emacs-shell-switcher")
2533 (version "1.0.1")
2534 (source
2535 (origin
2536 (method url-fetch)
2537 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2538 "/archive/v" version ".tar.gz"))
2539 (file-name (string-append name "-" version ".tar.gz"))
2540 (sha256
2541 (base32
2542 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2543 (build-system emacs-build-system)
2544 (home-page "https://github.com/DamienCassou/shell-switcher")
2545 (synopsis "Provide fast switching between shell buffers")
2546 (description
2547 "This package provides commands to quickly switch between shell buffers.")
2548 (license license:gpl3+)))
2549
2550 (define-public emacs-ob-ipython
2551 (package
2552 (name "emacs-ob-ipython")
2553 (version "20150704.8807064693")
2554 (source (origin
2555 (method git-fetch)
2556 (uri (git-reference
2557 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2558 (url "https://github.com/gregsexton/ob-ipython.git")))
2559 (file-name (string-append name "-" version "-checkout"))
2560 (sha256
2561 (base32
2562 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2563 (build-system emacs-build-system)
2564 (propagated-inputs
2565 `(("emacs-f" ,emacs-f)))
2566 (home-page "http://www.gregsexton.org")
2567 (synopsis "Org-Babel functions for IPython evaluation")
2568 (description "This package adds support to Org-Babel for evaluating Python
2569 source code using IPython.")
2570 (license license:gpl3+)))
2571
2572 (define-public emacs-debbugs
2573 (package
2574 (name "emacs-debbugs")
2575 (version "0.16")
2576 (source (origin
2577 (method url-fetch)
2578 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2579 version ".tar"))
2580 (sha256
2581 (base32
2582 "0y3bq803c7820h15g66d1648skxfhlfa2v6vincj6xk5ssp44s9p"))))
2583 (build-system emacs-build-system)
2584 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2585 (propagated-inputs
2586 `(("emacs-async" ,emacs-async)))
2587 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2588 (synopsis "Access the Debbugs bug tracker in Emacs")
2589 (description
2590 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2591 Tracker} from within Emacs.
2592
2593 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2594 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2595 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2596 @code{M-x debbugs-org} and related commands.
2597
2598 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2599 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2600 (license license:gpl3+)))
2601
2602 (define-public emacs-ert-expectations
2603 (package
2604 (name "emacs-ert-expectations")
2605 (version "0.2")
2606 (source
2607 (origin
2608 (method url-fetch)
2609 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2610 (sha256
2611 (base32
2612 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2613 (build-system emacs-build-system)
2614 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2615 (synopsis "Simple unit test framework for Emacs Lisp")
2616 (description "@code{emacs-ert-expectations} is a simple unit test
2617 framework for Emacs Lisp to be used with @code{ert}.")
2618 (license license:gpl3+)))
2619
2620 (define-public emacs-deferred
2621 (package
2622 (name "emacs-deferred")
2623 (version "0.5.1")
2624 (home-page "https://github.com/kiwanami/emacs-deferred")
2625 (source (origin
2626 (method git-fetch)
2627 (uri (git-reference
2628 (url home-page)
2629 (commit (string-append "v" version))))
2630 (sha256
2631 (base32
2632 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2633 (file-name (string-append name "-" version))))
2634 (build-system emacs-build-system)
2635 (arguments
2636 `(#:phases
2637 (modify-phases %standard-phases
2638 (add-after 'unpack 'set-shell
2639 ;; Setting the SHELL environment variable is required for the tests
2640 ;; to find sh.
2641 (lambda _
2642 (setenv "SHELL" (which "sh"))
2643 #t))
2644 (add-before 'check 'fix-makefile
2645 (lambda _
2646 (substitute* "Makefile"
2647 (("\\$\\(CASK\\) exec ") ""))
2648 #t)))
2649 #:tests? #t
2650 #:test-command '("make" "test")))
2651 (native-inputs
2652 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2653 ("emacs-undercover" ,emacs-undercover)
2654 ("ert-runner" ,emacs-ert-runner)))
2655 (synopsis "Simple asynchronous functions for Emacs Lisp")
2656 (description
2657 "The @code{deferred.el} library provides support for asynchronous tasks.
2658 The API is almost the same as that of
2659 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2660 for asynchronous tasks.")
2661 (license license:gpl3+)))
2662
2663 (define-public emacs-butler
2664 (package
2665 (name "emacs-butler")
2666 (version "0.2.4")
2667 (home-page "https://github.com/AshtonKem/Butler")
2668 (source (origin
2669 (method git-fetch)
2670 (uri (git-reference
2671 (url home-page)
2672 (commit version)))
2673 (sha256
2674 (base32
2675 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2676 (file-name (string-append name "-" version))))
2677 (build-system emacs-build-system)
2678 (propagated-inputs
2679 `(("emacs-deferred" ,emacs-deferred)))
2680 (synopsis "Emacs client for Jenkins")
2681 (description
2682 "Butler provides an interface to connect to Jenkins continuous
2683 integration servers. Users can specify a list of server in the
2684 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2685 view the build status of those servers' build jobs, and possibly to trigger
2686 build jobs.")
2687 (license license:gpl3+)))
2688
2689 (define-public emacs-company
2690 (package
2691 (name "emacs-company")
2692 (version "0.9.7")
2693 (source
2694 (origin
2695 (method url-fetch)
2696 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2697 version ".tar.gz"))
2698 (file-name (string-append name "-" version ".tar.gz"))
2699 (sha256
2700 (base32
2701 "19flv38f2qhxda8lbk2ckywvibd72vbzmn4hchqz6d8acsknh4sb"))))
2702 (build-system emacs-build-system)
2703 (arguments
2704 `(#:phases
2705 (modify-phases %standard-phases
2706 (add-before 'check 'fix-bin-dir
2707 (lambda _
2708 ;; The company-files-candidates-normal-root test looks
2709 ;; for the /bin directory, but the build environment has
2710 ;; no /bin directory. Modify the test to look for the
2711 ;; /tmp directory.
2712 (substitute* "test/files-tests.el"
2713 (("/bin/") "/tmp/"))
2714 #t)))
2715 #:tests? #t
2716 #:test-command '("make" "test-batch")))
2717 (home-page "http://company-mode.github.io/")
2718 (synopsis "Modular text completion framework")
2719 (description
2720 "Company is a modular completion mechanism. Modules for retrieving
2721 completion candidates are called back-ends, modules for displaying them are
2722 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2723 These are distributed in separate files and can be used individually.")
2724 (license license:gpl3+)))
2725
2726 (define-public emacs-irony-mode
2727 (package
2728 (name "emacs-irony-mode")
2729 (version "1.2.0")
2730 (home-page "https://github.com/Sarcasm/irony-mode")
2731 (source (origin
2732 (method git-fetch)
2733 (uri (git-reference
2734 (url (string-append home-page ".git"))
2735 (commit (string-append "v" version))))
2736 (sha256
2737 (base32
2738 "0nhjrnlmss535jbshjjd30vydbr8py21vkx4p294w6d8vg2rssf8"))
2739 (file-name (string-append name "-" version ".tar.gz"))))
2740 (build-system emacs-build-system)
2741 (inputs `(("server" ,emacs-irony-mode-server)))
2742 (arguments `(#:phases
2743 (modify-phases %standard-phases
2744 (add-after 'unpack 'configure
2745 (lambda* (#:key inputs #:allow-other-keys)
2746 (chmod "irony.el" #o644)
2747 (emacs-substitute-variables "irony.el"
2748 ("irony-server-install-prefix"
2749 (assoc-ref inputs "server")))
2750 #t)))))
2751 (synopsis "C/C++/ObjC Code completion and syntax checks for Emacs")
2752 (description "Irony-mode provides Clang-assisted syntax checking and
2753 completion for C, C++, and ObjC in GNU Emacs. Using @code{libclang} it can
2754 provide syntax checking and autocompletion on compiler level which is very
2755 resistent against false positives. It also integrates well with other
2756 packages like @code{eldoc-mode} and especially @code{company-mode} as
2757 described on the homepage.")
2758 (license license:gpl3+)))
2759
2760 (define-public emacs-irony-mode-server
2761 (package (inherit emacs-irony-mode)
2762 (name "emacs-irony-mode-server")
2763 (inputs
2764 `(("clang" ,clang)))
2765 (arguments
2766 `(#:phases
2767 (modify-phases %standard-phases
2768 (replace 'configure
2769 (lambda* (#:key outputs #:allow-other-keys)
2770 (let ((out (assoc-ref outputs "out")))
2771 (invoke "cmake"
2772 "server"
2773 (string-append "-DCMAKE_INSTALL_PREFIX=" out)) #t))))))
2774 (build-system cmake-build-system)
2775 (synopsis "Server for the Emacs @dfn{irony mode}")))
2776
2777 (define-public emacs-company-irony
2778 (package
2779 (name "emacs-company-irony")
2780 (version "1.1.0")
2781 (source (origin
2782 (method git-fetch)
2783 (uri (git-reference
2784 (url "https://github.com/Sarcasm/company-irony.git")
2785 (commit (string-append "v" version))))
2786 (sha256 (base32
2787 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
2788 (file-name (git-file-name name version))))
2789 (build-system emacs-build-system)
2790 (inputs
2791 `(("emacs-irony-mode" ,emacs-irony-mode)
2792 ("emacs-company" ,emacs-company)))
2793 (synopsis "C++ completion backend for Company using irony-mode")
2794 (description "This backend for company-mode allows for C++ code completion
2795 with irony-mode using clang-tooling.")
2796 (home-page "https://github.com/Sarcasm/company-irony")
2797 (license license:gpl3+)))
2798
2799 (define-public emacs-flycheck-irony
2800 (package
2801 (name "emacs-flycheck-irony")
2802 (version "0.1.0")
2803 (source (origin
2804 (method git-fetch)
2805 (uri (git-reference
2806 (url "https://github.com/Sarcasm/flycheck-irony.git")
2807 (commit (string-append "v" version))))
2808 (sha256
2809 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))
2810 (file-name (string-append name "-" version))))
2811 (build-system emacs-build-system)
2812 (inputs
2813 `(("irony-mode" ,emacs-irony-mode)
2814 ("flycheck-mode" ,emacs-flycheck)
2815 ("emacs-company" ,emacs-company)))
2816 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2817 (description "This package provides a frontend for Flycheck that lets
2818 irony-mode do the syntax checking.")
2819 (home-page "https://github.com/Sarcasm/flycheck-irony")
2820 (license license:gpl3+)))
2821
2822 (define-public emacs-irony-eldoc
2823 (package
2824 (name "emacs-irony-eldoc")
2825 (version (package-version emacs-irony-mode))
2826 (source
2827 (origin
2828 (method git-fetch)
2829 (uri (git-reference
2830 (url "https://github.com/ikirill/irony-eldoc.git")
2831 (commit "0df5831eaae264a25422b061eb2792aadde8b3f2")))
2832 (sha256 (base32 "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"))
2833 (file-name (string-append name "-" version))))
2834 (build-system emacs-build-system)
2835 (inputs
2836 `(("irony-mode" ,emacs-irony-mode)))
2837 (synopsis "Eldoc integration for irony-mode")
2838 (description "Irony-eldoc is an eldoc extension that shows documentation
2839 for the current function or variable in the minibuffer.")
2840 (home-page "https://github.com/ikirill/irony-eldoc")
2841 (license license:gpl3+)))
2842
2843 (define-public emacs-company-quickhelp
2844 (package
2845 (name "emacs-company-quickhelp")
2846 (version "2.3.0")
2847 (source
2848 (origin
2849 (method url-fetch)
2850 (uri (string-append
2851 "https://github.com/expez/company-quickhelp/archive/"
2852 version ".tar.gz"))
2853 (file-name (string-append name "-" version ".tar.gz"))
2854 (sha256
2855 (base32
2856 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2857 (build-system emacs-build-system)
2858 (propagated-inputs
2859 `(("emacs-pos-tip" ,emacs-pos-tip)
2860 ("emacs-company" ,emacs-company)))
2861 (home-page "https://github.com/expez/company-quickhelp")
2862 (synopsis "Popup documentation for completion candidates")
2863 (description "@code{company-quickhelp} shows documentation for the
2864 completion candidate when using the Company text completion framework.")
2865 (license license:gpl3+)))
2866
2867 (define-public emacs-multiple-cursors
2868 (package
2869 (name "emacs-multiple-cursors")
2870 (version "1.4.0")
2871 (source
2872 (origin
2873 (method url-fetch)
2874 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2875 "archive/" version ".tar.gz"))
2876 (file-name (string-append name "-" version ".tar.gz"))
2877 (sha256
2878 (base32
2879 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2880 (build-system emacs-build-system)
2881 (home-page "https://github.com/magnars/multiple-cursors.el")
2882 (synopsis "Multiple cursors for Emacs")
2883 (description
2884 "This package adds support to Emacs for editing text with multiple
2885 simultaneous cursors.")
2886 (license license:gpl3+)))
2887
2888 (define-public emacs-typo
2889 (package
2890 (name "emacs-typo")
2891 (version "1.1")
2892 (home-page "https://github.com/jorgenschaefer/typoel")
2893 (source (origin
2894 (method git-fetch)
2895 (uri (git-reference
2896 (url home-page)
2897 (commit (string-append "v" version))))
2898 (sha256
2899 (base32
2900 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2901 (file-name (string-append name "-" version))))
2902 (build-system emacs-build-system)
2903 (synopsis "Minor mode for typographic editing")
2904 (description
2905 "This package provides two Emacs modes, @code{typo-mode} and
2906 @code{typo-global-mode}. These modes automatically insert Unicode characters
2907 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2908 automatically inserts a Unicode opening or closing quotation mark, depending
2909 on context.")
2910 (license license:gpl3+)))
2911
2912 (define-public emacs-scheme-complete
2913 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2914 (package
2915 (name "emacs-scheme-complete")
2916 (version (string-append "20151223." (string-take commit 8)))
2917 (source
2918 (origin
2919 (file-name (string-append name "-" version))
2920 (method git-fetch)
2921 (uri (git-reference
2922 (url "https://github.com/ashinn/scheme-complete.git")
2923 (commit commit)))
2924 (sha256
2925 (base32
2926 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2927 (patches
2928 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2929 (build-system emacs-build-system)
2930 (home-page "https://github.com/ashinn/scheme-complete")
2931 (synopsis "Smart tab completion for Scheme in Emacs")
2932 (description
2933 "This file provides a single function, @code{scheme-smart-complete},
2934 which you can use for intelligent, context-sensitive completion for any Scheme
2935 implementation in Emacs. To use it just load this file and bind that function
2936 to a key in your preferred mode.")
2937 (license license:public-domain))))
2938
2939 (define-public emacs-scel
2940 (let ((version "20170629")
2941 (revision "1")
2942 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
2943 (package
2944 (name "emacs-scel")
2945 (version (git-version version revision commit))
2946 (source
2947 (origin
2948 (method git-fetch)
2949 (uri (git-reference
2950 (url "https://github.com/supercollider/scel.git")
2951 (commit commit)))
2952 (file-name (string-append name "-" version "-checkout"))
2953 (sha256
2954 (base32
2955 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
2956 (build-system emacs-build-system)
2957 (arguments
2958 `(#:modules ((guix build emacs-build-system)
2959 ((guix build cmake-build-system) #:prefix cmake:)
2960 (guix build utils))
2961 #:imported-modules (,@%emacs-build-system-modules
2962 (guix build cmake-build-system))
2963 #:phases
2964 (modify-phases %standard-phases
2965 (add-after 'unpack 'configure
2966 (lambda* (#:key outputs #:allow-other-keys)
2967 (substitute* "el/CMakeLists.txt"
2968 (("share/emacs/site-lisp/SuperCollider")
2969 (string-append
2970 "share/emacs/site-lisp/guix.d/scel-" ,version)))
2971 ((assoc-ref cmake:%standard-phases 'configure)
2972 #:outputs outputs
2973 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
2974 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
2975 (lambda _
2976 (setenv "EMACSLOADPATH"
2977 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
2978 #t))
2979 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
2980 (inputs
2981 `(("supercollider" ,supercollider)))
2982 (native-inputs
2983 `(("cmake" ,cmake)))
2984 (home-page "https://github.com/supercollider/scel")
2985 (synopsis "SuperCollider Emacs interface")
2986 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
2987 SuperCollider is a platform for audio synthesis and algorithmic composition.")
2988 (license license:gpl2+))))
2989
2990 (define-public emacs-mit-scheme-doc
2991 (package
2992 (name "emacs-mit-scheme-doc")
2993 (version "20140203")
2994 (source
2995 (origin
2996 (modules '((guix build utils)))
2997 (snippet
2998 ;; keep only file of interest
2999 '(begin
3000 (for-each delete-file '("dot-emacs.el" "Makefile"))
3001 (install-file "6.945-config/mit-scheme-doc.el" ".")
3002 (delete-file-recursively "6.945-config")
3003 #t))
3004 (file-name (string-append name "-" version ".tar.bz2"))
3005 (method url-fetch)
3006 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
3007 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
3008 (sha256
3009 (base32
3010 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
3011 (build-system emacs-build-system)
3012 (inputs `(("mit-scheme" ,mit-scheme)))
3013 (arguments
3014 `(#:phases
3015 (modify-phases %standard-phases
3016 (add-after 'unpack 'configure-doc
3017 (lambda* (#:key inputs #:allow-other-keys)
3018 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
3019 (doc-dir (string-append mit-scheme-dir "/share/doc/"
3020 "mit-scheme-"
3021 ,(package-version mit-scheme))))
3022 (substitute* "mit-scheme-doc.el"
3023 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
3024 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
3025 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
3026 (synopsis "MIT-Scheme documentation lookup for Emacs")
3027 (description
3028 "This package provides a set of Emacs functions to search definitions of
3029 identifiers in the MIT-Scheme documentation.")
3030 (license license:gpl2+)))
3031
3032 (define-public emacs-constants
3033 (package
3034 (name "emacs-constants")
3035 (version "2.6")
3036 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
3037 (source
3038 (origin
3039 (file-name (string-append name "-" version ".tar.gz"))
3040 (method url-fetch)
3041 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
3042 "/archive/v" version ".tar.gz"))
3043 (sha256
3044 (base32
3045 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
3046 (build-system emacs-build-system)
3047 (synopsis "Enter definition of constants into an Emacs buffer")
3048 (description
3049 "This package provides functions for inserting the definition of natural
3050 constants and units into an Emacs buffer.")
3051 (license license:gpl2+)))
3052
3053 (define-public emacs-tagedit
3054 (package
3055 (name "emacs-tagedit")
3056 (version "1.4.0")
3057 (source
3058 (origin
3059 (method url-fetch)
3060 (uri (string-append "https://github.com/magnars/tagedit/"
3061 "archive/" version ".tar.gz"))
3062 (file-name (string-append name "-" version ".tar.gz"))
3063 (sha256
3064 (base32
3065 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
3066 (build-system emacs-build-system)
3067 (propagated-inputs
3068 `(("emacs-s" ,emacs-s)
3069 ("emacs-dash" ,emacs-dash)))
3070 (home-page "https://github.com/magnars/tagedit")
3071 (synopsis "Some paredit-like features for html-mode")
3072 (description
3073 "This package provides a collection of paredit-like functions for editing
3074 in @code{html-mode}.")
3075 (license license:gpl3+)))
3076
3077 (define-public emacs-slime
3078 (package
3079 (name "emacs-slime")
3080 (version "2.23")
3081 (source
3082 (origin
3083 (file-name (string-append name "-" version ".tar.gz"))
3084 (method url-fetch)
3085 (uri (string-append
3086 "https://github.com/slime/slime/archive/v"
3087 version ".tar.gz"))
3088 (sha256
3089 (base32
3090 "01gkrqfpifcx1vipwrbhns2r4s8izp3z1w4p41azc943s1a2d5nc"))))
3091 (build-system emacs-build-system)
3092 (native-inputs
3093 `(("texinfo" ,texinfo)))
3094 (arguments
3095 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
3096 #:exclude '("^slime-tests.el" "^contrib/test/"
3097 "^contrib/Makefile$" "^contrib/README.md$")
3098 #:phases
3099 (modify-phases %standard-phases
3100 (add-before 'install 'configure
3101 (lambda* _
3102 (emacs-substitute-variables "slime.el"
3103 ("inferior-lisp-program" "sbcl"))
3104 #t))
3105 (add-before 'install 'install-doc
3106 (lambda* (#:key outputs #:allow-other-keys)
3107 (let* ((out (assoc-ref outputs "out"))
3108 (info-dir (string-append out "/share/info"))
3109 (doc-dir (string-append out "/share/doc/"
3110 ,name "-" ,version))
3111 (doc-files '("doc/slime-refcard.pdf"
3112 "README.md" "NEWS" "PROBLEMS"
3113 "CONTRIBUTING.md")))
3114 (with-directory-excursion "doc"
3115 (substitute* "Makefile"
3116 (("infodir=/usr/local/info")
3117 (string-append "infodir=" info-dir)))
3118 (invoke "make" "html/index.html")
3119 (invoke "make" "slime.info")
3120 (install-file "slime.info" info-dir)
3121 (copy-recursively "html" (string-append doc-dir "/html")))
3122 (for-each (lambda (f)
3123 (install-file f doc-dir)
3124 (delete-file f))
3125 doc-files)
3126 (delete-file-recursively "doc")
3127 #t))))))
3128 (home-page "https://github.com/slime/slime")
3129 (synopsis "Superior Lisp Interaction Mode for Emacs")
3130 (description
3131 "SLIME extends Emacs with support for interactive programming in
3132 Common Lisp. The features are centered around @command{slime-mode},
3133 an Emacs minor mode that complements the standard @command{lisp-mode}.
3134 While lisp-mode supports editing Lisp source files, @command{slime-mode}
3135 adds support for interacting with a running Common Lisp process
3136 for compilation, debugging, documentation lookup, and so on.")
3137 (license (list license:gpl2+ license:public-domain))))
3138
3139 (define-public emacs-popup
3140 (package
3141 (name "emacs-popup")
3142 (version "0.5.3")
3143 (source (origin
3144 (method url-fetch)
3145 (uri (string-append
3146 "https://github.com/auto-complete/popup-el/archive/v"
3147 version ".tar.gz"))
3148 (file-name (string-append name "-" version ".tar.gz"))
3149 (sha256
3150 (base32
3151 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
3152 (build-system emacs-build-system)
3153 (home-page "https://github.com/auto-complete/popup-el")
3154 (synopsis "Visual Popup User Interface for Emacs")
3155 (description
3156 "Popup.el is a visual popup user interface library for Emacs.
3157 This provides a basic API and common UI widgets such as popup tooltips
3158 and popup menus.")
3159 (license license:gpl3+)))
3160
3161 (define-public emacs-puppet-mode
3162 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3163 (revision "1"))
3164 (package
3165 (name "emacs-puppet-mode")
3166 ;; The last release, 0.3 was several years ago, and there have been many
3167 ;; commits since
3168 (version (git-version "0.3" revision commit))
3169 (source
3170 (origin
3171 (method url-fetch)
3172 (uri (string-append
3173 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3174 commit "/puppet-mode.el"))
3175 (sha256
3176 (base32
3177 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3178 (build-system emacs-build-system)
3179 (home-page "https://github.com/voxpupuli/puppet-mode")
3180 (synopsis "Emacs major mode for the Puppet configuration language")
3181 (description
3182 "This package provides support for the Puppet configuration language,
3183 including syntax highlighting, indentation of expressions and statements,
3184 linting of manifests and integration with Puppet Debugger.")
3185 ;; Also incorporates work covered by the Apache License, Version 2.0
3186 (license license:gpl3+))))
3187
3188 (define-public emacs-god-mode
3189 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3190 (revision "1"))
3191 (package
3192 (name "emacs-god-mode")
3193 (version (string-append "20151005.925."
3194 revision "-" (string-take commit 9)))
3195 (source
3196 (origin
3197 (method git-fetch)
3198 (uri (git-reference
3199 (url "https://github.com/chrisdone/god-mode.git")
3200 (commit commit)))
3201 (file-name (string-append name "-" version "-checkout"))
3202 (sha256
3203 (base32
3204 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3205 (build-system emacs-build-system)
3206 (home-page "https://github.com/chrisdone/god-mode")
3207 (synopsis "Minor mode for entering commands without modifier keys")
3208 (description
3209 "This package provides a global minor mode for entering Emacs commands
3210 without modifier keys. It's similar to Vim's separation of commands and
3211 insertion mode. When enabled all keys are implicitly prefixed with
3212 @samp{C-} (among other helpful shortcuts).")
3213 (license license:gpl3+))))
3214
3215 (define-public emacs-jinja2-mode
3216 (package
3217 (name "emacs-jinja2-mode")
3218 (version "0.2")
3219 (source
3220 (origin
3221 (method url-fetch)
3222 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
3223 "archive/v" version ".tar.gz"))
3224 (file-name (string-append name "-" version ".tar.gz"))
3225 (sha256
3226 (base32
3227 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
3228 (build-system emacs-build-system)
3229 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3230 (synopsis "Major mode for jinja2")
3231 (description
3232 "Emacs major mode for jinja2 with: syntax highlighting,
3233 sgml/html integration, and indentation (working with sgml).")
3234 (license license:gpl3+)))
3235
3236 (define-public emacs-rfcview
3237 (package
3238 (name "emacs-rfcview")
3239 (version "0.13")
3240 (home-page "http://www.loveshack.ukfsn.org/emacs")
3241 (source (origin
3242 (method url-fetch)
3243 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3244 (sha256
3245 (base32
3246 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3247 (build-system emacs-build-system)
3248 (synopsis "Prettify Request for Comments (RFC) documents")
3249 (description "The Internet Engineering Task Force (IETF) and the Internet
3250 Society (ISOC) publish various Internet-related protocols and specifications
3251 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3252 documents. RFCs and STDs are published in a simple text form. This package
3253 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3254 read these documents in Emacs. It prettifies the text and adds
3255 hyperlinks/menus for easier navigation. It also provides functions for
3256 browsing the index of RFC documents and fetching them from remote servers or
3257 local directories.")
3258 (license license:gpl3+)))
3259
3260 (define-public emacs-ffap-rfc-space
3261 (package
3262 (name "emacs-ffap-rfc-space")
3263 (version "12")
3264 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3265 (source (origin
3266 (method url-fetch)
3267 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3268 (sha256
3269 (base32
3270 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3271 (build-system emacs-build-system)
3272 (synopsis "Make ffap recognize an RFC with a space before its number")
3273 (description "The Internet Engineering Task Force (IETF) and the
3274 Internet Society (ISOC) publish various Internet-related protocols and
3275 specifications as \"Request for Comments\" (RFC) documents. The
3276 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3277 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3278 and load the appropriate RFC from a remote server. However, it fails
3279 to recognize a name like \"RFC 1234\". This package enhances ffap so
3280 that it correctly finds RFCs even when a space appears before the
3281 number.")
3282 (license license:gpl3+)))
3283
3284 (define-public emacs-org-bullets
3285 (package
3286 (name "emacs-org-bullets")
3287 (version "0.2.4")
3288 (source
3289 (origin
3290 (method url-fetch)
3291 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
3292 version ".tar.gz"))
3293 (file-name (string-append name "-" version ".tar.gz"))
3294 (sha256
3295 (base32
3296 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
3297 (build-system emacs-build-system)
3298 (home-page "https://github.com/sabof/org-bullets")
3299 (synopsis "Show bullets in org-mode as UTF-8 characters")
3300 (description
3301 "This package provides an Emacs minor mode causing bullets in
3302 @code{org-mode} to be rendered as UTF-8 characters.")
3303 (license license:gpl3+)))
3304
3305 (define-public emacs-org-pomodoro
3306 (package
3307 (name "emacs-org-pomodoro")
3308 (version "2.1.0")
3309 (source
3310 (origin
3311 (method url-fetch)
3312 (uri (string-append
3313 "https://github.com/lolownia/org-pomodoro/archive/"
3314 version ".tar.gz"))
3315 (file-name (string-append name "-" version ".tar.gz"))
3316 (sha256
3317 (base32
3318 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3319 (build-system emacs-build-system)
3320 (propagated-inputs
3321 `(("emacs-alert" ,emacs-alert)))
3322 (home-page "https://github.com/lolownia/org-pomodoro")
3323 (synopsis "Pomodoro technique for org-mode")
3324 (description "@code{emacs-org-pomodoro} adds very basic support for
3325 Pomodoro technique in Emacs org-mode.
3326
3327 Run @code{M-x org-pomodoro} for the task at point or select one of the
3328 last tasks that you clocked time for. Each clocked-in pomodoro starts
3329 a timer of 25 minutes and after each pomodoro a break timer of 5
3330 minutes is started automatically. Every 4 breaks a long break is
3331 started with 20 minutes. All values are customizable.")
3332 (license license:gpl3+)))
3333
3334 (define-public emacs-org-trello
3335 (package
3336 (name "emacs-org-trello")
3337 (version "0.8.0")
3338 (source (origin
3339 (method url-fetch)
3340 (uri (string-append
3341 "https://github.com/org-trello/org-trello/archive/"
3342 version ".tar.gz"))
3343 (file-name (string-append name "-" version ".tar.gz"))
3344 (sha256
3345 (base32
3346 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
3347 (build-system emacs-build-system)
3348 (propagated-inputs
3349 `(("emacs-dash" ,emacs-dash)
3350 ("emacs-deferred" ,emacs-deferred)
3351 ("emacs-f" ,emacs-f)
3352 ("emacs-helm" ,emacs-helm)
3353 ("emacs-request" ,emacs-request)
3354 ("emacs-s" ,emacs-s)))
3355 (home-page "https://org-trello.github.io")
3356 (synopsis "Emacs minor mode for interacting with Trello")
3357 (description "This package provides an Emacs minor mode to extend
3358 @code{org-mode} with Trello abilities. Trello is an online project
3359 organizer.")
3360 (license license:gpl3+)))
3361
3362 (define-public emacs-atom-one-dark-theme
3363 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3364 (revision "0"))
3365 (package
3366 (name "emacs-atom-one-dark-theme")
3367 (version (git-version "0.4.0" revision commit))
3368 (source (origin
3369 (method git-fetch)
3370 (uri (git-reference
3371 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3372 (commit commit)))
3373 (sha256
3374 (base32
3375 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3376 (file-name (git-file-name name version))))
3377 (build-system emacs-build-system)
3378 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3379 (synopsis "Atom One Dark color theme for Emacs")
3380 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3381 (license license:gpl3+))))
3382
3383 (define-public emacs-zenburn-theme
3384 (package
3385 (name "emacs-zenburn-theme")
3386 (version "2.6")
3387 (source (origin
3388 (method url-fetch)
3389 (uri (string-append
3390 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3391 version ".tar.gz"))
3392 (file-name (string-append name "-" version ".tar.gz"))
3393 (sha256
3394 (base32
3395 "0qc9d1rwq55yzh8shbppyd6izy1grpyr8kqh5zdgm7c5jccngpr4"))))
3396 (build-system emacs-build-system)
3397 (home-page "https://github.com/bbatsov/zenburn-emacs")
3398 (synopsis "Low contrast color theme for Emacs")
3399 (description
3400 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3401 It is built on top of the custom theme support in Emacs 24 or later.")
3402 (license license:gpl3+)))
3403
3404 (define-public emacs-solarized-theme
3405 (package
3406 (name "emacs-solarized-theme")
3407 (version "1.2.2")
3408 (source (origin
3409 (method url-fetch)
3410 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3411 "archive/v" version ".tar.gz"))
3412 (file-name (string-append name "-" version ".tar.gz"))
3413 (sha256
3414 (base32
3415 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3416 (build-system emacs-build-system)
3417 (propagated-inputs
3418 `(("emacs-dash" ,emacs-dash)))
3419 (home-page "https://github.com/bbatsov/solarized-emacs")
3420 (synopsis "Port of the Solarized theme for Emacs")
3421 (description
3422 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3423 package provides a light and a dark variant.")
3424 (license license:gpl3+)))
3425
3426 (define-public emacs-ahungry-theme
3427 (package
3428 (name "emacs-ahungry-theme")
3429 (version "1.10.0")
3430 (source
3431 (origin (method url-fetch)
3432 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3433 version ".tar"))
3434 (sha256
3435 (base32
3436 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3437 (build-system emacs-build-system)
3438 (home-page "https://github.com/ahungry/color-theme-ahungry")
3439 (synopsis "Ahungry color theme for Emacs")
3440 (description "Ahungry theme for Emacs provides bright and bold colors.
3441 If you load it from a terminal, you will be able to make use of the
3442 transparent background. If you load it from a GUI, it will default to a
3443 dark background.")
3444 (license license:gpl3+)))
3445
3446 (define-public emacs-2048-game
3447 (package
3448 (name "emacs-2048-game")
3449 (version "20151026.1233")
3450 (source
3451 (origin
3452 (method url-fetch)
3453 (uri (string-append "https://melpa.org/packages/2048-game-"
3454 version ".el"))
3455 (sha256
3456 (base32
3457 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3458 (build-system emacs-build-system)
3459 (home-page "https://bitbucket.org/zck/2048.el")
3460 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3461 (description
3462 "This program is an implementation of 2048 for Emacs.
3463 The goal of this game is to create a tile with value 2048. The size of the
3464 board and goal value can be customized.")
3465 (license license:gpl3+)))
3466
3467 (define-public emacs-base16-theme
3468 (package
3469 (name "emacs-base16-theme")
3470 (version "2.1")
3471 (source
3472 (origin
3473 (method url-fetch)
3474 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3475 version ".tar"))
3476 (sha256
3477 (base32
3478 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3479 (build-system emacs-build-system)
3480 (home-page "https://github.com/belak/base16-emacs")
3481 (synopsis "Base16 color themes for Emacs")
3482 (description
3483 "Base16 provides carefully chosen syntax highlighting and a default set
3484 of sixteen colors suitable for a wide range of applications. Base16 is not a
3485 single theme but a set of guidelines with numerous implementations.")
3486 (license license:expat)))
3487
3488 (define-public emacs-smartparens
3489 (package
3490 (name "emacs-smartparens")
3491 (version "1.11.0")
3492 (source (origin
3493 (method url-fetch)
3494 (uri (string-append
3495 "https://github.com/Fuco1/smartparens/archive/"
3496 version ".tar.gz"))
3497 (file-name (string-append name "-" version ".tar.gz"))
3498 (sha256
3499 (base32
3500 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3501 (build-system emacs-build-system)
3502 (propagated-inputs
3503 `(("emacs-dash" ,emacs-dash)
3504 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3505 (home-page "https://github.com/Fuco1/smartparens")
3506 (synopsis "Paredit-like insertion, wrapping and navigation with user
3507 defined pairs")
3508 (description
3509 "Smartparens is a minor mode for Emacs that deals with parens pairs
3510 and tries to be smart about it. It started as a unification effort to
3511 combine functionality of several existing packages in a single,
3512 compatible and extensible way to deal with parentheses, delimiters, tags
3513 and the like. Some of these packages include autopair, textmate,
3514 wrap-region, electric-pair-mode, paredit and others. With the basic
3515 features found in other packages it also brings many improvements as
3516 well as completely new features.")
3517 (license license:gpl3+)))
3518
3519 (define-public emacs-highlight-symbol
3520 (package
3521 (name "emacs-highlight-symbol")
3522 (version "1.3")
3523 (source (origin
3524 (method url-fetch)
3525 (uri (string-append
3526 "https://github.com/nschum/highlight-symbol.el/archive/"
3527 version ".tar.gz"))
3528 (file-name (string-append name "-" version ".tar.gz"))
3529 (sha256
3530 (base32
3531 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3532 (build-system emacs-build-system)
3533 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3534 (synopsis "Automatic and manual symbol highlighting for Emacs")
3535 (description
3536 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3537 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3538 the symbol at point highlighted.
3539
3540 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3541 @code{highlight-symbol-next-in-defun} and
3542 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3543 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3544 bindings @code{M-p} and @code{M-p} for navigation. When
3545 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3546 regardless of @code{highlight-symbol-idle-delay}.
3547
3548 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3549 (license license:gpl2+)))
3550
3551 (define-public emacs-hl-todo
3552 (package
3553 (name "emacs-hl-todo")
3554 (version "1.9.0")
3555 (source (origin
3556 (method url-fetch)
3557 (uri (string-append
3558 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3559 version "/hl-todo.el"))
3560 (file-name (string-append "hl-todo-" version ".el"))
3561 (sha256
3562 (base32
3563 "0728givzh7xv5i88ac9if8byj1p8bilrj1fnizca10s0rv100hdr"))))
3564 (build-system emacs-build-system)
3565 (home-page "https://github.com/tarsius/hl-todo")
3566 (synopsis "Emacs mode to highlight TODO and similar keywords")
3567 (description
3568 "This package provides an Emacs mode to highlight TODO and similar
3569 keywords in comments and strings. This package also provides commands for
3570 moving to the next or previous keyword and to invoke @code{occur} with a
3571 regexp that matches all known keywords.")
3572 (license license:gpl3+)))
3573
3574 (define-public emacs-perspective
3575 (package
3576 (name "emacs-perspective")
3577 (version "1.12")
3578 (source
3579 (origin
3580 (method url-fetch)
3581 (uri (string-append "https://github.com/nex3/perspective-el/"
3582 "archive/" version ".tar.gz"))
3583 (file-name (string-append name "-" version ".tar.gz"))
3584 (sha256
3585 (base32
3586 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3587 (build-system emacs-build-system)
3588 (home-page "https://github.com/nex3/perspective-el")
3589 (synopsis "Switch between named \"perspectives\"")
3590 (description
3591 "This package provides tagged workspaces in Emacs, similar to workspaces in
3592 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3593 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3594 perspective is composed of a window configuration and a set of buffers.
3595 Switching to a perspective activates its window configuration, and when in a
3596 perspective only its buffers are available by default.")
3597 ;; This package is released under the same license as Emacs (GPLv3+) or
3598 ;; the Expat license.
3599 (license license:gpl3+)))
3600
3601 (define-public emacs-test-simple
3602 (package
3603 (name "emacs-test-simple")
3604 (version "1.3.0")
3605 (source
3606 (origin
3607 (method url-fetch)
3608 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3609 version ".el"))
3610 (sha256
3611 (base32
3612 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3613 (build-system emacs-build-system)
3614 (home-page "https://github.com/rocky/emacs-test-simple")
3615 (synopsis "Simple unit test framework for Emacs Lisp")
3616 (description
3617 "Test Simple is a simple unit test framework for Emacs Lisp. It
3618 alleviates the need for context macros, enclosing specifications or required
3619 test tags. It supports both interactive and non-interactive use.")
3620 (license license:gpl3+)))
3621
3622 (define-public emacs-load-relative
3623 (package
3624 (name "emacs-load-relative")
3625 (version "1.3")
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3630 version ".el"))
3631 (sha256
3632 (base32
3633 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3634 (build-system emacs-build-system)
3635 (home-page "http://github.com/rocky/emacs-load-relative")
3636 (synopsis "Emacs Lisp relative file loading related functions")
3637 (description
3638 "Provides functions which facilitate writing multi-file Emacs packages
3639 and running from the source tree without having to \"install\" code or fiddle
3640 with @{load-path}.
3641
3642 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3643 another (presumably currently running) Emacs Lisp file.")
3644 (license license:gpl3+)))
3645
3646 (define-public emacs-loc-changes
3647 (package
3648 (name "emacs-loc-changes")
3649 (version "1.2")
3650 (source
3651 (origin
3652 (method url-fetch)
3653 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3654 version ".el"))
3655 (sha256
3656 (base32
3657 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3658 (build-system emacs-build-system)
3659 (home-page "https://github.com/rocky/emacs-loc-changes")
3660 (synopsis "Keeps track of positions even after buffer changes")
3661 (description
3662 "This Emacs package provides a mean to track important buffer positions
3663 after buffer changes.")
3664 (license license:gpl3+)))
3665
3666 (define-public emacs-realgud
3667 (package
3668 (name "emacs-realgud")
3669 (version "1.4.5")
3670 (source
3671 (origin
3672 (method url-fetch)
3673 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3674 version ".tar"))
3675 (sha256
3676 (base32
3677 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))
3678 (patches
3679 ;; Patch awaiting inclusion upstream (see:
3680 ;; https://github.com/realgud/realgud/pull/226).
3681 (search-patches "emacs-realgud-fix-configure-ac.patch"))))
3682 (build-system emacs-build-system)
3683 (arguments
3684 `(#:tests? #t
3685 #:phases
3686 (modify-phases %standard-phases
3687 (add-after 'set-emacs-load-path 'fix-autogen-script
3688 (lambda _
3689 (substitute* "autogen.sh"
3690 (("./configure") "sh configure"))))
3691 (add-after 'fix-autogen-script 'autogen
3692 (lambda _
3693 (setenv "CONFIG_SHELL" "sh")
3694 (invoke "sh" "autogen.sh")))
3695 (add-after 'fix-autogen-script 'set-home
3696 (lambda _
3697 (setenv "HOME" (getenv "TMPDIR"))))
3698 (add-before 'patch-el-files 'remove-realgud-pkg.el
3699 (lambda _
3700 ;; XXX: This file is auto-generated at some point and causes
3701 ;; substitute* to crash during the `patch-el-files' phase with:
3702 ;; ERROR: In procedure stat: No such file or directory:
3703 ;; "./realgud-pkg.el"
3704 (delete-file "./realgud-pkg.el")
3705 ;; FIXME: `patch-el-files' crashes on this file with error:
3706 ;; unable to locate "bashdb".
3707 (delete-file "./test/test-regexp-bashdb.el"))))
3708 #:include (cons* ".*\\.el$" %default-include)))
3709 (native-inputs
3710 `(("autoconf" ,autoconf)
3711 ("automake" ,automake)
3712 ("emacs-test-simple" ,emacs-test-simple)))
3713 (propagated-inputs
3714 `(("emacs-load-relative" ,emacs-load-relative)
3715 ("emacs-loc-changes" ,emacs-loc-changes)))
3716 (home-page "https://github.com/realgud/realgud/")
3717 (synopsis
3718 "Modular front-end for interacting with external debuggers")
3719 (description
3720 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3721 with external debuggers. It integrates various debuggers such as gdb, pdb,
3722 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3723 sources. Unlike GUD, it also supports running multiple debug sessions in
3724 parallel.")
3725 (license license:gpl3+)))
3726
3727 (define-public emacs-request
3728 (package
3729 (name "emacs-request")
3730 (version "0.3.0")
3731 (source (origin
3732 (method git-fetch)
3733 (uri (git-reference
3734 (url "https://github.com/tkf/emacs-request.git")
3735 (commit (string-append "v" version))))
3736 (file-name (string-append name "-" version "-checkout"))
3737 (sha256
3738 (base32
3739 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3740 (build-system emacs-build-system)
3741 (propagated-inputs
3742 `(("emacs-deferred" ,emacs-deferred)))
3743 (home-page "https://github.com/tkf/emacs-request")
3744 (synopsis "Package for speaking HTTP in Emacs Lisp")
3745 (description "This package provides a HTTP request library with multiple
3746 backends. It supports url.el which is shipped with Emacs and the curl command
3747 line program.")
3748 (license license:gpl3+)))
3749
3750 (define-public emacs-rudel
3751 (package
3752 (name "emacs-rudel")
3753 (version "0.3.1")
3754 (source
3755 (origin
3756 (method url-fetch)
3757 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3758 version ".tar"))
3759 (sha256
3760 (base32
3761 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3762 (build-system emacs-build-system)
3763 (home-page "http://rudel.sourceforge.net/")
3764 (synopsis "Collaborative editing framework")
3765 (description
3766 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3767 is to share buffers with other users in order to edit the contents of those
3768 buffers collaboratively. Rudel supports multiple backends to enable
3769 communication with other collaborative editors using different protocols,
3770 though currently Obby (for use with the Gobby editor) is the only
3771 fully-functional one.")
3772 (license license:gpl3+)))
3773
3774 (define-public emacs-hydra
3775 (package
3776 (name "emacs-hydra")
3777 (version "0.14.0")
3778 (source
3779 (origin
3780 (method git-fetch)
3781 (uri (git-reference
3782 (url "https://github.com/abo-abo/hydra")
3783 (commit version)))
3784 (file-name (git-file-name name version))
3785 (sha256
3786 (base32
3787 "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"))))
3788 (build-system emacs-build-system)
3789 (home-page "https://github.com/abo-abo/hydra")
3790 (synopsis "Make Emacs bindings that stick around")
3791 (description
3792 "This package can be used to tie related commands into a family of short
3793 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3794 the prefixed binding), all the heads can be called in succession with only a
3795 short extension. Any binding that isn't the Hydra's head vanquishes the
3796 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3797 serve its original purpose, calling the command assigned to it. This makes
3798 the Hydra very seamless; it's like a minor mode that disables itself
3799 automatically.")
3800 (license license:gpl3+)))
3801
3802 (define-public emacs-ivy
3803 (package
3804 (name "emacs-ivy")
3805 (version "0.11.0")
3806 (source
3807 (origin
3808 (method git-fetch)
3809 (uri (git-reference
3810 (url "https://github.com/abo-abo/swiper.git")
3811 (commit version)))
3812 (file-name (string-append name "-" version "-checkout"))
3813 (sha256
3814 (base32
3815 "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"))))
3816 (build-system emacs-build-system)
3817 (arguments
3818 `(#:phases
3819 (modify-phases %standard-phases
3820 (add-after 'install 'install-doc
3821 (lambda* (#:key outputs #:allow-other-keys)
3822 (let* ((out (assoc-ref outputs "out"))
3823 (info (string-append out "/share/info")))
3824 (with-directory-excursion "doc"
3825 (invoke "makeinfo" "ivy.texi")
3826 (install-file "ivy.info" info)
3827 #t)))))))
3828 (propagated-inputs
3829 `(("emacs-hydra" ,emacs-hydra)))
3830 (native-inputs
3831 `(("texinfo" ,texinfo)))
3832 (home-page "http://oremacs.com/swiper/")
3833 (synopsis "Incremental vertical completion for Emacs")
3834 (description
3835 "This package provides @code{ivy-read} as an alternative to
3836 @code{completing-read} and similar functions. No attempt is made to determine
3837 the best candidate. Instead, the user can navigate candidates with
3838 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3839 splitting the input text by spaces and re-building it into a regular
3840 expression.")
3841 (license license:gpl3+)))
3842
3843 (define-public emacs-ivy-yasnippet
3844 (let ((commit "32580b4fd23ebf9ca7dde96704f7d53df6e253cd")
3845 (revision "2"))
3846 (package
3847 (name "emacs-ivy-yasnippet")
3848 (version (git-version "0.1" revision commit))
3849 (source
3850 (origin
3851 (method git-fetch)
3852 (uri (git-reference
3853 (url "https://github.com/mkcms/ivy-yasnippet.git")
3854 (commit commit)))
3855 (file-name (git-file-name name version))
3856 (sha256
3857 (base32
3858 "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"))))
3859 (build-system emacs-build-system)
3860 (propagated-inputs
3861 `(("emacs-ivy" ,emacs-ivy)
3862 ("emacs-yasnippet" ,emacs-yasnippet)
3863 ("emacs-dash" ,emacs-dash)))
3864 (home-page "https://github.com/mkcms/ivy-yasnippet")
3865 (synopsis "Preview @code{yasnippets} with @code{ivy}")
3866 (description "This package allows you to select @code{yasnippet}
3867 snippets using @code{ivy} completion. When current selection changes in the
3868 minibuffer, the snippet contents are temporarily expanded in the buffer. To
3869 use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
3870 @code{yas-minor-mode} first).")
3871 (license license:gpl3+))))
3872
3873 (define-public emacs-ivy-rich
3874 (package
3875 (name "emacs-ivy-rich")
3876 (version "0.1.0")
3877 (source
3878 (origin
3879 (method url-fetch)
3880 (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
3881 version ".tar.gz"))
3882 (file-name (string-append name "-" version ".tar.gz"))
3883 (sha256
3884 (base32
3885 "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
3886 (build-system emacs-build-system)
3887 (propagated-inputs
3888 `(("emacs-ivy" ,emacs-ivy)))
3889 (home-page "https://github.com/Yevgnen/ivy-rich")
3890 (synopsis "More friendly interface for @code{ivy}")
3891 (description
3892 "This package extends @code{ivy} by showing more information in the
3893 minibuffer for each candidate. It adds columns showing buffer modes, file
3894 sizes, docstrings, etc. If @code{emacs-all-the-icons} is installed, it can
3895 show icons as well.")
3896 (license license:gpl3+)))
3897
3898 (define-public emacs-avy
3899 (package
3900 (name "emacs-avy")
3901 (version "0.4.0")
3902 (source
3903 (origin
3904 (method url-fetch)
3905 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3906 version ".tar.gz"))
3907 (file-name (string-append name "-" version ".tar.gz"))
3908 (sha256
3909 (base32
3910 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3911 (build-system emacs-build-system)
3912 (home-page "https://github.com/abo-abo/avy")
3913 (synopsis "Tree-based completion for Emacs")
3914 (description
3915 "This package provides a generic completion method based on building a
3916 balanced decision tree with each candidate being a leaf. To traverse the tree
3917 from the root to a desired leaf, typically a sequence of @code{read-key} can
3918 be used.
3919
3920 In order for @code{read-key} to make sense, the tree needs to be visualized
3921 appropriately, with a character at each branch node. So this completion
3922 method works only for things that you can see on your screen, all at once,
3923 such as the positions of characters, words, line beginnings, links, or
3924 windows.")
3925 (license license:gpl3+)))
3926
3927 (define-public emacs-ace-window
3928 (package
3929 (name "emacs-ace-window")
3930 (version "0.9.0")
3931 (source
3932 (origin
3933 (method url-fetch)
3934 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3935 version ".tar.gz"))
3936 (file-name (string-append name "-" version ".tar.gz"))
3937 (sha256
3938 (base32
3939 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3940 (build-system emacs-build-system)
3941 (propagated-inputs
3942 `(("emacs-avy" ,emacs-avy)))
3943 (home-page "https://github.com/abo-abo/ace-window")
3944 (synopsis "Quickly switch windows in Emacs")
3945 (description
3946 "@code{ace-window} is meant to replace @code{other-window}.
3947 In fact, when there are only two windows present, @code{other-window} is
3948 called. If there are more, each window will have its first character
3949 highlighted. Pressing that character will switch to that window.")
3950 (license license:gpl3+)))
3951
3952 (define-public emacs-iedit
3953 (package
3954 (name "emacs-iedit")
3955 (version "0.9.9.9")
3956 (source
3957 (origin
3958 (method url-fetch)
3959 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3960 version ".tar.gz"))
3961 (file-name (string-append name "-" version ".tar.gz"))
3962 (sha256
3963 (base32
3964 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3965 (build-system emacs-build-system)
3966 (home-page "http://www.emacswiki.org/emacs/Iedit")
3967 (synopsis "Edit multiple regions in the same way simultaneously")
3968 (description
3969 "This package is an Emacs minor mode and allows you to edit one
3970 occurrence of some text in a buffer (possibly narrowed) or region, and
3971 simultaneously have other occurrences edited in the same way.
3972
3973 You can also use Iedit mode as a quick way to temporarily show only the buffer
3974 lines that match the current text being edited. This gives you the effect of
3975 a temporary @code{keep-lines} or @code{occur}.")
3976 (license license:gpl3+)))
3977
3978 (define-public emacs-zoutline
3979 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
3980 (revision "0"))
3981 (package
3982 (name "emacs-zoutline")
3983 (version (git-version "0.1" revision commit))
3984 (home-page "https://github.com/abo-abo/zoutline")
3985 (source (origin
3986 (method git-fetch)
3987 (uri (git-reference (url home-page) (commit commit)))
3988 (sha256
3989 (base32
3990 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
3991 (file-name (git-file-name name version))))
3992 (build-system emacs-build-system)
3993 (synopsis "Simple outline library")
3994 (description
3995 "This library provides helpers for outlines. Outlines allow users to
3996 navigate code in a tree-like fashion.")
3997 (license license:gpl3+))))
3998
3999 (define-public emacs-lispy
4000 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
4001 ;; since.
4002 (let ((commit "f94cfc6b8f9c3afe7d028c366928049c011023de")
4003 (revision "1"))
4004 (package
4005 (name "emacs-lispy")
4006 (version (git-version "0.26.0" revision commit))
4007 (home-page "https://github.com/abo-abo/lispy")
4008 (source (origin
4009 (method git-fetch)
4010 (uri (git-reference (url home-page) (commit commit)))
4011 (sha256
4012 (base32
4013 "1bm2cpwizg1qfpm377gpx1af1hm5maw69if1csnk5vwaphmv8c4g"))
4014 (file-name (git-file-name name version))))
4015 (build-system emacs-build-system)
4016 (propagated-inputs
4017 `(("emacs-ace-window" ,emacs-ace-window)
4018 ("emacs-iedit" ,emacs-iedit)
4019 ("emacs-ivy" ,emacs-ivy)
4020 ("emacs-hydra" ,emacs-hydra)
4021 ("emacs-zoutline" ,emacs-zoutline)))
4022 (synopsis "Modal S-expression editing")
4023 (description
4024 "Due to the structure of Lisp syntax it's very rare for the programmer
4025 to want to insert characters right before \"(\" or right after \")\". Thus
4026 unprefixed printable characters can be used to call commands when the point is
4027 at one of these special locations. Lispy provides unprefixed keybindings for
4028 S-expression editing when point is at the beginning or end of an
4029 S-expression.")
4030 (license license:gpl3+))))
4031
4032 (define-public emacs-lispyville
4033 (let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
4034 (revision "1"))
4035 (package
4036 (name "emacs-lispyville")
4037 (version (git-version "0.1" revision commit))
4038 (home-page "https://github.com/noctuid/lispyville")
4039 (source (origin
4040 (method git-fetch)
4041 (uri (git-reference (url home-page) (commit commit)))
4042 (sha256
4043 (base32
4044 "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx"))
4045 (file-name (git-file-name name version))))
4046 (propagated-inputs
4047 `(("emacs-evil" ,emacs-evil)
4048 ("emacs-lispy" ,emacs-lispy)))
4049 (build-system emacs-build-system)
4050 (synopsis "Minor mode for integrating Evil with lispy")
4051 (description
4052 "LispyVille's main purpose is to provide a Lisp editing environment
4053 suited towards Evil users. It can serve as a minimal layer on top of lispy
4054 for better integration with Evil, but it does not require the use of lispy’s
4055 keybinding style. The provided commands allow for editing Lisp in normal
4056 state and will work even without lispy being enabled.")
4057 (license license:gpl3+))))
4058
4059 (define-public emacs-clojure-mode
4060 (package
4061 (name "emacs-clojure-mode")
4062 (version "5.6.1")
4063 (source (origin
4064 (method url-fetch)
4065 (uri (string-append
4066 "https://github.com/clojure-emacs/clojure-mode/archive/"
4067 version ".tar.gz"))
4068 (file-name (string-append name "-" version ".tar.gz"))
4069 (sha256
4070 (base32
4071 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
4072 (build-system emacs-build-system)
4073 (native-inputs
4074 `(("emacs-dash" ,emacs-dash)
4075 ("emacs-s" ,emacs-s)
4076 ("ert-runner" ,emacs-ert-runner)))
4077 (arguments
4078 `(#:tests? #t
4079 #:test-command '("ert-runner")))
4080 (home-page "https://github.com/clojure-emacs/clojure-mode")
4081 (synopsis "Major mode for Clojure code")
4082 (description
4083 "This Emacs package provides font-lock, indentation, navigation and basic
4084 refactoring for the @uref{http://clojure.org, Clojure programming language}.
4085 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
4086 (license license:gpl3+)))
4087
4088 (define-public emacs-epl
4089 (package
4090 (name "emacs-epl")
4091 (version "0.8")
4092 (source (origin
4093 (method url-fetch)
4094 (uri (string-append
4095 "https://github.com/cask/epl/archive/"
4096 version ".tar.gz"))
4097 (file-name (string-append name "-" version ".tar.gz"))
4098 (sha256
4099 (base32
4100 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
4101 (build-system emacs-build-system)
4102 (home-page "https://github.com/cask/epl")
4103 (synopsis "Emacs Package Library")
4104 (description
4105 "A package management library for Emacs, based on @code{package.el}.
4106
4107 The purpose of this library is to wrap all the quirks and hassle of
4108 @code{package.el} into a sane API.")
4109 (license license:gpl3+)))
4110
4111 (define-public emacs-queue
4112 (package
4113 (name "emacs-queue")
4114 (version "0.2")
4115 (source (origin
4116 (method url-fetch)
4117 (uri (string-append "https://elpa.gnu.org/packages/queue-"
4118 version ".el"))
4119 (sha256
4120 (base32
4121 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
4122 (build-system emacs-build-system)
4123 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
4124 (synopsis "Queue data structure for Emacs")
4125 (description
4126 "This Emacs library provides queue data structure. These queues can be
4127 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
4128 stack, i.e. elements can be added to the front or back of the queue, and can
4129 be removed from the front. This type of data structure is sometimes called an
4130 \"output-restricted deque\".")
4131 (license license:gpl3+)))
4132
4133 (define-public emacs-pkg-info
4134 (package
4135 (name "emacs-pkg-info")
4136 (version "0.6")
4137 (source (origin
4138 (method url-fetch)
4139 (uri (string-append
4140 "https://github.com/lunaryorn/pkg-info.el/archive/"
4141 version ".tar.gz"))
4142 (file-name (string-append name "-" version ".tar.gz"))
4143 (sha256
4144 (base32
4145 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
4146 (build-system emacs-build-system)
4147 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4148 (home-page "https://github.com/lunaryorn/pkg-info.el")
4149 (synopsis "Information about Emacs packages")
4150 (description
4151 "This library extracts information from the installed Emacs packages.")
4152 (license license:gpl3+)))
4153
4154 (define-public emacs-spinner
4155 (package
4156 (name "emacs-spinner")
4157 (version "1.7.3")
4158 (source (origin
4159 (method url-fetch)
4160 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
4161 version ".el"))
4162 (sha256
4163 (base32
4164 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
4165 (build-system emacs-build-system)
4166 (home-page "https://github.com/Malabarba/spinner.el")
4167 (synopsis "Emacs mode-line spinner for operations in progress")
4168 (description
4169 "This Emacs package adds spinners and progress-bars to the mode-line for
4170 ongoing operations.")
4171 (license license:gpl3+)))
4172
4173 (define-public emacs-sparql-mode
4174 (package
4175 (name "emacs-sparql-mode")
4176 (version "2.0.1")
4177 (source (origin
4178 (method url-fetch)
4179 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
4180 "v" version ".tar.gz"))
4181 (file-name (string-append name "-" version ".tar.gz"))
4182 (sha256
4183 (base32
4184 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
4185 (build-system emacs-build-system)
4186 (home-page "https://github.com/ljos/sparql-mode")
4187 (synopsis "SPARQL mode for Emacs")
4188 (description "This package provides a major mode for Emacs that provides
4189 syntax highlighting for SPARQL. It also provides a way to execute queries
4190 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4191 possible to query other endpoints like DBPedia.")
4192 (license license:gpl3+)))
4193
4194 (define-public emacs-better-defaults
4195 (package
4196 (name "emacs-better-defaults")
4197 (version "0.1.3")
4198 (source
4199 (origin
4200 (method url-fetch)
4201 (uri (string-append "https://github.com/technomancy/better-defaults"
4202 "/archive/" version ".tar.gz"))
4203 (file-name (string-append name "-" version ".tar.gz"))
4204 (sha256
4205 (base32
4206 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4207 (build-system emacs-build-system)
4208 (home-page "https://github.com/technomancy/better-defaults")
4209 (synopsis "Better defaults for Emacs")
4210 (description
4211 "Better defaults attempts to address the most obvious deficiencies of the
4212 Emacs default configuration in uncontroversial ways that nearly everyone can
4213 agree upon.")
4214 (license license:gpl3+)))
4215
4216 (define-public emacs-eprime
4217 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4218 (package
4219 (name "emacs-eprime")
4220 (version (string-append "20140513-" (string-take commit 7)))
4221 (source (origin
4222 (method url-fetch)
4223 (uri (string-append "https://raw.githubusercontent.com"
4224 "/AndrewHynes/eprime-mode/"
4225 commit "/eprime-mode.el"))
4226 (file-name (string-append "eprime-" version ".el"))
4227 (sha256
4228 (base32
4229 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4230 (build-system emacs-build-system)
4231 (home-page "https://github.com/AndrewHynes/eprime-mode")
4232 (synopsis "E-prime checking mode for Emacs")
4233 (description "This package provides an E-prime checking mode for Emacs
4234 that highlights non-conforming text. The subset of the English language called
4235 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4236 (license license:gpl3+))))
4237
4238 (define-public emacs-julia-mode
4239 ;; XXX: Upstream version remained stuck at 0.3. See
4240 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4241 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4242 (revision "1"))
4243 (package
4244 (name "emacs-julia-mode")
4245 (version (string-append "0.3-" revision "." (string-take commit 8)))
4246 (source
4247 (origin
4248 (method git-fetch)
4249 (uri (git-reference
4250 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4251 (commit commit)))
4252 (file-name (string-append name "-" version "-checkout"))
4253 (sha256
4254 (base32
4255 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4256 (build-system emacs-build-system)
4257 (arguments
4258 `(#:tests? #t
4259 #:test-command '("emacs" "--batch"
4260 "-l" "julia-mode-tests.el"
4261 "-f" "ert-run-tests-batch-and-exit")))
4262 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4263 (synopsis "Major mode for Julia")
4264 (description "This Emacs package provides a mode for the Julia
4265 programming language.")
4266 (license license:expat))))
4267
4268 (define-public emacs-smex
4269 (package
4270 (name "emacs-smex")
4271 (version "3.0")
4272 (source (origin
4273 (method url-fetch)
4274 (uri (string-append "https://raw.githubusercontent.com"
4275 "/nonsequitur/smex/" version "/smex.el"))
4276 (file-name (string-append "smex-" version ".el"))
4277 (sha256
4278 (base32
4279 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4280 (build-system emacs-build-system)
4281 (home-page "https://github.com/nonsequitur/smex/")
4282 (synopsis "M-x interface with Ido-style fuzzy matching")
4283 (description
4284 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4285 convenient interface to your recently and most frequently used commands. And
4286 to all the other commands, too.")
4287 (license license:gpl3+)))
4288
4289 (define-public emacs-js2-mode
4290 (package
4291 (name "emacs-js2-mode")
4292 (version "20180301")
4293 (source (origin
4294 (method url-fetch)
4295 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
4296 version ".tar.gz"))
4297 (file-name (string-append name "-" version ".tar.gz"))
4298 (sha256
4299 (base32
4300 "13aghgwaqrmbf3pbifcry52kya454wnh1gbdh5805n1n6xgjm5w3"))))
4301 (build-system emacs-build-system)
4302 (home-page "https://github.com/mooz/js2-mode/")
4303 (synopsis "Improved JavaScript editing mode for Emacs")
4304 (description
4305 "Js2-mode provides a JavaScript major mode for Emacs that is more
4306 advanced than the built-in javascript-mode. Features include accurate syntax
4307 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4308 errors and strict-mode warnings, smart line-wrapping within comments and
4309 strings, and code folding.")
4310 (license license:gpl3+)))
4311
4312 (define-public emacs-nodejs-repl
4313 (package
4314 (name "emacs-nodejs-repl")
4315 (version "0.2.0")
4316 (source (origin
4317 (method url-fetch)
4318 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4319 "/archive/" version ".tar.gz"))
4320 (sha256
4321 (base32
4322 "0hq2cqdq2668yf48g7qnkci90nhih1gnhacsgz355jnib56lhmkz"))
4323 (file-name (string-append name "-" version ".tar.gz"))))
4324 (build-system emacs-build-system)
4325 (home-page "https://github.com/abicky/nodejs-repl.el")
4326 (synopsis "Node.js REPL inside Emacs")
4327 (description
4328 "This program is derived from comint-mode and provides the following
4329 features:
4330
4331 @itemize
4332 @item TAB completion same as Node.js REPL
4333 @item file name completion in string
4334 @item incremental history search
4335 @end itemize")
4336 (license license:gpl3+)))
4337
4338 (define-public emacs-typescript-mode
4339 (package
4340 (name "emacs-typescript-mode")
4341 (version "0.3")
4342 (source (origin
4343 (method url-fetch)
4344 (uri (string-append
4345 "https://github.com/ananthakumaran/typescript.el"
4346 "/archive/v" version ".tar.gz"))
4347 (sha256
4348 (base32
4349 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4350 (file-name (string-append name "-" version ".tar.gz"))))
4351 (build-system emacs-build-system)
4352 (home-page "https://github.com/ananthakumaran/typescript.el")
4353 (synopsis "Emacs major mode for editing Typescript code")
4354 (description
4355 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4356 This is much more robust and works with @code{cc-mode}'s comment
4357 filling (mostly). The modifications to the original @code{javascript.el} mode
4358 mainly consisted in replacing \"javascript\" with \"typescript\"
4359
4360 The main features of this Typescript mode are syntactic highlighting (enabled
4361 with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4362 indentation and filling of comments and C preprocessor fontification.")
4363 (license license:gpl3+)))
4364
4365 (define-public emacs-tide
4366 (package
4367 (name "emacs-tide")
4368 (version "2.8.3.1")
4369 (source (origin
4370 (method url-fetch)
4371 (uri (string-append "https://github.com/ananthakumaran/tide"
4372 "/archive/v" version ".tar.gz"))
4373 (sha256
4374 (base32
4375 "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
4376 (file-name (string-append name "-" version ".tar.gz"))))
4377 (build-system emacs-build-system)
4378 (propagated-inputs
4379 `(("emacs-dash" ,emacs-dash)
4380 ("emacs-s" ,emacs-s)
4381 ("emacs-flycheck" ,emacs-flycheck)
4382 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4383 (home-page "https://github.com/ananthakumaran/tide")
4384 (synopsis "Typescript IDE for Emacs")
4385 (description
4386 "Tide is an Interactive Development Environment (IDE) for Emacs which
4387 provides the following features:
4388
4389 @itemize
4390 @item ElDoc
4391 @item Auto complete
4392 @item Flycheck
4393 @item Jump to definition, Jump to type definition
4394 @item Find occurrences
4395 @item Rename symbol
4396 @item Imenu
4397 @item Compile On Save
4398 @item Highlight Identifiers
4399 @item Code Fixes
4400 @item Code Refactor
4401 @item Organize Imports
4402 @end itemize")
4403 (license license:gpl3+)))
4404
4405 (define-public emacs-markdown-mode
4406 (package
4407 (name "emacs-markdown-mode")
4408 (version "2.3")
4409 (source (origin
4410 (method url-fetch)
4411 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4412 "/markdown-mode/v" version
4413 "/markdown-mode.el"))
4414 (file-name (string-append "markdown-mode-" version ".el"))
4415 (sha256
4416 (base32
4417 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4418 (build-system emacs-build-system)
4419 (home-page "http://jblevins.org/projects/markdown-mode/")
4420 (synopsis "Emacs Major mode for Markdown files")
4421 (description
4422 "Markdown-mode is a major mode for editing Markdown-formatted text files
4423 in Emacs.")
4424 (license license:gpl3+)))
4425
4426 (define-public emacs-edit-indirect
4427 (package
4428 (name "emacs-edit-indirect")
4429 (version "0.1.5")
4430 (source
4431 (origin
4432 (method git-fetch)
4433 (uri (git-reference
4434 (url "https://github.com/Fanael/edit-indirect")
4435 (commit version)))
4436 (file-name (git-file-name name version))
4437 (sha256
4438 (base32
4439 "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r"))))
4440 (build-system emacs-build-system)
4441 (home-page "https://github.com/Fanael/edit-indirect")
4442 (synopsis "Edit regions in separate buffers")
4443 (description "This package allows you to edit regions in separate buffers,
4444 like @code{org-edit-src-code} but for arbitrary regions.")
4445 (license license:gpl3+)))
4446
4447 (define-public emacs-projectile
4448 (package
4449 (name "emacs-projectile")
4450 (version "0.14.0")
4451 (source (origin
4452 (method url-fetch)
4453 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4454 "/projectile/v" version "/projectile.el"))
4455 (file-name (string-append "projectile-" version ".el"))
4456 (sha256
4457 (base32
4458 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
4459 (build-system emacs-build-system)
4460 (propagated-inputs
4461 `(("emacs-dash" ,emacs-dash)
4462 ("emacs-pkg-info" ,emacs-pkg-info)))
4463 (home-page "https://github.com/bbatsov/projectile")
4464 (synopsis "Manage and navigate projects in Emacs easily")
4465 (description
4466 "This library provides easy project management and navigation. The
4467 concept of a project is pretty basic - just a folder containing special file.
4468 Currently git, mercurial and bazaar repos are considered projects by default.
4469 If you want to mark a folder manually as a project just create an empty
4470 .projectile file in it.")
4471 (license license:gpl3+)))
4472
4473 (define-public emacs-elfeed
4474 (package
4475 (name "emacs-elfeed")
4476 (version "3.0.0")
4477 (source (origin
4478 (method url-fetch)
4479 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4480 version ".tar.gz"))
4481 (file-name (string-append name "-" version ".tar.gz"))
4482 (sha256
4483 (base32
4484 "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
4485 (build-system emacs-build-system)
4486 (arguments
4487 `(#:tests? #t
4488 #:test-command '("make" "test")))
4489 (home-page "https://github.com/skeeto/elfeed")
4490 (synopsis "Atom/RSS feed reader for Emacs")
4491 (description
4492 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4493 and RSS, with a user interface inspired by notmuch.")
4494 (license license:gpl3+)))
4495
4496 (define-public emacs-el-x
4497 (package
4498 (name "emacs-el-x")
4499 (version "0.3.1")
4500 (source (origin
4501 (method git-fetch)
4502 (uri (git-reference
4503 (url "https://github.com/sigma/el-x.git")
4504 (commit (string-append "v" version))))
4505 (file-name (string-append name "-" version "-checkout"))
4506 (sha256
4507 (base32
4508 "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"))))
4509 (build-system emacs-build-system)
4510 (arguments
4511 `(#:phases
4512 (modify-phases %standard-phases
4513 ;; Move the source files to the top level, which is included in
4514 ;; the EMACSLOADPATH.
4515 (add-after 'unpack 'move-source-files
4516 (lambda _
4517 (let ((el-files (find-files "./lisp" ".*\\.el$")))
4518 (for-each (lambda (f)
4519 (rename-file f (basename f)))
4520 el-files))
4521 #t)))))
4522 (home-page "https://github.com/sigma/el-x")
4523 (synopsis "Emacs Lisp extensions")
4524 (description "command@{emacs-el-x} defines the @code{dflet} macro to
4525 provide the historic behavior of @code{flet}, as well as
4526 @code{declare-function} stub for older Emacs.")
4527 (license license:gpl2+)))
4528
4529 (define-public emacs-mocker
4530 (package
4531 (name "emacs-mocker")
4532 (version "0.3.1")
4533 (source (origin
4534 (method git-fetch)
4535 (uri (git-reference
4536 (url "https://github.com/sigma/mocker.el.git")
4537 (commit (string-append "v" version))))
4538 (file-name (string-append name "-" version "-checkout"))
4539 (sha256
4540 (base32
4541 "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"))))
4542 (build-system emacs-build-system)
4543 (arguments
4544 `(#:tests? #t
4545 #:test-command '("ert-runner")))
4546 (native-inputs
4547 `(("ert-runner" ,emacs-ert-runner)))
4548 (propagated-inputs
4549 `(("emacs-el-x" ,emacs-el-x)))
4550 (home-page "https://github.com/sigma/mocker.el")
4551 (synopsis "Mocking framework for Emacs Lisp")
4552 (description "Mocker.el is a framework for writing tests in Emacs Lisp.
4553 It uses regular Lisp rather than a domain specific language (DSL), which
4554 maximizes flexibility (at the expense of conciseness).")
4555 (license license:gpl2+)))
4556
4557 (define-public emacs-find-file-in-project
4558 (package
4559 (name "emacs-find-file-in-project")
4560 (version "5.4.7")
4561 (source (origin
4562 (method git-fetch)
4563 (uri (git-reference
4564 (url "https://github.com/technomancy/find-file-in-project.git")
4565 (commit version)))
4566 (file-name (string-append name "-" version "-checkout"))
4567 (sha256
4568 (base32
4569 "1sdnyqv69mipbgs9yax88m9b6crsa59rjhwrih197pifl4089awr"))))
4570 (build-system emacs-build-system)
4571 (arguments
4572 `(#:phases
4573 (modify-phases %standard-phases
4574 (add-before 'check 'set-shell
4575 ;; Otherwise Emacs shell-file-name is set to "/bin/sh", which doesn't
4576 ;; work.
4577 (lambda _
4578 (setenv "SHELL" (which "sh"))
4579 #t)))
4580 #:tests? #t
4581 #:test-command '("./tests/test.sh")))
4582 (home-page "https://github.com/technomancy/find-file-in-project")
4583 (synopsis "File/directory finder for Emacs")
4584 (description "@code{find-file-in-project} allows to find files or
4585 directories quickly in the current project. The project root is detected
4586 automatically when Git, Subversion or Mercurial are used. It also provides
4587 functions to assist in reviewing changes on files.")
4588 (license license:gpl3+)))
4589
4590 (define-public emacs-pyvenv
4591 (package
4592 (name "emacs-pyvenv")
4593 (version "1.11")
4594 (source (origin
4595 (method git-fetch)
4596 (uri (git-reference
4597 (url "https://github.com/jorgenschaefer/pyvenv.git")
4598 (commit (string-append "v" version))))
4599 (file-name (string-append name "-" version "-checkout"))
4600 (sha256
4601 (base32
4602 "1a346qdimr1dvj53q033aqnahwd2dhyn9jadrs019nm0bzgw7g63"))))
4603 (build-system emacs-build-system)
4604 (arguments
4605 `(#:phases
4606 (modify-phases %standard-phases
4607 ;; This phase incorrectly attempts to substitute "activate" and fails
4608 ;; doing so.
4609 (delete 'patch-el-files))
4610 #:tests? #t
4611 #:test-command '("ert-runner")))
4612 (native-inputs
4613 `(("ert-runner" ,emacs-ert-runner)
4614 ("emacs-mocker" ,emacs-mocker)))
4615 (home-page "https://github.com/jorgenschaefer/pyvenv")
4616 (synopsis "Virtualenv minor mode for Emacs")
4617 (description "pyvenv.el is a minor mode to support using Python virtual
4618 environments (virtualenv) inside Emacs.")
4619 (license license:gpl3+)))
4620
4621 (define-public emacs-highlight-indentation
4622 (package
4623 (name "emacs-highlight-indentation")
4624 (version "0.7.0")
4625 (source (origin
4626 (method git-fetch)
4627 (uri (git-reference
4628 (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
4629 (commit (string-append "v" version))))
4630 (file-name (string-append name "-" version "-checkout"))
4631 (sha256
4632 (base32
4633 "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
4634 (build-system emacs-build-system)
4635 (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
4636 (synopsis "Highlighting indentation for Emacs")
4637 (description "Provides two minor modes to highlight indentation guides in Emacs:
4638 @enumerate
4639 @item @code{highlight-indentation-mode}, which displays guidelines
4640 indentation (space indentation only).
4641 @item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
4642 @end enumerate")
4643 (license license:gpl2+)))
4644
4645 (define-public emacs-elpy
4646 (package
4647 (name "emacs-elpy")
4648 (version "1.28.0")
4649 (source (origin
4650 (method git-fetch)
4651 (uri (git-reference
4652 (url "https://github.com/jorgenschaefer/elpy.git")
4653 (commit version)))
4654 (file-name (string-append name "-" version "-checkout"))
4655 (sha256
4656 (base32
4657 "073bwxwjzcbmvpcz9q2xjwzx9x7hkvjni6fwvikh6yawzjp56jis"))))
4658 (build-system emacs-build-system)
4659 (arguments
4660 `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
4661 #:phases
4662 ;; TODO: Make `elpy-config' display Guix commands :)
4663 (modify-phases %standard-phases
4664 ;; One elpy test depends on being run inside a Python virtual
4665 ;; environment to pass. We have nothing to gain from doing so here,
4666 ;; so we just trick Elpy into thinking we are (see:
4667 ;; https://github.com/jorgenschaefer/elpy/pull/1293).
4668 (add-before 'check 'fake-virtualenv
4669 (lambda _
4670 (setenv "VIRTUAL_ENV" "/tmp")
4671 #t))
4672 (add-before 'check 'build-doc
4673 (lambda _
4674 (with-directory-excursion "docs"
4675 (invoke "make" "info" "man"))
4676 ;; Move .info file at the root so that it can installed by the
4677 ;; 'move-doc phase.
4678 (rename-file "docs/_build/texinfo/Elpy.info" "Elpy.info")
4679 #t))
4680 (add-after 'build-doc 'install-manpage
4681 (lambda* (#:key outputs #:allow-other-keys)
4682 (let* ((out (assoc-ref outputs "out"))
4683 (man1 (string-append out "/share/man/man1")))
4684 (mkdir-p man1)
4685 (copy-file "docs/_build/man/elpy.1"
4686 (string-append man1 "/elpy.1")))
4687 #t)))
4688 #:tests? #t
4689 #:test-command '("ert-runner")))
4690 (propagated-inputs
4691 `(("emacs-company" ,emacs-company)
4692 ("emacs-find-file-in-project" ,emacs-find-file-in-project)
4693 ("emacs-highlight-indentation" ,emacs-highlight-indentation)
4694 ("emacs-yasnippet" ,emacs-yasnippet)
4695 ("pyvenv" ,emacs-pyvenv)
4696 ("s" ,emacs-s)))
4697 (native-inputs
4698 `(("ert-runner" ,emacs-ert-runner)
4699 ("emacs-f" ,emacs-f)
4700 ("python" ,python-wrapper)
4701 ("python-autopep8" ,python-autopep8)
4702 ("python-black" ,python-black)
4703 ("python-flake8" ,python-flake8)
4704 ("python-jedi" ,python-jedi)
4705 ("python-yapf" ,python-yapf)
4706 ;; For documentation.
4707 ("python-sphinx" ,python-sphinx)
4708 ("texinfo" ,texinfo)))
4709 (home-page "https://github.com/jorgenschaefer/elpy")
4710 (synopsis "Python development environment for Emacs")
4711 (description "Elpy brings powerful Python editing to Emacs. It combines
4712 and configures a number of other packages written in Emacs Lisp as well as
4713 Python, together offering features such as navigation, documentation,
4714 completion, interactive development and more.")
4715 (license license:gpl3+)))
4716
4717 (define-public emacs-rainbow-delimiters
4718 (package
4719 (name "emacs-rainbow-delimiters")
4720 (version "2.1.3")
4721 (source (origin
4722 (method url-fetch)
4723 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4724 "/rainbow-delimiters/" version
4725 "/rainbow-delimiters.el"))
4726 (file-name (string-append "rainbow-delimiters-" version ".el"))
4727 (sha256
4728 (base32
4729 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4730 (build-system emacs-build-system)
4731 (home-page "https://github.com/Fanael/rainbow-delimiters")
4732 (synopsis "Highlight brackets according to their depth")
4733 (description
4734 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4735 highlights parentheses, brackets, and braces according to their depth. Each
4736 successive level is highlighted in a different color, making it easy to spot
4737 matching delimiters, orient yourself in the code, and tell which statements
4738 are at a given level.")
4739 (license license:gpl3+)))
4740
4741 (define-public emacs-rainbow-identifiers
4742 (package
4743 (name "emacs-rainbow-identifiers")
4744 (version "0.2.2")
4745 (source (origin
4746 (method url-fetch)
4747 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4748 "/rainbow-identifiers/" version
4749 "/rainbow-identifiers.el"))
4750 (file-name (string-append "rainbow-identifiers-" version ".el"))
4751 (sha256
4752 (base32
4753 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4754 (build-system emacs-build-system)
4755 (home-page "https://github.com/Fanael/rainbow-identifiers")
4756 (synopsis "Highlight identifiers in source code")
4757 (description
4758 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4759 identifiers based on their names. Each identifier gets a color based on a hash
4760 of its name.")
4761 (license license:bsd-2)))
4762
4763 (define-public emacs-rainbow-mode
4764 (package
4765 (name "emacs-rainbow-mode")
4766 (version "1.0.1")
4767 (source (origin
4768 (method url-fetch)
4769 (uri (string-append
4770 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4771 (sha256
4772 (base32
4773 "0cpga4ax635rfpj7y2vmh7ank0yw00dcy20gjg1mj74r97by8csf"))))
4774 (build-system emacs-build-system)
4775 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4776 (synopsis "Colorize color names in buffers")
4777 (description
4778 "This minor mode sets background color to strings that match color
4779 names, e.g. #0000ff is displayed in white with a blue background.")
4780 (license license:gpl3+)))
4781
4782 (define-public emacs-visual-fill-column
4783 (package
4784 (name "emacs-visual-fill-column")
4785 (version "1.11")
4786 (source (origin
4787 (method url-fetch)
4788 (uri (string-append "https://codeload.github.com/joostkremers/"
4789 "visual-fill-column/tar.gz/" version))
4790 (file-name (string-append name "-" version ".tar.gz"))
4791 (sha256
4792 (base32
4793 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4794 (build-system emacs-build-system)
4795 (home-page "https://github.com/joostkremers/visual-fill-column")
4796 (synopsis "Fill-column for visual-line-mode")
4797 (description
4798 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4799 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4800 wrapping lines at the window edge, which is the standard behaviour of
4801 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4802 @code{fill-column} is too large for the window, the text is wrapped at the
4803 window edge.")
4804 (license license:gpl3+)))
4805
4806 (define-public emacs-writeroom
4807 (package
4808 (name "emacs-writeroom")
4809 (version "3.7")
4810 (source (origin
4811 (method url-fetch)
4812 (uri (string-append
4813 "https://github.com/joostkremers/writeroom-mode/archive/"
4814 version ".tar.gz"))
4815 (file-name (string-append name "-" version ".tar.gz"))
4816 (sha256
4817 (base32
4818 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4819 (build-system emacs-build-system)
4820 (propagated-inputs
4821 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4822 (home-page "https://github.com/joostkremers/writeroom-mode")
4823 (synopsis "Distraction-free writing for Emacs")
4824 (description
4825 "This package defines a minor mode for distraction-free writing. Some of
4826 the default effects include entering fullscreen, deleting other windows of the
4827 current frame, disabling the mode line, and adding margins to the buffer that
4828 restrict the text width to 80 characters.")
4829 (license license:bsd-3)))
4830
4831 (define-public emacs-ido-completing-read+
4832 (package
4833 (name "emacs-ido-completing-read+")
4834 (version "3.12")
4835 (source (origin
4836 (method url-fetch)
4837 (uri (string-append "https://raw.githubusercontent.com"
4838 "/DarwinAwardWinner/ido-ubiquitous/v"
4839 version "/ido-completing-read+.el"))
4840 (file-name (string-append "ido-completing-read+-" version ".el"))
4841 (sha256
4842 (base32
4843 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4844 (build-system emacs-build-system)
4845 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4846 (synopsis "Replacement for completing-read using ido")
4847 (description
4848 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4849 Importantly, it detects edge cases that ordinary ido cannot handle and either
4850 adjusts them so ido can handle them, or else simply falls back to the standard
4851 Emacs completion function instead.")
4852 (license license:gpl3+)))
4853
4854 (define-public emacs-ido-ubiquitous
4855 (package
4856 (name "emacs-ido-ubiquitous")
4857 (version "3.12")
4858 (source (origin
4859 (method url-fetch)
4860 (uri (string-append "https://raw.githubusercontent.com"
4861 "/DarwinAwardWinner/ido-ubiquitous/v"
4862 version "/ido-ubiquitous.el"))
4863 (file-name (string-append "ido-ubiquitous-" version ".el"))
4864 (sha256
4865 (base32
4866 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4867 (build-system emacs-build-system)
4868 (propagated-inputs
4869 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4870 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4871 (synopsis "Use ido (nearly) everywhere")
4872 (description
4873 "Ido-ubiquitous enables ido-style completion for almost every function
4874 that uses the standard completion function completing-read.")
4875 (license license:gpl3+)))
4876
4877 (define-public emacs-yaml-mode
4878 (package
4879 (name "emacs-yaml-mode")
4880 (version "0.0.13")
4881 (source (origin
4882 (method url-fetch)
4883 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4884 "/yaml-mode/v" version "/yaml-mode.el"))
4885 (file-name (string-append "yaml-mode-" version ".el"))
4886 (sha256
4887 (base32
4888 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4889 (build-system emacs-build-system)
4890 (home-page "https://github.com/yoshiki/yaml-mode")
4891 (synopsis "Major mode for editing YAML files")
4892 (description
4893 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4894 serialization format. It was initially developed by Yoshiki Kurihara and many
4895 features were added by Marshall Vandegrift. As YAML and Python share the fact
4896 that indentation determines structure, this mode provides indentation and
4897 indentation command behavior very similar to that of python-mode.")
4898 (license license:gpl3+)))
4899
4900 (define-public emacs-web-mode
4901 (package
4902 (name "emacs-web-mode")
4903 (version "16")
4904 (source (origin
4905 (method url-fetch)
4906 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4907 "/web-mode/v" version "/web-mode.el"))
4908 (file-name (string-append "web-mode-" version ".el"))
4909 (sha256
4910 (base32
4911 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
4912 (build-system emacs-build-system)
4913 (synopsis "Major mode for editing web templates")
4914 (description "Web-mode is an Emacs major mode for editing web templates
4915 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4916 client/server side engines). Web-mode is compatible with many template
4917 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4918 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4919 Dust.js, React/JSX, Angularjs, ejs, etc.")
4920 (home-page "http://web-mode.org/")
4921 (license license:gpl3+)))
4922
4923 (define-public emacs-wgrep
4924 (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
4925 ;; Late commit fixes compatibility issue with Emacs 26+.
4926 (package
4927 (name "emacs-wgrep")
4928 (version (git-version "2.1.10" "1" commit))
4929 (source (origin
4930 (method git-fetch)
4931 (uri (git-reference
4932 (url "https://github.com/mhayashi1120/Emacs-wgrep")
4933 (commit commit)))
4934 (file-name (git-file-name name version))
4935 (sha256
4936 (base32
4937 "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
4938 (build-system emacs-build-system)
4939 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4940 (synopsis "Edit a grep buffer and apply those changes to the files")
4941 (description
4942 "Emacs wgrep allows you to edit a grep buffer and apply those changes
4943 to the file buffer. Several backends are supported beside the classic grep:
4944 ack, ag, helm and pt.")
4945 (license license:gpl3+))))
4946
4947 (define-public emacs-helm
4948 (package
4949 (name "emacs-helm")
4950 (version "3.0")
4951 (source (origin
4952 (method url-fetch)
4953 (uri (string-append
4954 "https://github.com/" name "/helm/archive/v"
4955 version ".tar.gz"))
4956 (file-name (string-append name "-" version ".tar.gz"))
4957 (sha256
4958 (base32
4959 "0k2r0ccppaqfjvyszaxa16vf7g2qzj1clhfr6v646ncsy17laciw"))))
4960 (build-system emacs-build-system)
4961 (propagated-inputs
4962 `(("emacs-async" ,emacs-async)
4963 ("emacs-popup" ,emacs-popup)))
4964 (home-page "https://emacs-helm.github.io/helm/")
4965 (synopsis "Incremental completion and selection narrowing
4966 framework for Emacs")
4967 (description "Helm is incremental completion and selection narrowing
4968 framework for Emacs. It will help steer you in the right direction when
4969 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4970 of @code{anything.el} originally written by Tamas Patrovic and can be
4971 considered to be its successor. Helm sets out to clean up the legacy code in
4972 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4973 not tied in the trap of backward compatibility.")
4974 (license license:gpl3+)))
4975
4976 (define-public emacs-helm-swoop
4977 (package
4978 (name "emacs-helm-swoop")
4979 (version "1.7.4")
4980 (source (origin
4981 (method url-fetch)
4982 (uri (string-append
4983 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4984 version
4985 ".tar.gz"))
4986 (file-name (string-append name "-" version ".tar.gz"))
4987 (sha256
4988 (base32
4989 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4990 (build-system emacs-build-system)
4991 (propagated-inputs
4992 `(("emacs-helm" ,emacs-helm)))
4993 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4994 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4995 (description
4996 "This package builds on the Helm interface to provide several commands
4997 for search-based navigation of buffers.")
4998 (license license:gpl2+)))
4999
5000 (define-public emacs-helm-projectile
5001 (package
5002 (name "emacs-helm-projectile")
5003 (version "0.14.0")
5004 (source (origin
5005 (method url-fetch)
5006 (uri (string-append
5007 "https://github.com/bbatsov/helm-projectile/archive/v"
5008 version
5009 ".tar.gz"))
5010 (file-name (string-append name "-" version ".tar.gz"))
5011 (sha256
5012 (base32
5013 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
5014 (build-system emacs-build-system)
5015 (propagated-inputs
5016 `(("emacs-dash" ,emacs-dash)
5017 ("emacs-helm" ,emacs-helm)
5018 ("emacs-projectile" ,emacs-projectile)))
5019 (home-page "https://github.com/bbatsov/helm-projectile")
5020 (synopsis "Helm integration for Projectile")
5021 (description
5022 "This Emacs library provides a Helm interface for Projectile.")
5023 (license license:gpl3+)))
5024
5025 (define-public emacs-helm-make
5026 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
5027 (revision "1"))
5028 (package
5029 (name "emacs-helm-make")
5030 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
5031 (source
5032 (origin
5033 (method git-fetch)
5034 (uri (git-reference
5035 (url "https://github.com/abo-abo/helm-make.git")
5036 (commit commit)))
5037 (file-name (string-append name "-" version "-checkout"))
5038 (sha256
5039 (base32
5040 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
5041 (build-system emacs-build-system)
5042 (propagated-inputs
5043 `(("emacs-helm" ,emacs-helm)
5044 ("emacs-projectile" ,emacs-projectile)))
5045 (home-page "https://github.com/abo-abo/helm-make")
5046 (synopsis "Select a Makefile target with helm")
5047 (description "@code{helm-make} or @code{helm-make-projectile} will give
5048 you a @code{helm} selection of directory Makefile's targets. Selecting a
5049 target will call @code{compile} on it.")
5050 (license license:gpl3+))))
5051
5052 (define-public emacs-cider
5053 (package
5054 (name "emacs-cider")
5055 (version "0.18.0")
5056 (source
5057 (origin
5058 (method git-fetch)
5059 (uri (git-reference
5060 (url "https://github.com/clojure-emacs/cider.git")
5061 (commit (string-append "v" version))))
5062 (file-name (git-file-name name version))
5063 (sha256
5064 (base32
5065 "1m9kc88vga3q5d731qnpngnsa0n57pf21k3hll20rw8rggrx4vdn"))))
5066 (build-system emacs-build-system)
5067 (arguments
5068 '(#:exclude ; Don't exclude 'cider-test.el'.
5069 '("^\\.dir-locals\\.el$" "^test/")))
5070 (propagated-inputs
5071 `(("emacs-clojure-mode" ,emacs-clojure-mode)
5072 ("emacs-sesman" ,emacs-sesman)
5073 ("emacs-spinner" ,emacs-spinner)
5074 ("emacs-pkg-info" ,emacs-pkg-info)
5075 ("emacs-queue" ,emacs-queue)))
5076 (home-page "https://cider.readthedocs.io/")
5077 (synopsis "Clojure development environment for Emacs")
5078 (description
5079 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
5080 provide an interactive development experience similar to the one you'd get
5081 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
5082 Geiser) and Smalltalk.
5083
5084 CIDER is the successor to the now deprecated combination of using SLIME +
5085 swank-clojure for Clojure development.
5086
5087 There are plenty of differences between CIDER and SLIME, but the core ideas
5088 are pretty much the same (and SLIME served as the principle inspiration for
5089 CIDER).")
5090 (license license:gpl3+)))
5091
5092 ;; There hasn't been a tag or release since 2015, so we take the latest
5093 ;; commit.
5094 (define-public emacs-sly
5095 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
5096 (revision "1"))
5097 (package
5098 (name "emacs-sly")
5099 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
5100 (source
5101 (origin
5102 (method git-fetch)
5103 (uri (git-reference
5104 (url "https://github.com/joaotavora/sly.git")
5105 (commit commit)))
5106 (file-name (git-file-name name version))
5107 (sha256
5108 (base32
5109 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
5110 (build-system emacs-build-system)
5111 (arguments
5112 `(#:include (cons "^lib\\/" %default-include)
5113 #:phases
5114 ;; The package provides autoloads.
5115 (modify-phases %standard-phases
5116 (delete 'make-autoloads))))
5117 (home-page "https://github.com/joaotavora/sly")
5118 (synopsis "Sylvester the Cat's Common Lisp IDE")
5119 (description
5120 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
5121 contains the following improvements over it:
5122
5123 @enumerate
5124 @item Completely redesigned REPL based on Emacs's own full-featured
5125 @code{comint.el}
5126 @item Live code annotations via a new @code{sly-stickers} contrib
5127 @item Consistent interactive button interface. Everything can be copied to
5128 the REPL.
5129 @item Multiple inspectors with independent history
5130 @item Regexp-capable @code{M-x sly-apropos}
5131 @item Contribs are first class SLY citizens and enabled by default
5132 @item Use ASDF to loads contribs on demand.
5133 @end enumerate
5134
5135 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
5136 xref, etc...) are still available, but with better integration.")
5137 (license license:gpl3+))))
5138
5139 (define-public emacs-lua-mode
5140 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
5141 (revision "1"))
5142 (package
5143 (name "emacs-lua-mode")
5144 (version (string-append "20151025." revision "-" (string-take commit 9)))
5145 (home-page "https://github.com/immerrr/lua-mode/")
5146 (source (origin
5147 (method git-fetch)
5148 (uri (git-reference
5149 (url home-page)
5150 (commit commit)))
5151 (file-name (string-append name "-" version ".checkout"))
5152 (sha256
5153 (base32
5154 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
5155 (build-system emacs-build-system)
5156 (synopsis "Major mode for lua")
5157 (description
5158 "This Emacs package provides a mode for @uref{https://www.lua.org/,
5159 Lua programing language}.")
5160 (license license:gpl2+))))
5161
5162 (define-public emacs-ebuild-mode
5163 (package
5164 (name "emacs-ebuild-mode")
5165 (version "1.37")
5166 (source (origin
5167 (method url-fetch)
5168 (uri (string-append
5169 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
5170 "-" version ".tar.xz"))
5171 (file-name (string-append name "-" version ".tar.xz"))
5172 (sha256
5173 (base32
5174 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
5175 (build-system emacs-build-system)
5176 (home-page "https://devmanual.gentoo.org")
5177 (synopsis "Major modes for Gentoo package files")
5178 (description
5179 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
5180 news items, openrc and runscripts.")
5181 (license license:gpl2+)))
5182
5183 (define-public emacs-evil
5184 (package
5185 (name "emacs-evil")
5186 (version "1.2.14")
5187 (source
5188 (origin
5189 (method git-fetch)
5190 (uri (git-reference
5191 (url "https://github.com/emacs-evil/evil")
5192 (commit version)))
5193 (file-name (string-append name "-" version "-checkout"))
5194 (sha256
5195 (base32
5196 "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"))))
5197 (build-system emacs-build-system)
5198 (propagated-inputs
5199 `(("emacs-undo-tree" ,emacs-undo-tree)
5200 ("emacs-goto-chg" ,emacs-goto-chg)))
5201 (home-page "https://github.com/emacs-evil/evil")
5202 (synopsis "Extensible Vi layer for Emacs")
5203 (description
5204 "Evil is an extensible vi layer for Emacs. It emulates the
5205 main features of Vim, and provides facilities for writing custom
5206 extensions.")
5207 (license license:gpl3+)))
5208
5209 (define-public emacs-evil-collection
5210 (let ((commit "0cfdf4ecf0420aac2a9dd29ff7b54067c3433d71")
5211 (revision "6"))
5212 (package
5213 (name "emacs-evil-collection")
5214 (version (git-version "0.0.1" revision commit))
5215 (source (origin
5216 (method git-fetch)
5217 (uri (git-reference
5218 (url "https://github.com/emacs-evil/evil-collection")
5219 (commit commit)))
5220 (file-name (string-append name "-" version "-checkout"))
5221 (sha256
5222 (base32
5223 "1igsvgxvij918myc397cjhfybmm11znc7961vnbcd5xlviq2p01y"))))
5224 (build-system emacs-build-system)
5225 (propagated-inputs
5226 `(("emacs-evil" ,emacs-evil)))
5227 (home-page "https://github.com/emacs-evil/evil-collection")
5228 (synopsis "Collection of Evil bindings for many major and minor modes")
5229 (description "This is a collection of Evil bindings for the parts of
5230 Emacs that Evil does not cover properly by default, such as @code{help-mode},
5231 @code{M-x calendar}, Eshell and more.")
5232 (license license:gpl3+))))
5233
5234 (define-public emacs-goto-chg
5235 (package
5236 (name "emacs-goto-chg")
5237 (version "1.6")
5238 (source
5239 (origin
5240 (method url-fetch)
5241 ;; There is no versioned source.
5242 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
5243 (file-name (string-append "goto-chg-" version ".el"))
5244 (sha256
5245 (base32
5246 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
5247 (build-system emacs-build-system)
5248 ;; There is no other home page.
5249 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
5250 (synopsis "Go to the last change in the Emacs buffer")
5251 (description
5252 "This package provides @code{M-x goto-last-change} command that goes to
5253 the point of the most recent edit in the current Emacs buffer. When repeated,
5254 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
5255 used for reverse direction.")
5256 (license license:gpl2+)))
5257
5258 (define-public emacs-monroe
5259 (package
5260 (name "emacs-monroe")
5261 (version "0.3.1")
5262 (source
5263 (origin
5264 (method url-fetch)
5265 (uri (string-append "https://github.com/sanel/monroe/archive/"
5266 version ".tar.gz"))
5267 (file-name (string-append name "-" version ".tar.gz"))
5268 (sha256
5269 (base32
5270 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
5271 (build-system emacs-build-system)
5272 (home-page "https://github.com/sanel/monroe")
5273 (synopsis "Clojure nREPL client for Emacs")
5274 (description
5275 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
5276 distribution, primarily targeting Clojure users")
5277 (license license:gpl3+)))
5278
5279 (define-public emacs-orgalist
5280 (package
5281 (name "emacs-orgalist")
5282 (version "1.9")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (string-append "https://elpa.gnu.org/packages/"
5287 "orgalist-" version ".el"))
5288 (sha256
5289 (base32
5290 "1rmmcyiiqkq54hn74nhzxzl4nvd902hv6gq341jwhrm7yiagffi6"))))
5291 (build-system emacs-build-system)
5292 (home-page "http://elpa.gnu.org/packages/orgalist.html")
5293 (synopsis "Manage Org-like lists in non-Org buffers")
5294 (description "Write Org mode's plain lists in non-Org buffers. More
5295 specifically, Orgalist supports the syntax of Org mode for numbered,
5296 unnumbered, description items, checkboxes, and counter cookies.
5297
5298 The library also implements radio lists, i.e., lists written in Org
5299 syntax later translated into the host format, e.g., LaTeX or HTML.")
5300 (license license:gpl3+)))
5301
5302 (define-public emacs-writegood-mode
5303 (package
5304 (name "emacs-writegood-mode")
5305 (version "2.0.2")
5306 (home-page "https://github.com/bnbeckwith/writegood-mode")
5307 (source (origin
5308 (method git-fetch)
5309 (uri (git-reference
5310 (url home-page)
5311 (commit (string-append "v" version))))
5312 (sha256
5313 (base32
5314 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5315 (file-name (string-append name "-checkout"))))
5316 (build-system emacs-build-system)
5317 (synopsis "Polish up poor writing on the fly")
5318 (description
5319 "This minor mode tries to find and highlight problems with your writing
5320 in English as you type. It primarily detects \"weasel words\" and abuse of
5321 passive voice.")
5322 (license license:gpl3+)))
5323
5324 (define-public emacs-neotree
5325 (package
5326 (name "emacs-neotree")
5327 (version "0.5.2")
5328 (home-page "https://github.com/jaypei/emacs-neotree")
5329 (source (origin
5330 (method url-fetch)
5331 (uri (string-append
5332 "https://github.com/jaypei/" name
5333 "/archive/" version ".tar.gz"))
5334 (sha256
5335 (base32
5336 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
5337 (file-name (string-append name "-" version ".tar.gz"))))
5338 (build-system emacs-build-system)
5339 (synopsis "Folder tree view for Emacs")
5340 (description "This Emacs package provides a folder tree view.")
5341 (license license:gpl3+)))
5342
5343 (define-public emacs-org
5344 (package
5345 (name "emacs-org")
5346 ;; emacs-org-contrib inherits from this package. Please update its sha256
5347 ;; checksum as well.
5348 (version "9.2.1")
5349 (source (origin
5350 (method url-fetch)
5351 (uri (string-append "http://elpa.gnu.org/packages/org-"
5352 version ".tar"))
5353 (sha256
5354 (base32
5355 "0ggca29pyksvfblyd2ciqhgi392wlqx0nmph7ck4m5wbzmk2qnry"))))
5356 (build-system emacs-build-system)
5357 (home-page "https://orgmode.org/")
5358 (synopsis "Outline-based notes management and organizer")
5359 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5360 lists, and project planning with a fast and effective lightweight markup
5361 language. It also is an authoring system with unique support for literate
5362 programming and reproducible research.")
5363 (license license:gpl3+)))
5364
5365 (define-public emacs-org-contrib
5366 (package
5367 (inherit emacs-org)
5368 (name "emacs-org-contrib")
5369 (version "20190203")
5370 (source (origin
5371 (method url-fetch)
5372 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5373 version ".tar"))
5374 (sha256
5375 (base32
5376 "060rm62p1660n9f6i5w8l932w7gn5ign93q92gva4jy4bkmvczyb"))))
5377 (arguments
5378 `(#:modules ((guix build emacs-build-system)
5379 (guix build utils)
5380 (guix build emacs-utils)
5381 (ice-9 ftw)
5382 (srfi srfi-1))
5383 #:phases
5384 (modify-phases %standard-phases
5385 (add-after 'install 'delete-org-files
5386 (lambda* (#:key inputs outputs #:allow-other-keys)
5387 (let* ((out (assoc-ref outputs "out"))
5388 (org (assoc-ref inputs "org"))
5389 (contrib-files
5390 (map basename (find-files out)))
5391 (org+contrib-files
5392 (map basename (find-files org)))
5393 (duplicates (lset-intersection
5394 string=? contrib-files org+contrib-files)))
5395 (with-directory-excursion
5396 (string-append
5397 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
5398 (for-each delete-file duplicates))
5399 #t))))))
5400 (propagated-inputs
5401 `(("arduino-mode" ,emacs-arduino-mode)
5402 ("cider" ,emacs-cider)
5403 ("org" ,emacs-org)
5404 ("scel" ,emacs-scel)))
5405 (synopsis "Contributed packages to Org mode")
5406 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5407 lists, and project planning with a fast and effective plain-text system.
5408
5409 This package is equivalent to org-plus-contrib, but only includes additional
5410 files that you would find in @file{contrib/} from the git repository.")))
5411
5412 (define-public emacs-flx
5413 (package
5414 (name "emacs-flx")
5415 (version "0.6.1")
5416 (source
5417 (origin
5418 (method url-fetch)
5419 (uri (string-append "https://github.com/lewang/"
5420 "flx/archive/v" version ".tar.gz"))
5421 (sha256
5422 (base32
5423 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5424 (file-name (string-append name "-" version ".tar.gz"))))
5425 (build-system emacs-build-system)
5426 (home-page "https://github.com/lewang/flx")
5427 (synopsis "Fuzzy matching for Emacs")
5428 (description
5429 "Flx provides fuzzy matching for emacs a la sublime text.
5430 The sorting algorithm is a balance between word beginnings (abbreviation)
5431 and contiguous matches (substring). The longer the substring match,
5432 the higher it scores. This maps well to how we think about matching.
5433 Flx has support for ido (interactively do things) through flx-ido.")
5434 (license license:gpl3+)))
5435
5436 (define-public emacs-cyberpunk-theme
5437 (package
5438 (name "emacs-cyberpunk-theme")
5439 (version "1.19")
5440 (source
5441 (origin
5442 (method url-fetch)
5443 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5444 "archive/" version ".tar.gz"))
5445 (sha256
5446 (base32
5447 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
5448 (file-name (string-append name "-" version ".tar.gz"))))
5449 (build-system emacs-build-system)
5450 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5451 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5452 (description
5453 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5454 known loosely as deftheme. Many mode-specific customizations are included.")
5455 (license license:gpl3+)))
5456
5457 (define-public emacs-danneskjold-theme
5458 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5459 (revision "1"))
5460 (package
5461 (name "emacs-danneskjold-theme")
5462 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5463 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5464 (source
5465 (origin
5466 (method git-fetch)
5467 (uri (git-reference
5468 (url home-page)
5469 (commit commit)))
5470 (file-name (string-append name "-" version "-checkout"))
5471 (sha256
5472 (base32
5473 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5474 (build-system emacs-build-system)
5475 (arguments
5476 `(#:phases
5477 (modify-phases %standard-phases
5478 (add-after 'unpack 'delete-screenshots
5479 (lambda _
5480 (delete-file-recursively "screenshots") #t)))))
5481 (synopsis "High-contrast Emacs theme")
5482 (description
5483 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5484 (license license:gpl3+))))
5485
5486 (define-public emacs-dream-theme
5487 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5488 (revision "1"))
5489 (package
5490 (name "emacs-dream-theme")
5491 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5492 (source
5493 (origin
5494 (method git-fetch)
5495 (uri (git-reference
5496 (url "https://github.com/djcb/dream-theme")
5497 (commit commit)))
5498 (file-name (string-append name "-" version "-checkout"))
5499 (sha256
5500 (base32
5501 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5502 (build-system emacs-build-system)
5503 (home-page "https://github.com/djcb/dream-theme")
5504 (synopsis "High-contrast Emacs theme")
5505 (description
5506 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5507 by zenburn, sinburn and similar themes, but slowly diverging from them.")
5508 (license license:gpl3+))))
5509
5510 (define-public emacs-auto-complete
5511 (package
5512 (name "emacs-auto-complete")
5513 (version "1.5.1")
5514 (source
5515 (origin
5516 (method url-fetch)
5517 (uri (string-append "https://github.com/auto-complete/"
5518 "auto-complete/archive/v" version ".tar.gz"))
5519 (sha256
5520 (base32
5521 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5522 (file-name (string-append name "-" version ".tar.gz"))))
5523 (build-system emacs-build-system)
5524 (propagated-inputs
5525 `(("emacs-popup" ,emacs-popup)))
5526 (home-page "https://github.com/auto-complete/auto-complete")
5527 (synopsis "Intelligent auto-completion extension for Emacs")
5528 (description
5529 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5530 It extends the standard Emacs completion interface and provides an environment
5531 that allows users to concentrate more on their own work. Its features are:
5532 a visual interface, reduce overhead of completion by using statistic method,
5533 extensibility.")
5534 (license license:gpl3+)))
5535
5536 (define-public emacs-nginx-mode
5537 (package
5538 (name "emacs-nginx-mode")
5539 (version "1.1.9")
5540 (source
5541 (origin
5542 (method url-fetch)
5543 (uri (string-append
5544 "https://github.com/ajc/nginx-mode/archive/v"
5545 version ".tar.gz"))
5546 (file-name (string-append name "-" version ".tar.gz"))
5547 (sha256
5548 (base32
5549 "0bzyrj6zz1hm67bkhw23bam7qc869s3zg7m1rb1c3aa4n0aw90cq"))))
5550 (build-system emacs-build-system)
5551 (home-page "https://github.com/ajc/nginx-mode")
5552 (synopsis "Emacs major mode for editing nginx config files")
5553 (description "This package provides an Emacs major mode for
5554 editing nginx config files.")
5555 (license license:gpl2+)))
5556
5557 (define-public emacs-stream
5558 (package
5559 (name "emacs-stream")
5560 (version "2.2.0")
5561 (home-page "https://github.com/NicolasPetton/stream")
5562 (source
5563 (origin
5564 (method url-fetch)
5565 (file-name (string-append name "-" version ".tar.gz"))
5566 (uri (string-append home-page "/archive/"version ".tar.gz"))
5567 (sha256
5568 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5569 (build-system emacs-build-system)
5570 (synopsis "Implementation of streams for Emacs")
5571 (description "This library provides an implementation of streams for Emacs.
5572 Streams are implemented as delayed evaluation of cons cells.")
5573 (license license:gpl3+)))
5574
5575 (define-public emacs-el-search
5576 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5577 (revision "1"))
5578 (package
5579 (name "emacs-el-search")
5580 ;; No ufficial release.
5581 (version (string-append "0.0-" revision "." (string-take commit 7)))
5582 (home-page "https://github.com/emacsmirror/el-search")
5583 (source
5584 (origin
5585 (method git-fetch)
5586 (file-name (string-append name "-" version ".tar.gz"))
5587 (uri (git-reference
5588 (commit commit)
5589 (url (string-append home-page ".git"))))
5590 (sha256
5591 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5592 (build-system emacs-build-system)
5593 (inputs `(("emacs-stream" ,emacs-stream)))
5594 (synopsis "Expression based interactive search for emacs-lisp-mode")
5595 (description "This package provides expression based interactive search
5596 procedures for emacs-lisp-mode.")
5597 (license license:gpl3+))))
5598
5599 (define-public emacs-ht
5600 (package
5601 (name "emacs-ht")
5602 (version "2.1")
5603 (source
5604 (origin
5605 (method url-fetch)
5606 (uri (string-append
5607 "https://github.com/Wilfred/ht.el/archive/"
5608 version ".tar.gz"))
5609 (file-name (string-append name "-" version ".tar.gz"))
5610 (sha256
5611 (base32
5612 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5613 (build-system emacs-build-system)
5614 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5615 (home-page "https://github.com/Wilfred/ht.el")
5616 (synopsis "Hash table library for Emacs")
5617 (description
5618 "This package simplifies the use of hash tables in elisp. It also
5619 provides functions to convert hash tables from and to alists and plists.")
5620 (license license:gpl3+)))
5621
5622 (define-public emacs-log4e
5623 (package
5624 (name "emacs-log4e")
5625 (version "0.3.0")
5626 (source
5627 (origin
5628 (method url-fetch)
5629 (uri (string-append
5630 "https://github.com/aki2o/log4e/archive/v"
5631 version ".tar.gz"))
5632 (file-name (string-append name "-" version ".tar.gz"))
5633 (sha256
5634 (base32
5635 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5636 (build-system emacs-build-system)
5637 (arguments
5638 `(#:phases
5639 (modify-phases %standard-phases
5640 (add-after 'unpack 'remove-tests
5641 ;; Guile builder complains about null characters in some
5642 ;; strings of test files. Remove "test" directory (it is not
5643 ;; needed anyway).
5644 (lambda _
5645 (delete-file-recursively "test"))))))
5646 (home-page "https://github.com/aki2o/log4e")
5647 (synopsis "Logging framework for elisp")
5648 (description
5649 "This package provides a logging framework for elisp. It allows
5650 you to deal with multiple log levels.")
5651 (license license:gpl3+)))
5652
5653 (define-public emacs-gntp
5654 (package
5655 (name "emacs-gntp")
5656 (version "0.1")
5657 (source
5658 (origin
5659 (method url-fetch)
5660 (uri (string-append
5661 "https://github.com/tekai/gntp.el/archive/v"
5662 version ".tar.gz"))
5663 (file-name (string-append name "-" version ".tar.gz"))
5664 (sha256
5665 (base32
5666 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5667 (build-system emacs-build-system)
5668 (home-page "https://github.com/tekai/gntp.el")
5669 (synopsis "Growl Notification Protocol for Emacs")
5670 (description
5671 "This package implements the Growl Notification Protocol GNTP
5672 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5673 It is incomplete as it only lets you send but not receive
5674 notifications.")
5675 (license license:bsd-3)))
5676
5677 (define-public emacs-alert
5678 (package
5679 (name "emacs-alert")
5680 (version "1.2")
5681 (source
5682 (origin
5683 (method url-fetch)
5684 (uri (string-append
5685 "https://github.com/jwiegley/alert/archive/v"
5686 version ".tar.gz"))
5687 (file-name (string-append name "-" version ".tar.gz"))
5688 (sha256
5689 (base32
5690 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5691 (build-system emacs-build-system)
5692 (propagated-inputs
5693 `(("emacs-gntp" ,emacs-gntp)
5694 ("emacs-log4e" ,emacs-log4e)))
5695 (home-page "https://github.com/jwiegley/alert")
5696 (synopsis "Growl-style notification system for Emacs")
5697 (description
5698 "Alert is a Growl-workalike for Emacs which uses a common notification
5699 interface and multiple, selectable \"styles\", whose use is fully
5700 customizable by the user.")
5701 (license license:gpl2+)))
5702
5703 (define-public emacs-mu4e-alert
5704 (package
5705 (name "emacs-mu4e-alert")
5706 (version "1.0")
5707 (source
5708 (origin
5709 (method url-fetch)
5710 (uri (string-append
5711 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5712 version ".tar.gz"))
5713 (file-name (string-append name "-" version ".tar.gz"))
5714 (sha256
5715 (base32
5716 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
5717 (build-system emacs-build-system)
5718 (propagated-inputs
5719 `(("emacs-alert" ,emacs-alert)
5720 ("emacs-s" ,emacs-s)
5721 ("emacs-ht" ,emacs-ht)
5722 ("mu" ,mu)))
5723 (home-page "https://github.com/iqbalansari/mu4e-alert")
5724 (synopsis "Desktop notification for mu4e")
5725 (description
5726 "This package provides desktop notifications for mu4e.
5727 Additionally it can display the number of unread emails in the
5728 mode-line.")
5729 (license license:gpl3+)))
5730
5731 (define-public emacs-pretty-mode
5732 (package
5733 (name "emacs-pretty-mode")
5734 (version "2.0.3")
5735 (source
5736 (origin
5737 (method url-fetch)
5738 (uri (string-append "https://github.com/akatov/pretty-mode/"
5739 "archive/" version ".tar.gz"))
5740 (file-name (string-append name "-" version ".tar.gz"))
5741 (sha256
5742 (base32
5743 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5744 (build-system emacs-build-system)
5745 (home-page "https://github.com/akatov/pretty-mode")
5746 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5747 (description
5748 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5749 (license license:gpl3+)))
5750
5751 (define-public emacs-yasnippet
5752 (package
5753 (name "emacs-yasnippet")
5754 (version "0.13.0")
5755 (source (origin
5756 (method url-fetch)
5757 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5758 "archive/" version ".tar.gz"))
5759 (file-name (string-append name "-" version ".tar.gz"))
5760 (sha256
5761 (base32
5762 "12ls2x17agzbrj1xynjbmfa11igqxia4hj4fv6fpr66yci2r1plc"))
5763 (modules '((guix build utils)))
5764 (snippet
5765 '(begin
5766 ;; YASnippet expects a "snippets" subdirectory in the same
5767 ;; directory as yasnippet.el, but we don't install it
5768 ;; because it's a git submodule pointing to an external
5769 ;; repository. Adjust `yas-snippet-dirs' to prevent
5770 ;; warnings about a missing directory.
5771 (substitute* "yasnippet.el"
5772 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5773 "))\n"))
5774 #t))))
5775 (build-system emacs-build-system)
5776 (home-page "https://github.com/joaotavora/yasnippet")
5777 (synopsis "Yet another snippet extension for Emacs")
5778 (description
5779 "YASnippet is a template system for Emacs. It allows you to type an
5780 abbreviation and automatically expand it into function templates.")
5781 (license license:gpl3+)))
5782
5783 (define-public emacs-yasnippet-snippets
5784 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5785 (revision "1"))
5786 (package
5787 (name "emacs-yasnippet-snippets")
5788 (version (string-append "1-" revision "." (string-take commit 8)))
5789 (source
5790 (origin
5791 (method git-fetch)
5792 (uri (git-reference
5793 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5794 (commit commit)))
5795 (file-name (string-append name "-" version "-checkout"))
5796 (sha256
5797 (base32
5798 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5799 (build-system trivial-build-system)
5800 (arguments
5801 `(#:modules ((ice-9 ftw)
5802 (ice-9 regex)
5803 (guix build utils))
5804 #:builder
5805 (begin
5806 (use-modules (ice-9 ftw)
5807 (ice-9 regex)
5808 (guix build utils))
5809 (with-directory-excursion (assoc-ref %build-inputs "source")
5810 (for-each (lambda (dir)
5811 (copy-recursively
5812 dir
5813 (string-append %output
5814 "/share/emacs/yasnippet-snippets/"
5815 dir)))
5816 (scandir "." (lambda (fname)
5817 (and (string-match "-mode$" fname)
5818 (directory-exists? fname))))))
5819 #t)))
5820 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5821 (synopsis "Collection of YASnippet snippets for many languages")
5822 (description
5823 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5824 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5825 To make YASnippet aware of these snippets, add the above directory to
5826 @code{yas-snippet-dirs}.")
5827 (license license:expat))))
5828
5829 (define-public emacs-helm-c-yasnippet
5830 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5831 (revision "1"))
5832 (package
5833 (name "emacs-helm-c-yasnippet")
5834 (version (string-append "0.6.7" "-" revision "."
5835 (string-take commit 7)))
5836 (source (origin
5837 (method git-fetch)
5838 (uri (git-reference
5839 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5840 (commit commit)))
5841 (file-name (string-append name "-" version "-checkout"))
5842 (sha256
5843 (base32
5844 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5845 (build-system emacs-build-system)
5846 (propagated-inputs
5847 `(("emacs-helm" ,emacs-helm)
5848 ("emacs-yasnippet" ,emacs-yasnippet)))
5849 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5850 (synopsis "Helm integration for Yasnippet")
5851 (description "This Emacs library provides Helm interface for
5852 Yasnippet.")
5853 (license license:gpl2+))))
5854
5855 (define-public emacs-helm-system-packages
5856 (package
5857 (name "emacs-helm-system-packages")
5858 (version "1.10.1")
5859 (source (origin
5860 (method git-fetch)
5861 (uri (git-reference
5862 (url "https://github.com/emacs-helm/helm-system-packages")
5863 (commit (string-append "v" version))))
5864 (file-name (string-append name "-" version "-checkout"))
5865 (sha256
5866 (base32
5867 "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f"))))
5868 (build-system emacs-build-system)
5869 (inputs
5870 `(("recutils" ,recutils)))
5871 (propagated-inputs
5872 `(("emacs-helm" ,emacs-helm)))
5873 (arguments
5874 `(#:phases
5875 (modify-phases %standard-phases
5876 (add-after 'unpack 'configure
5877 (lambda* (#:key inputs outputs #:allow-other-keys)
5878 (let ((recutils (assoc-ref inputs "recutils")))
5879 ;; Specify the absolute file names of the various
5880 ;; programs so that everything works out-of-the-box.
5881 (substitute* "helm-system-packages-guix.el"
5882 (("recsel") (string-append recutils "/bin/recsel")))))))))
5883 (home-page "https://github.com/emacs-helm/helm-system-packages")
5884 (synopsis "Helm System Packages is an interface to your package manager")
5885 (description "List all available packages in Helm (with installed
5886 packages displayed in their own respective face). Fuzzy-search, mark and
5887 execute the desired action over any selections of packages: Install,
5888 uninstall, display packages details (in Org Mode) or insert details at point,
5889 find files owned by packages... And much more, including performing all the
5890 above over the network.")
5891 (license license:gpl3+)))
5892
5893 (define-public emacs-memoize
5894 (package
5895 (name "emacs-memoize")
5896 (version "1.1")
5897 (source
5898 (origin
5899 (method url-fetch)
5900 (uri (string-append
5901 "https://github.com/skeeto/emacs-memoize/archive/"
5902 version ".tar.gz"))
5903 (file-name (string-append name "-" version ".tar.gz"))
5904 (sha256
5905 (base32
5906 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
5907 (build-system emacs-build-system)
5908 (arguments
5909 `(#:tests? #t
5910 #:test-command '("emacs" "--batch"
5911 "-l" "memoize-test.el"
5912 "-f" "ert-run-tests-batch-and-exit")))
5913 (home-page "https://github.com/skeeto/emacs-memoize")
5914 (synopsis "Emacs lisp memoization library")
5915 (description "@code{emacs-memoize} is an Emacs library for
5916 memoizing functions.")
5917 (license license:unlicense)))
5918
5919 (define-public emacs-linum-relative
5920 (package
5921 (name "emacs-linum-relative")
5922 (version "0.5")
5923 (source
5924 (origin
5925 (method url-fetch)
5926 (uri (string-append
5927 "https://github.com/coldnew/linum-relative/archive/"
5928 version ".tar.gz"))
5929 (file-name (string-append name "-" version ".tar.gz"))
5930 (sha256
5931 (base32
5932 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5933 (build-system emacs-build-system)
5934 (home-page "https://github.com/coldnew/linum-relative")
5935 (synopsis "Relative line numbering for Emacs")
5936 (description "@code{emacs-linum-relative} displays the relative line
5937 number on the left margin in Emacs.")
5938 (license license:gpl2+)))
5939
5940 (define-public emacs-idle-highlight
5941 (package
5942 (name "emacs-idle-highlight")
5943 (version "1.1.3")
5944 (source
5945 (origin
5946 (method url-fetch)
5947 (uri (string-append
5948 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5949 version ".tar.gz"))
5950 (file-name (string-append name "-" version ".tar.gz"))
5951 (sha256
5952 (base32
5953 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5954 (build-system emacs-build-system)
5955 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5956 (synopsis "Highlights all occurrences of the word the point is on")
5957 (description
5958 "This Emacs package provides @code{idle-highlight-mode} that sets
5959 an idle timer to highlight all occurrences in the buffer of the word under
5960 the point.")
5961 (license license:gpl3+)))
5962
5963 (define-public emacs-ox-twbs
5964 (package
5965 (name "emacs-ox-twbs")
5966 (version "1.1.1")
5967 (source
5968 (origin
5969 (method url-fetch)
5970 (uri (string-append
5971 "https://github.com/marsmining/ox-twbs/archive/v"
5972 version ".tar.gz"))
5973 (file-name (string-append name "-" version ".tar.gz"))
5974 (sha256
5975 (base32
5976 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5977 (build-system emacs-build-system)
5978 (home-page "https://github.com/marsmining/ox-twbs")
5979 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5980 (description
5981 "This Emacs package outputs your org-mode docs with a simple, clean and
5982 modern look. It implements a new HTML back-end for exporting org-mode docs as
5983 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5984 jQuery and Bootstrap resources included via osscdn.")
5985 (license license:gpl3+)))
5986
5987 (define-public emacs-highlight-sexp
5988 (package
5989 (name "emacs-highlight-sexp")
5990 (version "1.0")
5991 (source
5992 (origin
5993 (method url-fetch)
5994 (uri (string-append
5995 "https://github.com/daimrod/highlight-sexp/archive/v"
5996 version ".tar.gz"))
5997 (file-name (string-append name "-" version ".tar.gz"))
5998 (sha256
5999 (base32
6000 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
6001 (build-system emacs-build-system)
6002 (home-page "https://github.com/daimrod/highlight-sexp")
6003 (synopsis "Minor mode that highlights the s-exp at the current position")
6004 (description
6005 "This Emacs package highlights the s-exp at the current position.")
6006 (license license:gpl3+)))
6007
6008 (define-public emacs-highlight-stages
6009 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
6010 (revision "1"))
6011 (package
6012 (name "emacs-highlight-stages")
6013 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
6014 (source
6015 (origin
6016 (method git-fetch)
6017 (uri (git-reference
6018 (url "https://github.com/zk-phi/highlight-stages.git")
6019 (commit commit)))
6020 (file-name (string-append name "-" version "-checkout"))
6021 (sha256
6022 (base32
6023 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
6024 (patches
6025 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
6026 (build-system emacs-build-system)
6027 (home-page "https://github.com/wigust/highlight-stages")
6028 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
6029 (description "@code{highlight-stages} provides an Emacs minor mode that
6030 highlights quasi-quoted expressions.")
6031 (license license:gpl3+))))
6032
6033 (define-public emacspeak
6034 (package
6035 (name "emacspeak")
6036 (version "49.0")
6037 (source
6038 (origin
6039 (method url-fetch)
6040 (uri (string-append
6041 "https://github.com/tvraman/emacspeak/releases/download/"
6042 version "/emacspeak-" version ".tar.bz2"))
6043 (sha256
6044 (base32
6045 "1smf26m7201z0bk49lzbw9zhbjfi6wylidfjixb8ylp6g0wnh8dx"))))
6046 (build-system gnu-build-system)
6047 (arguments
6048 '(#:make-flags (list (string-append "prefix="
6049 (assoc-ref %outputs "out")))
6050 #:phases
6051 (modify-phases %standard-phases
6052 (replace 'configure
6053 (lambda* (#:key outputs #:allow-other-keys)
6054 (let* ((out (assoc-ref outputs "out"))
6055 (lisp (string-append out
6056 "/share/emacs/site-lisp/emacspeak")))
6057 (setenv "SHELL" (which "sh"))
6058 ;; Configure Emacspeak according to etc/install.org.
6059 (invoke "make" "config"))))
6060 (add-after 'build 'build-espeak
6061 (lambda _
6062 (invoke "make" "espeak")))
6063 (replace 'install
6064 (lambda* (#:key inputs outputs #:allow-other-keys)
6065 (let* ((out (assoc-ref outputs "out"))
6066 (bin (string-append out "/bin"))
6067 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
6068 (info (string-append out "/share/info"))
6069 (emacs (string-append (assoc-ref inputs "emacs")
6070 "/bin/emacs")))
6071 ;; According to etc/install.org, the Emacspeak directory should
6072 ;; be copied to its installation destination.
6073 (for-each
6074 (lambda (file)
6075 (copy-recursively file (string-append lisp "/" file)))
6076 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
6077 "stumpwm" "xsl"))
6078 ;; Make sure emacspeak is loaded from the correct directory.
6079 (substitute* "etc/emacspeak.sh"
6080 (("/lisp/emacspeak-setup.el")
6081 (string-append lisp "/lisp/emacspeak-setup.el")))
6082 ;; Install the convenient startup script.
6083 (mkdir-p bin)
6084 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
6085 #t))
6086 (add-after 'install 'wrap-program
6087 (lambda* (#:key inputs outputs #:allow-other-keys)
6088 (let* ((out (assoc-ref outputs "out"))
6089 (emacspeak (string-append out "/bin/emacspeak"))
6090 (espeak (string-append (assoc-ref inputs "espeak")
6091 "/bin/espeak")))
6092 ;; The environment variable DTK_PROGRAM tells emacspeak what
6093 ;; program to use for speech.
6094 (wrap-program emacspeak
6095 `("DTK_PROGRAM" ":" prefix (,espeak)))
6096 #t))))
6097 #:tests? #f)) ; no check target
6098 (inputs
6099 `(("emacs" ,emacs)
6100 ("espeak" ,espeak)
6101 ("perl" ,perl)
6102 ("tcl" ,tcl)
6103 ("tclx" ,tclx)))
6104 (home-page "http://emacspeak.sourceforge.net")
6105 (synopsis "Audio desktop interface for Emacs")
6106 (description
6107 "Emacspeak is a speech interface that allows visually impaired users to
6108 interact independently and efficiently with the computer. Audio formatting
6109 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
6110 allows Emacspeak to produce rich aural presentations of electronic information.
6111 By seamlessly blending all aspects of the Internet such as Web-surfing and
6112 messaging, Emacspeak speech-enables local and remote information via a
6113 consistent and well-integrated user interface.")
6114 (license license:gpl2+)))
6115
6116 (define-public emacs-adaptive-wrap
6117 (package
6118 (name "emacs-adaptive-wrap")
6119 (version "0.5.1")
6120 (source (origin
6121 (method url-fetch)
6122 (uri (string-append
6123 "http://elpa.gnu.org/packages/adaptive-wrap-"
6124 version ".el"))
6125 (sha256
6126 (base32
6127 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
6128 (build-system emacs-build-system)
6129 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
6130 (synopsis "Smart line-wrapping with wrap-prefix")
6131 (description
6132 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
6133 minor mode which sets the wrap-prefix property on the fly so that
6134 single-long-line paragraphs get word-wrapped in a way similar to what
6135 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
6136 actually changing the buffer's text.")
6137 (license license:gpl3+)))
6138
6139 (define-public emacs-diff-hl
6140 (package
6141 (name "emacs-diff-hl")
6142 (version "1.8.5")
6143 (source
6144 (origin
6145 (method url-fetch)
6146 (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
6147 version ".tar"))
6148 (sha256
6149 (base32
6150 "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
6151 (build-system emacs-build-system)
6152 (home-page "https://github.com/dgutov/diff-hl")
6153 (synopsis
6154 "Highlight uncommitted changes using VC")
6155 (description
6156 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
6157 window (using the fringe, by default), allows you to jump between
6158 the hunks and revert them selectively.")
6159 (license license:gpl3+)))
6160
6161 (define-public emacs-diminish
6162 (package
6163 (name "emacs-diminish")
6164 (version "0.45")
6165 (source
6166 (origin
6167 (method url-fetch)
6168 (uri (string-append
6169 "https://github.com/myrjola/diminish.el/archive/v"
6170 version ".tar.gz"))
6171 (file-name (string-append name "-" version ".tar.gz"))
6172 (sha256
6173 (base32
6174 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
6175 (build-system emacs-build-system)
6176 (home-page "https://github.com/myrjola/diminish.el")
6177 (synopsis "Diminish minor modes with no modeline display")
6178 (description "@code{emacs-diminish} implements hiding or
6179 abbreviation of the mode line displays (lighters) of minor modes.")
6180 (license license:gpl2+)))
6181
6182 (define-public emacs-use-package
6183 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
6184 (revision "1"))
6185 (package
6186 (name "emacs-use-package")
6187 (version (git-version "2.3" revision commit))
6188 (source (origin
6189 (method git-fetch)
6190 (uri (git-reference
6191 (url "https://github.com/jwiegley/use-package")
6192 (commit commit)))
6193 (file-name (git-file-name name version))
6194 (sha256
6195 (base32
6196 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
6197 (build-system emacs-build-system)
6198 (propagated-inputs
6199 `(("emacs-diminish" ,emacs-diminish)))
6200 (arguments
6201 `(#:tests? #t
6202 #:test-command '("emacs" "--batch"
6203 "-l" "use-package-tests.el"
6204 "-f" "ert-run-tests-batch-and-exit")))
6205 (home-page "https://github.com/jwiegley/use-package")
6206 (synopsis "Declaration for simplifying your .emacs")
6207 (description "The use-package macro allows you to isolate package
6208 configuration in your @file{.emacs} file in a way that is both
6209 performance-oriented and tidy.")
6210 (license license:gpl2+))))
6211
6212 (define-public emacs-strace-mode
6213 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
6214 (revision "1"))
6215 (package
6216 (name "emacs-strace-mode")
6217 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
6218 (source (origin
6219 (method git-fetch)
6220 (uri (git-reference
6221 (url "https://github.com/pkmoore/strace-mode")
6222 (commit commit)))
6223 (file-name (string-append name "-" version "-checkout"))
6224 (sha256
6225 (base32
6226 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
6227 (build-system emacs-build-system)
6228 (home-page "https://github.com/pkmoore/strace-mode")
6229 (synopsis "Emacs major mode to highlight strace outputs")
6230 (description "@code{emacs-strace-mode} provides an Emacs major mode
6231 highlighting strace outputs.")
6232 (license license:gpl3+))))
6233
6234 (define-public emacs-default-encrypt
6235 (package
6236 (name "emacs-default-encrypt")
6237 (version "4.3")
6238 (source
6239 (origin
6240 (method url-fetch)
6241 (uri (string-append
6242 "https://www.informationelle-selbstbestimmung-im-internet.de"
6243 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
6244 (file-name (string-append "jl-encrypt-" version ".el"))
6245 (sha256
6246 (base32
6247 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6248 (build-system emacs-build-system)
6249 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6250 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6251 (description
6252 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6253 automatically encrypts messages that you send (e.g., email) when public keys
6254 for all recipients are available, and it protects you from accidentally
6255 sending un-encrypted messages. It can also be configured to automatically
6256 sign messages that you send. For details and instructions on how to use
6257 DefaultEncrypt, please refer to the home page or read the comments in the
6258 source file, @file{jl-encrypt.el}.")
6259 (license license:gpl3+)))
6260
6261 (define-public emacs-htmlize
6262 (package
6263 (name "emacs-htmlize")
6264 (version "1.53")
6265 (source
6266 (origin
6267 (method url-fetch)
6268 (uri (string-append
6269 "https://github.com/hniksic/emacs-htmlize/archive/release/"
6270 version ".tar.gz"))
6271 (file-name (string-append name "-" version ".tar.gz"))
6272 (sha256
6273 (base32
6274 "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
6275 (build-system emacs-build-system)
6276 (home-page "https://github.com/hniksic/emacs-htmlize")
6277 (synopsis "Convert buffer text and decorations to HTML")
6278 (description "@code{emacs-htmlize} converts the buffer text and
6279 the associated decorations to HTML. Output to CSS, inline CSS and
6280 fonts is supported.")
6281 (license license:gpl2+)))
6282
6283 (define-public emacs-xmlgen
6284 (package
6285 (name "emacs-xmlgen")
6286 (version "0.5")
6287 (source
6288 (origin
6289 (method url-fetch)
6290 (uri (string-append
6291 "https://github.com/philjackson/xmlgen/archive/"
6292 version ".tar.gz"))
6293 (file-name (string-append name "-" version ".tar.gz"))
6294 (sha256
6295 (base32
6296 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
6297 (build-system emacs-build-system)
6298 (arguments
6299 `(#:tests? #t
6300 #:test-command '("emacs" "--batch"
6301 "-l" "xmlgen-test.el"
6302 "-f" "ert-run-tests-batch-and-exit")))
6303 (home-page "https://github.com/philjackson/xmlgen")
6304 (synopsis "S-expression to XML domain specific language (DSL) in
6305 Emacs Lisp")
6306 (description "@code{emacs-xmlgen} provides S-expression to XML
6307 conversion for Emacs Lisp.")
6308 (license license:gpl2+)))
6309
6310 (define-public emacs-cdlatex
6311 (package
6312 (name "emacs-cdlatex")
6313 (version "4.7")
6314 (source
6315 (origin
6316 (method url-fetch)
6317 (uri (string-append
6318 "https://github.com/cdominik/cdlatex/archive/"
6319 version ".tar.gz"))
6320 (file-name (string-append name "-" version ".tar.gz"))
6321 (sha256
6322 (base32
6323 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
6324 (build-system emacs-build-system)
6325 (propagated-inputs
6326 `(("emacs-auctex" ,emacs-auctex)))
6327 (home-page "https://github.com/cdominik/cdlatex")
6328 (synopsis "Fast Emacs input methods for LaTeX environments and
6329 math")
6330 (description "CDLaTeX is an Emacs minor mode supporting fast
6331 insertion of environment templates and math in LaTeX. Similar
6332 commands are also offered as part of the AUCTeX package, but it is not
6333 the same - CDLaTeX focuses on speediness for inserting LaTeX
6334 constructs.")
6335 (license license:gpl3+)))
6336
6337 (define-public emacs-cnfonts
6338 (package
6339 (name "emacs-cnfonts")
6340 (version "0.9.1")
6341 (source (origin
6342 (method url-fetch)
6343 (uri (string-append
6344 "https://github.com/tumashu/cnfonts/archive/v"
6345 version ".tar.gz"))
6346 (file-name (string-append name "-" version ".tar.gz"))
6347 (sha256
6348 (base32
6349 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
6350 (build-system emacs-build-system)
6351 (home-page "https://github.com/tumashu/cnfonts")
6352 (synopsis "Emacs Chinese fonts setup tool")
6353 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6354 configuration of Chinese fonts.")
6355 (license license:gpl2+)))
6356
6357 (define-public emacs-php-mode
6358 (package
6359 (name "emacs-php-mode")
6360 (version "20171225.342")
6361 (source (origin
6362 (method url-fetch)
6363 (uri (string-append
6364 "https://melpa.org/packages/php-mode-"
6365 version ".tar"))
6366 (sha256
6367 (base32
6368 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6369 (build-system emacs-build-system)
6370 (home-page "https://github.com/ejmr/php-mode")
6371 (synopsis "Major mode for editing PHP code")
6372 (description "@code{php-mode} is a major mode for editing PHP source
6373 code. It's an extension of C mode; thus it inherits all C mode's navigation
6374 functionality. But it colors according to the PHP grammar and indents
6375 according to the PEAR coding guidelines. It also includes a couple handy
6376 IDE-type features such as documentation search and a source and class
6377 browser.")
6378 (license license:gpl3+)))
6379
6380 (define-public emacs-pos-tip
6381 (package
6382 (name "emacs-pos-tip")
6383 (version "0.4.6")
6384 (source (origin
6385 (method url-fetch)
6386 (uri (string-append
6387 "https://github.com/pitkali/pos-tip/archive/"
6388 version ".tar.gz"))
6389 (file-name (string-append name "-" version ".tar.gz"))
6390 (sha256
6391 (base32
6392 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
6393 (build-system emacs-build-system)
6394 ;; The following functions and variables needed by emacs-pos-tip are
6395 ;; not included in emacs-minimal:
6396 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6397 (arguments `(#:emacs ,emacs))
6398 (home-page "https://github.com/pitkali/pos-tip")
6399 (synopsis "Show tooltip at point")
6400 (description "The standard library tooltip.el provides a function for
6401 displaying a tooltip at the mouse position. However, locating a tooltip at an
6402 arbitrary buffer position in a window is not easy. Pos-tip provides such a
6403 function to be used by other frontend programs.")
6404 (license license:gpl2+)))
6405
6406 (define-public emacs-pyim-basedict
6407 (package
6408 (name "emacs-pyim-basedict")
6409 (version "0.3.1")
6410 (source (origin
6411 (method url-fetch)
6412 (uri (string-append
6413 "https://github.com/tumashu/pyim-basedict/archive/v"
6414 version ".tar.gz"))
6415 (file-name (string-append name "-" version ".tar.gz"))
6416 (sha256
6417 (base32
6418 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
6419 (build-system emacs-build-system)
6420 (home-page "https://github.com/tumashu/pyim-basedict")
6421 (synopsis "Input method dictionary of pyim")
6422 (description "Pyim-basedict is the default pinyin input method dictionary,
6423 containing words from the rime project.")
6424 (license license:gpl2+)))
6425
6426 (define-public emacs-pyim
6427 (package
6428 (name "emacs-pyim")
6429 (version "1.8")
6430 (source
6431 (origin
6432 (method git-fetch)
6433 (uri (git-reference
6434 (url "https://github.com/tumashu/pyim")
6435 (commit (string-append "v" version))))
6436 (file-name (git-file-name name version))
6437 (sha256
6438 (base32
6439 "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9"))))
6440 (build-system emacs-build-system)
6441 (propagated-inputs
6442 `(("emacs-async" ,emacs-async)
6443 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
6444 ("emacs-popup" ,emacs-popup)
6445 ("emacs-posframe" ,emacs-posframe)))
6446 (home-page "https://github.com/tumashu/pyim")
6447 (synopsis "Chinese input method")
6448 (description "Chinese input method which supports quanpin, shuangpin, wubi
6449 and cangjie.")
6450 (license license:gpl2+)))
6451
6452 (define-public emacs-posframe
6453 (package
6454 (name "emacs-posframe")
6455 (version "0.4.2")
6456 (source
6457 (origin
6458 (method url-fetch)
6459 (uri (string-append
6460 "https://elpa.gnu.org/packages/posframe-" version ".el"))
6461 (sha256
6462 (base32
6463 "1h8vvxvsg41vc1nnglqjs2q0k1yzfsn72skga9s76qa3zxmx6kds"))))
6464 (build-system emacs-build-system)
6465 ;; emacs-minimal does not include the function font-info
6466 (arguments `(#:emacs ,emacs))
6467 (home-page "https://github.com/tumashu/posframe")
6468 (synopsis "Pop a posframe (a child frame) at point")
6469 (description "@code{emacs-posframe} can pop a posframe at point. A
6470 posframe is a child frame displayed within its root window's buffer.
6471 @code{emacs-posframe} is fast and works well with CJK languages.")
6472 (license license:gpl3+)))
6473
6474 (define-public emacs-el2org
6475 (package
6476 (name "emacs-el2org")
6477 (version "0.6.0")
6478 (source (origin
6479 (method url-fetch)
6480 (uri (string-append
6481 "https://github.com/tumashu/el2org/archive/v"
6482 version ".tar.gz"))
6483 (file-name (string-append name "-" version ".tar.gz"))
6484 (sha256
6485 (base32
6486 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
6487 (build-system emacs-build-system)
6488 (home-page "https://github.com/tumashu/el2org")
6489 (synopsis "Convert Emacs-lisp file to org file")
6490 (description "El2org is a simple tool, which can convert Emacs-lisp file
6491 to org file, you can use this tool to write orgify commentary.")
6492 (license license:gpl2+)))
6493
6494 (define-public emacs-mustache
6495 (package
6496 (name "emacs-mustache")
6497 (version "0.23")
6498 (source (origin
6499 (method url-fetch)
6500 (uri (string-append
6501 "https://github.com/Wilfred/mustache.el/archive/"
6502 version ".tar.gz"))
6503 (file-name (string-append name "-" version ".tar.gz"))
6504 (sha256
6505 (base32
6506 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
6507 (build-system emacs-build-system)
6508 (propagated-inputs
6509 `(("emacs-dash" ,emacs-dash)
6510 ("emacs-ht" ,emacs-ht)
6511 ("emacs-s" ,emacs-s)))
6512 (home-page "https://github.com/Wilfred/mustache.el")
6513 (synopsis "Mustache templating library for Emacs")
6514 (description "Mustache templating library for Emacs, mustache is
6515 a simple web template system, which is described as a logic-less system
6516 because it lacks any explicit control flow statements, both looping and
6517 conditional evaluation can be achieved using section tags processing lists
6518 and lambdas.")
6519 (license license:gpl3+)))
6520
6521 (define-public emacs-org2web
6522 (package
6523 (name "emacs-org2web")
6524 (version "0.9.1")
6525 (source (origin
6526 (method url-fetch)
6527 (uri (string-append
6528 "https://github.com/tumashu/org2web/archive/v"
6529 version ".tar.gz"))
6530 (file-name (string-append name "-" version ".tar.gz"))
6531 (sha256
6532 (base32
6533 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
6534 (build-system emacs-build-system)
6535 (propagated-inputs
6536 `(("emacs-dash" ,emacs-dash)
6537 ("emacs-el2org" ,emacs-el2org)
6538 ("emacs-ht" ,emacs-ht)
6539 ("emacs-mustache" ,emacs-mustache)
6540 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6541 (home-page "https://github.com/tumashu/org2web")
6542 (synopsis "Static site generator based on org-mode ")
6543 (description "Org2web is a static site generator based on org-mode,
6544 which code derived from Kelvin H's org-page.")
6545 (license license:gpl2+)))
6546
6547 (define-public emacs-xelb
6548 (package
6549 (name "emacs-xelb")
6550 (version "0.16")
6551 (source (origin
6552 (method url-fetch)
6553 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6554 version ".tar"))
6555 (sha256
6556 (base32
6557 "03wsr1jr7f7zfd80h864rd4makwh4widdnj1kjv2xyjwdgap9rl8"))))
6558 (build-system emacs-build-system)
6559 ;; The following functions and variables needed by emacs-xelb are
6560 ;; not included in emacs-minimal:
6561 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6562 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6563 ;; x-display-pixel-width, x-display-pixel-height
6564 (arguments
6565 `(#:emacs ,emacs
6566 #:phases
6567 (modify-phases %standard-phases
6568 (add-after 'unpack 'regenerate-el-files
6569 (lambda* (#:key inputs #:allow-other-keys)
6570 (invoke "make"
6571 (string-append "PROTO_PATH="
6572 (assoc-ref inputs "xcb-proto")
6573 "/share/xcb")
6574 (string-append "EMACS_BIN="
6575 (assoc-ref inputs "emacs")
6576 "/bin/emacs -Q")))))))
6577 (native-inputs `(("xcb-proto" ,xcb-proto)))
6578 (home-page "https://github.com/ch11ng/xelb")
6579 (synopsis "X protocol Emacs Lisp binding")
6580 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6581 X11 protocol based on the XML description files from the XCB project. It
6582 features an object-oriented API and permits a certain degree of concurrency.
6583 It should enable you to implement low-level X11 applications.")
6584 (license license:gpl3+)))
6585
6586 (define-public emacs-exwm
6587 (package
6588 (name "emacs-exwm")
6589 (version "0.21")
6590 (synopsis "Emacs X window manager")
6591 (source (origin
6592 (method url-fetch)
6593 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6594 version ".tar"))
6595 (sha256
6596 (base32
6597 "07ng1pgsnc3isfsyzh2gfc7391p9il8lb5xqf1z6yqn20w7k6xzj"))))
6598 (build-system emacs-build-system)
6599 (propagated-inputs
6600 `(("emacs-xelb" ,emacs-xelb)))
6601 (inputs
6602 `(("xhost" ,xhost)
6603 ("dbus" ,dbus)))
6604 ;; The following functions and variables needed by emacs-exwm are
6605 ;; not included in emacs-minimal:
6606 ;; scroll-bar-mode, fringe-mode
6607 ;; x-display-pixel-width, x-display-pixel-height
6608 (arguments
6609 `(#:emacs ,emacs
6610 #:phases
6611 (modify-phases %standard-phases
6612 (add-after 'build 'install-xsession
6613 (lambda* (#:key inputs outputs #:allow-other-keys)
6614 (let* ((out (assoc-ref outputs "out"))
6615 (xsessions (string-append out "/share/xsessions"))
6616 (bin (string-append out "/bin"))
6617 (exwm-executable (string-append bin "/exwm")))
6618 ;; Add a .desktop file to xsessions
6619 (mkdir-p xsessions)
6620 (mkdir-p bin)
6621 (with-output-to-file
6622 (string-append xsessions "/exwm.desktop")
6623 (lambda _
6624 (format #t "[Desktop Entry]~@
6625 Name=~a~@
6626 Comment=~a~@
6627 Exec=~a~@
6628 TryExec=~@*~a~@
6629 Type=Application~%" ,name ,synopsis exwm-executable)))
6630 ;; Add a shell wrapper to bin
6631 (with-output-to-file exwm-executable
6632 (lambda _
6633 (format #t "#!~a ~@
6634 ~a +SI:localuser:$USER ~@
6635 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6636 (string-append (assoc-ref inputs "bash") "/bin/sh")
6637 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6638 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6639 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6640 '(cond
6641 ((file-exists-p "~/.exwm")
6642 (load-file "~/.exwm"))
6643 ((not (featurep 'exwm))
6644 (require 'exwm)
6645 (require 'exwm-config)
6646 (exwm-config-default)
6647 (message (concat "exwm configuration not found. "
6648 "Falling back to default configuration...")))))))
6649 (chmod exwm-executable #o555)
6650 #t))))))
6651 (home-page "https://github.com/ch11ng/exwm")
6652 (description "EXWM is a full-featured tiling X window manager for Emacs
6653 built on top of XELB.")
6654 (license license:gpl3+)))
6655
6656 (define-public emacs-switch-window
6657 (package
6658 (name "emacs-switch-window")
6659 (version "1.6.2")
6660 (source
6661 (origin
6662 (method git-fetch)
6663 (uri (git-reference
6664 (url "https://github.com/dimitri/switch-window")
6665 (commit (string-append "v" version))))
6666 (file-name (git-file-name name version))
6667 (sha256
6668 (base32
6669 "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"))))
6670 (build-system emacs-build-system)
6671 (home-page "https://github.com/dimitri/switch-window")
6672 (synopsis "Emacs window switch tool")
6673 (description "Switch-window is an emacs window switch tool, which
6674 offer a visual way to choose a window to switch to, delete, split or
6675 other operations.")
6676 (license license:wtfpl2)))
6677
6678 (define-public emacs-exwm-x
6679 (package
6680 (name "emacs-exwm-x")
6681 (version "1.9.0")
6682 (synopsis "Derivative window manager based on EXWM")
6683 (source
6684 (origin
6685 (method git-fetch)
6686 (uri (git-reference
6687 (url "https://github.com/tumashu/exwm-x")
6688 (commit (string-append "v" version))))
6689 (file-name (git-file-name name version))
6690 (sha256
6691 (base32
6692 "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4"))))
6693 (build-system emacs-build-system)
6694 (propagated-inputs
6695 `(("emacs-exwm" ,emacs-exwm)
6696 ("emacs-switch-window" ,emacs-switch-window)
6697 ("emacs-ivy" ,emacs-ivy)
6698 ("emacs-use-package" ,emacs-use-package)))
6699 (inputs
6700 `(("xhost" ,xhost)
6701 ("dbus" ,dbus)))
6702 ;; Need emacs instead of emacs-minimal,
6703 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6704 (arguments
6705 `(#:emacs ,emacs
6706 #:phases
6707 (modify-phases %standard-phases
6708 (add-after 'build 'install-xsession
6709 (lambda* (#:key inputs outputs #:allow-other-keys)
6710 (let* ((out (assoc-ref outputs "out"))
6711 (xsessions (string-append out "/share/xsessions"))
6712 (bin (string-append out "/bin"))
6713 (exwm-executable (string-append bin "/exwm-x")))
6714 ;; Add a .desktop file to xsessions
6715 (mkdir-p xsessions)
6716 (mkdir-p bin)
6717 (with-output-to-file
6718 (string-append xsessions "/exwm-x.desktop")
6719 (lambda _
6720 (format #t "[Desktop Entry]~@
6721 Name=~a~@
6722 Comment=~a~@
6723 Exec=~a~@
6724 TryExec=~@*~a~@
6725 Type=Application~%" ,name ,synopsis exwm-executable)))
6726 ;; Add a shell wrapper to bin
6727 (with-output-to-file exwm-executable
6728 (lambda _
6729 (format #t "#!~a ~@
6730 ~a +SI:localuser:$USER ~@
6731 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6732 (string-append (assoc-ref inputs "bash") "/bin/sh")
6733 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6734 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6735 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6736 '(require 'exwmx-loader))))
6737 (chmod exwm-executable #o555)
6738 #t))))))
6739 (home-page "https://github.com/tumashu/exwm-x")
6740 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6741 on mouse-control.")
6742 (license license:gpl3+)))
6743
6744 (define-public emacs-gnuplot
6745 (package
6746 (name "emacs-gnuplot")
6747 (version "0.7.0")
6748 (source
6749 (origin
6750 (method url-fetch)
6751 (uri (string-append
6752 "https://github.com/bruceravel/gnuplot-mode/archive/"
6753 version ".tar.gz"))
6754 (file-name (string-append name "-" version ".tar.gz"))
6755 (sha256
6756 (base32
6757 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6758 (build-system gnu-build-system)
6759 (native-inputs `(("emacs" ,emacs-minimal)))
6760 (arguments
6761 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6762 "/gnuplot-" version)))
6763 `(#:modules ((guix build gnu-build-system)
6764 (guix build utils)
6765 (guix build emacs-utils))
6766 #:imported-modules (,@%gnu-build-system-modules
6767 (guix build emacs-utils))
6768 #:configure-flags
6769 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6770 "/bin/emacs")
6771 (string-append "--with-lispdir=" %output ,elisp-dir))
6772 #:phases
6773 (modify-phases %standard-phases
6774 (add-after 'install 'generate-autoloads
6775 (lambda* (#:key outputs #:allow-other-keys)
6776 (emacs-generate-autoloads
6777 "gnuplot"
6778 (string-append (assoc-ref outputs "out") ,elisp-dir))
6779 #t))))))
6780 (home-page "https://github.com/bruceravel/gnuplot-mode")
6781 (synopsis "Emacs major mode for interacting with gnuplot")
6782 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6783 with gnuplot.")
6784 (license license:gpl2+)))
6785
6786 (define-public emacs-transpose-frame
6787 (package
6788 (name "emacs-transpose-frame")
6789 (version "0.1.0")
6790 (source
6791 (origin
6792 (method url-fetch)
6793 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
6794 (file-name (string-append "transpose-frame-" version ".el"))
6795 (sha256
6796 (base32
6797 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6798 (build-system emacs-build-system)
6799 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6800 (synopsis "Transpose window arrangement in current frame")
6801 (description "@code{emacs-transpose-frame} provides some interactive
6802 functions which allows users to transpose windows arrangement in currently
6803 selected frame.")
6804 (license license:bsd-2)))
6805
6806 (define-public emacs-key-chord
6807 (package
6808 (name "emacs-key-chord")
6809 (version "0.6")
6810 (source
6811 (origin
6812 (method url-fetch)
6813 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6814 (file-name (string-append "key-chord-" version ".el"))
6815 (sha256
6816 (base32
6817 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6818 (build-system emacs-build-system)
6819 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6820 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6821 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6822 mode for binding key chords to commands. A key chord is defined as two keys
6823 pressed simultaneously or a single key quickly pressed twice.")
6824 (license license:gpl2+)))
6825
6826 (define-public emacs-evil-surround
6827 (package
6828 (name "emacs-evil-surround")
6829 (version "1.0.0")
6830 (source
6831 (origin
6832 (method url-fetch)
6833 (uri (string-append
6834 "https://github.com/timcharper/evil-surround/archive/v"
6835 version ".tar.gz"))
6836 (file-name (string-append name "-" version ".tar.gz"))
6837 (sha256
6838 (base32
6839 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6840 (build-system emacs-build-system)
6841 (propagated-inputs
6842 `(("emacs-evil" ,emacs-evil)))
6843 (home-page "https://github.com/timcharper/evil-surround")
6844 (synopsis "Easily modify surrounding parantheses and quotes")
6845 (description "@code{emacs-evil-surround} allows easy deletion, change and
6846 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6847 (license license:gpl3+)))
6848
6849 (define-public emacs-evil-commentary
6850 (package
6851 (name "emacs-evil-commentary")
6852 (version "2.1.1")
6853 (source
6854 (origin
6855 (method url-fetch)
6856 (uri (string-append
6857 "https://github.com/linktohack/evil-commentary/archive/v"
6858 version ".tar.gz"))
6859 (file-name (string-append name "-" version ".tar.gz"))
6860 (sha256
6861 (base32
6862 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6863 (build-system emacs-build-system)
6864 (propagated-inputs
6865 `(("emacs-evil" ,emacs-evil)))
6866 (home-page "https://github.com/linktohack/evil-commentary")
6867 (synopsis "Comment out code in evil mode")
6868 (description "@code{emacs-evil-commentary} adds keybindings to easily
6869 comment out lines of code in evil mode. It provides @code{gcc} to comment out
6870 lines, and @code{gc} to comment out the target of a motion.")
6871 (license license:gpl3+)))
6872
6873 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6874 ;; therefore cannot be run
6875 (define-public emacs-ansi
6876 (package
6877 (name "emacs-ansi")
6878 (version "0.4.1")
6879 (source
6880 (origin
6881 (method url-fetch)
6882 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6883 version ".tar.gz"))
6884 (file-name (string-append name "-" version ".tar.gz"))
6885 (sha256
6886 (base32
6887 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6888 (build-system emacs-build-system)
6889 (propagated-inputs
6890 `(("emacs-dash" ,emacs-dash)
6891 ("emacs-s" ,emacs-s)))
6892 (home-page "https://github.com/rejeep/ansi.el")
6893 (synopsis "Convert strings to ANSI")
6894 (description "@code{emacs-ansi} defines functions that turns simple
6895 strings to ANSI strings. Turning a string into an ANSI string can be to add
6896 color to a text, add color in the background of a text or adding a style, such
6897 as bold, underscore or italic.")
6898 (license license:gpl3+)))
6899
6900 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
6901 ;; therefore cannot be run
6902 (define-public emacs-commander
6903 (package
6904 (name "emacs-commander")
6905 (version "0.7.0")
6906 (source
6907 (origin
6908 (method url-fetch)
6909 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6910 version ".tar.gz"))
6911 (file-name (string-append name "-" version ".tar.gz"))
6912 (sha256
6913 (base32
6914 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6915 (build-system emacs-build-system)
6916 (propagated-inputs
6917 `(("emacs-dash" ,emacs-dash)
6918 ("emacs-f" ,emacs-f)
6919 ("emacs-s" ,emacs-s)))
6920 (home-page "https://github.com/rejeep/commander.el")
6921 (synopsis "Emacs command line parser")
6922 (description "@code{emacs-commander} provides command line parsing for
6923 Emacs.")
6924 (license license:gpl3+)))
6925
6926 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6927 ;; cannot be run
6928 (define-public emacs-ert-runner
6929 (let ((version "0.7.0")
6930 (revision "1")
6931 (commit "90b8fdd5970ef76a4649be60003b37f82cdc1a65"))
6932 (package
6933 (name "emacs-ert-runner")
6934 (version (git-version "0.7.0" revision commit))
6935 (source
6936 (origin
6937 (method git-fetch)
6938 (uri (git-reference
6939 (url "https://github.com/rejeep/ert-runner.el.git")
6940 (commit commit)))
6941 (file-name (git-file-name name version))
6942 (sha256
6943 (base32
6944 "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz"))))
6945 (build-system emacs-build-system)
6946 (inputs
6947 `(("emacs-ansi" ,emacs-ansi)
6948 ("emacs-commander" ,emacs-commander)
6949 ("emacs-dash" ,emacs-dash)
6950 ("emacs-f" ,emacs-f)
6951 ("emacs-s" ,emacs-s)
6952 ("emacs-shut-up" ,emacs-shut-up)))
6953 (arguments
6954 `(#:phases
6955 (modify-phases %standard-phases
6956 (add-after 'install 'install-executable
6957 (lambda* (#:key inputs outputs #:allow-other-keys)
6958 (let ((out (assoc-ref outputs "out"))
6959 (source-directory (string-append
6960 (getenv "TMPDIR") "/source")))
6961 (substitute* "bin/ert-runner"
6962 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6963 (string-append "ERT_RUNNER=\"" out
6964 "/share/emacs/site-lisp/guix.d/ert-runner-"
6965 ,version)))
6966 (install-file "bin/ert-runner" (string-append out "/bin"))
6967 (wrap-program (string-append out "/bin/ert-runner")
6968 (list "EMACSLOADPATH" ":" 'prefix
6969 ;; Do not capture the transient source directory in
6970 ;; the wrapper.
6971 (delete source-directory
6972 (string-split (getenv "EMACSLOADPATH") #\:))))
6973 #t))))
6974 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6975 (home-page "https://github.com/rejeep/ert-runner.el")
6976 (synopsis "Opinionated Ert testing workflow")
6977 (description "@code{ert-runner} is a tool for Emacs projects tested
6978 using ERT. It assumes a certain test structure setup and can therefore make
6979 running tests easier.")
6980 (license license:gpl3+))))
6981
6982 (define-public ert-runner
6983 (deprecated-package "ert-runner" emacs-ert-runner))
6984
6985 (define-public emacs-disable-mouse
6986 (package
6987 (name "emacs-disable-mouse")
6988 (version "0.2")
6989 (source
6990 (origin
6991 (method url-fetch)
6992 (uri (string-append
6993 "https://github.com/purcell/disable-mouse/archive/"
6994 version ".tar.gz"))
6995 (file-name (string-append name "-" version ".tar.gz"))
6996 (sha256
6997 (base32
6998 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
6999 (build-system emacs-build-system)
7000 (home-page "https://github.com/purcell/disable-mouse")
7001 (synopsis "Disable mouse commands globally")
7002 (description
7003 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
7004 pair of minor modes which suppress all mouse events by intercepting them and
7005 running a customisable handler command (@code{ignore} by default). ")
7006 (license license:gpl3+)))
7007
7008 (define-public emacs-json-reformat
7009 (package
7010 (name "emacs-json-reformat")
7011 (version "0.0.6")
7012 (source
7013 (origin
7014 (method url-fetch)
7015 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
7016 version ".tar.gz"))
7017 (file-name (string-append name "-" version ".tar.gz"))
7018 (sha256
7019 (base32
7020 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
7021 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
7022 (build-system emacs-build-system)
7023 (propagated-inputs
7024 `(("emacs-undercover" ,emacs-undercover)))
7025 (native-inputs
7026 `(("emacs-dash" ,emacs-dash)
7027 ("emacs-shut-up" ,emacs-shut-up)
7028 ("ert-runner" ,emacs-ert-runner)))
7029 (arguments
7030 `(#:tests? #t
7031 #:test-command '("ert-runner")))
7032 (home-page "https://github.com/gongo/json-reformat")
7033 (synopsis "Reformatting tool for JSON")
7034 (description "@code{json-reformat} provides a reformatting tool for
7035 @url{http://json.org/, JSON}.")
7036 (license license:gpl3+)))
7037
7038 (define-public emacs-json-snatcher
7039 (package
7040 (name "emacs-json-snatcher")
7041 (version "1.0.0")
7042 (source
7043 (origin
7044 (method url-fetch)
7045 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
7046 version ".tar.gz"))
7047 (file-name (string-append name "-" version ".tar.gz"))
7048 (sha256
7049 (base32
7050 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
7051 (build-system emacs-build-system)
7052 (home-page "https://github.com/sterlingg/json-snatcher")
7053 (synopsis "Grabs the path to JSON values in a JSON file")
7054 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
7055 a @url{http://json.org/, JSON} file.")
7056 (license license:gpl3+)))
7057
7058 (define-public emacs-json-mode
7059 (package
7060 (name "emacs-json-mode")
7061 (version "1.7.0")
7062 (source
7063 (origin
7064 (method url-fetch)
7065 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
7066 "v" version ".tar.gz"))
7067 (file-name (string-append name "-" version ".tar.gz"))
7068 (sha256
7069 (base32
7070 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
7071 (build-system emacs-build-system)
7072 (propagated-inputs
7073 `(("emacs-json-reformat" ,emacs-json-reformat)
7074 ("emacs-json-snatcher" ,emacs-json-snatcher)))
7075 (home-page "https://github.com/joshwnj/json-mode")
7076 (synopsis "Major mode for editing JSON files")
7077 (description "@code{json-mode} extends the builtin js-mode syntax
7078 highlighting.")
7079 (license license:gpl3+)))
7080
7081 (define-public emacs-restclient
7082 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
7083 (revision "1")) ;Guix package revision,
7084 ;upstream doesn't have official releases
7085 (package
7086 (name "emacs-restclient")
7087 (version (string-append revision "."
7088 (string-take commit 7)))
7089 (source (origin
7090 (method git-fetch)
7091 (uri (git-reference
7092 (url "https://github.com/pashky/restclient.el.git")
7093 (commit commit)))
7094 (sha256
7095 (base32
7096 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
7097 (file-name (git-file-name name version))))
7098 (build-system emacs-build-system)
7099 (propagated-inputs
7100 `(("emacs-helm" ,emacs-helm)))
7101 (home-page "https://github.com/pashky/restclient.el")
7102 (synopsis "Explore and test HTTP REST webservices")
7103 (description
7104 "This tool allows for testing and exploration of HTTP REST Web services
7105 from within Emacs. Restclient runs queries from a plan-text query sheet,
7106 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
7107 (license license:public-domain))))
7108
7109 (define-public emacs-eimp
7110 (let ((version "1.4.0")
7111 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
7112 (revision "1"))
7113 (package
7114 (name "emacs-eimp")
7115 (version (git-version version revision commit))
7116 (source
7117 (origin
7118 (method git-fetch)
7119 (uri (git-reference
7120 (url "https://github.com/nicferrier/eimp.git")
7121 (commit commit)))
7122 (file-name (git-file-name name version))
7123 (sha256
7124 (base32
7125 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
7126 (build-system emacs-build-system)
7127 (arguments
7128 `(#:phases
7129 (modify-phases %standard-phases
7130 (add-after 'unpack 'configure
7131 (lambda* (#:key inputs #:allow-other-keys)
7132 (let ((imagemagick (assoc-ref inputs "imagemagick")))
7133 ;; eimp.el is read-only in git.
7134 (chmod "eimp.el" #o644)
7135 (emacs-substitute-variables "eimp.el"
7136 ("eimp-mogrify-program"
7137 (string-append imagemagick "/bin/mogrify"))))
7138 #t)))))
7139 (inputs
7140 `(("imagemagick" ,imagemagick)))
7141 (home-page "https://github.com/nicferrier/eimp")
7142 (synopsis "Interactive image manipulation utility for Emacs")
7143 (description "@code{emacs-eimp} allows interactive image manipulation
7144 from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
7145 the actual transformations.")
7146 (license license:gpl2+))))
7147
7148 (define-public emacs-dired-hacks
7149 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
7150 (revision "1"))
7151 (package
7152 (name "emacs-dired-hacks")
7153 (version (string-append "0.0.1-" revision "."
7154 (string-take commit 7)))
7155 (source (origin
7156 (method git-fetch)
7157 (uri (git-reference
7158 (url "https://github.com/Fuco1/dired-hacks.git")
7159 (commit commit)))
7160 (file-name (string-append name "-" version "-checkout"))
7161 (sha256
7162 (base32
7163 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
7164 (build-system emacs-build-system)
7165 (propagated-inputs
7166 `(("emacs-dash" ,emacs-dash)
7167 ("emacs-eimp" ,emacs-eimp)
7168 ("emacs-f" ,emacs-f)
7169 ("emacs-s" ,emacs-s)))
7170 (home-page "https://github.com/Fuco1/dired-hacks")
7171 (synopsis
7172 "Collection of useful dired additions")
7173 (description
7174 "Collection of Emacs dired mode additions:
7175 @itemize
7176 @item dired-avfs
7177 @item dired-columns
7178 @item dired-filter
7179 @item dired-hacks-utils
7180 @item dired-images
7181 @item dired-list
7182 @item dired-narrow
7183 @item dired-open
7184 @item dired-rainbow
7185 @item dired-ranger
7186 @item dired-subtree
7187 @item dired-tagsistant
7188 @end itemize\n")
7189 (license license:gpl3+))))
7190
7191 (define-public emacs-dired-sidebar
7192 (let ((commit "06bd0d40bab812c61a668129daf29ba359424454")
7193 (revision "0"))
7194 (package
7195 (name "emacs-dired-sidebar")
7196 (home-page "https://github.com/jojojames/dired-sidebar")
7197 (version (git-version "0.0.1" revision commit))
7198 (source (origin
7199 (method git-fetch)
7200 (uri (git-reference (url home-page) (commit commit)))
7201 (sha256
7202 (base32
7203 "0lvwvq6sl80sha9fq5m4568sg534dhmifyjqw75bqddcbf3by84x"))))
7204 (build-system emacs-build-system)
7205 (propagated-inputs
7206 `(("emacs-dired-subtree" ,emacs-dired-hacks)))
7207 (synopsis "Sidebar for Emacs using Dired")
7208 (description
7209 "This package provides a sidebar for Emacs similar to @code{NeoTree}
7210 or @code{treemacs}, but leveraging @code{Dired} to do the job of display.")
7211 (license license:gpl3+))))
7212
7213 (define-public emacs-which-key
7214 (package
7215 (name "emacs-which-key")
7216 (version "3.3.0")
7217 (source
7218 (origin
7219 (method url-fetch)
7220 (uri (string-append
7221 "https://github.com/justbur/emacs-which-key/archive/v"
7222 version ".tar.gz"))
7223 (sha256
7224 (base32
7225 "1lsj314111cp2hjjwnv3f46ws1za6bm39rgy3l19044xf6a68j5w"))
7226 (file-name (string-append name "-" version ".tar.gz"))))
7227 (build-system emacs-build-system)
7228 (arguments
7229 `(#:tests? #t
7230 #:test-command '("emacs" "--batch"
7231 "-l" "which-key-tests.el"
7232 "-f" "ert-run-tests-batch-and-exit")))
7233 (home-page "https://github.com/justbur/emacs-which-key")
7234 (synopsis "Display available key bindings in popup")
7235 (description
7236 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
7237 bindings following your currently entered incomplete command (a prefix) in a
7238 popup. For example, after enabling the minor mode if you enter C-x and wait
7239 for the default of 1 second, the minibuffer will expand with all of the
7240 available key bindings that follow C-x (or as many as space allows given your
7241 settings).")
7242 (license license:gpl3+)))
7243
7244 (define-public emacs-ws-butler
7245 (package
7246 (name "emacs-ws-butler")
7247 (version "0.6")
7248 (source (origin
7249 (method git-fetch)
7250 (uri (git-reference
7251 (url "https://github.com/lewang/ws-butler.git")
7252 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
7253 (file-name (string-append name "-" version "-checkout"))
7254 (sha256
7255 (base32
7256 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
7257 (build-system emacs-build-system)
7258 (native-inputs
7259 `(("ert-runner" ,emacs-ert-runner)))
7260 (arguments
7261 `(#:tests? #t
7262 #:test-command '("ert-runner" "tests")))
7263 (home-page "https://github.com/lewang/ws-butler")
7264 (synopsis "Trim spaces from end of lines")
7265 (description
7266 "This Emacs package automatically and unobtrusively trims whitespace
7267 characters from end of lines.")
7268 (license license:gpl3+)))
7269
7270 (define-public emacs-org-edit-latex
7271 (package
7272 (name "emacs-org-edit-latex")
7273 (version "0.8.0")
7274 (source
7275 (origin
7276 (method url-fetch)
7277 (uri (string-append
7278 "https://github.com/et2010/org-edit-latex/archive/v"
7279 version ".tar.gz"))
7280 (file-name (string-append name "-" version ".tar.gz"))
7281 (sha256
7282 (base32
7283 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
7284 (build-system emacs-build-system)
7285 (propagated-inputs
7286 `(("emacs-auctex" ,emacs-auctex)
7287 ;; The version of org in Emacs 25.2 is not sufficient, because the
7288 ;; `org-latex-make-preamble' function is required.
7289 ("emacs-org" ,emacs-org)))
7290 (home-page "https://github.com/et2010/org-edit-latex")
7291 (synopsis "Edit a latex fragment just like editing a src block")
7292 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
7293 It lets you edit a latex fragment in a dedicated buffer just like editing a
7294 src block.")
7295 (license license:gpl3+)))
7296
7297 (define-public emacs-emamux
7298 (package
7299 (name "emacs-emamux")
7300 (version "0.14")
7301 (source (origin
7302 (method url-fetch)
7303 (uri (string-append
7304 "https://github.com/syohex/emacs-emamux/archive/"
7305 version ".tar.gz"))
7306 (file-name (string-append name "-" version ".tar.gz"))
7307 (sha256
7308 (base32
7309 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
7310 (build-system emacs-build-system)
7311 (home-page "https://github.com/syohex/emacs-emamux")
7312 (synopsis "Manipulate Tmux from Emacs")
7313 (description
7314 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7315 multiplexer.")
7316 (license license:gpl3+)))
7317
7318 (define-public emacs-rpm-spec-mode
7319 (package
7320 (name "emacs-rpm-spec-mode")
7321 (version "0.16")
7322 (source
7323 (origin
7324 (method url-fetch)
7325 ;; URI has the Fedora release number instead of the version
7326 ;; number. This will have to updated manually every new release.
7327 (uri (string-append
7328 "https://src.fedoraproject.org/cgit/rpms"
7329 "/emacs-rpm-spec-mode.git/snapshot"
7330 "/emacs-rpm-spec-mode-f26.tar.gz"))
7331 (sha256
7332 (base32
7333 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7334 (build-system emacs-build-system)
7335 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7336 (synopsis "Emacs major mode for editing RPM spec files")
7337 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7338 editing RPM spec files.")
7339 (license license:gpl2+)))
7340
7341 (define-public emacs-git-messenger
7342 (package
7343 (name "emacs-git-messenger")
7344 (version "0.18")
7345 (source
7346 (origin
7347 (method url-fetch)
7348 (uri (string-append
7349 "https://github.com/syohex/emacs-git-messenger/archive/"
7350 version ".tar.gz"))
7351 (file-name (string-append name "-" version ".tar.gz"))
7352 (sha256
7353 (base32
7354 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
7355 (build-system emacs-build-system)
7356 (propagated-inputs
7357 `(("emacs-popup" ,emacs-popup)))
7358 (arguments
7359 `(#:tests? #t
7360 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7361 "-f" "ert-run-tests-batch-and-exit")))
7362 (home-page "https://github.com/syohex/emacs-git-messenger")
7363 (synopsis "Popup commit message at current line")
7364 (description "@code{emacs-git-messenger} provides
7365 @code{git-messenger:popup-message}, a function that when called, will popup
7366 the last git commit message for the current line. This uses git-blame
7367 internally.")
7368 (license license:gpl3+)))
7369
7370 (define-public emacs-gitpatch
7371 (package
7372 (name "emacs-gitpatch")
7373 (version "0.5.0")
7374 (source
7375 (origin
7376 (method url-fetch)
7377 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
7378 "v" version ".tar.gz"))
7379 (file-name (string-append name "-" version ".tar.gz"))
7380 (sha256
7381 (base32
7382 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
7383 (build-system emacs-build-system)
7384 (home-page "https://github.com/tumashu/gitpatch")
7385 (synopsis "Mail git patch from Emacs")
7386 (description "@code{emacs-gitpatch} lets users easily send git patches,
7387 created by @code{git format-patch}, from @code{magit}, @code{dired} and
7388 @code{ibuffer} buffers.")
7389 (license license:gpl3+)))
7390
7391 (define-public emacs-erc-hl-nicks
7392 (package
7393 (name "emacs-erc-hl-nicks")
7394 (version "1.3.3")
7395 (source
7396 (origin
7397 (method url-fetch)
7398 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7399 "/archive/" version ".tar.gz"))
7400 (file-name (string-append name "-" version ".tar.gz"))
7401 (sha256
7402 (base32
7403 "1a1r2kc3688g8c2ybkpwh88kgmnqhg3h3032g2yn4zr9m0n3vpkr"))))
7404 (build-system emacs-build-system)
7405 (synopsis "Nickname highlighting for Emacs ERC")
7406 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7407 client for Emacs. The main features are:
7408 @itemize
7409 @item Auto-colorizes nicknames without having to specify colors
7410 @item Ignores certain characters that IRC clients add to nicknames to avoid
7411 duplicates (nickname, nickname’, nickname\", etc.)
7412 @item Attempts to produce colors with a sufficient amount of contrast between
7413 the nick color and the background color
7414 @end itemize\n")
7415 (home-page "https://github.com/leathekd/erc-hl-nicks")
7416 (license license:gpl3+)))
7417
7418 (define-public emacs-engine-mode
7419 (package
7420 (name "emacs-engine-mode")
7421 (version "2.0.0")
7422 (source
7423 (origin
7424 (method url-fetch)
7425 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
7426 "v" version ".tar.gz"))
7427 (file-name (string-append name "-" version ".tar.gz"))
7428 (sha256
7429 (base32
7430 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
7431 (build-system emacs-build-system)
7432 (synopsis "Minor mode for defining and querying search engines")
7433 (description "@code{engine-mode} is a global minor mode for Emacs. It
7434 enables you to easily define search engines, bind them to keybindings, and
7435 query them from the comfort of your editor.")
7436 (home-page "https://github.com/hrs/engine-mode")
7437 (license license:gpl3+)))
7438
7439 (define-public emacs-prop-menu
7440 (package
7441 (name "emacs-prop-menu")
7442 (version "0.1.2")
7443 (source
7444 (origin
7445 (method url-fetch)
7446 (uri (string-append
7447 "http://stable.melpa.org/packages/prop-menu-"
7448 version ".el"))
7449 (sha256
7450 (base32
7451 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7452 (build-system emacs-build-system)
7453 (home-page
7454 "https://github.com/david-christiansen/prop-menu-el")
7455 (synopsis
7456 "Create and display a context menu based on text and overlay properties")
7457 (description
7458 "This is a library for computing context menus based on text
7459 properties and overlays. The intended use is to have tools that
7460 annotate source code and others that use these annotations, without
7461 requiring a direct coupling between them, but maintaining
7462 discoverability.
7463
7464 Major modes that wish to use this library should first define an
7465 appropriate value for @code{prop-menu-item-functions}. Then, they should
7466 bind @code{prop-menu-by-completing-read} to an appropriate
7467 key. Optionally, a mouse pop-up can be added by binding
7468 @code{prop-menu-show-menu} to a mouse event.")
7469 (license license:gpl3+)))
7470
7471 (define-public emacs-idris-mode
7472 (package
7473 (name "emacs-idris-mode")
7474 (version "0.9.19")
7475 (source
7476 (origin
7477 (method url-fetch)
7478 (uri (string-append
7479 "http://stable.melpa.org/packages/idris-mode-"
7480 version ".tar"))
7481 (sha256
7482 (base32
7483 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
7484 (build-system emacs-build-system)
7485 (propagated-inputs
7486 `(("emacs-prop-menu" ,emacs-prop-menu)))
7487 (home-page
7488 "https://github.com/idris-hackers/idris-mode")
7489 (synopsis "Major mode for editing Idris code")
7490 (description
7491 "This is an Emacs mode for editing Idris code. It requires the latest
7492 version of Idris, and some features may rely on the latest Git version of
7493 Idris.")
7494 (license license:gpl3+)))
7495
7496 (define-public emacs-browse-at-remote
7497 (package
7498 (name "emacs-browse-at-remote")
7499 (version "0.10.0")
7500 (source
7501 (origin
7502 (method url-fetch)
7503 (uri (string-append
7504 "https://github.com/rmuslimov/browse-at-remote/archive/"
7505 version ".tar.gz"))
7506 (file-name (string-append name "-" version ".tar.gz"))
7507 (sha256
7508 (base32
7509 "0ymslsp6i1naw25zckv25bf4aaq6qwkbkn95qyzlwg869l802686"))))
7510 (build-system emacs-build-system)
7511 (propagated-inputs
7512 `(("emacs-f" ,emacs-f)
7513 ("emacs-s" ,emacs-s)))
7514 (native-inputs
7515 `(("ert-runner" ,emacs-ert-runner)))
7516 (arguments
7517 `(#:tests? #t
7518 #:test-command '("ert-runner")))
7519 (home-page "https://github.com/rmuslimov/browse-at-remote")
7520 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7521 (description
7522 "This Emacs package allows you to open a target page on
7523 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7524 It supports dired buffers and opens them in tree mode at destination.")
7525 (license license:gpl3+)))
7526
7527 (define-public emacs-tiny
7528 (package
7529 (name "emacs-tiny")
7530 (version "0.2.1")
7531 (source
7532 (origin
7533 (method url-fetch)
7534 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7535 (sha256
7536 (base32
7537 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
7538 (build-system emacs-build-system)
7539 (home-page "https://github.com/abo-abo/tiny")
7540 (synopsis "Quickly generate linear ranges in Emacs")
7541 (description
7542 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
7543 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
7544 proficiency is an advantage, since you can transform your numeric range with
7545 an elisp expression.")
7546 (license license:gpl3+)))
7547
7548 (define-public emacs-emojify
7549 (package
7550 (name "emacs-emojify")
7551 (version "0.4")
7552 (source
7553 (origin
7554 (method url-fetch)
7555 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7556 "releases/download/v" version "/emojify-"
7557 version ".tar"))
7558 (sha256
7559 (base32
7560 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7561 (build-system emacs-build-system)
7562 (arguments
7563 `(#:phases
7564 (modify-phases %standard-phases
7565 (add-after 'install 'install-data
7566 (lambda* (#:key outputs #:allow-other-keys)
7567 (copy-recursively "data"
7568 (string-append (assoc-ref outputs "out")
7569 "/share/emacs/site-lisp/guix.d/"
7570 "emojify-" ,version "/data"))
7571 #t)))))
7572 (propagated-inputs
7573 `(("emacs-ht" ,emacs-ht)))
7574 (home-page "https://github.com/iqbalansari/emacs-emojify")
7575 (synopsis "Display emojis in Emacs")
7576 (description "This package displays emojis in Emacs similar to how Github,
7577 Slack, and other websites do. It can display plain ASCII like @code{:)} as
7578 well as Github-style emojis like @code{:smile:}. It provides a minor mode
7579 @code{emojify-mode} to enable the display of emojis in a buffer.")
7580 (license license:gpl3+)))
7581
7582 (define-public emacs-websocket
7583 (package
7584 (name "emacs-websocket")
7585 (version "1.10")
7586 (source
7587 (origin
7588 (method git-fetch)
7589 (uri (git-reference
7590 (url "https://github.com/ahyatt/emacs-websocket.git")
7591 (commit version)))
7592 (file-name (string-append name "-" version "-checkout"))
7593 (sha256
7594 (base32
7595 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
7596 (build-system emacs-build-system)
7597 (home-page "http://elpa.gnu.org/packages/websocket.html")
7598 (synopsis "Emacs WebSocket client and server")
7599 (description "This is an Elisp library for WebSocket clients to talk to
7600 WebSocket servers, and for WebSocket servers to accept connections from
7601 WebSocket clients. This library is designed to be used by other library
7602 writers, to write applications that use WebSockets, and is not useful by
7603 itself.")
7604 (license license:gpl3+)))
7605
7606 (define-public emacs-oauth2
7607 (package
7608 (name "emacs-oauth2")
7609 (version "0.11")
7610 (source
7611 (origin
7612 (method url-fetch)
7613 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7614 version ".el"))
7615 (sha256
7616 (base32
7617 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7618 (build-system emacs-build-system)
7619 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7620 (synopsis "OAuth 2.0 authorization protocol implementation")
7621 (description
7622 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7623 The main entry point is @code{oauth2-auth-and-store} which will return a token
7624 structure. This token structure can be then used with
7625 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
7626 retrieve any data that need OAuth authentication to be accessed. If the token
7627 needs to be refreshed, the code handles it automatically and stores the new
7628 value of the access token.")
7629 (license license:gpl3+)))
7630
7631 (define-public emacs-circe
7632 (package
7633 (name "emacs-circe")
7634 (version "2.10")
7635 (source
7636 (origin
7637 (method git-fetch)
7638 (uri (git-reference
7639 (url "https://github.com/jorgenschaefer/circe.git")
7640 (commit (string-append "v" version))))
7641 (file-name (git-file-name name version))
7642 (sha256
7643 (base32
7644 "10gi14kwxd81blddpvqh95lgmpbfgp0m955naxix3bs3r6a75n4s"))))
7645 (build-system emacs-build-system)
7646 (arguments
7647 `(#:tests? #t
7648 #:test-command '("buttercup" "-L" ".")
7649 #:phases
7650 (modify-phases %standard-phases
7651 ;; The HOME environment variable should be set to an existing
7652 ;; directory for the tests to succeed.
7653 (add-before 'check 'set-home
7654 (lambda _
7655 (setenv "HOME" "/tmp")
7656 #t)))))
7657 (native-inputs
7658 `(("emacs-buttercup" ,emacs-buttercup)))
7659 ;; In order to securely connect to an IRC server using TLS, Circe requires
7660 ;; the GnuTLS binary.
7661 (propagated-inputs
7662 `(("gnutls" ,gnutls)))
7663 (home-page "https://github.com/jorgenschaefer/circe")
7664 (synopsis "Client for IRC in Emacs")
7665 (description "Circe is a Client for IRC in Emacs. It integrates well with
7666 the rest of the editor, using standard Emacs key bindings and indicating
7667 activity in channels in the status bar so it stays out of your way unless you
7668 want to use it.")
7669 (license license:gpl3+)))
7670
7671 (define-public emacs-tracking
7672 (package
7673 (inherit emacs-circe)
7674 (name "emacs-tracking")
7675 (arguments
7676 ;; "tracking.el" is a library extracted from Circe package. It requires
7677 ;; "shorten.el".
7678 `(#:include '("^shorten.el$" "^tracking.el$")
7679 ,@(package-arguments emacs-circe)))
7680 (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking")
7681 (synopsis "Buffer tracking library")
7682 (description "@code{tracking.el} provides a way for different modes to
7683 notify the user that a buffer needs attention. The user then can cycle
7684 through them using @key{C-c C-SPC}.")
7685 (license license:gpl3+)))
7686
7687 (define-public emacs-slack
7688 (let ((commit "99a57501629a0329a9ca090c1ea1296462eda02d")
7689 (revision "5"))
7690 (package
7691 (name "emacs-slack")
7692 (version (git-version "0.0.2" revision commit))
7693 (source (origin
7694 (method git-fetch)
7695 (uri (git-reference
7696 (url "https://github.com/yuya373/emacs-slack.git")
7697 (commit commit)))
7698 (file-name (git-file-name name commit))
7699 (sha256
7700 (base32
7701 "0jw1diypfw8pmzkq0napgxmfc0gqka7zcccgnw359604lr30k2z2"))))
7702 (build-system emacs-build-system)
7703 (propagated-inputs
7704 `(("emacs-alert" ,emacs-alert)
7705 ("emacs-emojify" ,emacs-emojify)
7706 ("emacs-helm" ,emacs-helm)
7707 ("emacs-request" ,emacs-request)
7708 ("emacs-websocket" ,emacs-websocket)
7709 ("emacs-oauth2" ,emacs-oauth2)
7710 ("emacs-circe" ,emacs-circe)))
7711 (home-page "https://github.com/yuya373/emacs-slack")
7712 (synopsis "Slack client for Emacs")
7713 (description "This package provides an Emacs client for the Slack
7714 messaging service.")
7715 (license license:gpl3+))))
7716
7717 (define-public emacs-bash-completion
7718 (package
7719 (name "emacs-bash-completion")
7720 (version "2.1.0")
7721 (source
7722 (origin
7723 (method url-fetch)
7724 (uri (string-append
7725 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7726 version ".tar.gz"))
7727 (file-name (string-append name "-" version ".tar.gz"))
7728 (sha256
7729 (base32
7730 "1z0qck3v3ra6ivacn8n04w1v33a4xn01xx860761q31qzsv3sksq"))))
7731 (inputs `(("bash" ,bash)))
7732 (build-system emacs-build-system)
7733 (arguments
7734 `(#:phases
7735 (modify-phases %standard-phases
7736 (add-before 'install 'configure
7737 (lambda* (#:key inputs #:allow-other-keys)
7738 (let ((bash (assoc-ref inputs "bash")))
7739 (emacs-substitute-variables "bash-completion.el"
7740 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7741 #t)))))
7742 (home-page "https://github.com/szermatt/emacs-bash-completion")
7743 (synopsis "Bash completion for the shell buffer")
7744 (description
7745 "@code{bash-completion} defines dynamic completion hooks for shell-mode
7746 and shell-command prompts that are based on Bash completion.")
7747 (license license:gpl2+)))
7748
7749 (define-public emacs-easy-kill
7750 (package
7751 (name "emacs-easy-kill")
7752 (version "0.9.3")
7753 (source (origin
7754 (method url-fetch)
7755 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7756 version ".tar"))
7757 (sha256
7758 (base32
7759 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7760 (build-system emacs-build-system)
7761 (home-page "https://github.com/leoliu/easy-kill")
7762 (synopsis "Kill and mark things easily in Emacs")
7763 (description
7764 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7765 let users kill or mark things easily.")
7766 (license license:gpl3+)))
7767
7768 (define-public emacs-csv-mode
7769 (package
7770 (name "emacs-csv-mode")
7771 (version "1.7")
7772 (source
7773 (origin
7774 (method url-fetch)
7775 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7776 version ".el"))
7777 (sha256
7778 (base32
7779 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7780 (build-system emacs-build-system)
7781 (home-page
7782 "http://elpa.gnu.org/packages/csv-mode.html")
7783 (synopsis
7784 "Major mode for editing comma/char separated values")
7785 (description
7786 "This Emacs package implements CSV mode, a major mode for editing records
7787 in a generalized CSV (character-separated values) format.")
7788 (license license:gpl3+)))
7789
7790 (define-public emacs-transmission
7791 (package
7792 (name "emacs-transmission")
7793 (version "0.12.1")
7794 (source (origin
7795 (method url-fetch)
7796 (uri (string-append
7797 "https://github.com/holomorph/transmission/archive/"
7798 version ".tar.gz"))
7799 (file-name (string-append name "-" version ".tar.gz"))
7800 (sha256
7801 (base32
7802 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
7803 (build-system emacs-build-system)
7804 (home-page "https://github.com/holomorph/transmission")
7805 (synopsis "Emacs interface to a Transmission session")
7806 (description "This package provides an Emacs interface to interact with a
7807 running session of the Transmission Bittorrent client.
7808
7809 Features:
7810
7811 @itemize
7812 @item List, add, start/stop, verify, remove torrents.
7813 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
7814 @item Navigate to the corresponding file list, torrent info, peer info
7815 contexts.
7816 @item Toggle downloading and set priorities for individual files.
7817 @end itemize\n")
7818 (license license:gpl3+)))
7819
7820 (define-public emacs-polymode
7821 (package
7822 (name "emacs-polymode")
7823 (version "0.1.5")
7824 (source (origin
7825 (method git-fetch)
7826 (uri (git-reference
7827 (url "https://github.com/vspinu/polymode.git")
7828 (commit (string-append "v" version))))
7829 (file-name (git-file-name name version))
7830 (sha256
7831 (base32
7832 "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
7833 (build-system emacs-build-system)
7834 (arguments
7835 `(#:include (cons* "^modes/.*\\.el$" %default-include)
7836 #:phases
7837 (modify-phases %standard-phases
7838 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
7839 (lambda _
7840 (setenv "EMACSLOADPATH"
7841 (string-append (getenv "EMACSLOADPATH")
7842 ":" (getcwd) "/modes" ":")))))))
7843 (home-page "https://github.com/vspinu/polymode")
7844 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
7845 (description "Polymode is an Emacs package that offers generic support
7846 for multiple major modes inside a single Emacs buffer. It is lightweight,
7847 object oriented and highly extensible. Creating a new polymode typically
7848 takes only a few lines of code. Polymode also provides extensible facilities
7849 for external literate programming tools for exporting, weaving and tangling.")
7850 (license license:gpl3+)))
7851
7852 (define-public emacs-polymode-ansible
7853 (let ((commit "b26094d029e25dc797b94254f797e7807a57e4c8"))
7854 (package
7855 (name "emacs-polymode-ansible")
7856 ;; No upstream version release yet.
7857 (version (git-version "0.1" "1" commit))
7858 (source
7859 (origin
7860 (method git-fetch)
7861 (uri (git-reference
7862 (url "https://gitlab.com/mavit/poly-ansible")
7863 (commit commit)))
7864 (file-name (git-file-name name version))
7865 (sha256
7866 (base32
7867 "055shddqibib3hx2ykwdz910nrqws40cd407mq946l2bf6v87gj6"))))
7868 (build-system emacs-build-system)
7869 (propagated-inputs
7870 `(("emacs-ansible-doc" ,emacs-ansible-doc)
7871 ("emacs-jinja2-mode" ,emacs-jinja2-mode)
7872 ("emacs-polymode" ,emacs-polymode)
7873 ("emacs-yaml-mode" ,emacs-yaml-mode)))
7874 (properties '((upstream-name . "poly-ansible")))
7875 (home-page "https://gitlab.com/mavit/poly-ansible/")
7876 (synopsis "Polymode for Ansible - Jinja2 in YAML")
7877 (description
7878 "Edit YAML files for Ansible containing embedded Jinja2 templating.")
7879 (license license:gpl3+))))
7880
7881 (define-public eless
7882 (package
7883 (name "eless")
7884 (version "0.3")
7885 (source (origin
7886 (method url-fetch)
7887 (uri (string-append
7888 "https://github.com/kaushalmodi/eless/archive/"
7889 "v" version ".tar.gz"))
7890 (file-name (string-append name "-" version ".tar.gz"))
7891 (sha256
7892 (base32
7893 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7894 (build-system trivial-build-system)
7895 (inputs
7896 `(("bash" ,bash)))
7897 (native-inputs
7898 `(("tar" ,tar)
7899 ("gzip" ,gzip)))
7900 (arguments
7901 `(#:modules ((guix build utils))
7902 #:builder
7903 (begin
7904 (use-modules (guix build utils))
7905 (setenv "PATH" (string-append
7906 (assoc-ref %build-inputs "tar") "/bin" ":"
7907 (assoc-ref %build-inputs "gzip") "/bin"))
7908 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7909 (chdir (string-append "eless" "-" ,version))
7910 (substitute* "eless" (("/usr/bin/env bash")
7911 (string-append (assoc-ref %build-inputs "bash")
7912 "/bin/bash")))
7913 (install-file "eless" (string-append %output "/bin"))
7914 (install-file "doc/eless.info" (string-append %output "/share/info"))
7915 #t)))
7916 (home-page "https://github.com/kaushalmodi/eless")
7917 (synopsis "Use Emacs as a paginator")
7918 (description "@code{eless} provides a combination of Bash script
7919 and a minimal Emacs view-mode.
7920
7921 Feautures:
7922
7923 @itemize
7924 @item Independent of a user’s Emacs config.
7925 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7926 @item Not require an Emacs server to be already running.
7927 @item Syntax highlighting.
7928 @item Org-mode file rendering.
7929 @item @code{man} page viewer.
7930 @item Info viewer.
7931 @item Dired, wdired, (batch edit symbolic links).
7932 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
7933 @item Filter log files lines matching a regexp.
7934 @item Auto-revert log files similar to @code{tail -f}.
7935 @item Quickly change frame and font sizes.
7936 @end itemize\n")
7937 (license license:expat)))
7938
7939 (define-public emacs-evil-matchit
7940 (package
7941 (name "emacs-evil-matchit")
7942 (version "2.2.6")
7943 (source
7944 (origin
7945 (method url-fetch)
7946 (uri (string-append
7947 "https://github.com/redguardtoo/evil-matchit/archive/"
7948 version ".tar.gz"))
7949 (file-name (string-append name "-" version ".tar.gz"))
7950 (sha256
7951 (base32
7952 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
7953 (build-system emacs-build-system)
7954 (propagated-inputs
7955 `(("emacs-evil" ,emacs-evil)))
7956 (home-page "https://github.com/redguardtoo/evil-matchit")
7957 (synopsis "Vim matchit ported into Emacs")
7958 (description
7959 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7960 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7961 (license license:gpl3+)))
7962
7963 (define-public emacs-evil-smartparens
7964 (package
7965 (name "emacs-evil-smartparens")
7966 (version "0.4.0")
7967 (source
7968 (origin
7969 (method url-fetch)
7970 (uri (string-append
7971 "https://github.com/expez/evil-smartparens/archive/"
7972 version ".tar.gz"))
7973 (file-name (string-append name "-" version ".tar.gz"))
7974 (sha256
7975 (base32
7976 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7977 (build-system emacs-build-system)
7978 (propagated-inputs
7979 `(("emacs-evil" ,emacs-evil)
7980 ("emacs-smartparens" ,emacs-smartparens)))
7981 (home-page "https://github.com/expez/evil-smartparens")
7982 (synopsis "Emacs Evil integration for Smartparens")
7983 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7984 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7985 emulates Vim features and provides Vim-like key bindings.")
7986 (license license:gpl3+)))
7987
7988 (define-public emacs-evil-quickscope
7989 (package
7990 (name "emacs-evil-quickscope")
7991 (version "0.1.4")
7992 (source
7993 (origin
7994 (method url-fetch)
7995 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7996 version ".tar.gz"))
7997 (file-name (string-append name "-" version ".tar.gz"))
7998 (sha256
7999 (base32
8000 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
8001 (build-system emacs-build-system)
8002 (propagated-inputs
8003 `(("emacs-evil" ,emacs-evil)))
8004 (arguments
8005 `(#:tests? #t
8006 #:test-command '("emacs" "--batch"
8007 "-l" "evil-quickscope-tests.el"
8008 "-f" "ert-run-tests-batch-and-exit")))
8009 (home-page "https://github.com/blorbx/evil-quickscope")
8010 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
8011 (description "@code{emacs-evil-quickscope} highlights targets for Evil
8012 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
8013 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
8014 features and provides Vim-like key bindings.")
8015 (license license:gpl3+)))
8016
8017 (define-public emacs-bongo
8018 (package
8019 (name "emacs-bongo")
8020 (version "1.0")
8021 (source
8022 (origin
8023 (method url-fetch)
8024 (uri (string-append
8025 "https://github.com/dbrock/bongo/archive/"
8026 version ".tar.gz"))
8027 (file-name (string-append name "-" version ".tar.gz"))
8028 (sha256
8029 (base32
8030 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
8031 (build-system emacs-build-system)
8032 (home-page "https://github.com/dbrock/bongo")
8033 (synopsis "Media player for Emacs")
8034 (description
8035 "This package provides a flexible media player for Emacs. @code{Bongo}
8036 supports multiple backends such as @code{vlc}, @code{mpg123},
8037 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
8038 @code{afplay}.")
8039 (license license:gpl2+)))
8040
8041 (define-public emacs-groovy-modes
8042 (package
8043 (name "emacs-groovy-modes")
8044 (version "2.0")
8045 (source (origin
8046 (method url-fetch)
8047 (uri (string-append
8048 "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
8049 "/archive/" version ".tar.gz"))
8050 (file-name (string-append name "-" version ".tar.gz"))
8051 (sha256
8052 (base32
8053 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
8054 (build-system emacs-build-system)
8055 (propagated-inputs
8056 `(("emacs-s" ,emacs-s)))
8057 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
8058 (synopsis "Groovy related modes for Emacs")
8059 (description
8060 "This package provides @code{groovy-mode} for syntax highlighing in
8061 Groovy source files, REPL integration with run-groovy and Grails project
8062 navigation with the grails mode.")
8063 (license license:gpl3+)))
8064
8065 (define-public groovy-emacs-modes
8066 (deprecated-package "groovy-emacs-modes" emacs-groovy-modes))
8067
8068 (define-public emacs-org-tree-slide
8069 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
8070 (revision "0"))
8071 (package
8072 (name "emacs-org-tree-slide")
8073 (version (git-version "0.1" revision commit))
8074 (home-page "https://github.com/takaxp/org-tree-slide")
8075 (source (origin
8076 (method git-fetch)
8077 (uri (git-reference (url home-page) (commit commit)))
8078 (sha256
8079 (base32
8080 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
8081 (file-name (git-file-name name version))))
8082 (build-system emacs-build-system)
8083 (synopsis "Presentation tool for org-mode")
8084 (description
8085 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
8086 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
8087 @kbd{C-<} to jump to the next and previous slide.")
8088 (license license:gpl3+))))
8089
8090 (define-public emacs-scratch-el
8091 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
8092 (revision "1"))
8093 (package
8094 (name "emacs-scratch-el")
8095 (version (git-version "1.2" revision commit))
8096 (source (origin
8097 (method git-fetch)
8098 (uri (git-reference
8099 (url "https://github.com/ieure/scratch-el.git")
8100 (commit commit)))
8101 (file-name (git-file-name name version))
8102 (sha256
8103 (base32
8104 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
8105 (build-system emacs-build-system)
8106 (native-inputs
8107 `(("texinfo" ,texinfo)))
8108 (arguments
8109 '(#:phases
8110 (modify-phases %standard-phases
8111 (add-after 'install 'install-doc
8112 (lambda* (#:key outputs #:allow-other-keys)
8113 (unless (invoke "makeinfo" "scratch.texi")
8114 (error "makeinfo failed"))
8115 (install-file "scratch.info"
8116 (string-append (assoc-ref outputs "out")
8117 "/share/info"))
8118 #t)))))
8119 (home-page "https://github.com/ieure/scratch-el/")
8120 (synopsis "Create scratch buffers with the same mode as current buffer")
8121 (description "Scratch is an extension to Emacs that enables one to create
8122 scratch buffers that are in the same mode as the current buffer. This is
8123 notably useful when working on code in some language; you may grab code into a
8124 scratch buffer, and, by virtue of this extension, do so using the Emacs
8125 formatting rules for that language.")
8126 (license license:bsd-2))))
8127
8128 (define-public emacs-kv
8129 (package
8130 (name "emacs-kv")
8131 (version "0.0.19")
8132 (source
8133 (origin
8134 (method git-fetch)
8135 (uri (git-reference
8136 (url "https://github.com/nicferrier/emacs-kv.git")
8137 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
8138 (file-name (string-append name "-" version "-checkout"))
8139 (sha256
8140 (base32
8141 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
8142 (build-system emacs-build-system)
8143 (arguments
8144 `(#:tests? #t
8145 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
8146 "-f" "ert-run-tests-batch-and-exit")))
8147 (home-page "https://github.com/nicferrier/emacs-kv")
8148 (synopsis "Key/Value data structures library for Emacs Lisp")
8149 (description "@code{emacs-kv} is a collection of tools for dealing with
8150 key/value data structures such as plists, alists and hash-tables in Emacs
8151 Lisp.")
8152 (license license:gpl3+)))
8153
8154 (define-public emacs-esxml
8155 (package
8156 (name "emacs-esxml")
8157 (version "0.3.4")
8158 (source (origin
8159 (method git-fetch)
8160 (uri (git-reference
8161 (url "https://github.com/tali713/esxml.git")
8162 (commit version)))
8163 (file-name (git-file-name name version))
8164 (sha256
8165 (base32
8166 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
8167 (build-system emacs-build-system)
8168 (arguments
8169 `(#:phases
8170 (modify-phases %standard-phases
8171 (add-after 'unpack 'fix-sources
8172 (lambda _
8173 ;; See: https://github.com/tali713/esxml/pull/28.
8174 (substitute* "css-lite.el"
8175 ((";;; main interface")
8176 (string-append ";;; main interface\n"
8177 "(require 'cl-lib)"))
8178 (("mapcan")
8179 "cl-mapcan")
8180 (("',\\(cl-mapcan #'process-css-rule rules\\)")
8181 "(cl-mapcan #'process-css-rule ',rules)"))
8182 (substitute* "esxml-form.el"
8183 ((",esxml-form-field-defn")
8184 "#'esxml-form-field-defn"))
8185 ;; See: https://github.com/tali713/esxml/issues/25
8186 (delete-file "esxpath.el")
8187 #t)))))
8188 (propagated-inputs
8189 `(("emacs-kv" ,emacs-kv)))
8190 (home-page "https://github.com/tali713/esxml/")
8191 (synopsis "SXML for EmacsLisp")
8192 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
8193 Simply, this is the easiest way to write HTML or XML in Lisp. This library
8194 uses the native form of XML representation as used by many libraries already
8195 included within Emacs. See @code{esxml-to-xml} for a concise description of
8196 the format.")
8197 (license license:gpl3+)))
8198
8199 (define-public emacs-nov-el
8200 (package
8201 (name "emacs-nov-el")
8202 (version "0.2.6")
8203 (source (origin
8204 (method git-fetch)
8205 (uri (git-reference
8206 (url "https://github.com/wasamasa/nov.el.git")
8207 (commit version)))
8208 (file-name (git-file-name name version))
8209 (sha256
8210 (base32
8211 "188h5gzn1zf443g0b7q5bpmvvpr6ds5h8aci8vxc92py56rhyrvc"))))
8212 (build-system emacs-build-system)
8213 (arguments
8214 `(#:phases
8215 (modify-phases %standard-phases
8216 (add-after 'unpack 'embed-path-to-unzip
8217 (lambda _
8218 (substitute* "nov.el"
8219 (("\\(executable-find \"unzip\"\\)")
8220 (string-append "\"" (which "unzip") "\"")))
8221 #t)))))
8222 (propagated-inputs
8223 `(("emacs-dash" ,emacs-dash)
8224 ("emacs-esxml" ,emacs-esxml)))
8225 (inputs
8226 `(("unzip" ,unzip)))
8227 (home-page "https://github.com/wasamasa/nov.el/")
8228 (synopsis "Major mode for reading EPUBs in Emacs")
8229 (description "@code{nov.el} provides a major mode for reading EPUB
8230 documents.
8231
8232 Features:
8233
8234 @itemize
8235 @item Basic navigation (jump to TOC, previous/next chapter)
8236 @item Remembering and restoring the last read position
8237 @item Jump to next chapter when scrolling beyond end
8238 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
8239 @item Hyperlinks to internal and external targets
8240 @item Supports textual and image documents
8241 @item View source of document files
8242 @item Metadata display
8243 @item Image rescaling
8244 @end itemize
8245 ")
8246 (license license:gpl3+)))
8247
8248 (define-public epipe
8249 (package
8250 (name "epipe")
8251 (version "0.1.0")
8252 (source
8253 (origin
8254 (method url-fetch)
8255 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
8256 version ".tar.gz"))
8257 (file-name (string-append name "-" version ".tar.gz"))
8258 (sha256
8259 (base32
8260 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
8261 (build-system trivial-build-system)
8262 (inputs
8263 `(("bash" ,bash)
8264 ("perl" ,perl)))
8265 (native-inputs
8266 `(("tar" ,tar)
8267 ("gzip" ,gzip)))
8268 (arguments
8269 `(#:modules
8270 ((guix build utils))
8271 #:builder
8272 (begin
8273 (use-modules (guix build utils))
8274 ;; Extract source
8275 (setenv "PATH" (string-append
8276 (assoc-ref %build-inputs "tar") "/bin" ":"
8277 (assoc-ref %build-inputs "gzip") "/bin"))
8278 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
8279 (chdir (string-append ,name "-" ,version))
8280 ;; Patch shebangs
8281 (substitute* "epipe"
8282 (("/usr/bin/env bash")
8283 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
8284 (patch-shebang "epipe.pl"
8285 (list (string-append (assoc-ref %build-inputs "perl")
8286 "/bin")))
8287 ;; Installation
8288 (for-each (lambda (file)
8289 (install-file file (string-append %output "/bin")))
8290 '("epipe" "epipe.pl"))
8291 #t)))
8292 (home-page "https://github.com/cute-jumper/epipe")
8293 (synopsis "Pipe to the @code{emacsclient}")
8294 (description "@code{epipe} provides an utility to use your editor in
8295 the pipeline, featuring the support for running @code{emacsclient}.")
8296 (license license:gpl3+)))
8297
8298 (define-public emacs-hcl-mode
8299 (package
8300 (name "emacs-hcl-mode")
8301 (version "0.03")
8302 (source
8303 (origin
8304 (method url-fetch)
8305 (uri (string-append
8306 "https://github.com/syohex/emacs-hcl-mode/archive/"
8307 version ".tar.gz"))
8308 (file-name (string-append name "-" version ".tar.gz"))
8309 (sha256
8310 (base32
8311 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
8312 (build-system emacs-build-system)
8313 (home-page "https://github.com/syohex/emacs-hcl-mode")
8314 (synopsis "Major mode for the Hashicorp Configuration Language")
8315 (description
8316 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
8317 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
8318 highlighting and indentation support.")
8319 (license license:gpl3+)))
8320
8321 (define-public emacs-terraform-mode
8322 (package
8323 (name "emacs-terraform-mode")
8324 (version "0.06")
8325 (source
8326 (origin
8327 (method url-fetch)
8328 (uri (string-append
8329 "https://github.com/syohex/emacs-terraform-mode/archive/"
8330 version ".tar.gz"))
8331 (file-name (string-append name "-" version ".tar.gz"))
8332 (sha256
8333 (base32
8334 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
8335 (build-system emacs-build-system)
8336 (propagated-inputs
8337 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
8338 (home-page "https://github.com/syohex/emacs-terraform-mode")
8339 (synopsis "Major mode for Terraform")
8340 (description
8341 "@code{emacs-terraform-mode} provides a major mode for working with
8342 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
8343 functionality is inherited from @code{hcl-mode}.")
8344 (license license:gpl3+)))
8345
8346 (define-public emacs-exec-path-from-shell
8347 (package
8348 (name "emacs-exec-path-from-shell")
8349 (version "1.11")
8350 (source
8351 (origin
8352 (method url-fetch)
8353 (uri (string-append
8354 "https://stable.melpa.org/packages/exec-path-from-shell-"
8355 version ".el"))
8356 (sha256
8357 (base32
8358 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
8359 (build-system emacs-build-system)
8360 (home-page "https://github.com/purcell/exec-path-from-shell")
8361 (synopsis "Get environment variables such as @var{PATH} from the shell")
8362 (description
8363 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8364 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8365 the like work as expected on systems on which Emacs is not guaranteed to
8366 inherit a login shell's environment variables. It also allows other
8367 environment variables to be retrieved from the shell, so that Emacs will see
8368 the same values you get in a terminal.")
8369 (license license:gpl3+)))
8370
8371 (define-public emacs-deft
8372 (package
8373 (name "emacs-deft")
8374 (version "0.8")
8375 (source
8376 (origin
8377 (method url-fetch)
8378 (uri (string-append "https://stable.melpa.org/packages/deft-"
8379 version ".el"))
8380 (sha256
8381 (base32
8382 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8383 (build-system emacs-build-system)
8384 (home-page "https://jblevins.org/projects/deft/")
8385 (synopsis "Quickly browse, filter, and edit plain text notes")
8386 (description
8387 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8388 directories of plain text notes, inspired by Notational Velocity.")
8389 (license license:bsd-3)))
8390
8391 (define-public emacs-anzu
8392 (package
8393 (name "emacs-anzu")
8394 (version "0.62")
8395 (source
8396 (origin
8397 (method url-fetch)
8398 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
8399 version ".tar.gz"))
8400 (file-name (string-append name "-" version ".tar.gz"))
8401 (sha256
8402 (base32
8403 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
8404 (build-system emacs-build-system)
8405 (home-page "https://github.com/syohex/emacs-anzu")
8406 (synopsis "Show number of matches in mode-line while searching")
8407 (description
8408 "Anzu provides a minor mode which displays \"current match/total
8409 matches\" in the mode line in various search modes. This is an Emacs port of
8410 Anzu.zim.")
8411 (license license:gpl3+)))
8412
8413 (define-public emacs-emmet-mode
8414 (package
8415 (name "emacs-emmet-mode")
8416 (version "1.0.8")
8417 (source (origin
8418 (method url-fetch)
8419 (uri (string-append "https://github.com/smihica/emmet-mode"
8420 "/archive/" version ".tar.gz"))
8421 (file-name (string-append name "-" version ".tar.gz"))
8422 (sha256
8423 (base32
8424 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
8425 (build-system emacs-build-system)
8426 (home-page "https://github.com/smihica/emmet-mode")
8427 (synopsis "Unofficial Emmet's support for Emacs")
8428 (description
8429 "Unfold CSS-selector-like expressions to markup. It is intended to be
8430 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8431 (license license:gpl3+)))
8432
8433 (define-public emacs-ergoemacs-mode
8434 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8435 (revision "1"))
8436 (package
8437 (name "emacs-ergoemacs-mode")
8438 (version (git-version "5.16.10.12" revision commit))
8439 (source
8440 (origin
8441 (method git-fetch)
8442 (uri (git-reference
8443 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8444 (commit commit)))
8445 (sha256
8446 (base32
8447 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8448 (build-system emacs-build-system)
8449 (propagated-inputs
8450 `(("emacs-undo-tree" ,emacs-undo-tree)))
8451 (home-page "https://ergoemacs.github.io/")
8452 (synopsis "Emacs mode based on common modern interface and ergonomics")
8453 (description
8454 "This package provides an efficient Emacs keybinding set based on
8455 statistics of command frequency, and supports common shortcuts for open,
8456 close, copy, cut, paste, undo, redo.")
8457 (license license:gpl3+))))
8458
8459 (define-public emacs-password-store
8460 (package
8461 (name "emacs-password-store")
8462 (version "1.7.3")
8463 (source (origin
8464 (method url-fetch)
8465 (uri
8466 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8467 "password-store-" version ".tar.xz"))
8468 (sha256
8469 (base32
8470 "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b"))))
8471 (build-system emacs-build-system)
8472 (arguments
8473 `(#:phases
8474 (modify-phases %standard-phases
8475 (add-after 'unpack 'extract-el-file
8476 (lambda _
8477 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8478 (delete-file-recursively "contrib")
8479 (delete-file-recursively "man")
8480 (delete-file-recursively "src")
8481 (delete-file-recursively "tests"))))))
8482 (propagated-inputs
8483 `(("emacs-f" ,emacs-f)
8484 ("emacs-s" ,emacs-s)
8485 ("emacs-with-editor" ,emacs-with-editor)
8486 ("password-store" ,password-store)))
8487 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8488 (synopsis "Password store (pass) support for Emacs")
8489 (description
8490 "This package provides functions for working with pass (\"the
8491 standard Unix password manager\").")
8492 (license license:gpl2+)))
8493
8494 (define-public emacs-pass
8495 (package
8496 (name "emacs-pass")
8497 (version "1.8")
8498 (source (origin
8499 (method url-fetch)
8500 (uri (string-append
8501 "https://github.com/NicolasPetton/pass/archive/"
8502 version ".tar.gz"))
8503 (sha256
8504 (base32
8505 "0aiz90gklk0cb8n4v1s3l0mx6pp2b7f4k2c0fjpihwmga13yklwn"))
8506 (file-name (string-append name "-" version ".tar.gz"))))
8507 (build-system emacs-build-system)
8508 (propagated-inputs
8509 `(("emacs-password-store" ,emacs-password-store)
8510 ("emacs-f" ,emacs-f)))
8511 (home-page "https://github.com/NicolasPetton/pass")
8512 (synopsis "Major mode for @file{password-store.el}")
8513 (description "This is a major mode for managing password-store (pass)
8514 keychains. The keychain entries are displayed in a directory-like structure
8515 and can be consulted and modified.")
8516 (license license:gpl3+)))
8517
8518 (define-public emacs-evil-anzu
8519 (package
8520 (name "emacs-evil-anzu")
8521 (version "0.03")
8522 (source
8523 (origin
8524 (method url-fetch)
8525 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8526 "/archive/" version ".tar.gz"))
8527 (file-name (string-append name "-" version ".tar.gz"))
8528 (sha256
8529 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8530 (build-system emacs-build-system)
8531 (propagated-inputs
8532 `(("emacs-evil" ,emacs-evil)
8533 ("emacs-anzu" ,emacs-anzu)))
8534 (home-page "https://github.com/syohex/emacs-evil-anzu")
8535 (synopsis "Anzu for evil-mode")
8536 (description "@code{anzu} provides a minor mode that displays the current
8537 match and total match information in the mode-line in various search modes.")
8538 (license license:gpl3+)))
8539
8540 (define-public emacs-pg
8541 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8542 (package
8543 (name "emacs-pg")
8544 (version (git-version "0.1" "1" commit))
8545 (source (origin
8546 (method git-fetch)
8547 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8548 (commit commit)))
8549 (file-name (git-file-name name version))
8550 (sha256
8551 (base32
8552 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8553 (build-system emacs-build-system)
8554 (home-page "https://github.com/cbbrowne/pg.el")
8555 (synopsis "Emacs Lisp interface for PostgreSQL")
8556 (description
8557 "This package provides an Emacs Lisp interface for PostgreSQL.")
8558 (license license:gpl3+))))
8559
8560 (define-public emacs-cl-generic
8561 (package
8562 (name "emacs-cl-generic")
8563 (version "0.3")
8564 (source
8565 (origin
8566 (method url-fetch)
8567 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8568 version ".el"))
8569 (sha256
8570 (base32
8571 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8572 (build-system emacs-build-system)
8573 (home-page "https://elpa.gnu.org/packages/seq.html")
8574 (synopsis
8575 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8576 (description "This package provides a subset of the features of the
8577 @code{cl-generic} package introduced in Emacs-25, for use on previous
8578 @code{emacsen}.")
8579 (license license:gpl3+)))
8580
8581 (define-public emacs-finalize
8582 (package
8583 (name "emacs-finalize")
8584 (version "2.0.0")
8585 (source
8586 (origin
8587 (method url-fetch)
8588 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
8589 version ".tar.gz"))
8590 (file-name (string-append name "-" version ".tar.gz"))
8591 (sha256
8592 (base32
8593 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
8594 (build-system emacs-build-system)
8595 (propagated-inputs
8596 `(("emacs-cl-generic" ,emacs-cl-generic)))
8597 (home-page "https://github.com/skeeto/elisp-finalize")
8598 (synopsis "Finalizers for Emacs Lisp")
8599 (description
8600 "This package will allows to immediately run a callback (a finalizer)
8601 after its registered lisp object has been garbage collected. This allows for
8602 extra resources, such as buffers and processes, to be cleaned up after the
8603 object has been freed.")
8604 (license license:unlicense)))
8605
8606 (define-public emacs-emacsql
8607 (package
8608 (name "emacs-emacsql")
8609 (version "3.0.0")
8610 (source (origin
8611 (method git-fetch)
8612 (uri (git-reference
8613 (url "https://github.com/skeeto/emacsql.git")
8614 (commit (string-append version))))
8615 (file-name (git-file-name name version))
8616 (sha256
8617 (base32
8618 "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"))))
8619 (build-system emacs-build-system)
8620 (arguments
8621 `(#:modules ((guix build emacs-build-system)
8622 (guix build utils)
8623 (guix build emacs-utils)
8624 (srfi srfi-26))
8625 #:phases
8626 (modify-phases %standard-phases
8627 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8628 (add-before 'install 'patch-elisp-shell-shebangs
8629 (lambda _
8630 (substitute* (find-files "." "\\.el")
8631 (("/bin/sh") (which "sh")))
8632 #t))
8633 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8634 (lambda _
8635 (setenv "SHELL" "sh")))
8636 (add-after 'setenv-shell 'build-emacsql-sqlite
8637 (lambda _
8638 (invoke "make" "binary" "CC=gcc")))
8639 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
8640 ;; This build phase installs emacs-emacsql binary.
8641 (lambda* (#:key outputs #:allow-other-keys)
8642 (install-file "sqlite/emacsql-sqlite"
8643 (string-append (assoc-ref outputs "out")
8644 "/bin"))
8645 #t))
8646 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
8647 ;; This build phase removes interactive prompts
8648 ;; and makes sure Emacs look for binaries in the right places.
8649 (lambda* (#:key outputs #:allow-other-keys)
8650 (let ((file "emacsql-sqlite.el"))
8651 (chmod file #o644)
8652 (emacs-substitute-sexps file
8653 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
8654 ("(executable-find" (which "gcc"))
8655 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
8656 ;; in the right place.
8657 ("(defvar emacsql-sqlite-executable"
8658 (string-append (assoc-ref outputs "out")
8659 "/bin/emacsql-sqlite"))))))
8660 (replace 'install
8661 (lambda* (#:key outputs #:allow-other-keys)
8662 (let* ((out (assoc-ref outputs "out")))
8663 (install-file "sqlite/emacsql-sqlite"
8664 (string-append out "/bin"))
8665 (for-each (cut install-file <>
8666 (string-append out "/share/emacs/site-lisp/guix.d/"
8667 "emacsql" "-" ,version))
8668 (find-files "." "\\.elc*$")))
8669 #t)))))
8670 (inputs
8671 `(("emacs-minimal" ,emacs-minimal)
8672 ("mariadb" ,mariadb)
8673 ("postgresql" ,postgresql)))
8674 (propagated-inputs
8675 `(("emacs-finalize" ,emacs-finalize)
8676 ("emacs-pg" ,emacs-pg)))
8677 (home-page "https://github.com/skeeto/emacsql")
8678 (synopsis "Emacs high-level SQL database front-end")
8679 (description "Any readable Lisp value can be stored as a value in EmacSQL,
8680 including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
8681 has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
8682 object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
8683 (license license:gpl3+)))
8684
8685 (define-public emacs-closql
8686 (package
8687 (name "emacs-closql")
8688 (version "1.0.0")
8689 (source
8690 (origin
8691 (method git-fetch)
8692 (uri (git-reference
8693 (url "https://github.com/emacscollective/closql.git")
8694 (commit (string-append "v" version))))
8695 (file-name (git-file-name name version))
8696 (sha256
8697 (base32
8698 "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"))))
8699 (build-system emacs-build-system)
8700 (propagated-inputs
8701 `(("emacs-emacsql" ,emacs-emacsql)))
8702 (home-page "https://github.com/emacscollective/closql")
8703 (synopsis "Store EIEIO objects using EmacSQL")
8704 (description
8705 "This package allows to store uniform EIEIO objects in an EmacSQL
8706 database. SQLite is used as backend. This library imposes some restrictions
8707 on what kind of objects can be stored; it isn't intended to store arbitrary
8708 objects. All objects have to share a common superclass and subclasses cannot
8709 add any additional instance slots.")
8710 (license license:gpl3)))
8711
8712 (define-public emacs-epkg
8713 ;; The release version is to old for the current database scheme.
8714 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
8715 (package
8716 (name "emacs-epkg")
8717 (version (git-version "3.0.0" "1" commit))
8718 (source
8719 (origin
8720 (method git-fetch)
8721 (uri (git-reference
8722 (url "https://github.com/emacscollective/epkg.git")
8723 (commit commit)))
8724 (file-name (git-file-name name version))
8725 (sha256
8726 (base32
8727 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
8728 (build-system emacs-build-system)
8729 (propagated-inputs
8730 `(("emacs-closql" ,emacs-closql)
8731 ("emacs-dash" ,emacs-dash)))
8732 (home-page "https://emacsmirror.net")
8733 (synopsis "Browse the Emacsmirror package database")
8734 (description "This package provides access to a local copy of the
8735 Emacsmirror package database. It provides low-level functions for querying
8736 the database and a @file{package.el} user interface for browsing the database.
8737 Epkg itself is not a package manager.
8738
8739 Getting a local copy:
8740
8741 @example
8742 git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8743 cd ~/.emacs.d/epkgs
8744 git submodule init
8745 git config --global url.https://github.com/.insteadOf git@@github.com:
8746 git submodule update
8747 @end example
8748
8749 Some submodule may be missing. In this case Git will prompt for a GitHub user
8750 name and password. To skip it press a @key{Return} key.
8751
8752 You could get a Epkg package list by invoking @code{epkg-list-packages} in
8753 Emacs.")
8754 (license license:gpl3+))))
8755
8756 (define-public emacs-elisp-slime-nav
8757 (package
8758 (name "emacs-elisp-slime-nav")
8759 (version "0.9")
8760 (source
8761 (origin
8762 (method url-fetch)
8763 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8764 version ".tar.gz"))
8765 (file-name (string-append name "-" version ".tar.gz"))
8766 (sha256
8767 (base32
8768 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8769 (build-system emacs-build-system)
8770 (home-page "https://github.com/purcell/elisp-slime-nav")
8771 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8772 (description
8773 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8774 in @code{emacs-lisp-mode}, together with an elisp equivalent of
8775 @code{slime-describe-symbol}.")
8776 (license license:gpl3+)))
8777
8778 (define-public emacs-dedicated
8779 (package
8780 (name "emacs-dedicated")
8781 (version "1.0.0")
8782 (source (origin
8783 (method url-fetch)
8784 (uri (string-append
8785 "https://github.com/emacsorphanage/dedicated/archive/"
8786 version
8787 ".tar.gz"))
8788 (sha256
8789 (base32
8790 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8791 (file-name (string-append name "-" version ".tar.gz"))))
8792 (build-system emacs-build-system)
8793 (home-page "https://github.com/emacsorphanage/dedicated")
8794 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8795 (description
8796 "This simple Emacs minor mode allows you to toggle a window's
8797 \"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8798 files into that window. This can be quite handy since many commands will use
8799 another window to show results (compilation mode, starting info, and so on).
8800 A dedicated window won't be used for such a purpose. For details, please read
8801 the source file.")
8802 (license license:gpl2+)))
8803
8804 (define-public emacs-nnreddit
8805 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8806 (revision "1"))
8807 (package
8808 (name "emacs-nnreddit")
8809 (version (string-append "0.0.1-" revision "."
8810 (string-take commit 7)))
8811 (source (origin
8812 (method git-fetch)
8813 (uri (git-reference
8814 (url "https://github.com/paul-issartel/nnreddit.git")
8815 (commit commit)))
8816 (file-name (string-append name "-" version "-checkout"))
8817 (sha256
8818 (base32
8819 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8820 (build-system emacs-build-system)
8821 (home-page "https://github.com/paul-issartel/nnreddit")
8822 (synopsis "Reddit backend for the Gnus newsreader")
8823 (description "@url{https://www.reddit.com} backend for the Gnus
8824 newsreader.")
8825 (license license:gpl3+))))
8826
8827 (define-public emacs-makey
8828 (package
8829 (name "emacs-makey")
8830 (version "0.3")
8831 (source
8832 (origin
8833 (method url-fetch)
8834 (uri (string-append "https://github.com/mickeynp/makey/archive/"
8835 version ".tar.gz"))
8836 (file-name (string-append name "-" version ".tar.gz"))
8837 (sha256
8838 (base32
8839 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
8840 (build-system emacs-build-system)
8841 (home-page "https://github.com/mickeynp/makey")
8842 (synopsis "Emacs interactive command-line mode")
8843 (description
8844 "This package provides an Emacs interactive command-line mode.")
8845 (license license:gpl3+)))
8846
8847 (define-public emacs-outorg
8848 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
8849 (package
8850 (name "emacs-outorg")
8851 (version (git-version "2.0" "1" commit))
8852 (source
8853 (origin
8854 (method git-fetch)
8855 (uri (git-reference
8856 (url "https://github.com/alphapapa/outorg")
8857 (commit commit)))
8858 (file-name (git-file-name name version))
8859 (sha256
8860 (base32
8861 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
8862 (build-system emacs-build-system)
8863 (home-page "https://github.com/alphapapa/outorg")
8864 (synopsis "Org-style comment editing")
8865 (description "Outorg is for editing comment-sections of source-code
8866 files in temporary Org-mode buffers. It turns conventional
8867 literate-programming upside-down in that the default mode is the
8868 programming-mode, and special action has to be taken to switch to the
8869 text-mode (i.e. Org-mode).")
8870 (license license:gpl3+))))
8871
8872 (define-public emacs-outshine
8873 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
8874 (package
8875 (name "emacs-outshine")
8876 (version (git-version "2.0" "1" commit))
8877 (source (origin
8878 (method git-fetch)
8879 (uri (git-reference
8880 (url "https://github.com/alphapapa/outshine.git")
8881 (commit commit)))
8882 (file-name (git-file-name name version))
8883 (sha256
8884 (base32
8885 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
8886 (build-system emacs-build-system)
8887 (propagated-inputs
8888 `(("emacs-outorg" ,emacs-outorg)))
8889 (home-page "https://github.com/alphapapa/outshine")
8890 (synopsis "Emacs outline with outshine")
8891 (description "Outshine attempts to bring the look and feel of
8892 @code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
8893 of @code{outline-minor-mode} (@code{org-mode} itself derives from
8894 outline-mode), so there is no such thing like an outshine mode, only
8895 @code{outline-minor-mode} with outshine extensions loaded.")
8896 (license license:gpl3+))))
8897
8898 (define-public emacs-parsebib
8899 (package
8900 (name "emacs-parsebib")
8901 (version "2.3.1")
8902 (source
8903 (origin
8904 (method url-fetch)
8905 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
8906 version ".tar.gz"))
8907 (file-name (string-append name "-" version ".tar.gz"))
8908 (sha256
8909 (base32
8910 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
8911 (build-system emacs-build-system)
8912 (home-page "https://github.com/joostkremers/parsebib")
8913 (synopsis "Library for parsing bib files")
8914 (description
8915 "This package provides an Emacs library for parsing bib files.")
8916 (license license:gpl3+)))
8917
8918 (define-public emacs-biblio
8919 (package
8920 (name "emacs-biblio")
8921 (version "0.1")
8922 (source
8923 (origin
8924 (method url-fetch)
8925 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
8926 version ".tar.gz"))
8927 (file-name (string-append name "-" version ".tar.gz"))
8928 (sha256
8929 (base32
8930 "109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
8931 (build-system emacs-build-system)
8932 (propagated-inputs
8933 `(("emacs-seq" ,emacs-seq)
8934 ("emacs-dash" ,emacs-dash)
8935 ("emacs-let-alist" ,emacs-let-alist)))
8936 (home-page "https://github.com/cpitclaudel/biblio.el")
8937 (synopsis "Browse and import bibliographic references")
8938 (description "This package provides an extensible Emacs package for
8939 browsing and fetching references.
8940
8941 @file{biblio.el} makes it easy to browse and gather bibliographic references
8942 and publications from various sources, by keywords or by DOI. References are
8943 automatically fetched from well-curated sources, and formatted as BibTeX.")
8944 (license license:gpl3+)))
8945
8946 (define-public emacs-helm-bibtex
8947 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
8948 (revision "1"))
8949 (package
8950 (name "emacs-helm-bibtex")
8951 (version (string-append "2.0.0" "-" revision "."
8952 (string-take commit 7)))
8953 (source
8954 (origin
8955 (method git-fetch)
8956 (uri (git-reference
8957 (url "https://github.com/tmalsburg/helm-bibtex.git")
8958 (commit commit)))
8959 (file-name (string-append name "-" version "-checkout"))
8960 (sha256
8961 (base32
8962 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
8963 (build-system emacs-build-system)
8964 (propagated-inputs
8965 `(("emacs-helm" ,emacs-helm)
8966 ("emacs-parsebib" ,emacs-parsebib)
8967 ("emacs-s" ,emacs-s)
8968 ("emacs-dash" ,emacs-dash)
8969 ("emacs-f" ,emacs-f)
8970 ("emacs-biblio" ,emacs-biblio)
8971 ("emacs-ivy" ,emacs-ivy)))
8972 (home-page "https://github.com/tmalsburg/helm-bibtex")
8973 (synopsis "Bibliography manager based on Helm")
8974 (description "This package provides bibliography manager for Emacs,
8975 based on Helm and the bibtex-completion backend.
8976
8977 Key features:
8978
8979 @itemize
8980 @item Quick access to your bibliography from within Emacs
8981 @item Powerful search capabilities
8982 @item Provides instant search results as you type
8983 @item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
8984 @item Open the PDFs, URLs, or DOIs associated with an entry
8985 @item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
8986 BibTeX entries, or plain text references at point, attach PDFs to emails
8987 @item Support for note taking
8988 @item Quick access to online bibliographic databases such as Pubmed,
8989 arXiv, Google Scholar, Library of Congress, etc.
8990 @item Imports BibTeX entries from CrossRef and other sources.
8991 @end itemize\n")
8992 (license license:gpl3+))))
8993
8994 (define-public emacs-ewmctrl
8995 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
8996 (package
8997 (name "emacs-ewmctrl")
8998 (version (git-version "0.0.1" "1" commit))
8999 (source
9000 (origin
9001 (method git-fetch)
9002 (uri (git-reference
9003 (url "https://github.com/flexibeast/ewmctrl.git")
9004 (commit commit)))
9005 (file-name (git-file-name name version))
9006 (sha256
9007 (base32
9008 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
9009 (build-system emacs-build-system)
9010 (arguments
9011 '(#:phases
9012 (modify-phases %standard-phases
9013 (add-after 'unpack 'patch-ewmctrl
9014 ;; This build phase makes sure ‘ewmctrl’ looks
9015 ;; for ‘wmctrl’ in the right place.
9016 (lambda _
9017 (let ((file "ewmctrl.el"))
9018 (chmod file #o644)
9019 (emacs-substitute-sexps file
9020 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
9021 (inputs
9022 `(("wmctrl" ,wmctrl)))
9023 (home-page "https://github.com/flexibeast/ewmctrl")
9024 (synopsis "Emacs interface to @code{wmctrl}")
9025 (description "@code{ewmctrl} provides an Emacs interface to
9026 @code{wmctrl} command-line window-management program.")
9027 (license license:gpl3+))))
9028
9029 (define-public emacs-helm-gtags
9030 (package
9031 (name "emacs-helm-gtags")
9032 (version "1.5.6")
9033 (source (origin
9034 (method url-fetch)
9035 (uri (string-append
9036 "https://github.com/syohex/emacs-helm-gtags/archive/"
9037 version ".tar.gz"))
9038 (file-name (string-append name "-" version ".tar.gz"))
9039 (sha256
9040 (base32
9041 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
9042 (build-system emacs-build-system)
9043 (propagated-inputs
9044 `(("emacs-helm" ,emacs-helm)))
9045 (home-page "https://github.com/syohex/emacs-helm-gtags")
9046 (synopsis "Emacs Helm interface to GNU Global")
9047 (description
9048 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
9049 (license license:gpl3+)))
9050
9051 (define-public emacs-list-utils
9052 (package
9053 (name "emacs-list-utils")
9054 (version "0.4.4")
9055 (source
9056 (origin
9057 (method url-fetch)
9058 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
9059 "v" version ".tar.gz"))
9060 (file-name (string-append name "-" version ".tar.gz"))
9061 (sha256
9062 (base32
9063 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
9064 (build-system emacs-build-system)
9065 (home-page "https://github.com/rolandwalker/list-utils")
9066 (synopsis "List-manipulation utility functions")
9067 (description "This package provides a list manipulation library for Emacs.")
9068 (license license:gpl3+)))
9069
9070 (define-public emacs-move-text
9071 (package
9072 (name "emacs-move-text")
9073 (version "2.0.8")
9074 (source
9075 (origin
9076 (method url-fetch)
9077 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
9078 version ".tar.gz"))
9079 (file-name (string-append name "-" version ".tar.gz"))
9080 (sha256
9081 (base32
9082 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
9083 (build-system emacs-build-system)
9084 (home-page "https://github.com/emacsfodder/move-text")
9085 (synopsis "Move current line or region with M-up or M-down")
9086 (description "This package provide functions to move the current line
9087 using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
9088 region instead.")
9089 (license license:gpl3+)))
9090
9091 (define-public emacs-validate
9092 (package
9093 (name "emacs-validate")
9094 (version "1.0.5")
9095 (source (origin
9096 (method url-fetch)
9097 (uri (string-append "https://github.com/Malabarba/validate.el"
9098 "/archive/" version ".tar.gz"))
9099 (file-name (string-append name "-" version ".tar.gz"))
9100 (sha256
9101 (base32
9102 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
9103 (build-system emacs-build-system)
9104 (home-page "https://github.com/Malabarba/validate.el")
9105 (synopsis "Emacs library for scheme validation")
9106 (description "This Emacs library provides two functions that perform
9107 schema validation.")
9108 (license license:gpl3+)))
9109
9110 (define-public emacs-rainbow-blocks
9111 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
9112 (package
9113 (name "emacs-rainbow-blocks")
9114 (version (git-version "1.0.0" "1" commit))
9115 (source (origin
9116 (method git-fetch)
9117 (uri (git-reference
9118 (url "https://github.com/istib/rainbow-blocks.git")
9119 (commit commit)))
9120 (file-name (git-file-name name version))
9121 (sha256
9122 (base32
9123 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
9124 (build-system emacs-build-system)
9125 (home-page "https://github.com/istib/rainbow-blocks")
9126 (synopsis "Highlight sexp blocks")
9127 (description "Rainbow-blocks is an Emacs mode that highlights blocks
9128 made of parentheses, brackets, and braces according to their depth. Each
9129 successive level is highlighted in a different color. This makes it easy to
9130 orient yourself in the code, and tell which statements are at a given level.")
9131 (license license:gpl3+))))
9132
9133 (define-public emacs-hierarchy
9134 (package
9135 (name "emacs-hierarchy")
9136 (version "0.7.0")
9137 (source
9138 (origin
9139 (method url-fetch)
9140 (uri (string-append
9141 "https://github.com/DamienCassou/hierarchy/archive/"
9142 "v" version ".tar.gz"))
9143 (file-name (string-append name "-" version ".tar.gz"))
9144 (sha256
9145 (base32
9146 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
9147 (build-system emacs-build-system)
9148 (home-page "https://github.com/DamienCassou/hierarchy")
9149 (synopsis "Library to create and display hierarchy structures")
9150 (description "This package provides an Emacs library to create, query,
9151 navigate and display hierarchy structures.")
9152 (license license:gpl3+)))
9153
9154 (define-public emacs-tree-mode
9155 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
9156 (revision "1"))
9157 (package
9158 (name "emacs-tree-mode")
9159 (version (string-append "0.0.1" "-" revision "."
9160 (string-take commit 7)))
9161 (source
9162 (origin
9163 (method git-fetch)
9164 (uri (git-reference
9165 (url "https://github.com/emacsorphanage/tree-mode.git")
9166 (commit commit)))
9167 (file-name (string-append name "-" version "-checkout"))
9168 (sha256
9169 (base32
9170 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
9171 (build-system emacs-build-system)
9172 (home-page "https://github.com/emacsorphanage/tree-mode")
9173 (synopsis "Emacs mode to manage tree widgets")
9174 (description
9175 "This package provides an Emacs library to manage tree widgets.")
9176 (license license:gpl3+))))
9177
9178 (define-public emacs-md4rd
9179 (let ((commit "c55512c2f7680db2a1e73db6bdf93adecaf40fec")
9180 (revision "1"))
9181 (package
9182 (name "emacs-md4rd")
9183 (version (string-append "0.0.2" "-" revision "."
9184 (string-take commit 7)))
9185 (source (origin
9186 (method git-fetch)
9187 (uri (git-reference
9188 (url "https://github.com/ahungry/md4rd.git")
9189 (commit commit)))
9190 (file-name (string-append name "-" version "-checkout"))
9191 (sha256
9192 (base32
9193 "0mvv1mvsrpkrmikcpfqf2zbawnzgq33j6zjdrlv48mcw57xb2ak9"))))
9194 (propagated-inputs
9195 `(("emacs-hierarchy" ,emacs-hierarchy)
9196 ("emacs-request" ,emacs-request)
9197 ("emacs-dash" ,emacs-dash)
9198 ("emacs-s" ,emacs-s)
9199 ("emacs-tree-mode" ,emacs-tree-mode)))
9200 (build-system emacs-build-system)
9201 (home-page "https://github.com/ahungry/md4rd")
9202 (synopsis "Emacs Mode for Reddit")
9203 (description
9204 "This package allows to read Reddit from within Emacs interactively.")
9205 (license license:gpl3+))))
9206
9207 (define-public emacs-pulseaudio-control
9208 (let ((commit "1da372ec79f5d2fb901d1f9f0679fee8848fd011")
9209 (revision "2"))
9210 (package
9211 (name "emacs-pulseaudio-control")
9212 (version (git-version "0.0.1" revision commit))
9213 (source
9214 (origin
9215 (method git-fetch)
9216 (uri (git-reference
9217 (url "https://github.com/flexibeast/pulseaudio-control.git")
9218 (commit commit)))
9219 (file-name (git-file-name name version))
9220 (sha256
9221 (base32
9222 "02xrsms2pjqdk6327midi61i5vg2h9cq5jwaxv43ldm68wl7hi6k"))))
9223 (build-system emacs-build-system)
9224 (arguments
9225 '(#:phases (modify-phases %standard-phases
9226 (add-after 'unpack 'patch-file-name
9227 (lambda* (#:key inputs #:allow-other-keys)
9228 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
9229 (chmod "pulseaudio-control.el" #o600)
9230 (emacs-substitute-variables "pulseaudio-control.el"
9231 ("pulseaudio-control-pactl-path"
9232 (string-append pulseaudio "/bin/pactl")))
9233 #t))))))
9234 (inputs `(("pulseaudio" ,pulseaudio)))
9235 (home-page "https://github.com/flexibeast/pulseaudio-control")
9236 (synopsis "Control @code{pulseaudio} from Emacs")
9237 (description
9238 "This package allows to control @code{pulseaudio} from Emacs.")
9239 (license license:gpl3+))))
9240
9241 (define-public emacs-datetime
9242 (package
9243 (name "emacs-datetime")
9244 (version "0.3")
9245 (source (origin
9246 (method url-fetch)
9247 (uri (string-append
9248 "https://github.com/doublep/datetime/archive/"
9249 version ".tar.gz"))
9250 (file-name (string-append name "-" version ".tar.gz"))
9251 (sha256
9252 (base32
9253 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
9254 (build-system emacs-build-system)
9255 (home-page "https://github.com/doublep/datetime/")
9256 (synopsis "Library to work with dates in Emacs")
9257 (description "Parsing, formatting, matching and recoding
9258 timestamps and date-time format strings library for Emacs.")
9259 (license license:gpl3+)))
9260
9261 (define-public emacs-org-mind-map
9262 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
9263 (revision "1"))
9264 (package
9265 (name "emacs-org-mind-map")
9266 (version (string-append "0.0.1" "-" revision "."
9267 (string-take commit 7)))
9268 (source
9269 (origin
9270 (method git-fetch)
9271 (uri (git-reference
9272 (url "https://github.com/theodorewiles/org-mind-map.git")
9273 (commit commit)))
9274 (file-name (string-append name "-" version "-checkout"))
9275 (sha256
9276 (base32
9277 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
9278 (propagated-inputs
9279 `(("emacs-dash" ,emacs-dash)))
9280 (build-system emacs-build-system)
9281 (home-page "https://github.com/theodorewiles/org-mind-map")
9282 (synopsis "Create Graphviz directed graphs from Org files")
9283 (description
9284 "This package creates Graphviz directed graphs from Org files.")
9285 (license license:gpl3+))))
9286
9287 (define-public emacs-npm-mode
9288 (package
9289 (name "emacs-npm-mode")
9290 (version "0.6.0")
9291 (source
9292 (origin
9293 (method url-fetch)
9294 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
9295 version ".tar.gz"))
9296 (file-name (string-append name "-" version ".tar.gz"))
9297 (sha256
9298 (base32
9299 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
9300 (build-system emacs-build-system)
9301 (home-page "https://github.com/mojochao/npm-mode")
9302 (synopsis "Minor mode for working with @code{npm} projects")
9303 (description
9304 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
9305 (license license:gpl3+)))
9306
9307 (define-public emacs-seq
9308 (package
9309 (name "emacs-seq")
9310 (version "2.20")
9311 (source
9312 (origin
9313 (method url-fetch)
9314 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
9315 (sha256
9316 (base32
9317 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
9318 (build-system emacs-build-system)
9319 (home-page "http://elpa.gnu.org/packages/seq.html")
9320 (synopsis "Sequence manipulation functions")
9321 (description "Sequence-manipulation functions that complement basic
9322 functions provided by @file{subr.el}.")
9323 (license license:gpl3+)))
9324
9325 (define-public emacs-itail
9326 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
9327 (revision "1"))
9328 (package
9329 (name "emacs-itail")
9330 (version (string-append "0.0.1" "-" revision "."
9331 (string-take commit 7)))
9332 (source
9333 (origin
9334 (method git-fetch)
9335 (uri (git-reference
9336 (url "https://github.com/re5et/itail.git")
9337 (commit commit)))
9338 (file-name (string-append name "-" version "-checkout"))
9339 (sha256
9340 (base32
9341 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
9342 (build-system emacs-build-system)
9343 (home-page "https://github.com/re5et/itail")
9344 (synopsis "Interactive @code{tail} Emacs mode")
9345 (description "@code{itail} provides interactive @code{tail} mode
9346 that allows you to filter the tail with unix pipes and highlight the
9347 contents of the tailed file. Works locally or on remote files using
9348 tramp.")
9349 (license license:gpl3+))))
9350
9351 (define-public emacs-loop
9352 (package
9353 (name "emacs-loop")
9354 (version "1.3")
9355 (source
9356 (origin
9357 (method url-fetch)
9358 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9359 version ".tar.gz"))
9360 (file-name (string-append name "-" version ".tar.gz"))
9361 (sha256
9362 (base32
9363 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9364 (build-system emacs-build-system)
9365 (home-page "https://github.com/Wilfred/loop.el")
9366 (synopsis "Imperative loop structures for Emacs")
9367 (description "Loop structures familiar to users of other languages. This
9368 library adds a selection of popular loop structures as well as break and
9369 continue.")
9370 (license license:gpl3+)))
9371
9372 (define-public emacs-elisp-refs
9373 (package
9374 (name "emacs-elisp-refs")
9375 (version "1.3")
9376 (source
9377 (origin
9378 (method url-fetch)
9379 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9380 version ".tar.gz"))
9381 (file-name (string-append name "-" version ".tar.gz"))
9382 (sha256
9383 (base32
9384 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
9385 (build-system emacs-build-system)
9386 (propagated-inputs
9387 `(("emacs-dash" ,emacs-dash)
9388 ("emacs-f" ,emacs-f)
9389 ("emacs-list-utils" ,emacs-list-utils)
9390 ("emacs-loop" ,emacs-loop)
9391 ("emacs-s" ,emacs-s)
9392 ("emacs-shut-up" ,emacs-shut-up)))
9393 (home-page "https://github.com/Wilfred/elisp-refs")
9394 (synopsis "Find callers of elisp functions or macros")
9395 (description "Find references to functions, macros or variables. Unlike a
9396 dumb text search, @code{elisp-refs} actually parses the code, so it's never
9397 confused by comments or @code{foo-bar} matching @code{foo}.")
9398 (license license:gpl3+)))
9399
9400 (define-public emacs-crux
9401 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9402 (revision "1"))
9403 (package
9404 (name "emacs-crux")
9405 (version (string-append "0.3.0" "-" revision "."
9406 (string-take commit 7)))
9407 (source
9408 (origin
9409 (method git-fetch)
9410 (uri (git-reference
9411 (url "https://github.com/bbatsov/crux.git")
9412 (commit commit)))
9413 (file-name (string-append name "-" version "-checkout"))
9414 (sha256
9415 (base32
9416 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9417 (build-system emacs-build-system)
9418 (home-page "https://github.com/bbatsov/crux")
9419 (synopsis "Collection of useful functions for Emacs")
9420 (description
9421 "@code{crux} provides a collection of useful functions for Emacs.")
9422 (license license:gpl3+))))
9423
9424 (define-public emacs-edit-server
9425 (package
9426 (name "emacs-edit-server")
9427 (version "1.13")
9428 (source
9429 (origin
9430 (method url-fetch)
9431 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9432 "v" version ".tar.gz"))
9433 (file-name (string-append name "-" version ".tar.gz"))
9434 (sha256
9435 (base32
9436 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9437 (build-system emacs-build-system)
9438 (arguments
9439 `(#:phases
9440 (modify-phases %standard-phases
9441 (add-after 'unpack 'chdir-elisp
9442 ;; Elisp directory is not in root of the source.
9443 (lambda _
9444 (chdir "servers"))))))
9445 (home-page "https://github.com/stsquad/emacs_chrome")
9446 (synopsis "Server that responds to edit requests from Chromium")
9447 (description
9448 "This package provides an edit server to respond to requests from Emacs.")
9449 (license license:gpl3+)))
9450
9451 (define-public emacs-m-buffer-el
9452 (package
9453 (name "emacs-m-buffer-el")
9454 (version "0.15")
9455 (source
9456 (origin
9457 (method url-fetch)
9458 (uri (string-append "https://github.com/phillord/m-buffer-el"
9459 "/archive/" "v" version ".tar.gz"))
9460 (file-name (string-append name "-" version ".tar.gz"))
9461 (sha256
9462 (base32
9463 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9464 (arguments
9465 `(#:phases
9466 (modify-phases %standard-phases
9467 (add-before 'install 'check
9468 (lambda* (#:key inputs #:allow-other-keys)
9469 (invoke "emacs" "--batch" "-L" "."
9470 "-l" "test/m-buffer-test.el"
9471 "-l" "test/m-buffer-at-test.el"
9472 "-f" "ert-run-tests-batch-and-exit"))))))
9473 (build-system emacs-build-system)
9474 (home-page "https://github.com/phillord/m-buffer-el")
9475 (synopsis "List oriented buffer operations for Emacs")
9476 (description "@code{m-buffer} provides a set of list-orientated functions
9477 for operating over the contents of Emacs buffers.")
9478 (license license:gpl3+)))
9479
9480 (define-public emacs-let-alist
9481 (package
9482 (name "emacs-let-alist")
9483 (version "1.0.5")
9484 (source
9485 (origin
9486 (method url-fetch)
9487 (uri (string-append
9488 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9489 (sha256
9490 (base32
9491 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9492 (build-system emacs-build-system)
9493 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9494 (synopsis "Easily let-bind values of an assoc-list by their names")
9495 (description "This package offers a single macro, @code{let-alist}. This
9496 macro takes a first argument (whose value must be an alist) and a body.")
9497 (license license:gpl3+)))
9498
9499 (define-public emacs-esup
9500 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9501 (revision "1"))
9502 (package
9503 (name "emacs-esup")
9504 (version (string-append "0.6" "-" revision "."
9505 (string-take commit 7)))
9506 (source
9507 (origin
9508 (method git-fetch)
9509 (uri (git-reference
9510 (url "https://github.com/jschaf/esup.git")
9511 (commit commit)))
9512 (file-name (string-append name "-" version "-checkout"))
9513 (sha256
9514 (base32
9515 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9516 ;; TODO: Add tests
9517 (build-system emacs-build-system)
9518 (home-page "https://github.com/jschaf/esup")
9519 (synopsis "Emacs start up profiler")
9520 (description "Benchmark Emacs Startup time without ever leaving
9521 your Emacs.")
9522 (license license:gpl2+))))
9523
9524 (define-public emacs-sourcemap
9525 (package
9526 (name "emacs-sourcemap")
9527 (version "0.03")
9528 (source
9529 (origin
9530 (method url-fetch)
9531 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9532 version ".tar.gz"))
9533 (file-name (string-append name "-" version ".tar.gz"))
9534 (sha256
9535 (base32
9536 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9537 (build-system emacs-build-system)
9538 (home-page "https://github.com/syohex/emacs-sourcemap")
9539 (synopsis "Sourcemap parser")
9540 (description "Sourcemap parser")
9541 (license license:gpl3+)))
9542
9543 (define-public emacs-macrostep
9544 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9545 (package
9546 (name "emacs-macrostep")
9547 (version (git-version "0.9" "1" commit))
9548 (source (origin
9549 (method git-fetch)
9550 (uri (git-reference
9551 (url "https://github.com/joddie/macrostep.git")
9552 (commit commit)))
9553 (file-name (string-append name "-" version "-checkout"))
9554 (sha256
9555 (base32
9556 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9557 (build-system emacs-build-system)
9558 (arguments
9559 '(#:phases
9560 (modify-phases %standard-phases
9561 (add-before 'check 'remove-test
9562 ;; Fails because of requirement ‘/bin/sh’.
9563 (lambda _
9564 (let ((file "macrostep-test.el"))
9565 (chmod file #o644)
9566 (emacs-batch-edit-file file
9567 `(progn (progn (goto-char (point-min))
9568 (re-search-forward
9569 "(ert-deftest macrostep-expand-c-macros")
9570 (beginning-of-line)
9571 (kill-sexp))
9572 (basic-save-buffer))))))
9573 (add-before 'install 'check
9574 (lambda _
9575 (invoke "emacs" "--batch" "-L" "."
9576 "-l" "macrostep-test.el"
9577 "-f" "ert-run-tests-batch-and-exit"))))))
9578 (home-page "https://github.com/joddie/macrostep")
9579 (synopsis "Interactive macro-expander for Emacs")
9580 (description "@code{macrostep} is an Emacs minor mode for interactively
9581 stepping through the expansion of macros in Emacs Lisp source code. It lets
9582 you see exactly what happens at each step of the expansion process by
9583 pretty-printing the expanded forms inline in the source buffer, which is
9584 temporarily read-only while macro expansions are visible. You can expand and
9585 collapse macro forms one step at a time, and evaluate or instrument the
9586 expansions for debugging with Edebug as normal (but see “Bugs and known
9587 limitations”, below). Single-stepping through the expansion is particularly
9588 useful for debugging macros that expand into another macro form. These can be
9589 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9590 until the top-level form is no longer a macro call.")
9591 (license license:gpl3+))))
9592
9593 (define-public emacs-parent-mode
9594 (package
9595 (name "emacs-parent-mode")
9596 (version "2.3")
9597 (source
9598 (origin
9599 (method url-fetch)
9600 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9601 version ".tar.gz"))
9602 (file-name (string-append name "-" version ".tar.gz"))
9603 (sha256
9604 (base32
9605 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9606 (build-system emacs-build-system)
9607 (home-page "https://github.com/Fanael/parent-mode")
9608 (synopsis "Get major mode's parent modes")
9609 (description "Get major mode's parent modes")
9610 (license license:gpl3+)))
9611
9612 (define-public emacs-lacarte
9613 (package
9614 (name "emacs-lacarte")
9615 (version "0.1")
9616 (source (origin
9617 (method url-fetch)
9618 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
9619 (sha256
9620 (base32
9621 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
9622 (build-system emacs-build-system)
9623 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
9624 (synopsis "Execute menu items as commands, with completion")
9625 (description "Execute menu items as commands, with completion.")
9626 (license license:gpl3)))
9627
9628 (define-public emacs-company-lua
9629 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
9630 (package
9631 (name "emacs-company-lua")
9632 (version (git-version "0.1" "1" commit))
9633 (source
9634 (origin
9635 (method git-fetch)
9636 (uri (git-reference
9637 (url "https://github.com/ptrv/company-lua.git")
9638 (commit commit)))
9639 (file-name (git-file-name name version))
9640 (sha256
9641 (base32
9642 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
9643 (build-system emacs-build-system)
9644 (propagated-inputs
9645 `(("emacs-company" ,emacs-company)
9646 ("emacs-s" ,emacs-s)
9647 ("emacs-f" ,emacs-f)
9648 ("emacs-lua-mode" ,emacs-lua-mode)))
9649 (home-page "https://github.com/ptrv/company-lua")
9650 (synopsis "Company backend for Lua")
9651 (description
9652 "This package provides Company backend for Lua programming language.")
9653 (license license:gpl3+))))
9654
9655 (define-public emacs-beginend
9656 (package
9657 (name "emacs-beginend")
9658 (version "2.0.0")
9659 (source
9660 (origin
9661 (method url-fetch)
9662 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
9663 "v" version ".tar.gz"))
9664 (file-name (string-append name "-" version ".tar.gz"))
9665 (sha256
9666 (base32
9667 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
9668 ;; TODO: Run tests.
9669 (build-system emacs-build-system)
9670 (inputs
9671 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
9672 (home-page "https://github.com/DamienCassou/beginend")
9673 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
9674 (description "@code{beginend} redefines @code{M-<} and @code{M->}
9675 keybindings for Emacs modes so that point moves to meaningful
9676 locations. Redefined keys are still accessible by pressing the same
9677 key again.")
9678 (license license:gpl3+)))
9679
9680 (define-public emacs-mbsync
9681 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
9682 (revision "1"))
9683 (package
9684 (name "emacs-mbsync")
9685 (version (string-append "0.0.1" "-" revision "."
9686 (string-take commit 7)))
9687 (source
9688 (origin
9689 (method git-fetch)
9690 (uri (git-reference
9691 (url "https://github.com/dimitri/mbsync-el.git")
9692 (commit commit)))
9693 (file-name (string-append name "-" version "-checkout"))
9694 (sha256
9695 (base32
9696 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
9697 (build-system emacs-build-system)
9698 (home-page "https://github.com/dimitri/mbsync-el")
9699 (synopsis "Interface to mbsync for Emacs")
9700 (description "This package allows to call the @code{mbsync} from
9701 within Emacs.")
9702 (license license:gpl3+))))
9703
9704 (define-public emacs-ibuffer-projectile
9705 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
9706 (revision "1"))
9707 (package
9708 (name "emacs-ibuffer-projectile")
9709 (version (string-append "0.2" "-" revision "."
9710 (string-take commit 7)))
9711 (source
9712 (origin
9713 (method git-fetch)
9714 (uri (git-reference
9715 (url "https://github.com/purcell/ibuffer-projectile.git")
9716 (commit commit)))
9717 (file-name (string-append name "-" version "-checkout"))
9718 (sha256
9719 (base32
9720 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
9721 (build-system emacs-build-system)
9722 (propagated-inputs
9723 `(("emacs-projectile" ,emacs-projectile)))
9724 (home-page "https://github.com/purcell/ibuffer-projectile")
9725 (synopsis "Group ibuffer's list by projectile root")
9726 (description "Adds functionality to Emacs @code{ibuffer} for
9727 grouping buffers by their projectile root directory.")
9728 (license license:gpl3+))))
9729
9730 (define-public emacs-helm-mode-manager
9731 (package
9732 (name "emacs-helm-mode-manager")
9733 (version "1.0.0")
9734 (source
9735 (origin
9736 (method url-fetch)
9737 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9738 "archive/" version ".tar.gz"))
9739 (file-name (string-append name "-" version ".tar.gz"))
9740 (sha256
9741 (base32
9742 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9743 (build-system emacs-build-system)
9744 (propagated-inputs
9745 `(("emacs-helm" ,emacs-helm)))
9746 (home-page "https://github.com/istib/helm-mode-manager/")
9747 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9748 (description "This package provides a Helm interface for toggling Emacs
9749 major or minor mode.
9750
9751 @itemize
9752 @item @code{helm-switch-major-mode} list of all major modes
9753 @item @code{helm-enable-minor-mode} list of all inactive minor modes
9754 @item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9755 @end itemize\n
9756
9757 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9758 documentation.")
9759 (license license:gpl3+)))
9760
9761 (define-public emacs-hy-mode
9762 (package
9763 (name "emacs-hy-mode")
9764 (version "1.0.3")
9765 (source
9766 (origin
9767 (method url-fetch)
9768 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9769 "v" version ".tar.gz"))
9770 (file-name (string-append name "-" version ".tar.gz"))
9771 (sha256
9772 (base32
9773 "0b4pvbr2hf77bq2vsyfsv653q0dab7qzq85wc7kdziw7687jdf2z"))))
9774 (build-system emacs-build-system)
9775 (propagated-inputs
9776 `(("emacs-dash" ,emacs-dash)
9777 ("emacs-s" ,emacs-s)))
9778 (home-page "https://github.com/hylang/hy-mode")
9779 (synopsis "Major mode for Hylang")
9780 (description "This package provides a major mode for Hylang.")
9781 (license license:gpl3+)))
9782
9783 (define-public emacs-web-beautify
9784 (package
9785 (name "emacs-web-beautify")
9786 (version "0.3.2")
9787 (source
9788 (origin
9789 (method url-fetch)
9790 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9791 version ".tar.gz"))
9792 (file-name (string-append name "-" version ".tar.gz"))
9793 (sha256
9794 (base32
9795 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9796 (build-system emacs-build-system)
9797 (home-page "https://github.com/yasuyk/web-beautify")
9798 (synopsis "Format HTML, CSS and JavaScript, JSON")
9799 (description "This package provides an Emacs functions to format HTML,
9800 CSS, JavaScript, JSON.")
9801 (license license:gpl3+)))
9802
9803 (define-public emacs-helm-shell-history
9804 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9805 (package
9806 (name "emacs-helm-shell-history")
9807 (version (git-version "0.1" "1" commit))
9808 (source
9809 (origin
9810 (method git-fetch)
9811 (uri (git-reference
9812 (url "https://github.com/yuutayamada/helm-shell-history.git")
9813 (commit commit)))
9814 (file-name (git-file-name name version))
9815 (sha256
9816 (base32
9817 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9818 (build-system emacs-build-system)
9819 (arguments
9820 '(#:phases
9821 (modify-phases %standard-phases
9822 (add-before 'check 'patch-helm-shell-history-file
9823 (lambda _
9824 (let ((file "helm-shell-history.el"))
9825 (chmod file #o644)
9826 (emacs-substitute-sexps file
9827 ("(defvar helm-shell-history-file"
9828 `(expand-file-name "~/.bash_history"))))
9829 #t)))))
9830 (propagated-inputs
9831 `(("emacs-helm" ,emacs-helm)))
9832 (home-page "https://github.com/yuutayamada/helm-shell-history")
9833 (synopsis "Find shell history with Emacs Helm")
9834 (description "This package provides an Emacs Helm interface to search
9835 throw a shell history.")
9836 (license license:gpl3+))))
9837
9838 (define-public emacs-discover-my-major
9839 (package
9840 (name "emacs-discover-my-major")
9841 (version "1.0")
9842 (source
9843 (origin
9844 (method url-fetch)
9845 (uri
9846 (string-append "https://github.com/steckerhalter/discover-my-major"
9847 "/archive/" version ".tar.gz"))
9848 (file-name (string-append name "-" version ".tar.gz"))
9849 (sha256
9850 (base32
9851 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
9852 (build-system emacs-build-system)
9853 (propagated-inputs
9854 `(("emacs-makey" ,emacs-makey)))
9855 (home-page "https://github.com/steckerhalter/discover-my-major")
9856 (synopsis "Discover key bindings for the current Emacs major mode")
9857 (description "This package provides allows to discover key bindings and
9858 their meaning for the current Emacs major-mode.")
9859 (license license:gpl3+)))
9860
9861 (define-public emacs-org-ref
9862 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
9863 (revision "1"))
9864 (package
9865 (name "emacs-org-ref")
9866 (version (string-append "1.1.1" "-" revision "."
9867 (string-take commit 7)))
9868 (source
9869 (origin
9870 (method git-fetch)
9871 (uri (git-reference
9872 (url "https://github.com/jkitchin/org-ref.git")
9873 (commit commit)))
9874 (file-name (string-append name "-" version "-checkout"))
9875 (sha256
9876 (base32
9877 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
9878 (build-system emacs-build-system)
9879 (propagated-inputs
9880 `(("emacs-dash" ,emacs-dash)
9881 ("emacs-helm" ,emacs-helm)
9882 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
9883 ("emacs-ivy" ,emacs-ivy)
9884 ("emacs-hydra" ,emacs-hydra)
9885 ("emacs-key-chord" ,emacs-key-chord)
9886 ("emacs-s" ,emacs-s)
9887 ("emacs-f" ,emacs-f)
9888 ("emacs-pdf-tools" ,emacs-pdf-tools)))
9889 (home-page "https://github.com/jkitchin/org-ref")
9890 (synopsis "Citations, cross-references and bibliographies in org-mode")
9891 (description
9892 "Lisp code to setup bibliography, cite, ref and label org-mode links.
9893 Also sets up reftex and helm for org-mode citations. The links are
9894 clickable and do things that are useful.
9895
9896 The default setup uses helm-bibtex.
9897
9898 You should really read org-ref.org in this package for details.")
9899 (license license:gpl3+))))
9900
9901 (define-public emacs-org-reveal
9902 (package
9903 (name "emacs-org-reveal")
9904 ;; There are no proper tag, so we use the latest commit of the stable
9905 ;; branch, as does MELPA.
9906 (version "20161027.926")
9907 (source (origin
9908 (method git-fetch)
9909 (uri (git-reference
9910 (url "https://github.com/yjwen/org-reveal.git")
9911 (commit "001567cc12d50ba07612edd1718b86a12e8c2547")))
9912 (file-name (string-append name "-" version "-checkout"))
9913 (sha256
9914 (base32
9915 "18rma8smjrskbjyna076zhvx79zs5r5vinb537h8mw13pfxd6cm8"))))
9916 (build-system emacs-build-system)
9917 (home-page "https://github.com/yjwen/org-reveal")
9918 (synopsis "Org and Reveal.js powered HTML presentation tool")
9919 (description "Org-Reveal is a command@{org-mode} extension that allows to
9920 create beautiful presentations (slides) with 3D effects from simple but
9921 powerful Org contents.")
9922 (license license:gpl3+)))
9923
9924 (define-public emacs-add-hooks
9925 (package
9926 (name "emacs-add-hooks")
9927 (version "3.1.1")
9928 (source (origin
9929 (method url-fetch)
9930 (uri (string-append
9931 "https://github.com/nickmccurdy/add-hooks/archive/"
9932 version ".tar.gz"))
9933 (file-name (string-append name "-" version ".tar.gz"))
9934 (sha256
9935 (base32
9936 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
9937 (build-system emacs-build-system)
9938 (home-page "https://github.com/nickmccurdy/add-hooks/")
9939 (synopsis "Emacs function for setting multiple hooks")
9940 (description "This package provides a @code{add-hooks} function tidies up
9941 duplicate hook and function names further into a single declarative call.")
9942 (license license:gpl3+)))
9943
9944 (define-public emacs-fancy-narrow
9945 (package
9946 (name "emacs-fancy-narrow")
9947 (version "0.9.5")
9948 (source
9949 (origin
9950 (method url-fetch)
9951 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
9952 version ".tar.gz"))
9953 (file-name (string-append name "-" version ".tar.gz"))
9954 (sha256
9955 (base32
9956 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
9957 (build-system emacs-build-system)
9958 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
9959 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
9960 (description
9961 "Unlike @code{narrow-to-region}, which completely hides text outside
9962 the narrowed region, this package simply de-emphasizes the text, makes it
9963 read-only, and makes it unreachable. This leads to a much more natural
9964 feeling where the region stays static (instead of being brutally moved to a
9965 blank slate) and is clearly highlighted with respect to the rest of the
9966 buffer.")
9967 (license license:gpl2+)))
9968
9969 (define-public emacs-know-your-http-well
9970 (package
9971 (name "emacs-know-your-http-well")
9972 (version "0.5.0")
9973 (source
9974 (origin
9975 (method url-fetch)
9976 (uri (string-append
9977 "https://github.com/for-GET/know-your-http-well/archive/"
9978 "v" version ".tar.gz"))
9979 (file-name (string-append name "-" version ".tar.gz"))
9980 (sha256
9981 (base32
9982 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
9983 (arguments
9984 `(#:phases
9985 (modify-phases %standard-phases
9986 (add-after 'unpack 'install-json-files
9987 (lambda* (#:key outputs #:allow-other-keys)
9988 (for-each (lambda (directory)
9989 (copy-recursively directory
9990 (string-append
9991 (assoc-ref outputs "out")
9992 directory)))
9993 '("js" "json"))))
9994 (add-after 'unpack 'chdir-elisp
9995 ;; Elisp directory is not in root of the source.
9996 (lambda _
9997 (chdir "emacs"))))))
9998 (build-system emacs-build-system)
9999 (home-page "https://github.com/for-GET/know-your-http-well")
10000 (synopsis "Meaning of HTTP headers codes")
10001 (description "Meaning of HTTP headers codes.")
10002 (license license:gpl3+)))
10003
10004 (define-public emacs-navi-mode
10005 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
10006 (package
10007 (name "emacs-navi-mode")
10008 (version (git-version "2.0" "1" commit))
10009 (source
10010 (origin
10011 (method git-fetch)
10012 (uri (git-reference
10013 (url "https://github.com/alphapapa/navi.git")
10014 (commit commit)))
10015 (file-name (git-file-name name version))
10016 (sha256
10017 (base32
10018 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
10019 (build-system emacs-build-system)
10020 (propagated-inputs
10021 `(("emacs-outshine" ,emacs-outshine)
10022 ("emacs-outorg" ,emacs-outorg)))
10023 (home-page "https://github.com/alphapapa/navi")
10024 (synopsis "Emacs major-mode for easy buffer-navigation")
10025 (description
10026 "This package provides an Emacs major-mode for easy buffer-navigation")
10027 (license license:gpl3+))))
10028
10029 (define-public emacs-download-region
10030 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
10031 (revision "1"))
10032 (package
10033 (name "emacs-download-region")
10034 (version (string-append "0.0.1" "-" revision "."
10035 (string-take commit 7)))
10036 (source
10037 (origin
10038 (method git-fetch)
10039 (uri (git-reference
10040 (url "https://github.com/zk-phi/download-region.git")
10041 (commit commit)))
10042 (file-name (string-append name "-" version "-checkout"))
10043 (sha256
10044 (base32
10045 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
10046 (build-system emacs-build-system)
10047 (home-page "https://github.com/zk-phi/download-region")
10048 (synopsis "In buffer download manager for Emacs")
10049 (description "@code{download-region} provides in buffer
10050 downloading manager for Emacs.")
10051 (license license:gpl3+))))
10052
10053 (define-public emacs-helpful
10054 (package
10055 (name "emacs-helpful")
10056 (version "0.15")
10057 (source (origin
10058 (method url-fetch)
10059 (uri (string-append
10060 "https://github.com/Wilfred/helpful/archive/"
10061 version ".tar.gz"))
10062 (file-name (string-append name "-" version ".tar.gz"))
10063 (sha256
10064 (base32
10065 "1xmvhphzb4hbg647dz4lafy6hd19b7bk3lxni6irqrzdsrclhzn6"))))
10066 (build-system emacs-build-system)
10067 (propagated-inputs
10068 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
10069 (home-page "https://github.com/Wilfred/helpful")
10070 (synopsis "More contextual information in Emacs help")
10071 (description "@code{helpful} is an alternative to the built-in Emacs help
10072 that provides much more contextual information.
10073
10074 @itemize
10075 @item Show the source code for interactively defined functions (unlike the
10076 built-in Help).
10077 @item Fall back to the raw sexp if no source is available.
10078 @item Show where a function is being called.
10079 @item Docstrings will Highlight the summary (the first sentence), include
10080 cross-references, hide superfluous puncuation.
10081 @item Show you the properties that have been applied to the current
10082 symbol. This provides visibility of features like edebug or byte-code
10083 optimisation.
10084 @item Provide a separate @code{helpful-command} function to view interactive
10085 functions.
10086 @item Display any keybindings that apply to interactive functions.
10087 @item Trace, disassemble functions from inside Helpful. This is discoverable
10088 and doesn't require memorisation of commands.
10089 @end itemize\n")
10090 (license license:gpl3+)))
10091
10092 (define-public emacs-logview
10093 (package
10094 (name "emacs-logview")
10095 (version "0.9")
10096 (source (origin
10097 (method url-fetch)
10098 (uri (string-append
10099 "https://github.com/doublep/logview/archive/"
10100 version ".tar.gz"))
10101 (file-name (string-append name "-" version ".tar.gz"))
10102 (sha256
10103 (base32
10104 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
10105 (propagated-inputs
10106 `(("emacs-datetime" ,emacs-datetime)))
10107 (build-system emacs-build-system)
10108 (home-page "https://github.com/doublep/logview/")
10109 (synopsis "Emacs mode for viewing log files")
10110 (description "@code{logview} provides an Emacs mode to view log files.")
10111 (license license:gpl3+)))
10112
10113 (define-public emacs-suggest
10114 (package
10115 (name "emacs-suggest")
10116 (version "0.4")
10117 (source
10118 (origin
10119 (method url-fetch)
10120 (uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
10121 version ".tar.gz"))
10122 (file-name (string-append name "-" version ".tar.gz"))
10123 (sha256
10124 (base32
10125 "1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
10126 (build-system emacs-build-system)
10127 (propagated-inputs
10128 `(("emacs-loop" ,emacs-loop)
10129 ("emacs-dash" ,emacs-dash)
10130 ("emacs-s" ,emacs-s)
10131 ("emacs-f" ,emacs-f)))
10132 (home-page "https://github.com/Wilfred/suggest.el")
10133 (synopsis "Suggest Elisp functions that give the output requested")
10134 (description "Suggest.el will find functions that give the output
10135 requested. It's a great way of exploring list, string and arithmetic
10136 functions.")
10137 (license license:gpl3+)))
10138
10139 (define-public emacs-benchmark-init
10140 (package
10141 (name "emacs-benchmark-init")
10142 (version "1.0")
10143 (source (origin
10144 (method url-fetch)
10145 (uri (string-append
10146 "https://github.com/dholm/benchmark-init-el/archive/"
10147 version ".tar.gz"))
10148 (file-name (string-append name "-" version ".tar.gz"))
10149 (sha256
10150 (base32
10151 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
10152 (build-system emacs-build-system)
10153 (home-page "https://github.com/dholm/benchmark-init-el")
10154 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
10155 (description "@code{benchmark-init} provides a way to keep track of where
10156 time is being spent during Emacs startup in order to optimize startup time.")
10157 (license license:gpl3+)))
10158
10159 (define-public emacs-emms-player-simple-mpv
10160 ;; A new mpv backend is included in Emms from 5.0.
10161 (deprecated-package "emacs-emms-player-simple-mpv" emacs-emms))
10162
10163 (define-public emacs-magit-gerrit
10164 (let ((version "0.3")
10165 (revision "1")
10166 (commit "ece6f369694aca17f3ac166ed2801b432acfe20d"))
10167 (package
10168 (name "emacs-magit-gerrit")
10169 (version (git-version version revision commit))
10170 (source (origin
10171 (method git-fetch)
10172 (uri (git-reference
10173 (url "https://github.com/terranpro/magit-gerrit.git")
10174 (commit commit)))
10175 (file-name (git-file-name name version))
10176 (sha256
10177 (base32
10178 "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"))))
10179 (build-system emacs-build-system)
10180 (propagated-inputs
10181 `(("emacs-magit" ,emacs-magit)))
10182 (home-page "https://github.com/terranpro/magit-gerrit")
10183 (synopsis "Magit extension for Gerrit")
10184 (description "This Magit extension provides integration with Gerrit,
10185 which makes it possible to conduct Gerrit code reviews directly from within
10186 Emacs.")
10187 (license license:gpl3+))))
10188
10189 (define-public emacs-magit-org-todos-el
10190 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
10191 (package
10192 (name "emacs-magit-org-todos-el")
10193 (version (git-version "0.1.1" "1" commit))
10194 (source
10195 (origin
10196 (method git-fetch)
10197 (uri (git-reference
10198 (url "https://github.com/danielma/magit-org-todos.el.git")
10199 (commit commit)))
10200 (file-name (git-file-name name version))
10201 (sha256
10202 (base32
10203 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
10204 (propagated-inputs
10205 `(("magit" ,emacs-magit)))
10206 (build-system emacs-build-system)
10207 (home-page "https://github.com/danielma/magit-org-todos.el")
10208 (synopsis "Get todo.org into Emacs Magit status")
10209 (description "This package allows you to get @file{todo.org} into your
10210 magit status.
10211
10212 If you have a @file{todo.org} file with @code{TODO} items in the root of your
10213 repository, @code{magit-org-todos} will create a section in your Magit status
10214 buffer with each of your todos.")
10215 (license license:gpl3+))))
10216
10217 (define-public emacs-f3
10218 (package
10219 (name "emacs-f3")
10220 (version "0.1")
10221 (source
10222 (origin
10223 (method url-fetch)
10224 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
10225 version ".tar.gz"))
10226 (file-name (string-append name "-" version ".tar.gz"))
10227 (sha256
10228 (base32
10229 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
10230 (build-system emacs-build-system)
10231 (propagated-inputs
10232 `(("emacs-helm" ,emacs-helm)))
10233 (home-page "https://github.com/cosmicexplorer/f3")
10234 (synopsis "Fantastic File Finder for Emacs")
10235 (description
10236 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
10237 (license license:gpl3+)))
10238
10239 (define-public emacs-lice-el
10240 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
10241 (package
10242 (name "emacs-lice-el")
10243 (version (git-version "0.2" "1" commit))
10244 (source (origin
10245 (method git-fetch)
10246 (uri (git-reference
10247 (url "https://github.com/buzztaiki/lice-el.git")
10248 (commit commit)))
10249 (file-name (git-file-name name version))
10250 (sha256
10251 (base32
10252 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
10253 (build-system emacs-build-system)
10254 (home-page "https://github.com/buzztaiki/lice-el")
10255 (synopsis "License and header template for Emacs")
10256 (description "@code{lice.el} provides following features:
10257
10258 @itemize
10259 @item License template management.
10260 @item File header insertion.
10261 @end itemize\n")
10262 (license license:gpl3+))))
10263
10264 (define-public emacs-academic-phrases
10265 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
10266 (package
10267 (name "emacs-academic-phrases")
10268 (version (git-version "0.1" "1" commit))
10269 (source
10270 (origin
10271 (method git-fetch)
10272 (uri (git-reference
10273 (url "https://github.com/nashamri/academic-phrases.git")
10274 (commit commit)))
10275 (file-name (string-append name "-" version "-checkout"))
10276 (sha256
10277 (base32
10278 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
10279 (build-system emacs-build-system)
10280 (propagated-inputs
10281 `(("emacs-dash" ,emacs-dash)
10282 ("emacs-s" ,emacs-s)
10283 ("emacs-ht" ,emacs-ht)))
10284 (home-page "https://github.com/nashamri/academic-phrases")
10285 (synopsis "Bypass that mental block when writing your papers")
10286 (description
10287 "When writing your academic paper, you might get stuck trying to find
10288 the right phrase that captures your intention. This package tries to
10289 alleviate that problem by presenting you with a list of phrases organized by
10290 the topic or by the paper section that you are writing. This package has
10291 around 600 phrases so far.
10292
10293 Using this package is easy, just call @code{academic-phrases} to get a list of
10294 phrases organized by topic, or call @code{academic-phrases-by-section} to
10295 browse the phrases by the paper section and fill-in the blanks if required.")
10296 (license license:gpl3+))))
10297
10298 (define-public emacs-auto-yasnippet
10299 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
10300 (package
10301 (name "emacs-auto-yasnippet")
10302 (version (git-version "0.3.0" "1" commit))
10303 (source (origin
10304 (method git-fetch)
10305 (uri (git-reference
10306 (url "https://github.com/abo-abo/auto-yasnippet.git")
10307 (commit commit)))
10308 (file-name (string-append name "-" version "-checkout"))
10309 (sha256
10310 (base32
10311 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
10312 (build-system emacs-build-system)
10313 (arguments
10314 '(#:phases
10315 (modify-phases %standard-phases
10316 (add-before 'install 'check
10317 (lambda _
10318 (invoke "emacs" "--batch"
10319 "-l" "auto-yasnippet.el"
10320 "-l" "auto-yasnippet-test.el"
10321 "-f" "ert-run-tests-batch-and-exit"))))))
10322 (propagated-inputs
10323 `(("emacs-yasnippet" ,emacs-yasnippet)))
10324 (home-page "https://github.com/abo-abo/auto-yasnippet/")
10325 (synopsis "Quickly create disposable yasnippets")
10326 (description "This package provides a hybrid of keyboard macros and
10327 yasnippet. You create the snippet on the go, usually to be used just in the
10328 one place. It's fast, because you're not leaving the current buffer, and all
10329 you do is enter the code you'd enter anyway, just placing ~ where you'd like
10330 yasnippet fields and mirrors to be.")
10331 (license license:gpl3+))))
10332
10333 (define-public emacs-highlight-numbers
10334 (package
10335 (name "emacs-highlight-numbers")
10336 (version "0.2.3")
10337 (source
10338 (origin
10339 (method url-fetch)
10340 (uri (string-append
10341 "https://github.com/Fanael/highlight-numbers/archive/"
10342 version ".tar.gz"))
10343 (file-name (string-append name "-" version ".tar.gz"))
10344 (sha256
10345 (base32
10346 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
10347 (build-system emacs-build-system)
10348 (propagated-inputs
10349 `(("emacs-parent-mode" ,emacs-parent-mode)))
10350 (home-page "https://github.com/Fanael/highlight-numbers")
10351 (synopsis "Highlight numbers in source code")
10352 (description "@code{highlight-numbers-mode} provides a minor mode for
10353 syntax highlighting of numeric literals in source code.
10354
10355 It s customizable: it's easy to add or redefine what exactly consitutes a
10356 \"number\" in given major mode. See @code{highlight-numbers-modelist}.")
10357 (license license:gpl3+)))
10358
10359 (define-public emacs-darkroom
10360 (package
10361 (name "emacs-darkroom")
10362 (version "0.1")
10363 (source (origin
10364 (method url-fetch)
10365 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
10366 version ".el"))
10367 (sha256
10368 (base32
10369 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
10370 (build-system emacs-build-system)
10371 (home-page "https://elpa.gnu.org/packages/darkroom.html")
10372 (synopsis "Remove visual distractions and focus on writing")
10373 (description "@code{darkroom-mode} makes visual distractions disappear.
10374 The mode-line is temporarily elided, text is enlarged and margins are adjusted
10375 so that it's centered on the window.
10376
10377 @code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
10378 @code{darkroom-mode}, unless the current buffer lives in the sole window of
10379 the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
10380 split to display more windows and more buffers, the buffer exits
10381 @code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
10382 @code{darkroom-mode}.")
10383 (license license:gpl3+)))
10384
10385 (define-public emacs-rsw-elisp
10386 (package
10387 (name "emacs-rsw-elisp")
10388 (version "1.0.5")
10389 (source (origin
10390 (method url-fetch)
10391 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
10392 "/archive/" version ".tar.gz"))
10393 (file-name (string-append name "-" version ".tar.gz"))
10394 (sha256
10395 (base32
10396 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
10397 (build-system emacs-build-system)
10398 (home-page "https://github.com/rswgnu/rsw-elisp")
10399 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
10400 (description "This package improves and replaces the GNU Emacs commands
10401 that interactively evaluate Emacs Lisp expressions. The new commands replace
10402 standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
10403 the same way as the old commands when called non-interactively; only the
10404 interactive behavior should be different.")
10405 (license license:gpl3+)))
10406
10407 (define-public emacs-default-text-scale
10408 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10409 (revision "1"))
10410 (package
10411 (name "emacs-default-text-scale")
10412 (version (string-append "0.1" "-" revision "."
10413 (string-take commit 7)))
10414 (source (origin
10415 (method git-fetch)
10416 (uri (git-reference
10417 (url "https://github.com/purcell/default-text-scale")
10418 (commit commit)))
10419 (file-name (string-append name "-" version "-checkout"))
10420 (sha256
10421 (base32
10422 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10423 (build-system emacs-build-system)
10424 (home-page "https://github.com/purcell/default-text-scale")
10425 (synopsis "Adjust the font size in all Emacs frames")
10426 (description "This package provides commands for increasing or
10427 decreasing the default font size in all GUI Emacs frames.")
10428 (license license:gpl3+))))
10429
10430 (define-public emacs-visual-regexp
10431 (package
10432 (name "emacs-visual-regexp")
10433 (version "1.1.1")
10434 (source
10435 (origin
10436 (method url-fetch)
10437 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10438 "v" version ".tar.gz"))
10439 (file-name (string-append name "-" version ".tar.gz"))
10440 (sha256
10441 (base32
10442 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10443 (build-system emacs-build-system)
10444 (home-page "https://github.com/benma/visual-regexp.el/")
10445 (synopsis "Regexp command with interactive visual feedback")
10446 (description "This package provides an Emacs regexp command with
10447 interactive visual feedback.")
10448 (license license:gpl3+)))
10449
10450 (define-public emacs-faceup
10451 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10452 (revision "1"))
10453 (package
10454 (name "emacs-faceup")
10455 (version (string-append "0.0.1" "-" revision "."
10456 (string-take commit 7)))
10457 (source
10458 (origin
10459 (method git-fetch)
10460 (uri (git-reference
10461 (url "https://github.com/Lindydancer/faceup.git")
10462 (commit commit)))
10463 (file-name (string-append name "-" version "-checkout"))
10464 (sha256
10465 (base32
10466 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10467 (build-system emacs-build-system)
10468 (home-page "https://github.com/Lindydancer/faceup")
10469 (synopsis "Markup language for faces and font-lock regression testing")
10470 (description "Emacs is capable of highlighting buffers based on
10471 language-specific @code{font-lock} rules. This package makes it possible to
10472 perform regression test for packages that provide font-lock rules.")
10473 (license license:gpl3+))))
10474
10475 (define-public emacs-racket-mode
10476 (let ((commit "b977873e6128f8399432dcd60cc39f6a6f803d9c")
10477 (revision "2"))
10478 (package
10479 (name "emacs-racket-mode")
10480 (version (string-append "0.0.2" "-" revision "."
10481 (string-take commit 7)))
10482 (source
10483 (origin
10484 (method git-fetch)
10485 (uri (git-reference
10486 (url "https://github.com/greghendershott/racket-mode")
10487 (commit commit)))
10488 (file-name (string-append name "-" version "-checkout"))
10489 (sha256
10490 (base32
10491 "0vp4bbbplqvmnhjpl6ajrlydmrhqzil56cfbs18m5c5fddx0zlh7"))))
10492 (build-system emacs-build-system)
10493 (arguments
10494 `(#:include '("\\.el$" "\\.rkt$")))
10495 (propagated-inputs
10496 `(("emacs-faceup" ,emacs-faceup)
10497 ("emacs-s" ,emacs-s)))
10498 (home-page "https://github.com/greghendershott/racket-mode")
10499 (synopsis "Major mode for Racket language")
10500 (description "@code{racket-mode} provides:
10501
10502 @itemize
10503 @item Focus on Racket (not various Schemes).
10504 @item Follow DrRacket concepts where applicable.
10505 @item Thorough font-lock and indent.
10506 @end itemize\n")
10507 (license license:gpl3+))))
10508
10509 (define-public emacs-grep-context
10510 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10511 (package
10512 (name "emacs-grep-context")
10513 (version (git-version "0.1" "1" commit))
10514 (source
10515 (origin
10516 (method git-fetch)
10517 (uri (git-reference
10518 (url "https://github.com/mkcms/grep-context.git")
10519 (commit commit)))
10520 (file-name (string-append name "-" version "-checkout"))
10521 (sha256
10522 (base32
10523 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10524 (build-system emacs-build-system)
10525 (propagated-inputs
10526 `(("emacs-dash" ,emacs-dash)))
10527 (home-page "https://github.com/nashamri/academic-phrases")
10528 (synopsis "Increase context in compilation and grep buffers")
10529 (description
10530 "This package provides an Emacs package for more context in
10531 compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10532 @code{ivy}.")
10533 (license license:gpl3+))))
10534
10535 (define-public emacs-helm-firefox
10536 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10537 (revision "1"))
10538 (package
10539 (name "emacs-helm-firefox")
10540 (version (string-append "0.0.1" "-" revision "."
10541 (string-take commit 7)))
10542 (source
10543 (origin
10544 (method git-fetch)
10545 (uri (git-reference
10546 (url "https://github.com/emacs-helm/helm-firefox.git")
10547 (commit commit)))
10548 (file-name (string-append name "-" version "-checkout"))
10549 (sha256
10550 (base32
10551 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
10552 (propagated-inputs
10553 `(("emacs-helm" ,emacs-helm)))
10554 (build-system emacs-build-system)
10555 (home-page "https://github.com/emacs-helm/helm-firefox")
10556 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10557 (description "Display firefox bookmarks with Emacs Helm interface")
10558 (license license:gpl3+))))
10559
10560 (define-public emacs-interactive-align
10561 (package
10562 (name "emacs-interactive-align")
10563 (version "0.1.0")
10564 (source
10565 (origin
10566 (method url-fetch)
10567 (uri (string-append "https://github.com/mkcms/interactive-align/"
10568 "archive/" "v" version ".tar.gz"))
10569 (file-name (string-append name "-" version ".tar.gz"))
10570 (sha256
10571 (base32
10572 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
10573 (build-system emacs-build-system)
10574 (home-page "https://github.com/mkcms/interactive-align/")
10575 (synopsis "Interactive align-regexp command in Emacs")
10576 (description "Interactive align-regexp command in Emacs")
10577 (license license:gpl3+)))
10578
10579 (define-public emacs-shift-number
10580 (package
10581 (name "emacs-shift-number")
10582 (version "0.1")
10583 (source
10584 (origin
10585 (method url-fetch)
10586 (uri (string-append "https://github.com/alezost/shift-number.el"
10587 "/archive/" "v" version ".tar.gz"))
10588 (file-name (string-append name "-" version ".tar.gz"))
10589 (sha256
10590 (base32
10591 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
10592 (build-system emacs-build-system)
10593 (home-page "https://github.com/alezost/shift-number.el")
10594 (synopsis "Increase or decrease the number at point")
10595 (description "@code{emacs-shift-number} provides commands
10596 @code{shift-number-up} to increase and @code{shift-number-down} to
10597 decrease the number at point.")
10598 (license license:gpl3+)))
10599
10600 (define-public emacs-highlight-defined
10601 (package
10602 (name "emacs-highlight-defined")
10603 (version "0.1.5")
10604 (source
10605 (origin
10606 (method url-fetch)
10607 (uri (string-append
10608 "https://github.com/Fanael/highlight-defined/archive/"
10609 version ".tar.gz"))
10610 (file-name (string-append name "-" version ".tar.gz"))
10611 (sha256
10612 (base32
10613 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
10614 (build-system emacs-build-system)
10615 (home-page "https://github.com/Fanael/highlight-defined")
10616 (synopsis "Syntax highlighting of known Elisp symbols")
10617 (description "Minor mode providing syntax highlighting of known Emacs Lisp
10618 symbols. Currently the code distinguishes Lisp functions, built-in functions,
10619 macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
10620 (license license:gpl3+)))
10621
10622 (define-public emacs-parinfer-mode
10623 (package
10624 (name "emacs-parinfer-mode")
10625 (version "0.4.10")
10626 (source
10627 (origin
10628 (method url-fetch)
10629 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
10630 "v" version ".tar.gz"))
10631 (file-name (string-append name "-" version ".tar.gz"))
10632 (sha256
10633 (base32
10634 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
10635 (propagated-inputs
10636 `(("emacs-dash" ,emacs-dash)
10637 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
10638 ("emacs-company" ,emacs-company)))
10639 (build-system emacs-build-system)
10640 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
10641 (synopsis "Lisp structure editing mode")
10642 (description "@code{parinfer-mode} is a proof-of-concept editor
10643 mode for Lisp programming languages. It will infer some changes to
10644 keep Parens and Indentation inline with one another.")
10645 (license license:gpl3+)))
10646
10647 (define-public emacs-helm-eww
10648 (let ((commit "9d36acc433bcf689598b1b4d7d47c9aeb84d6b44"))
10649 (package
10650 (name "emacs-helm-eww")
10651 (version (git-version "0.1" "3" commit))
10652 (source (origin
10653 (method git-fetch)
10654 (uri (git-reference
10655 (url "https://github.com/emacs-helm/helm-eww.git")
10656 (commit commit)))
10657 (file-name (string-append name "-" version "-checkout"))
10658 (sha256
10659 (base32
10660 "06gnf84gx6qbhcw1h5jhjnvcdxkdpv0npm53x3pgqybbll5rn5dy"))))
10661 (propagated-inputs
10662 `(("emacs-helm" ,emacs-helm)))
10663 (build-system emacs-build-system)
10664 (home-page "https://github.com/emacs-helm/helm-eww/")
10665 (synopsis "Helm interface to EWW")
10666 (description "This package provides a Helm interface for EWW buffers,
10667 bookmarks and history.")
10668 (license license:gpl3+))))
10669
10670 (define-public emacs-stumpwm-mode
10671 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
10672 (revision "1"))
10673 (package
10674 (name "emacs-stumpwm-mode")
10675 (version (string-append "0.0.1-" revision "."
10676 (string-take commit 7)))
10677 (source (origin
10678 (method git-fetch)
10679 (uri (git-reference
10680 (url "https://github.com/stumpwm/stumpwm-contrib.git")
10681 (commit commit)))
10682 (file-name (string-append name "-" version "-checkout"))
10683 (sha256
10684 (base32
10685 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
10686 (build-system emacs-build-system)
10687 (arguments
10688 `(#:phases
10689 (modify-phases %standard-phases
10690 (add-after 'unpack 'chdir-elisp
10691 ;; Elisp directory is not in root of the source.
10692 (lambda _
10693 (chdir "util/swm-emacs"))))))
10694 (home-page "https://github.com/stumpwm/stumpwm-contrib")
10695 (synopsis "Emacs minor-mode for Stumpwm")
10696 (description "Emacs minor-mode for Stumpwm")
10697 (license license:gpl3+))))
10698
10699 (define-public emacs-irfc
10700 (package
10701 (name "emacs-irfc")
10702 (version "20130824.507")
10703 (source
10704 (origin
10705 (method url-fetch)
10706 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
10707 (file-name (string-append "irfc-" version ".el"))
10708 (sha256
10709 (base32
10710 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
10711 (build-system emacs-build-system)
10712 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
10713 (synopsis "Interface for IETF RFC document")
10714 (description
10715 "This package provides an Emacs interface for IETF RFC document.")
10716 (license license:gpl3+)))
10717
10718 (define-public emacs-ido-vertical-mode
10719 (package
10720 (name "emacs-ido-vertical-mode")
10721 (version "0.1.6")
10722 (source
10723 (origin
10724 (method url-fetch)
10725 (uri (string-append
10726 "https://github.com/creichert/ido-vertical-mode.el/archive/"
10727 "v" version ".tar.gz"))
10728 (file-name (string-append name "-" version ".tar.gz"))
10729 (sha256
10730 (base32
10731 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
10732 (build-system emacs-build-system)
10733 (home-page "https://github.com/creichert/ido-vertical-mode.el")
10734 (synopsis "Makes ido-mode display vertically")
10735 (description "Makes ido-mode display prospects vertically.")
10736 (license license:gpl3+)))
10737
10738 (define-public emacs-wordgen
10739 (package
10740 (name "emacs-wordgen")
10741 (version "0.1.4")
10742 (source
10743 (origin
10744 (method url-fetch)
10745 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
10746 version ".tar.gz"))
10747 (file-name (string-append name "-" version ".tar.gz"))
10748 (sha256
10749 (base32
10750 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
10751 (build-system emacs-build-system)
10752 (home-page "https://github.com/Fanael/wordgen.el")
10753 (synopsis "Random word generator")
10754 (description "This package provides functions to generate random words
10755 using user-provided rules.")
10756 (license license:gpl3+)))
10757
10758 (define-public emacs-on-screen
10759 (package
10760 (name "emacs-on-screen")
10761 (version "1.3.2")
10762 (source
10763 (origin
10764 (method url-fetch)
10765 (uri (string-append
10766 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
10767 (file-name (string-append name "-" version ".el"))
10768 (sha256
10769 (base32
10770 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
10771 (build-system emacs-build-system)
10772 (home-page
10773 "https://github.com/michael-heerdegen/on-screen.el")
10774 (synopsis "Guide your eyes while scrolling")
10775 (description
10776 "Scrolling can be distracting because your eyes may lose
10777 orientation. This library implements a minor mode that highlights
10778 the previously visible buffer part after each scroll.")
10779 (license license:gpl3+)))
10780
10781 (define-public emacs-highlight-escape-sequences
10782 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
10783 (revision "1"))
10784 (package
10785 (name "emacs-highlight-escape-sequences")
10786 (version (string-append "0.0.1" "-" revision "."
10787 (string-take commit 7)))
10788 (source
10789 (origin
10790 (method git-fetch)
10791 (uri (git-reference
10792 (url "https://github.com/dgutov/highlight-escape-sequences.git")
10793 (commit commit)))
10794 (file-name (string-append name "-" version "-checkout"))
10795 (sha256
10796 (base32
10797 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
10798 (build-system emacs-build-system)
10799 (home-page "https://github.com/dgutov/highlight-escape-sequences")
10800 (synopsis "Highlight escape sequences in Emacs")
10801 (description "@code{highlight-escape-sequences} provides an
10802 Emacs minor mode to escape sequences in code.")
10803 (license license:gpl3+))))
10804
10805 (define-public emacs-dashboard
10806 (package
10807 (name "emacs-dashboard")
10808 (version "1.2.4")
10809 (source
10810 (origin
10811 (method url-fetch)
10812 (uri (string-append
10813 "https://github.com/rakanalh/emacs-dashboard/archive/"
10814 version ".tar.gz"))
10815 (file-name (string-append name "-" version ".tar.gz"))
10816 (sha256
10817 (base32
10818 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
10819 (build-system emacs-build-system)
10820 (propagated-inputs
10821 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
10822 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
10823 (home-page "https://github.com/rakanalh/emacs-dashboard")
10824 (synopsis "Startup screen extracted from Spacemacs")
10825 (description "This package provides an extensible Emacs dashboard, with
10826 sections for bookmarks, projectil projects, org-agenda and more. ")
10827 (license license:gpl3+)))
10828
10829 (define-public emacs-slime-company
10830 (package
10831 (name "emacs-slime-company")
10832 (version "1.1")
10833 (source
10834 (origin
10835 (method url-fetch)
10836 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
10837 "v" version ".tar.gz"))
10838 (sha256
10839 (base32
10840 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
10841 (file-name (string-append name "-" version ".tar.gz"))))
10842 (build-system emacs-build-system)
10843 (propagated-inputs
10844 `(("emacs-slime" ,emacs-slime)
10845 ("emacs-company" ,emacs-company)))
10846 (home-page "https://company-mode.github.io")
10847 (synopsis "SLIME completion backend for @code{company-mode}")
10848 (description
10849 "This is a backend implementation for the completion package
10850 @code{company-mode} which supports the normal and the fuzzy completion
10851 modes of SLIME.")
10852 (license license:gpl3+)))
10853
10854 (define-public emacs-sml-mode
10855 (package
10856 (name "emacs-sml-mode")
10857 (version "6.8")
10858 (source
10859 (origin
10860 (method url-fetch)
10861 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
10862 version ".el"))
10863 (sha256
10864 (base32
10865 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
10866 (build-system emacs-build-system)
10867 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
10868 (synopsis "Major mode for editing (Standard) ML")
10869 (description "SML-MODE is a major Emacs mode for editing Standard ML.
10870 It provides syntax highlighting and automatic indentation and
10871 comes with sml-proc which allows interaction with an inferior SML
10872 interactive loop.")
10873 (license license:gpl3+)))
10874
10875 (define-public emacs-eros
10876 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
10877 (revision "1"))
10878 (package
10879 (name "emacs-eros")
10880 (version (string-append "0.0.1" "-" revision "."
10881 (string-take commit 7)))
10882 (source
10883 (origin
10884 (method git-fetch)
10885 (uri (git-reference
10886 (url "https://github.com/xiongtx/eros.git")
10887 (commit commit)))
10888 (file-name (string-append name "-" version "-checkout"))
10889 (sha256
10890 (base32
10891 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
10892 (build-system emacs-build-system)
10893 (home-page "https://github.com/xiongtx/eros")
10894 (synopsis "Evaluation result overlays")
10895 (description "@code{eros} provides evaluation result overlays.")
10896 (license license:gpl3+))))
10897
10898 (define-public emacs-stickyfunc-enhance
10899 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
10900 (revision "1"))
10901 (package
10902 (name "emacs-stickyfunc-enhance")
10903 (version "0.1")
10904 (source
10905 (origin
10906 (method git-fetch)
10907 (uri (git-reference
10908 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
10909 (commit commit)))
10910 (file-name (string-append name "-" version "-checkout"))
10911 (sha256
10912 (base32
10913 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
10914 (build-system emacs-build-system)
10915 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
10916 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
10917 (description
10918 "@code{semantic-stickyfunc-mode} shows the function point is currently
10919 in at the first line of the current buffer. This is useful when you have a
10920 very long function that spreads more than a screen, and you don't have to
10921 scroll up to read the function name and then scroll down to original position.")
10922 (license license:gpl3+))))
10923
10924 (define-public emacs-git-auto-commit-mode
10925 (package
10926 (name "emacs-git-auto-commit-mode")
10927 (version "4.4.0")
10928 (source
10929 (origin
10930 (method url-fetch)
10931 (uri (string-append
10932 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
10933 version ".tar.gz"))
10934 (file-name (string-append name "-" version ".tar.gz"))
10935 (sha256
10936 (base32
10937 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
10938 (build-system emacs-build-system)
10939 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
10940 (synopsis "Emacs Minor mode to automatically commit and push")
10941 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
10942 tries to commit changes to a file after every save.
10943
10944 When @code{gac-automatically-push-p} is non-nil, it also tries to push to
10945 the current upstream.")
10946 (license license:gpl3+)))
10947
10948 (define-public emacs-company-restclient
10949 (package
10950 (name "emacs-company-restclient")
10951 (version "0.1.0")
10952 (source
10953 (origin
10954 (method url-fetch)
10955 (uri (string-append
10956 "https://github.com/iquiw/company-restclient/archive/"
10957 "v" version ".tar.gz"))
10958 (file-name (string-append name "-" version ".tar.gz"))
10959 (sha256
10960 (base32
10961 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
10962 (build-system emacs-build-system)
10963 (propagated-inputs
10964 `(("emacs-company" ,emacs-company)
10965 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
10966 ("emacs-restclient" ,emacs-restclient)))
10967 (home-page "https://github.com/iquiw/company-restclient")
10968 (synopsis "Company-mode completion back-end for restclient-mode")
10969 (description "@code{company-mode} back-end for
10970 @code{restclient-mode}.
10971
10972 It provides auto-completion for HTTP methods and headers in
10973 @code{restclient-mode}. Completion source is given by
10974 @code{know-your-http-well}.")
10975 (license license:gpl3+)))
10976
10977 (define-public emacs-noflet
10978 (let ((version "20170629")
10979 (revision "1")
10980 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
10981 (package
10982 (name "emacs-noflet")
10983 (version (git-version version revision commit))
10984 (source
10985 (origin
10986 (method git-fetch)
10987 (uri (git-reference
10988 (url "https://github.com/nicferrier/emacs-noflet")
10989 (commit commit)))
10990 (file-name (string-append name "-" version "-checkout"))
10991 (sha256
10992 (base32
10993 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
10994 (build-system emacs-build-system)
10995 (arguments
10996 `(#:phases
10997 (modify-phases %standard-phases
10998 (add-after 'unpack 'require-dash
10999 ;; noflet.el uses -map from dash, but (require 'dash) is
11000 ;; missing. So, add it.
11001 (lambda _
11002 (substitute* "noflet.el"
11003 ((";;; Code:") ";;; Code:\n(require 'dash)"))
11004 #t)))))
11005 (propagated-inputs
11006 `(("emacs-dash" ,emacs-dash)))
11007 (home-page "https://github.com/nicferrier/emacs-noflet")
11008 (synopsis "Locally override functions")
11009 (description "@code{emacs-noflet} let's you locally override functions,
11010 in the manner of @command{flet}, but with access to the original function
11011 through the symbol: @command{this-fn}.")
11012 (license license:gpl3+))))
11013
11014 (define-public emacs-dumb-jump
11015 (package
11016 (name "emacs-dumb-jump")
11017 (version "0.5.2")
11018 (source
11019 (origin
11020 (method url-fetch)
11021 (uri (string-append
11022 "https://github.com/jacktasia/dumb-jump/archive/v"
11023 version ".tar.gz"))
11024 (file-name (string-append name "-" version ".tar.gz"))
11025 (sha256
11026 (base32
11027 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
11028 (build-system emacs-build-system)
11029 (arguments
11030 `(#:tests? #f ; FIXME: Tests freeze when run.
11031 #:test-command '("ert-runner")
11032 #:phases
11033 (modify-phases %standard-phases
11034 (add-after 'unpack 'set-shell
11035 (lambda _
11036 ;; Setting the SHELL environment variable is required for the
11037 ;; tests to find sh.
11038 (setenv "SHELL" (which "sh"))
11039 #t)))))
11040 (native-inputs
11041 `(("emacs-el-mock" ,emacs-el-mock)
11042 ("emacs-noflet" ,emacs-noflet)
11043 ("emacs-undercover" ,emacs-undercover)
11044 ("ert-runner" ,emacs-ert-runner)))
11045 (propagated-inputs
11046 `(("emacs-f" ,emacs-f)
11047 ("emacs-popup" ,emacs-popup)))
11048 (home-page "https://github.com/jacktasia/dumb-jump")
11049 (synopsis "Jump to definition for multiple languages without configuration")
11050 (description "Dumb Jump is an Emacs \"jump to definition\" package with
11051 support for multiple programming languages that favors \"just working\" over
11052 speed or accuracy. This means minimal --- and ideally zero --- configuration
11053 with absolutely no stored indexes (tags) or persistent background processes.
11054 Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
11055 @command{rg} installed.")
11056 (license license:gpl3+)))
11057
11058 (define-public emacs-dts-mode
11059 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
11060 (revision "1"))
11061 (package
11062 (name "emacs-dts-mode")
11063 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
11064 (source
11065 (origin
11066 (method git-fetch)
11067 (uri (git-reference
11068 (url "https://github.com/bgamari/dts-mode.git")
11069 (commit commit)))
11070 (file-name (string-append name "-" version "-checkout"))
11071 (sha256
11072 (base32
11073 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
11074 (build-system emacs-build-system)
11075 (home-page "https://github.com/bgamari/dts-mode.git")
11076 (synopsis "Emacs minor mode for editing device tree files")
11077 (description
11078 "This package provides an Emacs minor mode for highlighting
11079 device tree files.")
11080 (license license:gpl3+))))
11081
11082 (define-public emacs-daemons
11083 (package
11084 (name "emacs-daemons")
11085 (version "2.0.0")
11086 (source
11087 (origin
11088 (method git-fetch)
11089 (uri (git-reference
11090 (url "https://github.com/cbowdon/daemons.el")
11091 (commit version)))
11092 (file-name (string-append name "-" version "-checkout"))
11093 (sha256
11094 (base32
11095 "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4"))))
11096 (build-system emacs-build-system)
11097 (home-page "https://github.com/cbowdon/daemons.el")
11098 (synopsis "Emacs UI for managing init system services")
11099 (description
11100 "This is an Emacs mode to give you a UI for managing init system
11101 daemons (services) for those getting tired of typing out @code{sudo service
11102 my_thing reload} all the time. It offers a consistent UI over different init
11103 systems.")
11104 (license license:gpl3+)))
11105
11106 (define-public emacs-esh-autosuggest
11107 (package
11108 (name "emacs-esh-autosuggest")
11109 (version "2.0.0")
11110 (source
11111 (origin
11112 (method git-fetch)
11113 (uri (git-reference
11114 (url "https://github.com/dieggsy/esh-autosuggest")
11115 (commit version)))
11116 (file-name (string-append name "-" version "-checkout"))
11117 (sha256
11118 (base32
11119 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
11120 (build-system emacs-build-system)
11121 (propagated-inputs `(("emacs-company" ,emacs-company)))
11122 (home-page "https://github.com/dieggsy/esh-autosuggest")
11123 (synopsis "Fish-like autosuggestions in Eshell")
11124 (description
11125 "This package assumes you use something other than company for eshell
11126 completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
11127 @code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
11128 for history autosuggestions.
11129
11130 Unless you're using @code{use-package}'s hook keyword, you can enable the
11131 autosuggestions with:
11132 @code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
11133 (license license:gpl3+)))
11134
11135 (define-public emacs-desktop-environment
11136 (package
11137 (name "emacs-desktop-environment")
11138 (version "0.2.0")
11139 (source
11140 (origin
11141 (method git-fetch)
11142 (uri (git-reference
11143 (url "https://github.com/DamienCassou/desktop-environment.git")
11144 (commit (string-append "v" version))))
11145 (file-name (string-append name "-" version "-checkout"))
11146 (sha256
11147 (base32
11148 "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r"))))
11149 (build-system emacs-build-system)
11150 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11151 (synopsis "Control your GNU/Linux desktop environment from Emacs")
11152 (description
11153 "This package helps you control your GNU/Linux desktop from Emacs.
11154 With @code{desktop-environment}, you can control the brightness and volume as
11155 well as take screenshots and lock your screen. The package depends on the
11156 availability of shell commands to do the hard work for us. These commands can
11157 be changed by customizing the appropriate variables.")
11158 (license license:gpl3+)))
11159
11160 (define-public emacs-org-caldav
11161 (package
11162 (name "emacs-org-caldav")
11163 (version "20180403")
11164 (source
11165 (origin
11166 (method url-fetch)
11167 (uri (string-append
11168 "https://github.com/dengste/org-caldav/raw/"
11169 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
11170 "/org-caldav.el"))
11171 (sha256
11172 (base32
11173 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
11174 (build-system emacs-build-system)
11175 (propagated-inputs `(("emacs-org" ,emacs-org)))
11176 (home-page "https://github.com/dengste/org-caldav")
11177 (synopsis
11178 "Sync Org files with external calendars via the CalDAV protocol")
11179 (description
11180 "Synchronize between events in Org-mode files and a CalDAV calendar.
11181 This code is still alpha.")
11182 (license license:gpl3+)))
11183
11184 (define-public emacs-zotxt
11185 (package
11186 (name "emacs-zotxt")
11187 (version "20180518")
11188 (source
11189 (origin
11190 (method url-fetch)
11191 (uri (string-append
11192 "https://github.com/egh/zotxt-emacs/archive/"
11193 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
11194 ".tar.gz"))
11195 (sha256
11196 (base32
11197 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
11198 (build-system emacs-build-system)
11199 (propagated-inputs
11200 `(("emacs-deferred" ,emacs-deferred)
11201 ("emacs-request" ,emacs-request)))
11202 (home-page "https://github.com/egh/zotxt-emacs")
11203 (synopsis "Integrate Emacs with Zotero")
11204 (description "This package provides two integration features between Emacs
11205 and the Zotero research assistant: Insertion of links to Zotero items into an
11206 Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
11207 (license license:gpl3+)))
11208
11209 (define-public emacs-evil-ediff
11210 ;; Evil-Ediff is included in Evil Collection from 20180617.
11211 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
11212
11213 (define-public emacs-evil-magit
11214 (let ((commit "dbf5a646a7ce1c35c229dfdc423bd5ecd927a3a8"))
11215 (package
11216 (name "emacs-evil-magit")
11217 (version (git-version "0.4.2" "1" commit))
11218 (source
11219 (origin
11220 (method git-fetch)
11221 (uri (git-reference
11222 (url "https://github.com/emacs-evil/evil-magit")
11223 (commit commit)))
11224 (file-name (string-append name "-" version "-checkout"))
11225 (sha256
11226 (base32
11227 "0ya0dkviq4pi92ab69a4j674y5r1hc1x3x7r7hlm97ag3a6zfkav"))))
11228 (build-system emacs-build-system)
11229 (propagated-inputs
11230 `(("emacs-evil" ,emacs-evil)
11231 ("magit" ,emacs-magit)))
11232 (home-page
11233 "https://github.com/emacs-evil/evil-magit")
11234 (synopsis "Evil-based key bindings for Magit")
11235 (description
11236 "This Emacs library configures Magit and Evil to play well with each other.
11237 For some background see @url{https://github.com/magit/evil-magit/issues/1}.
11238 See the README at @url{https://github.com/justbur/evil-magit} for a table
11239 describing the key binding changes.")
11240 (license license:gpl3+))))
11241
11242 (define-public emacs-evil-mu4e
11243 ;; Evil-mu4e is included in Evil Collection from 20180617.
11244 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
11245
11246 (define-public emacs-evil-multiedit
11247 (package
11248 (name "emacs-evil-multiedit")
11249 (version "1.3.9")
11250 (source
11251 (origin
11252 (method git-fetch)
11253 (uri (git-reference
11254 (url "https://github.com/hlissner/evil-multiedit")
11255 (commit (string-append "v" version))))
11256 (file-name (string-append name "-" version "-checkout"))
11257 (sha256
11258 (base32
11259 "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"))))
11260 (build-system emacs-build-system)
11261 (propagated-inputs
11262 `(("emacs-evil" ,emacs-evil)
11263 ("emacs-iedit" ,emacs-iedit)))
11264 (home-page
11265 "https://github.com/hlissner/evil-multiedit")
11266 (synopsis "Multiple cursors for Evil mode")
11267 (description
11268 "This plugin was an answer to the lack of proper multiple cursor support
11269 in Emacs+Evil. It allows you to select and edit matches interactively,
11270 integrating @code{iedit-mode} into Evil mode with an attempt at sensible
11271 defaults.")
11272 (license license:gpl3+)))
11273
11274 (define-public emacs-evil-org
11275 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
11276 (package
11277 (name "emacs-evil-org")
11278 (version (git-version "0.1.1" "1" commit))
11279 (source
11280 (origin
11281 (method git-fetch)
11282 (uri (git-reference
11283 (url "https://github.com/Somelauw/evil-org-mode")
11284 (commit commit)))
11285 (file-name (string-append name "-" version "-checkout"))
11286 (sha256
11287 (base32
11288 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
11289 (build-system emacs-build-system)
11290 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
11291 (home-page
11292 "https://github.com/Somelauw/evil-org-mode")
11293 (synopsis "Evil keybindings for Org mode")
11294 (description
11295 "This package adds supplemental Evil mode key-bindings to Emacs
11296 Org-mode. It features:
11297 @itemize
11298 @item normal, visual and insert mode bindings;
11299 @item key bindings organised in key themes;
11300 @item operators like > and < to work on headings;
11301 @item text objects;
11302 @item table support;
11303 @item calendar (date selection) support;
11304 @item agenda support.
11305 @end itemize\n")
11306 (license license:gpl3+))))
11307
11308 (define-public emacs-fish-completion
11309 (package
11310 (name "emacs-fish-completion")
11311 (version "1.0")
11312 (source
11313 (origin
11314 (method url-fetch)
11315 (uri (string-append
11316 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
11317 "archive.tar.gz?ref="
11318 version))
11319 (sha256
11320 (base32
11321 "1hpma1c5j50ja03ibr7h1xmyv7k8j3rbvqivad47kwqhlsgw0jk0"))))
11322 (build-system emacs-build-system)
11323 (inputs `(("fish" ,fish)))
11324 (arguments
11325 `(#:phases
11326 (modify-phases %standard-phases
11327 (add-after 'unpack 'configure
11328 (lambda* (#:key inputs outputs #:allow-other-keys)
11329 (let ((fish (assoc-ref inputs "fish")))
11330 ;; Specify the absolute file names of the various
11331 ;; programs so that everything works out-of-the-box.
11332 (emacs-substitute-variables
11333 "fish-completion.el"
11334 ("fish-completion-command"
11335 (string-append fish "/bin/fish")))))))))
11336 (home-page
11337 "https://gitlab.com/Ambrevar/emacs-fish-completion")
11338 (synopsis "Fish completion for Emacs pcomplete")
11339 (description
11340 "This package provides completion for the Fish shell to pcomplete (used
11341 by shell and Eshell). You can set it up globally with:
11342
11343 @example
11344 (when (and (executable-find \"fish\")
11345 (require 'fish-completion nil t))
11346 (global-fish-completion-mode))
11347 @end example
11348
11349 Alternatively, you can call the @code{fish-completion-mode} manually or in
11350 shell/Eshell mode hook.
11351
11352 The package @code{emacs-bash-completion} is an optional dependency: if available,
11353 @code{fish-completion-complete} can be configured to fall back on bash to further
11354 try completing. See @code{fish-completion-fallback-on-bash-p}.")
11355 (license license:gpl3+)))
11356
11357 (define-public emacs-gif-screencast
11358 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
11359 (package
11360 (name "emacs-gif-screencast")
11361 (version (git-version "20180616" "1" commit))
11362 (source
11363 (origin
11364 (method url-fetch)
11365 (uri (string-append
11366 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
11367 "repository/archive.tar.gz?ref="
11368 commit))
11369 (sha256
11370 (base32
11371 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
11372 (build-system emacs-build-system)
11373 (inputs
11374 `(("scrot" ,scrot)
11375 ("imagemagick" ,imagemagick)
11376 ("gifsicle" ,gifsicle)))
11377 (arguments
11378 `(#:phases
11379 (modify-phases %standard-phases
11380 (add-after 'unpack 'configure
11381 (lambda* (#:key inputs outputs #:allow-other-keys)
11382 (let ((scrot (assoc-ref inputs "scrot"))
11383 (imagemagick (assoc-ref inputs "imagemagick"))
11384 (gifsicle (assoc-ref inputs "gifsicle")))
11385 ;; Specify the absolute file names of the various
11386 ;; programs so that everything works out-of-the-box.
11387 (emacs-substitute-variables
11388 "gif-screencast.el"
11389 ("gif-screencast-program"
11390 (string-append scrot "/bin/scrot"))
11391 ("gif-screencast-convert-program"
11392 (string-append imagemagick "/bin/convert"))
11393 ("gif-screencast-cropping-program"
11394 (string-append imagemagick "/bin/mogrify"))
11395 ("gif-screencast-optimize-program"
11396 (string-append imagemagick "/bin/gifsicle")))))))))
11397 (home-page
11398 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
11399 (synopsis "One-frame-per-action GIF recording")
11400 (description
11401 "Call @code{gif-screencast} to start a recording.
11402 A screenshot is taken for every user action. Call
11403 @code{gif-screencast-stop} (<f9> by default) to finish recording and create
11404 the GIF result.")
11405 (license license:gpl3+))))
11406
11407 (define-public emacs-google-translate
11408 (package
11409 (name "emacs-google-translate")
11410 (version "0.11.16")
11411 (source
11412 (origin
11413 (method url-fetch)
11414 (uri (string-append "https://github.com/atykhonov/google-translate/"
11415 "archive/v" version ".tar.gz"))
11416 (file-name (string-append name "-" version ".tar.gz"))
11417 (sha256
11418 (base32
11419 "01n9spj1d0gjfj39x526rl3m9c28wnx9afipmf5s8y77cx3mfwhl"))))
11420 (build-system emacs-build-system)
11421 (home-page "https://github.com/atykhonov/google-translate")
11422 (synopsis "Emacs interface to Google Translate")
11423 (description
11424 "This packages provides an Emacs interface to the Google Translate
11425 on-line service.")
11426 (license license:gpl3+)))
11427
11428 (define-public emacs-helm-company
11429 (let ((commit "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f"))
11430 (package
11431 (name "emacs-helm-company")
11432 (version (git-version "0.2.3" "1" commit))
11433 (source
11434 (origin
11435 (method git-fetch)
11436 (uri (git-reference
11437 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11438 (commit commit)))
11439 (file-name (string-append name "-" version "-checkout"))
11440 (sha256
11441 (base32
11442 "1ciirsanhajdqm5iwl8k9ywf4jha1wdv4sc4d9kslyrfr9zn4q6k"))))
11443 (build-system emacs-build-system)
11444 (propagated-inputs
11445 `(("emacs-helm" ,emacs-helm)
11446 ("emacs-company" ,emacs-company)))
11447 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
11448 (synopsis "Helm interface for company-mode")
11449 (description
11450 "This is a Helm interface to company-mode, a text completion
11451 framework.")
11452 (license license:gpl3+))))
11453
11454 (define-public emacs-helm-descbinds
11455 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
11456 (package
11457 (name "emacs-helm-descbinds")
11458 (version (git-version "1.13" "1" commit))
11459 (source
11460 (origin
11461 (method git-fetch)
11462 (uri (git-reference
11463 (url "https://github.com/emacs-helm/helm-descbinds")
11464 (commit commit)))
11465 (file-name (string-append name "-" version "-checkout"))
11466 (sha256
11467 (base32
11468 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
11469 (build-system emacs-build-system)
11470 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11471 (home-page "https://github.com/emacs-helm/helm-descbinds")
11472 (synopsis "Convenient @code{describe-bindings} with Helm")
11473 (description
11474 "This package is a replacement of @code{describe-bindings} for Helm.
11475 @code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
11476 type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
11477 @code{helm-descbinds}. The bindings are presented in a similar way as
11478 @code{describe-bindings} does, but you can use completion to find the command
11479 you searched for and execute it, or view its documentation.")
11480 (license license:gpl3+))))
11481
11482 (define-public emacs-helm-emms
11483 (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
11484 (package
11485 (name "emacs-helm-emms")
11486 (version (git-version "1.3" "1" commit))
11487 (source
11488 (origin
11489 (method git-fetch)
11490 (uri (git-reference
11491 (url "https://github.com/emacs-helm/helm-emms")
11492 (commit commit)))
11493 (file-name (string-append name "-" version "-checkout"))
11494 (sha256
11495 (base32
11496 "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
11497 (build-system emacs-build-system)
11498 (propagated-inputs
11499 `(("emacs-helm" ,emacs-helm)
11500 ("emacs-emms" ,emacs-emms)))
11501 (home-page
11502 "https://github.com/emacs-helm/helm-emms")
11503 (synopsis "Emms for Helm")
11504 (description "Helm interface for Emms to browse all tracks and all folders
11505 from @code{emms-source-file-default-directory}.")
11506 (license license:gpl3+))))
11507
11508 (define-public emacs-helm-exwm
11509 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
11510 (package
11511 (name "emacs-helm-exwm")
11512 (version (git-version "20180703" "2" commit))
11513 (source
11514 (origin
11515 (method url-fetch)
11516 (uri (string-append
11517 "https://github.com/emacs-helm/helm-exwm/archive/"
11518 commit
11519 ".tar.gz"))
11520 (sha256
11521 (base32
11522 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
11523 (build-system emacs-build-system)
11524 (propagated-inputs
11525 `(("emacs-helm" ,emacs-helm)
11526 ("emacs-exwm" ,emacs-exwm)))
11527 (home-page
11528 "https://github.com/emacs-helm/helm-exwm")
11529 (synopsis "Helm for EXWM buffers")
11530 (description
11531 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
11532 @code{helm-exwm-switch} is a convenience X application launcher using Helm to
11533 switch between the various windows of one or several specific applications.
11534 See @code{helm-exwm-switch-browser} for an example.")
11535 (license license:gpl3+))))
11536
11537 (define-public emacs-helm-flycheck
11538 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
11539 (package
11540 (name "emacs-helm-flycheck")
11541 (version (git-version "0.4" "1" commit))
11542 (source
11543 (origin
11544 (method git-fetch)
11545 (uri (git-reference
11546 (url "https://github.com/yasuyk/helm-flycheck")
11547 (commit commit)))
11548 (file-name (string-append name "-" version "-checkout"))
11549 (sha256
11550 (base32
11551 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
11552 (build-system emacs-build-system)
11553 (propagated-inputs
11554 `(("emacs-dash" ,emacs-dash)
11555 ("emacs-flycheck" ,emacs-flycheck)
11556 ("emacs-helm" ,emacs-helm)))
11557 (home-page "https://github.com/yasuyk/helm-flycheck")
11558 (synopsis "Show Flycheck errors with Helm")
11559 (description
11560 "This integrates Flycheck with Helm.")
11561 (license license:gpl3+))))
11562
11563 (define-public emacs-helm-ls-git
11564 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
11565 (package
11566 (name "emacs-helm-ls-git")
11567 (version (git-version "1.9.1" "1" commit))
11568 (source
11569 (origin
11570 (method git-fetch)
11571 (uri (git-reference
11572 (url "https://github.com/emacs-helm/helm-ls-git")
11573 (commit commit)))
11574 (file-name (string-append name "-" version "-checkout"))
11575 (sha256
11576 (base32
11577 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
11578 (build-system emacs-build-system)
11579 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11580 (home-page "https://github.com/emacs-helm/helm-ls-git")
11581 (synopsis "Helm interface for listing the files in a Git repository")
11582 (description
11583 "This package provides a Helm interface for Git files.
11584 @itemize
11585 @item Display the open buffers in project.
11586 @item Display a status source showing state of project (modified files etc.).
11587 @item Display a list of all files in project under git control.
11588 @item Quickly look at diffs of modified files.
11589 @item Allow switching to @code{git status} with your preferred frontend
11590 (vc-dir, Magit,etc.).
11591 @item Full integration of git-grep, also allow usage of @code{helm-grep} (you
11592 can use ack-grep instead of grep).
11593 @item Integrate usage of gid from id-utils.
11594 @item Full integration with @code{helm-find-files}, allow you to browse
11595 projects unrelated to current-buffer.
11596 @item In addition, all actions of type files and buffers are provided.
11597 @end itemize\n")
11598 (license license:gpl3+))))
11599
11600 (define-public emacs-helm-mu
11601 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
11602 (package
11603 (name "emacs-helm-mu")
11604 (version (git-version "20180513" "1" commit))
11605 (source
11606 (origin
11607 (method url-fetch)
11608 (uri (string-append
11609 "https://github.com/emacs-helm/helm-mu/archive/"
11610 commit
11611 ".tar.gz"))
11612 (sha256
11613 (base32
11614 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
11615 (build-system emacs-build-system)
11616 (propagated-inputs
11617 `(("emacs-helm" ,emacs-helm)
11618 ("mu" ,mu)))
11619 (home-page
11620 "https://github.com/emacs-helm/helm-mu")
11621 (synopsis
11622 "Helm sources for searching emails and contacts")
11623 (description
11624 "Helm sources for searching emails and contacts using @code{mu} and
11625 @code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
11626 Emacs build on top of mu. Mu is highly efficient making it possible to get
11627 instant results even for huge maildirs. It also provides search operators,
11628 e.g: @code{from:Peter to:Anne flag:attach search term}.")
11629 (license license:gpl3+))))
11630
11631 (define-public emacs-helm-pass
11632 (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"))
11633 (package
11634 (name "emacs-helm-pass")
11635 (version (git-version "20180416" "1" commit))
11636 (source
11637 (origin
11638 (method url-fetch)
11639 (uri (string-append
11640 "https://github.com/jabranham/helm-pass/archive/"
11641 commit
11642 ".tar.gz"))
11643 (sha256
11644 (base32
11645 "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
11646 (build-system emacs-build-system)
11647 (propagated-inputs
11648 `(("emacs-helm" ,emacs-helm)
11649 ("emacs-password-store" ,emacs-password-store)))
11650 (home-page
11651 "https://github.com/jabranham/helm-pass")
11652 (synopsis "Helm interface to pass, the standard Unix password manager")
11653 (description
11654 "Users of @code{helm-pass} may also be interested in functionality
11655 provided by other Emacs packages dealing with pass:
11656 @itemize
11657 @item @code{emacs-password-store}, which @code{helm-pass} relies on.
11658 @item @code{emacs-pass}, a major mode for @code{pass}.
11659 @item @code{auth-source-pass.el}: integration of Emacs' auth-source with
11660 @code{pass}, included in Emacs 26+).
11661 @end itemize\n")
11662 (license license:gpl3+))))
11663
11664 (define-public emacs-image+
11665 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
11666 (package
11667 (name "emacs-image+")
11668 (version (git-version "0.6.2" "1" commit))
11669 (source
11670 (origin
11671 (method git-fetch)
11672 (uri (git-reference
11673 (url "https://github.com/mhayashi1120/Emacs-imagex")
11674 (commit commit)))
11675 (file-name (string-append name "-" version "-checkout"))
11676 (sha256
11677 (base32
11678 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
11679 (build-system emacs-build-system)
11680 (inputs `(("imagemagick" ,imagemagick)))
11681 (arguments
11682 `(#:phases
11683 (modify-phases %standard-phases
11684 (add-after 'unpack 'configure
11685 (lambda* (#:key inputs outputs #:allow-other-keys)
11686 (let ((imagemagick (assoc-ref inputs "imagemagick")))
11687 ;; Specify the absolute file names of the various
11688 ;; programs so that everything works out-of-the-box.
11689 (chmod "image+.el" #o666)
11690 (emacs-substitute-variables
11691 "image+.el"
11692 ("imagex-convert-command"
11693 (string-append imagemagick "/bin/convert"))
11694 ("imagex-identify-command"
11695 (string-append imagemagick "/bin/identify")))))))))
11696 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
11697 (synopsis "Image manipulation extensions for Emacs")
11698 (description
11699 "Image+ provides keybindings allowing you to zoom in or zoom out of an
11700 image, rotate it, save modified images, and more.")
11701 (license license:gpl3+))))
11702
11703 (define-public emacs-package-lint
11704 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
11705 (package
11706 (name "emacs-package-lint")
11707 (version (git-version "0.5" "1" commit))
11708 (source
11709 (origin
11710 (method git-fetch)
11711 (uri (git-reference
11712 (url "https://github.com/purcell/package-lint")
11713 (commit commit)))
11714 (file-name (string-append name "-" version "-checkout"))
11715 (sha256
11716 (base32
11717 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
11718 (build-system emacs-build-system)
11719 (home-page "https://github.com/purcell/package-lint")
11720 (synopsis "Linting library for elisp package authors")
11721 (description
11722 "This provides a list of issues with the Emacs package metadata of a file,
11723 e.g. the package dependencies it requires. See function
11724 @code{package-lint-buffer}. Checks will currently be enabled only if a
11725 \"Package-Requires:\" or \"Package-Version:\" header is present in the
11726 file.")
11727 (license license:gpl3+))))
11728
11729 (define-public emacs-picpocket
11730 (let ((version "40")
11731 (commit "6fd88b8711c4370662c0f9c462170187d092a046"))
11732 (package
11733 (name "emacs-picpocket")
11734 (version version)
11735 (source
11736 (origin
11737 (method git-fetch)
11738 (uri (git-reference
11739 (url "https://github.com/johanclaesson/picpocket")
11740 (commit commit)))
11741 (file-name (git-file-name name version))
11742 (sha256
11743 (base32 "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw"))))
11744 (build-system emacs-build-system)
11745 (arguments ; needed for running tests
11746 `(#:tests? #t
11747 #:emacs ,emacs
11748 #:test-command '("emacs" "--batch"
11749 "-l" "picpocket-test.el"
11750 "-f" "ert-run-tests-batch-and-exit")))
11751 (home-page "https://github.com/johanclaesson/picpocket")
11752 (synopsis "Image viewer for Emacs")
11753 (description
11754 "Picpocket is an image viewer for GNU Emacs. It has commands for:
11755
11756 @itemize
11757 @item File operations on the picture files (delete, move, copy, hardlink).
11758 @item Scale and rotate the picture.
11759 @item Associate pictures with tags which are saved to disk.
11760 @item Filter pictures according to tags.
11761 @item Customizing keystrokes for quick tagging and file operations.
11762 @item Undo and browse history of undoable commands.
11763 @end itemize")
11764 (license license:gpl3+))))
11765
11766 (define-public emacs-wgrep-helm
11767 ;; `emacs-wgrep-helm' was mistakenly added.
11768 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
11769
11770 (define-public emacs-mu4e-conversation
11771 (let ((commit "e7d4bfcb0d392b0aed1f705ccac2419a168d1f5e"))
11772 (package
11773 (name "emacs-mu4e-conversation")
11774 (version (git-version "20181126" "4" commit))
11775 (source
11776 (origin
11777 (method url-fetch)
11778 (uri (string-append
11779 "https://gitlab.com/Ambrevar/mu4e-conversation/"
11780 "repository/archive.tar.gz?ref="
11781 commit))
11782 (file-name (string-append name "-" version "-checkout"))
11783 (sha256
11784 (base32
11785 "0b52hf9rm2afba9pvgink9bwqm705sk0y5qikp0ff5sk53wqvy29"))))
11786 (build-system emacs-build-system)
11787 (propagated-inputs
11788 `(("mu" ,mu)))
11789 (home-page
11790 "https://gitlab.com/Ambrevar/mu4e-conversation")
11791 (synopsis
11792 "Show a complete thread in a single buffer")
11793 (description
11794 "This package offers an alternate view to mu4e's e-mail display. It
11795 shows all e-mails of a thread in a single view, where each correspondent has
11796 their own face. Threads can be displayed linearly (in which case e-mails are
11797 displayed in chronological order) or as an Org document where the node tree
11798 maps the thread tree.")
11799 (license license:gpl3+))))
11800
11801 (define-public emacs-pinentry
11802 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
11803 (revision "1"))
11804 (package
11805 (name "emacs-pinentry")
11806 (version (git-version "0.1" revision commit))
11807 (source
11808 (origin
11809 (method url-fetch)
11810 (uri (string-append
11811 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
11812 "/packages/pinentry/pinentry.el?id=" commit))
11813 (file-name (string-append "pinentry.el"))
11814 (sha256
11815 (base32
11816 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
11817 (build-system emacs-build-system)
11818 (propagated-inputs
11819 `(("gnupg" ,gnupg)))
11820 (home-page "https://elpa.gnu.org/packages/pinentry.html")
11821 (synopsis "GnuPG Pinentry server implementation")
11822 (description
11823 "This package allows GnuPG passphrase to be prompted through the
11824 minibuffer instead of graphical dialog.
11825
11826 To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
11827 reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
11828 server with @code{M-x pinentry-start}.")
11829 (license license:gpl3+))))
11830
11831 (define-public emacs-org-brain
11832 (package
11833 (name "emacs-org-brain")
11834 (version "0.5")
11835 (source
11836 (origin
11837 (method git-fetch)
11838 (uri (git-reference
11839 (url "https://github.com/Kungsgeten/org-brain.git")
11840 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
11841 (file-name (git-file-name name version))
11842 (sha256
11843 (base32
11844 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
11845 (build-system emacs-build-system)
11846 (home-page "https://github.com/Kungsgeten/org-brain")
11847 (synopsis "Org-mode wiki and concept-mapping for Emacs")
11848 (description "@code{emacs-org-brain} implements a variant of concept
11849 mapping in Emacs, using @code{org-mode}. An org-brain is a network of
11850 org-mode entries, where each entry is a file or a headline, and you can get a
11851 visual overview of the relationships between the entries: parents, children,
11852 siblings and friends. This visual overview can also be used to browse your
11853 entries. You can think of entries as nodes in a mind map, or pages in a
11854 wiki.")
11855 (license license:expat)))
11856
11857 (define-public emacs-recent-addresses
11858 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
11859 (revision "1"))
11860 (package
11861 (name "emacs-recent-addresses")
11862 (home-page "http://nschum.de/src/emacs/recent-addresses/")
11863 (version (git-version "0.1" revision commit))
11864 (source (origin
11865 (method git-fetch)
11866 (uri (git-reference
11867 ;; Note: Use a branch that works with Helm. Submitted
11868 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
11869 (url "https://github.com/civodul/recent-addresses.el")
11870 (commit commit)))
11871 (sha256
11872 (base32
11873 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
11874 (file-name (git-file-name name version))))
11875 (build-system emacs-build-system)
11876 (synopsis "Record recently-used email addressed and auto-complete them")
11877 (description
11878 "@code{recent-addresses} is an Emacs package that allows you to quickly
11879 look up previously used email addresses. It can be used alongside the Gnus
11880 email client.")
11881 (license license:gpl2+))))
11882
11883 (define-public emacs-fold-dwim
11884 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
11885 (revision "0"))
11886 (package
11887 (name "emacs-fold-dwim")
11888 (version (git-version "1.2" revision commit))
11889 (home-page "https://github.com/emacsattic/fold-dwim")
11890 (source (origin
11891 (method git-fetch)
11892 (uri (git-reference (url home-page) (commit commit)))
11893 (sha256
11894 (base32
11895 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
11896 (file-name (git-file-name name version))))
11897 (build-system emacs-build-system)
11898 (synopsis "Unified user interface for Emacs folding modes")
11899 (description
11900 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
11901 can do different things depending on the context. In this package, it means
11902 that, if the cursor is in a currently hidden folded construction, we want to
11903 show it; if it's not, we want to hide whatever fold the cursor is in.")
11904 (license license:gpl2+))))
11905
11906 (define-public emacs-markup-faces
11907 (package
11908 (name "emacs-markup-faces")
11909 (version "1.0.0")
11910 (source
11911 (origin
11912 (method url-fetch)
11913 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
11914 version ".el"))
11915 (sha256
11916 (base32
11917 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
11918 (build-system emacs-build-system)
11919 (home-page "https://github.com/sensorflo/markup-faces")
11920 (synopsis "Collection of Emacs faces for markup language modes")
11921 (description "emacs-markup-faces is like font-lock-faces, but tailored for
11922 markup languages instead programming languages. The sub group markup-faces-text
11923 is also intended for 'text viewing modes' such as info or (wo)man. This gives a
11924 common look and feel, or let's say theme, across different markup language modes
11925 and 'text viewing modes' respectively.")
11926 (license license:gpl3+)))
11927
11928 (define-public emacs-adoc-mode
11929 (package
11930 (name "emacs-adoc-mode")
11931 (version "0.6.6")
11932 (source
11933 (origin
11934 (method url-fetch)
11935 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
11936 version ".el"))
11937 (sha256
11938 (base32
11939 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
11940 (build-system emacs-build-system)
11941 (propagated-inputs
11942 `(("emacs-markup-faces" ,emacs-markup-faces)))
11943 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
11944 (synopsis "AsciiDoc mode for Emacs")
11945 (description "This package provides an Emacs major mode for editing AsciiDoc
11946 files. It focuses on highlighting the document to improve readability.")
11947 (license license:gpl2+)))
11948
11949 (define-public emacs-rust-mode
11950 (let ((commit
11951 ;; Last release is old (2016), use more recent commit to get bug
11952 ;; fixes.
11953 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
11954 (revision "0"))
11955 (package
11956 (name "emacs-rust-mode")
11957 (version (git-version "0.3.0" revision commit))
11958 (source (origin
11959 (method git-fetch)
11960 (uri
11961 (git-reference
11962 (url "https://github.com/rust-lang/rust-mode")
11963 (commit commit)))
11964 (file-name (git-file-name name version))
11965 (sha256
11966 (base32
11967 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
11968 (build-system emacs-build-system)
11969 (arguments
11970 `(#:phases
11971 (modify-phases %standard-phases
11972 (replace 'check
11973 (lambda _
11974 (invoke "sh" "run_rust_emacs_tests.sh"))))))
11975 (home-page "https://github.com/rust-lang/rust-mode")
11976 (synopsis "Major Emacs mode for editing Rust source code")
11977 (description "This package provides a major Emacs mode for editing Rust
11978 source code.")
11979 (license (list license:expat
11980 license:asl2.0)))))
11981
11982 (define-public emacs-ztree
11983 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
11984 (package
11985 (name "emacs-ztree")
11986 (version (git-version "1.0.5" "1" commit))
11987 (source
11988 (origin
11989 (method git-fetch)
11990 (uri (git-reference
11991 (url "https://github.com/fourier/ztree")
11992 (commit commit)))
11993 (file-name (git-file-name name version))
11994 (sha256
11995 (base32
11996 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
11997 (build-system emacs-build-system)
11998 (home-page "https://github.com/fourier/ztree")
11999 (synopsis "Directory tree comparison mode for Emacs")
12000 (description "Ztree is a project dedicated to implementation of several
12001 text-tree applications inside GNU Emacs. It consists of 2 subprojects:
12002 @command{ztree-diff} and @command{ztree-dir} (the basis of
12003 @command{ztree-diff}).")
12004 (license license:gpl3))))
12005
12006 (define-public emacs-helm-org-contacts
12007 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
12008 (package
12009 (name "emacs-helm-org-contacts")
12010 (version (git-version "20180707" "1" commit))
12011 (source
12012 (origin
12013 (method git-fetch)
12014 (uri (git-reference
12015 (url "https://github.com/tmalsburg/helm-org-contacts")
12016 (commit commit)))
12017 (file-name (git-file-name name version))
12018 (sha256
12019 (base32
12020 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
12021 (build-system emacs-build-system)
12022 (propagated-inputs
12023 `(("emacs-dash" ,emacs-dash)
12024 ("emacs-helm" ,emacs-helm)
12025 ("emacs-s" ,emacs-s)))
12026 (home-page "https://github.com/tmalsburg/helm-org-contacts")
12027 (synopsis "Helm source for org-contacts")
12028 (description "This Helm source can be used to search contacts stored in
12029 org-contacts format. There are actions for inserting postal addresses, email
12030 addresses, and phone numbers in the buffer where @command{helm-org-contacts}
12031 was called.")
12032 (license license:gpl3))))
12033
12034 (define-public emacs-dired-du
12035 (package
12036 (name "emacs-dired-du")
12037 (version "0.5.1")
12038 (source
12039 (origin
12040 (method url-fetch)
12041 (uri (string-append
12042 "https://elpa.gnu.org/packages/dired-du-"
12043 version ".tar"))
12044 (sha256
12045 (base32
12046 "1091scnrjh0a4gja4z6jxic6ghy1yryv46qk9c76pmh50cpw6766"))))
12047 (build-system emacs-build-system)
12048 (home-page "http://elpa.gnu.org/packages/dired-du.html")
12049 (synopsis "Dired with recursive directory sizes")
12050 (description
12051 "Display the recursive size of directories in Dired.
12052 This file defines a minor mode @command{dired-du-mode} to show the recursive
12053 size of directories in Dired buffers. If @command{du} program is available,
12054 then the directory sizes are obtained with it. Otherwise, the directory sizes
12055 are obtained with Lisp. The former is faster and provide a more precise
12056 value. For directories where the user doesn't have read permission, the
12057 recursive size is not obtained. Once this mode is enabled, every new Dired
12058 buffer displays recursive dir sizes.")
12059 (license license:gpl3+)))
12060
12061 (define-public emacs-pcre2el
12062 ;; Last release is very old so we get the latest commit.
12063 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
12064 (package
12065 (name "emacs-pcre2el")
12066 (version (git-version "1.8" "1" commit))
12067 (source
12068 (origin
12069 (method git-fetch)
12070 (uri (git-reference
12071 (url "https://github.com/joddie/pcre2el")
12072 (commit commit)))
12073 (file-name (git-file-name name version))
12074 (sha256
12075 (base32
12076 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
12077 (build-system emacs-build-system)
12078 (home-page "https://github.com/joddie/pcre2el")
12079 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
12080 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
12081 Tools) is a utility for working with regular expressions in Emacs, based on a
12082 recursive-descent parser for regexp syntax. In addition to converting (a
12083 subset of) PCRE syntax into its Emacs equivalent, it can do the following:
12084
12085 @itemize
12086 @item convert Emacs syntax to PCRE
12087 @item convert either syntax to @code{rx}, an S-expression based regexp syntax
12088 @item untangle complex regexps by showing the parse tree in @code{rx} form and
12089 highlighting the corresponding chunks of code
12090 @item show the complete list of strings (productions) matching a regexp,
12091 provided the list is finite
12092 @item provide live font-locking of regexp syntax (so far only for Elisp
12093 buffers – other modes on the TODO list).
12094 @end itemize\n")
12095 (license license:gpl3))))
12096
12097 (define-public emacs-magit-todos
12098 (package
12099 (name "emacs-magit-todos")
12100 (version "1.1")
12101 (source
12102 (origin
12103 (method git-fetch)
12104 (uri (git-reference
12105 (url "https://github.com/alphapapa/magit-todos")
12106 (commit version)))
12107 (file-name (git-file-name name version))
12108 (sha256
12109 (base32
12110 "1mvzbxshr6zjdim3jd368ar1hy5l7n22i03cpvzdmrw83kkwdyhd"))))
12111 (build-system emacs-build-system)
12112 (propagated-inputs
12113 `(("emacs-async" ,emacs-async)
12114 ("emacs-dash" ,emacs-dash)
12115 ("emacs-f" ,emacs-f)
12116 ("emacs-hl-todo" ,emacs-hl-todo)
12117 ("magit" ,emacs-magit)
12118 ("emacs-pcre2el" ,emacs-pcre2el)
12119 ("emacs-s" ,emacs-s)))
12120 (home-page "https://github.com/alphapapa/magit-todos")
12121 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
12122 (description "This package displays keyword entries from source code
12123 comments and Org files in the Magit status buffer. Activating an item jumps
12124 to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
12125 few (like NOTE).")
12126 (license license:gpl3)))
12127
12128 (define-public emacs-git-annex
12129 ;; Unreleased version has a fontification fix.
12130 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
12131 (revision "1"))
12132 (package
12133 (name "emacs-git-annex")
12134 (version (string-append "1.1-" revision "." (string-take commit 8)))
12135 (source
12136 (origin
12137 (method git-fetch)
12138 (uri (git-reference
12139 (url "https://github.com/jwiegley/git-annex-el")
12140 (commit commit)))
12141 (file-name (string-append name "-" version "-checkout"))
12142 (sha256
12143 (base32
12144 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
12145 (build-system emacs-build-system)
12146 (home-page "https://github.com/jwiegley/git-annex-el")
12147 (synopsis "Emacs integration for git-annex")
12148 (description "Enhances Dired and buffers visiting annex files with
12149 git-annex functionality. In Dired, the names of annex files are shortened by
12150 hiding the symbolic links and fontified based on whether content is present.
12151 Commands for performing some common operations (e.g., unlocking and adding
12152 files) are provided.")
12153 (license license:gpl2+))))
12154
12155 (define-public emacs-hackernews
12156 (let ((commit "d8c450bbc76d6bb65ec5cdb6c3b888a23f3769e9"))
12157 (package
12158 (name "emacs-hackernews")
12159 (version (git-version "0.4.0" "1" commit))
12160 (source
12161 (origin
12162 (method git-fetch)
12163 (uri (git-reference
12164 (url "https://github.com/clarete/hackernews.el")
12165 (commit commit)))
12166 (file-name (git-file-name name version))
12167 (sha256
12168 (base32
12169 "06mp4n6c300jv5lhwf50ircfjckzr2p1zd38s4mqnxxjlf1maim7"))))
12170 (build-system emacs-build-system)
12171 (home-page "https://github.com/clarete/hackernews.el")
12172 (synopsis "Hacker News client for Emacs")
12173 (description "The @command{hackernews} package is able to fetch stories
12174 from six different Hacker News feeds, namely top, new, best, ask, show and job
12175 stories. The default feed is top stories, which corresponds to the Hacker
12176 News homepage.")
12177 (license license:gpl3))))
12178
12179 (define-public emacs-youtube-dl
12180 (let ((commit "7c9d7a7d05b72a7d1b1257a36c5e2b2567b185dd"))
12181 (package
12182 (name "emacs-youtube-dl")
12183 (version (git-version "1.0" "1" commit))
12184 (source
12185 (origin
12186 (method git-fetch)
12187 (uri (git-reference
12188 (url "https://github.com/skeeto/youtube-dl-emacs/")
12189 (commit commit)))
12190 (file-name (git-file-name name version))
12191 (sha256
12192 (base32
12193 "0mh4s089a4x8s380agzb2306kdp1hl204px1n5rrrrdcls7imnh6"))))
12194 (build-system emacs-build-system)
12195 (inputs
12196 `(("youtube-dl" ,youtube-dl)))
12197 (arguments
12198 `(#:phases
12199 (modify-phases %standard-phases
12200 (add-after 'unpack 'configure
12201 (lambda* (#:key inputs #:allow-other-keys)
12202 (let ((youtube-dl (assoc-ref inputs "youtube-dl")))
12203 ;; .el is read-only in git.
12204 (chmod "youtube-dl.el" #o644)
12205 ;; Specify the absolute file names of the various
12206 ;; programs so that everything works out-of-the-box.
12207 (emacs-substitute-variables
12208 "youtube-dl.el"
12209 ("youtube-dl-program"
12210 (string-append youtube-dl "/bin/youtube-dl")))))))))
12211 (home-page "https://github.com/skeeto/youtube-dl-emacs/")
12212 (synopsis "Emacs youtube-dl download manager")
12213 (description "This package manages a video download queue for
12214 @command{youtube-dl}, which serves as the back end. It manages a single
12215 @command{youtube-dl} subprocess, downloading one video at a time. New videos
12216 can be queued at any time.")
12217 (license license:unlicense))))
12218
12219 (define-public emacs-org-web-tools
12220 (package
12221 (name "emacs-org-web-tools")
12222 (version "1.0")
12223 (source
12224 (origin
12225 (method git-fetch)
12226 (uri (git-reference
12227 (url "https://github.com/alphapapa/org-web-tools")
12228 (commit version)))
12229 (file-name (git-file-name name version))
12230 (sha256
12231 (base32
12232 "0kak9h5ny00d39gnwspv53nadnag01brw2fq9zk5wpfc91h9bjng"))))
12233 (build-system emacs-build-system)
12234 (propagated-inputs
12235 `(("emacs-dash" ,emacs-dash)
12236 ("emacs-esxml" ,emacs-esxml)
12237 ("emacs-s" ,emacs-s)))
12238 (inputs
12239 `(("pandoc" ,ghc-pandoc)))
12240 (arguments
12241 `(#:phases
12242 (modify-phases %standard-phases
12243 (add-after 'unpack 'patch-exec-paths
12244 (lambda* (#:key inputs #:allow-other-keys)
12245 (let ((pandoc (assoc-ref inputs "pandoc")))
12246 (substitute* "org-web-tools.el"
12247 (("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\"")))
12248 #t))))))
12249 (home-page "https://github.com/alphapapa/org-web-tools")
12250 (synopsis "Display/Process web page as Org-mode content")
12251 (description "This package contains library functions and commands useful
12252 for retrieving web page content and processing it into Org-mode content.
12253
12254 For example, you can copy a URL to the clipboard or kill-ring, then run a
12255 command that downloads the page, isolates the “readable” content with
12256 @command{eww-readable}, converts it to Org-mode content with Pandoc, and
12257 displays it in an Org-mode buffer. Another command does all of that but
12258 inserts it as an Org entry instead of displaying it in a new buffer.")
12259 (license license:gpl3+)))
12260
12261 (define-public emacs-blimp
12262 (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03"))
12263 (package
12264 (name "emacs-blimp")
12265 (version (git-version "0.0.0" "1" commit))
12266 (source
12267 (origin
12268 (method git-fetch)
12269 (uri (git-reference
12270 (url "https://github.com/walseb/blimp")
12271 (commit commit)))
12272 (file-name (git-file-name name version))
12273 (sha256
12274 (base32
12275 "09wmhpym516b81dfq8smdmysh1fn610dzlyvyl2rkx8600f0fizd"))))
12276 (build-system emacs-build-system)
12277 (propagated-inputs
12278 `(("emacs-eimp" ,emacs-eimp)))
12279 (home-page "https://github.com/walseb/blimp")
12280 (synopsis "Emacs wrapper around all Imagemagick commands")
12281 (description "Blimp (Bustling Image Manipulation Package) is a complete
12282 wrapper around all Imagemagick commands with descriptions, autocompletion (for
12283 some commands) and hints displayed in prompt using @command{eimp.el} to
12284 execute its commands and resize images.")
12285 (license license:gpl3+))))
12286
12287 (define-public emacs-synosaurus
12288 (let ((commit "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb"))
12289 (package
12290 (name "emacs-synosaurus")
12291 (version (git-version "0.1.0" "1" commit))
12292 (source
12293 (origin
12294 (method git-fetch)
12295 (uri (git-reference
12296 (url "https://github.com/hpdeifel/synosaurus")
12297 (commit commit)))
12298 (file-name (git-file-name name version))
12299 (sha256
12300 (base32
12301 "15by9jccab6kyplxa6k0glzaivxkqdigl33gl2qi2cvy6f2q7gva"))))
12302 (build-system emacs-build-system)
12303 (propagated-inputs
12304 `(("wordnet" ,wordnet)))
12305 (arguments
12306 `(#:phases
12307 (modify-phases %standard-phases
12308 (add-after 'unpack 'configure
12309 (lambda* (#:key inputs outputs #:allow-other-keys)
12310 (let ((wn (assoc-ref inputs "wordnet")))
12311 ;; .el is read-only in git.
12312 (chmod "synosaurus-wordnet.el" #o644)
12313 ;; Specify the absolute file names of the various
12314 ;; programs so that everything works out-of-the-box.
12315 (emacs-substitute-variables
12316 "synosaurus-wordnet.el"
12317 ("wordnet-command"
12318 (string-append wn "/bin/wn")))))))))
12319 (home-page "https://github.com/hpdeifel/synosaurus")
12320 (synopsis "Extensible thesaurus mode for Emacs")
12321 (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
12322 backends, including the @command{wordnet} offline backend.")
12323 (license license:gpl3+))))
12324
12325 (define-public emacs-all-the-icons
12326 (package
12327 (name "emacs-all-the-icons")
12328 (version "3.2.0")
12329 (source
12330 (origin
12331 (method git-fetch)
12332 (uri (git-reference
12333 (url "https://github.com/domtronn/all-the-icons.el.git")
12334 (commit version)))
12335 (file-name (git-file-name name version))
12336 (sha256
12337 (base32
12338 "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
12339 (build-system emacs-build-system)
12340 (arguments
12341 `(#:include '("\\.el$" "^data/" "^fonts/")
12342 ;; Compiling "test/" fails with "Symbol’s value as variable is void:
12343 ;; all-the-icons--root-code". Ignoring tests.
12344 #:exclude '("^test/")
12345 #:tests? #f))
12346 (propagated-inputs
12347 `(("f" ,emacs-f)
12348 ("memoize" ,emacs-memoize)))
12349 (home-page "https://github.com/domtronn/all-the-icons.el")
12350 (synopsis "Collect icon fonts and propertize them within Emacs")
12351 (description "All-the-icons is a utility package to collect various icon
12352 fonts and propertize them within Emacs. Icon fonts allow you to propertize
12353 and format icons the same way you would normal text. This enables things such
12354 as better scaling of and anti aliasing of the icons.")
12355 ;; Package is released under Expat license. Elisp files are licensed
12356 ;; under GPL3+. Fonts come with various licenses: Expat for
12357 ;; "all-the-icons.ttf" and "file-icons.ttf", Apache License 2.0 for
12358 ;; "material-design-icons.ttf", and SIL OFL 1.1 for "fontawesome.ttf",
12359 ;; "ocitcons.ttf" and "weathericons.ttf".
12360 (license
12361 (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0))))
12362
12363 (define-public emacs-powerline
12364 (package
12365 (name "emacs-powerline")
12366 (version "2.4")
12367 (source
12368 (origin
12369 (method git-fetch)
12370 (uri (git-reference
12371 (url "https://github.com/milkypostman/powerline.git")
12372 (commit version)))
12373 (file-name (git-file-name name version))
12374 (sha256
12375 (base32
12376 "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
12377 (build-system emacs-build-system)
12378 (home-page "https://github.com/milkypostman/powerline/")
12379 (synopsis "Mode-line plugin for Emacs")
12380 (description "Powerline is a utility plugin which allows you to create
12381 a better-looking, more functional Emacs mode-line. A collection of predefined
12382 themes comes with the package.")
12383 (license license:gpl3+)))
12384
12385 (define-public emacs-spaceline
12386 (package
12387 (name "emacs-spaceline")
12388 (version "2.0.1")
12389 (source
12390 (origin
12391 (method git-fetch)
12392 (uri (git-reference
12393 (url "https://github.com/TheBB/spaceline.git")
12394 (commit (string-append "v" version))))
12395 (file-name (git-file-name name version))
12396 (sha256
12397 (base32
12398 "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
12399 (build-system emacs-build-system)
12400 (propagated-inputs
12401 `(("dash" ,emacs-dash)
12402 ("powerline" ,emacs-powerline)
12403 ("s" ,emacs-s)))
12404 (home-page "https://github.com/TheBB/spaceline")
12405 (synopsis "Powerline theme from Spacemacs")
12406 (description "Spaceline provides Spacemacs' mode-line theme.
12407 This package provides features for three kinds of users.
12408
12409 @itemize
12410 @item You just want to use the Spacemacs mode-line theme and forget about it.
12411 @item You want to use something similar to the Spacemacs mode-line theme, but
12412 with a handful of easy tweaks.
12413 @item You want an easy-to-use library for building your own mode-line from
12414 scratch, and you think the Spacemacs theme looks good.
12415 @end itemize")
12416 (license license:gpl3+)))
12417
12418 (define-public emacs-column-marker
12419 (package
12420 (name "emacs-column-marker")
12421 (version "9")
12422 (source
12423 (origin
12424 (method url-fetch)
12425 (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
12426 (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
12427 (build-system emacs-build-system)
12428 (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
12429 (synopsis "Emacs mode for highlighting columns")
12430 (description
12431 "With @code{column-marker.el} you can highlight any number of text columns.
12432 Three such highlight column markers are provided by default. This is
12433 especially useful for languages like COBOL or Fortran where certain columns
12434 have special meaning. It is also handy for aligning text across long vertical
12435 distances. Multi-column characters, such as @kbd{TAB} are treated
12436 correctly.")
12437 (license license:gpl2+)))
12438
12439 (define-public emacs-slime-repl-ansi-color
12440 (let ((commit "ad03263f5d4de473bc173b64a6fc3dc1106393d7"))
12441 (package
12442 (name "emacs-slime-repl-ansi-color")
12443 (version (git-version "0.0.0" "1" commit))
12444 (source (origin
12445 (method git-fetch)
12446 (uri (git-reference
12447 (url "https://github.com/deadtrickster/slime-repl-ansi-color")
12448 (commit commit)))
12449 (file-name (git-file-name name version))
12450 (sha256
12451 (base32
12452 "0bpg7gxz310x7bnlg324c507sxc5gxwwz6h64h6kdq141r73vbi4"))))
12453 (build-system emacs-build-system)
12454 (home-page "https://github.com/deadtrickster/slime-repl-ansi-color")
12455 (synopsis "Color ANSI codes in the REPL of SLIME")
12456 (description "Color ANSI codes in the REPL of SLIME")
12457 (license license:gpl2+))))
12458
12459 (define-public emacs-helm-slime
12460 (let ((commit "9980925f3e5f6ac5a30369d2a544e82006a79c76"))
12461 (package
12462 (name "emacs-helm-slime")
12463 (version (git-version "0.0.0" "1" commit))
12464 (source (origin
12465 (method git-fetch)
12466 (uri (git-reference
12467 (url "https://github.com/emacs-helm/helm-slime")
12468 (commit commit)))
12469 (file-name (git-file-name name version))
12470 (sha256
12471 (base32
12472 "0xa07gpfkzwn522x9573mq5mfxvbawdgd0m93gqj6w5a14wk8zzh"))))
12473 (build-system emacs-build-system)
12474 (propagated-inputs
12475 `(("emacs-helm" ,emacs-helm)
12476 ("emacs-slime" ,emacs-slime)))
12477 (home-page "https://github.com/emacs-helm/helm-slime")
12478 (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
12479 (description "Helm-SLIME defines a few new commands:
12480
12481 @itemize
12482 @item helm-slime-complete: Select a symbol from the SLIME completion systems.
12483 @item helm-slime-list-connections: Yet another slime-list-connections with Helm.
12484 @item: helm-slime-apropos: Yet another slime-apropos with Helm.
12485 @item helm-slime-repl-history: Select an input from the SLIME REPL history and insert it.
12486 @end itemize\n")
12487 (license license:gpl3+))))
12488
12489 (define-public emacs-gtk-look
12490 (package
12491 (name "emacs-gtk-look")
12492 (version "29")
12493 (source (origin
12494 (method url-fetch)
12495 (uri "https://download.tuxfamily.org/user42/gtk-look.el")
12496 (sha256
12497 (base32
12498 "14p2nwrd51cr1v06fxbjjn6jdrkf9d6vcxhmscm0kl677s25ypsp"))))
12499 (build-system emacs-build-system)
12500 (arguments
12501 `(#:phases
12502 (modify-phases %standard-phases
12503 (add-after 'unpack 'configure
12504 (lambda _
12505 ;; File is read-only.
12506 (chmod "gtk-look.el" #o644)
12507 (emacs-substitute-variables "gtk-look.el"
12508 ("gtk-lookup-devhelp-indices"
12509 '(list (expand-file-name "~/.guix-profile/share/gtk-doc/html/*/*.devhelp*"))))
12510 #t)))))
12511 (home-page "http://user42.tuxfamily.org/gtk-look/index.html")
12512 (synopsis "Find and display HTML documentation for GTK, GNOME and Glib")
12513 (description "@command{gtk-look} finds and displays HTML documentation for
12514 GTK, GNOME and Glib functions and variables in Emacs, similar to what
12515 info-lookup-symbol does for info files (C-h S). The documentation is expected
12516 to be devhelp indexes with HTML files. The location of the indexes can be
12517 customized. In addition to C code development @command{gtk-look} is good for
12518
12519 @itemize
12520 @item @command{perl-gtk2}, recognising class funcs like
12521 @command{Gtk2::Label->new} and bare method names like @command{set_text}.
12522 @item @command{guile-gnome}, recognising methods like @command{set-text} and
12523 classes like @command{<gtk-window>}.
12524 @end itemize\n")
12525 (license license:gpl3+)))
12526
12527 (define-public emacs-ov
12528 (package
12529 (name "emacs-ov")
12530 (version "1.0.6")
12531 (source (origin
12532 (method git-fetch)
12533 (uri (git-reference
12534 (url "https://github.com/ShingoFukuyama/ov.el.git")
12535 (commit version)))
12536 (file-name (git-file-name name version))
12537 (sha256
12538 (base32
12539 "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
12540 (build-system emacs-build-system)
12541 (home-page "https://github.com/ShingoFukuyama/ov.el")
12542 (synopsis "Overlay library for Emacs Lisp")
12543 (description "@code{ov.el} provides a simple way to manipulate overlays in
12544 Emacs.")
12545 (license license:gpl3+)))
12546
12547 (define-public emacs-matrix-client
12548 (let ((commit "a0623667b07a4bf60980c97b078e9faed97ace79"))
12549 (package
12550 (name "emacs-matrix-client")
12551 (version (git-version "0.0.0" "3" commit))
12552 (source (origin
12553 (method git-fetch)
12554 (uri (git-reference
12555 (url "https://github.com/jgkamat/matrix-client-el.git")
12556 (commit commit)))
12557 (file-name (git-file-name name version))
12558 (sha256
12559 (base32
12560 "1zya8id3y9wzjaj7nplq7br6nhm3lsskv0fkn1xr1y77fzcfgcdb"))))
12561 (build-system emacs-build-system)
12562 (propagated-inputs
12563 `(("a" ,emacs-a)
12564 ("anaphora" ,emacs-anaphora)
12565 ("dash" ,emacs-dash)
12566 ("esxml" ,emacs-esxml)
12567 ("f" ,emacs-f)
12568 ("frame-purpose" ,emacs-frame-purpose)
12569 ("ht" ,emacs-ht)
12570 ("ov" ,emacs-ov)
12571 ("rainbow-identifiers" ,emacs-rainbow-identifiers)
12572 ("request" ,emacs-request)
12573 ("s" ,emacs-s)
12574 ("tracking" ,emacs-tracking)))
12575 (home-page "https://github.com/jgkamat/matrix-client-el")
12576 (synopsis "Matrix client for Emacs")
12577 (description "@code{matrix-client} is a simple chat UI to Matrix.org
12578 rooms. It also provides an API which allows Emacs to seamlessly create
12579 RPC channels with users and other software.")
12580 (license license:gpl3+))))
12581
12582 (define-public emacs-sesman
12583 (package
12584 (name "emacs-sesman")
12585 (version "0.3.3")
12586 (source
12587 (origin
12588 (method git-fetch)
12589 (uri (git-reference
12590 (url "https://github.com/vspinu/sesman.git")
12591 (commit (string-append "v" version))))
12592 (file-name (git-file-name name version))
12593 (sha256
12594 (base32
12595 "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra"))))
12596 (build-system emacs-build-system)
12597 (arguments
12598 `(#:tests? #t
12599 #:test-command '("make" "test")))
12600 (home-page "https://github.com/vspinu/sesman")
12601 (synopsis "Session manager for Emacs based IDEs")
12602 (description "Sesman provides facilities for session management and
12603 interactive session association with the current contexts (project, directory,
12604 buffers). While sesman can be used to manage arbitrary sessions, it primary
12605 targets the Emacs based IDEs (CIDER, ESS, Geiser, Robe, SLIME etc.)")
12606 (license license:gpl3+)))
12607
12608 (define-public emacs-buttercup
12609 (package
12610 (name "emacs-buttercup")
12611 (version "1.16")
12612 (source
12613 (origin
12614 (method git-fetch)
12615 (uri (git-reference
12616 (url "https://github.com/jorgenschaefer/emacs-buttercup.git")
12617 (commit (string-append "v" version))))
12618 (file-name (git-file-name name version))
12619 (sha256
12620 (base32
12621 "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"))))
12622 (build-system emacs-build-system)
12623 (arguments
12624 `(#:tests? #t
12625 #:test-command '("make" "test")
12626 #:phases
12627 (modify-phases %standard-phases
12628 (add-after 'install 'install-bin
12629 (lambda* (#:key outputs #:allow-other-keys)
12630 (install-file "bin/buttercup"
12631 (string-append (assoc-ref outputs "out") "/bin"))
12632 #t)))))
12633 (home-page "https://github.com/jorgenschaefer/emacs-buttercup")
12634 (synopsis "Behavior driven emacs lisp testing framework")
12635 (description "Buttercup is a behavior-driven development framework for
12636 testing Emacs Lisp code. It allows to group related tests so they can share
12637 common set-up and tear-down code, and allows the programmer to \"spy\" on
12638 functions to ensure they are called with the right arguments during testing.")
12639 (license license:gpl3+)))
12640
12641 (define-public emacs-wordnut
12642 (let ((commit "feac531404041855312c1a046bde7ea18c674915")
12643 (revision "0"))
12644 (package
12645 (name "emacs-wordnut")
12646 (version (git-version "0.1" revision commit))
12647 (home-page "https://github.com/gromnitsky/wordnut")
12648 (source (origin
12649 (method git-fetch)
12650 (uri (git-reference (url home-page) (commit commit)))
12651 (sha256
12652 (base32
12653 "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn"))
12654 (patches
12655 (search-patches "emacs-wordnut-require-adaptive-wrap.patch"))
12656 (file-name (git-file-name name version))))
12657 (build-system emacs-build-system)
12658 (propagated-inputs
12659 `(("wordnet" ,wordnet)
12660 ("emacs-adaptive-wrap" ,emacs-adaptive-wrap)))
12661 (synopsis "Major mode for WordNet")
12662 (description "This Emacs package provides an interface for
12663 @code{wordnet}. Features include completion, if the query is not found
12664 too ambiguous and navigation in the result buffer.")
12665 (license license:gpl3+))))
12666
12667 (define-public emacs-frame-purpose
12668 (package
12669 (name "emacs-frame-purpose")
12670 (version "1.0")
12671 (source (origin
12672 (method git-fetch)
12673 (uri (git-reference
12674 (url "https://github.com/alphapapa/frame-purpose.el.git")
12675 (commit version)))
12676 (sha256
12677 (base32
12678 "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"))
12679 (file-name (git-file-name name version))))
12680 (build-system emacs-build-system)
12681 (inputs
12682 `(("dash" ,emacs-dash)))
12683 (synopsis "Purpose-specific frames for Emacs")
12684 (description "@code{frame-purpose} makes it easy to open purpose-specific
12685 frames that only show certain buffers, e.g. by buffers’ major mode, their
12686 filename or directory, etc, with custom frame/X-window titles, icons, and
12687 other frame parameters.")
12688 (home-page "https://github.com/alphapapa/frame-purpose.el")
12689 (license license:gpl3+)))
12690
12691 (define-public emacs-arduino-mode
12692 (let ((commit "3e2bad4569ad26e929e6db2cbcff0d6d36812698")) ;no release yet
12693 (package
12694 (name "emacs-arduino-mode")
12695 (version (git-version "0" "0" commit))
12696 (source (origin
12697 (method git-fetch)
12698 (uri (git-reference
12699 (url "https://github.com/bookest/arduino-mode.git")
12700 (commit commit)))
12701 (sha256
12702 (base32
12703 "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"))
12704 (file-name (git-file-name name version))))
12705 (build-system emacs-build-system)
12706 (synopsis "Emacs major mode for editing Arduino sketches")
12707 (description "Emacs major mode for editing Arduino sketches.")
12708 (home-page "https://github.com/bookest/arduino-mode")
12709 (license license:gpl3+))))
12710
12711 (define-public emacs-general
12712 (let ((commit "675050199b5a30d54a24b58a367db32c0bdc47f5"))
12713 (package
12714 (name "emacs-general")
12715 (version (git-version "0" "0" commit))
12716 (home-page "https://github.com/noctuid/general.el")
12717 (source (origin
12718 (method git-fetch)
12719 (uri (git-reference
12720 (url (string-append home-page ".git"))
12721 (commit commit)))
12722 (sha256
12723 (base32
12724 "175yyhzk57yk1sskxh3d2jzhrh2waiibbcfsll167qxr117yji5h"))
12725 (file-name (git-file-name name version))))
12726 (build-system emacs-build-system)
12727 (synopsis "More convenient key definitions in emacs")
12728 (description "@code{general.el} provides a more convenient method for
12729 binding keys in emacs (for both evil and non-evil users). Like
12730 @code{use-package}, which provides a convenient, unified interface for
12731 managing packages, @code{general.el} is intended to provide a convenient,
12732 unified interface for key definitions. While this package does implement some
12733 completely new functionality (such as the ability to make vim-style
12734 keybindings under non-prefix keys with an optional timeout), its primary
12735 purpose is to build on existing functionality to make key definition more
12736 clear and concise. @code{general-define-key} is user-extensible and supports
12737 defining multiple keys in multiple keymaps at once, implicitly wrapping key
12738 strings with (@code{kbd ...}), using named prefix key sequences (like the
12739 leader key in vim), and much more.")
12740 (license license:gpl3+))))
12741
12742 (define-public emacs-tldr
12743 (let ((commit "398b197c8d2238628b07e1b32d0f373876279f4c"))
12744 (package
12745 (name "emacs-tldr")
12746 (version (git-version "0" "0" commit))
12747 (home-page "https://github.com/kuanyui/tldr.el")
12748 (source (origin
12749 (method git-fetch)
12750 (uri (git-reference
12751 (url (string-append home-page ".git"))
12752 (commit commit)))
12753 (sha256
12754 (base32
12755 "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f"))
12756 (file-name (git-file-name name version))))
12757 (build-system emacs-build-system)
12758 (synopsis "Simplified and community-driven man pages for Emacs")
12759 (description "@code{emacs-tldr} allows the user to access tldr pages
12760 from within emacs. The @code{tldr} pages are a community effort to simplify
12761 the man pages with practical examples.")
12762 (license license:wtfpl2))))
12763
12764 (define-public emacs-window-layout
12765 (package
12766 (name "emacs-window-layout")
12767 (version "1.4")
12768 (home-page "https://github.com/kiwanami/emacs-window-layout")
12769 (source (origin
12770 (method git-fetch)
12771 (uri (git-reference
12772 (url home-page)
12773 (commit (string-append "v" version))))
12774 (sha256
12775 (base32
12776 "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"))
12777 (file-name (git-file-name name version))))
12778 (build-system emacs-build-system)
12779 (synopsis "Simple window layout management framework for emacs")
12780 (description "A window-layout management library that can split a frame
12781 or a window into some windows according to a layout recipe.")
12782 (license license:gpl3+)))
12783
12784 (define-public emacs-e2wm
12785 (package
12786 (name "emacs-e2wm")
12787 (version "1.4")
12788 (home-page "https://github.com/kiwanami/emacs-window-manager")
12789 (source (origin
12790 (method git-fetch)
12791 (uri (git-reference
12792 (url home-page)
12793 (commit (string-append "v" version))))
12794 (sha256
12795 (base32
12796 "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"))
12797 (file-name (git-file-name name version))))
12798 (build-system emacs-build-system)
12799 (propagated-inputs
12800 `(("emacs-window-layout" ,emacs-window-layout)))
12801 (synopsis "Equilibrium Emacs Window Manager")
12802 (description "E2WM is a window manager for Emacs. It enables to
12803 customize the place of pop-up window, how the windows are split, how the
12804 buffers are located in the windows, keybinds to manipulate windows and
12805 buffers, etc. It also has plug-ins to help your Emacs life.")
12806 (license license:gpl3+)))
12807
12808 (define-public emacs-ctable
12809 (let ((commit "b8830d1ca95abb100a81bc32011bd17d5ecba000"))
12810 (package
12811 (name "emacs-ctable")
12812 (version (git-version "0.1.2" "1" commit))
12813 (home-page "https://github.com/kiwanami/emacs-ctable")
12814 (source (origin
12815 (method git-fetch)
12816 (uri (git-reference
12817 (url home-page)
12818 (commit commit)))
12819 (sha256
12820 (base32
12821 "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"))
12822 (file-name (git-file-name name version))))
12823 (build-system emacs-build-system)
12824 (synopsis "Table component for Emacs Lisp")
12825 (description "This program is a table component for Emacs Lisp. Other
12826 programs can use this table component for the application UI.")
12827 (license license:gpl3+))))
12828
12829 (define-public emacs-epc
12830 (let ((commit "e1bfa5ca163273859336e3cc89b4b6460f7f8cda"))
12831 (package
12832 (name "emacs-epc")
12833 (version (git-version "0.1.1" "1" commit))
12834 (home-page "https://github.com/kiwanami/emacs-epc")
12835 (source (origin
12836 (method git-fetch)
12837 (uri (git-reference
12838 (url home-page)
12839 (commit commit)))
12840 (sha256
12841 (base32
12842 "15nkrjgi64f829isfd6xrhl4zw8jirr8pkas7nisrbk1av868hx0"))
12843 (file-name (git-file-name name version))))
12844 (build-system emacs-build-system)
12845 (propagated-inputs
12846 `(("emacs-deferred" ,emacs-deferred)
12847 ("emacs-ctable" ,emacs-ctable)))
12848 (synopsis "RPC stack for Emacs Lisp")
12849 (description "This program is an asynchronous RPC stack for Emacs.
12850 Using this RPC stack, Emacs can communicate with the peer process
12851 smoothly. Because the protocol employs S-expression encoding and consists of
12852 asynchronous communications, the RPC response is fairly good.")
12853 (license license:gpl3+))))
12854
12855 (define-public emacs-edbi
12856 (let ((commit "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"))
12857 (package
12858 (name "emacs-edbi")
12859 (version (git-version "0.1.3" "1" commit))
12860 (home-page "https://github.com/kiwanami/emacs-edbi")
12861 (source (origin
12862 (method git-fetch)
12863 (uri (git-reference
12864 (url home-page)
12865 (commit commit)))
12866 (sha256
12867 (base32
12868 "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"))
12869 (file-name (git-file-name name version))))
12870 (build-system emacs-build-system)
12871 (inputs
12872 `(("perl" ,perl)
12873 ("perl-rpc-epc-service" ,perl-rpc-epc-service)
12874 ("perl-dbi" ,perl-dbi)
12875 ;; TODO: Adding support for perl-dbd-mysql and others would
12876 ;; dramatically increase the closure size. Make several packages?
12877 ("perl-dbd-sqlite" ,perl-dbd-sqlite)))
12878 (propagated-inputs
12879 `(("emacs-e2wm" ,emacs-e2wm)
12880 ("emacs-epc" ,emacs-epc)))
12881 (arguments
12882 `(#:include '("\\.el$" "\\.pl$")
12883 #:phases
12884 (modify-phases %standard-phases
12885 (add-after 'install 'patch-path
12886 (lambda* (#:key inputs outputs #:allow-other-keys)
12887 (let ((perl (assoc-ref inputs "perl"))
12888 (dir (string-append (assoc-ref outputs "out")
12889 "/share/emacs/site-lisp/guix.d/edbi-"
12890 ,version)))
12891 (substitute* (string-append dir "/edbi.el")
12892 (("\"perl\"") (string-append "\"" perl "/bin/perl\"")))
12893 (chmod (string-append dir "/edbi-bridge.pl") #o555)
12894 (wrap-program (string-append dir "/edbi-bridge.pl")
12895 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
12896 #t))))))
12897 (synopsis "Database Interface for Emacs Lisp")
12898 (description "This program connects the database server through Perl's
12899 DBI, and provides DB-accessing API and the simple management UI.")
12900 (license license:gpl3+))))
12901
12902 (define-public emacs-edbi-sqlite
12903 (let ((commit "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"))
12904 (package
12905 (name "emacs-edbi-sqlite")
12906 (version (git-version "0.1.1" "1" commit))
12907 (home-page "https://github.com/proofit404/edbi-sqlite")
12908 (source (origin
12909 (method git-fetch)
12910 (uri (git-reference
12911 (url home-page)
12912 (commit commit)))
12913 (sha256
12914 (base32
12915 "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"))
12916 (file-name (git-file-name name version))))
12917 (build-system emacs-build-system)
12918 (propagated-inputs
12919 `(("emacs-edbi" ,emacs-edbi)))
12920 (synopsis "Open SQLite files in Emacs")
12921 (description "This package is a convenience wrapper for @command{edbi}
12922 to open SQLite databases.")
12923 (license license:gpl3+))))
12924
12925 (define-public emacs-nix-mode
12926 (package
12927 (name "emacs-nix-mode")
12928 (version "1.2.2")
12929 (source
12930 (origin
12931 (method url-fetch)
12932 (uri (string-append "https://github.com/NixOS/nix-mode/archive/v"
12933 version ".tar.gz"))
12934 (file-name (string-append name "-" version ".tar.gz"))
12935 (sha256
12936 (base32
12937 "06aqz0czznsj8835jqnk794sy2p6pa8kxfqwh0nl5d5vxivria6z"))))
12938 (build-system emacs-build-system)
12939 (inputs
12940 `(("emacs-company" ,emacs-company)
12941 ("emacs-mmm-mode" ,emacs-mmm-mode)))
12942 (home-page "https://github.com/NixOS/nix-mode")
12943 (synopsis "Emacs major mode for editing Nix expressions")
12944 (description "@code{nixos-mode} provides an Emacs major mode for editing
12945 Nix expressions. It supports syntax highlighting, indenting and refilling of
12946 comments.")
12947 (license license:lgpl2.1+)))
12948
12949 (define-public emacs-simple-mpc
12950 ;; There have been no releases.
12951 (let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2")
12952 (revision "1"))
12953 (package
12954 (name "emacs-simple-mpc")
12955 (version (git-version "0" revision commit))
12956 (source
12957 (origin
12958 (method git-fetch)
12959 (uri (git-reference
12960 (url "https://github.com/jorenvo/simple-mpc.git")
12961 (commit commit)))
12962 (file-name (git-file-name name version))
12963 (sha256
12964 (base32
12965 "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"))))
12966 (build-system emacs-build-system)
12967 (propagated-inputs `(("emacs-s" ,emacs-s)))
12968 (home-page "https://github.com/jorenvo/simple-mpc")
12969 (synopsis "Simple Emacs frontend to mpc")
12970 (description "This package provides an Emacs major mode which acts as a
12971 front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).")
12972 (license license:gpl3+))))
12973
12974 (define-public emacs-mkmcc-gnuplot-mode
12975 (package
12976 (name "emacs-mkmcc-gnuplot-mode")
12977 (version "1.2.0")
12978 (source
12979 (origin
12980 (method git-fetch)
12981 (uri (git-reference
12982 (url "https://github.com/mkmcc/gnuplot-mode")
12983 (commit "601f6392986f0cba332c87678d31ae0d0a496ce7")))
12984 (file-name (string-append name "-" version "-checkout"))
12985 (sha256
12986 (base32
12987 "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb"))))
12988 (build-system emacs-build-system)
12989 (home-page "https://mkmcc.github.io/software/gnuplot-mode.html")
12990 (synopsis "Minimal emacs major mode for editing gnuplot scripts")
12991 (description "@code{emacs-mkmcc-gnuplot-mode} is a minimal emacs major
12992 mode for editing gnuplot scripts. It provides syntax highlighting,
12993 indentation and a command to plot the file.")
12994 (license license:gpl3+)))
12995
12996 (define-public emacs-dtrt-indent
12997 (package
12998 (name "emacs-dtrt-indent")
12999 (version "0.8")
13000 (source (origin
13001 (method git-fetch)
13002 (uri (git-reference
13003 (url "https://github.com/jscheid/dtrt-indent")
13004 (commit version)))
13005 (file-name (git-file-name name version))
13006 (sha256
13007 (base32
13008 "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"))))
13009 (build-system emacs-build-system)
13010 (home-page "https://github.com/jscheid/dtrt-indent")
13011 (synopsis "Minor mode that guesses the indentation offset")
13012 (description "This package provides a minor mode that guesses the
13013 indentation offset originally used for creating source code files and
13014 transparently adjusts the corresponding settings in Emacs, making it more
13015 convenient to edit foreign files.")
13016 (license license:gpl2+)))
13017
13018 (define-public emacs-repo
13019 (package
13020 (name "emacs-repo")
13021 (version "0.1.3")
13022 (source (origin
13023 (method git-fetch)
13024 (uri (git-reference
13025 (url "https://github.com/canatella/repo-el")
13026 (commit version)))
13027 (file-name (git-file-name name version))
13028 (sha256
13029 (base32
13030 "0rbvcvm7bfr6ncji7cllfxyyr6x7n9fx863byp243phsj3n93adz"))))
13031 (build-system emacs-build-system)
13032 (native-inputs
13033 `(("emacs-el-mock" ,emacs-el-mock)
13034 ("ert-runner" ,emacs-ert-runner)))
13035 (propagated-inputs
13036 `(("emacs-f" ,emacs-f)
13037 ("magit" ,emacs-magit)))
13038 (home-page "https://github.com/canatella/repo-el")
13039 (synopsis "Emacs interface for the Google Repo tool")
13040 (description "This package provides integration of the Google Repo tool
13041 with emacs. It displays the output of the @code{repo status} command in a
13042 buffer and launches Magit from the status buffer for the project at point.")
13043 (license license:gpl3+)))
13044
13045 (define-public emacs-alect-themes
13046 (package
13047 (name "emacs-alect-themes")
13048 (version "0.9")
13049 (source (origin
13050 (method git-fetch)
13051 (uri (git-reference
13052 (url "https://github.com/alezost/alect-themes")
13053 (commit (string-append "v" version))))
13054 (file-name (git-file-name name version))
13055 (sha256
13056 (base32
13057 "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9"))))
13058 (build-system emacs-build-system)
13059 (home-page "https://github.com/alezost/alect-themes")
13060 (synopsis "Low contrast, light, dark and black color theme for Emacs")
13061 (description "@code{emacs-alect-themes} provides configurable light, dark
13062 and black color themes for Emacs. The themes are intended to be used with
13063 GUI.")
13064 (license license:gpl3+)))
13065
13066 (define-public emacs-google-c-style
13067 (let ((commit "6271f3f473ceb3a7fef99388a3040903b1a145f1")
13068 (revision "0"))
13069 (package
13070 (name "emacs-google-c-style")
13071 (version (git-version "0.1" revision commit))
13072 (source (origin
13073 (method git-fetch)
13074 (uri (git-reference
13075 (url "https://github.com/google/styleguide")
13076 (commit commit)))
13077 (file-name (git-file-name name version))
13078 (sha256
13079 (base32
13080 "1jghyyasdl15c4gaqaxmdn43am63k6bykn5ab83f1ahv9zi1krxk"))))
13081 (build-system emacs-build-system)
13082 (home-page "https://github.com/google/styleguide")
13083 (synopsis "Emacs settings file for Google C/C++ style")
13084 (description "@code{emacs-google-c-style} provides an Emacs settings
13085 file for Google C and C++ style.")
13086 (license license:gpl1+))))
13087
13088 (define-public emacs-redshank
13089 (let ((commit "f98e68f532e622bcd464292ca4a9cf5fbea14ebb")
13090 (revision "1"))
13091 (package
13092 (name "emacs-redshank")
13093 (version (git-version "0.1" revision commit))
13094 (source (origin
13095 (method git-fetch)
13096 (uri (git-reference
13097 (url "http://www.foldr.org/~michaelw/projects/redshank.git")
13098 (commit commit)))
13099 (file-name (git-file-name name version))
13100 (sha256
13101 (base32
13102 "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"))))
13103 (build-system emacs-build-system)
13104 (propagated-inputs
13105 `(("emacs-paredit" ,emacs-paredit)))
13106 (home-page "http://www.foldr.org/~michaelw/emacs/redshank/")
13107 (synopsis "Common Lisp Editing Extensions (for Emacs)")
13108 (description "Redshank is a collection of code-wrangling Emacs macros
13109 mostly geared towards Common Lisp, but some are useful for other Lisp
13110 dialects, too. Redshank's code transformations aim to be expression-based (as
13111 opposed to character-based).")
13112 (license license:gpl1+))))