gnu: emacs-helm-gtags: Don't use unstable tarball.
[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 ng0 <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, 2019 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, 2019 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, 2019 Jack Hill <jackhill@jackhill.us>
40 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
41 ;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
42 ;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
43 ;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
44 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
45 ;;; Copyright © 2019 Dimakakos Dimos <bendersteed@teknik.io>
46 ;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
47 ;;;
48 ;;; This file is part of GNU Guix.
49 ;;;
50 ;;; GNU Guix is free software; you can redistribute it and/or modify it
51 ;;; under the terms of the GNU General Public License as published by
52 ;;; the Free Software Foundation; either version 3 of the License, or (at
53 ;;; your option) any later version.
54 ;;;
55 ;;; GNU Guix is distributed in the hope that it will be useful, but
56 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
57 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
58 ;;; GNU General Public License for more details.
59 ;;;
60 ;;; You should have received a copy of the GNU General Public License
61 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
62
63 (define-module (gnu packages emacs-xyz)
64 #:use-module ((guix licenses) #:prefix license:)
65 #:use-module (guix packages)
66 #:use-module (guix cvs-download)
67 #:use-module (guix download)
68 #:use-module (guix git-download)
69 #:use-module (guix build-system gnu)
70 #:use-module (guix build-system cmake)
71 #:use-module (guix build-system emacs)
72 #:use-module (guix build-system glib-or-gtk)
73 #:use-module (guix build-system perl)
74 #:use-module (guix build-system trivial)
75 #:use-module (gnu packages)
76 #:use-module (gnu packages admin)
77 #:use-module (gnu packages audio)
78 #:use-module (gnu packages bash)
79 #:use-module (gnu packages cmake)
80 #:use-module (gnu packages code)
81 #:use-module (gnu packages databases)
82 #:use-module (gnu packages emacs)
83 #:use-module (gnu packages guile)
84 #:use-module (gnu packages gtk)
85 #:use-module (gnu packages gnome)
86 #:use-module (gnu packages ncurses)
87 #:use-module (gnu packages python)
88 #:use-module (gnu packages python-xyz)
89 #:use-module (gnu packages tex)
90 #:use-module (gnu packages texinfo)
91 #:use-module (gnu packages tcl)
92 #:use-module (gnu packages tls)
93 #:use-module (gnu packages pkg-config)
94 #:use-module (gnu packages xorg)
95 #:use-module (gnu packages lesstif)
96 #:use-module (gnu packages llvm)
97 #:use-module (gnu packages image)
98 #:use-module (gnu packages linux)
99 #:use-module (gnu packages libevent)
100 #:use-module (gnu packages music)
101 #:use-module (gnu packages version-control)
102 #:use-module (gnu packages imagemagick)
103 #:use-module (gnu packages w3m)
104 #:use-module (gnu packages wget)
105 #:use-module (gnu packages autotools)
106 #:use-module (gnu packages base)
107 #:use-module (gnu packages compression)
108 #:use-module (gnu packages xml)
109 #:use-module (gnu packages glib)
110 #:use-module (gnu packages acl)
111 #:use-module (gnu packages mail)
112 #:use-module (gnu packages package-management)
113 #:use-module (gnu packages perl)
114 #:use-module (gnu packages pdf)
115 #:use-module (gnu packages scheme)
116 #:use-module (gnu packages speech)
117 #:use-module (gnu packages xiph)
118 #:use-module (gnu packages mp3)
119 #:use-module (gnu packages gettext)
120 #:use-module (gnu packages fribidi)
121 #:use-module (gnu packages gd)
122 #:use-module (gnu packages fontutils)
123 #:use-module (gnu packages password-utils)
124 #:use-module (gnu packages pulseaudio)
125 #:use-module (gnu packages xdisorg)
126 #:use-module (gnu packages shells)
127 #:use-module (gnu packages sqlite)
128 #:use-module (gnu packages gnupg)
129 #:use-module (gnu packages video)
130 #:use-module (gnu packages haskell)
131 #:use-module (gnu packages wordnet)
132 #:use-module (guix utils)
133 #:use-module (srfi srfi-1)
134 #:use-module (ice-9 match))
135
136 ;;;
137 ;;; Emacs hacking.
138 ;;;
139
140 (define-public emacs-geiser
141 (package
142 (name "emacs-geiser")
143 (version "0.10")
144 (source (origin
145 (method url-fetch)
146 (uri (string-append "mirror://savannah/geiser/" version
147 "/geiser-" version ".tar.gz"))
148 (sha256
149 (base32
150 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
151 (build-system gnu-build-system)
152 (arguments
153 '(#:phases
154 (modify-phases %standard-phases
155 (add-after 'install 'post-install
156 (lambda* (#:key outputs #:allow-other-keys)
157 (symlink "geiser-install.el"
158 (string-append (assoc-ref outputs "out")
159 "/share/emacs/site-lisp/"
160 "geiser-autoloads.el"))
161 #t)))))
162 (inputs `(("guile" ,guile-2.2)))
163 (native-inputs `(("emacs" ,emacs-minimal)))
164 (home-page "https://nongnu.org/geiser/")
165 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
166 (description
167 "Geiser is a collection of Emacs major and minor modes that conspire with
168 one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
169 continuously running Scheme interpreter takes the center of the stage in
170 Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
171 implementation, Emacs and, ultimately, the schemer, giving them access to live
172 metadata.")
173 (license license:bsd-3)))
174
175 (define-public geiser
176 (deprecated-package "geiser" emacs-geiser))
177
178 (define-public emacs-paredit
179 (package
180 (name "emacs-paredit")
181 (version "24")
182 (source (origin
183 (method url-fetch)
184 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
185 version ".el"))
186 (sha256
187 (base32
188 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
189 (build-system emacs-build-system)
190 (home-page "http://mumble.net/~campbell/emacs/paredit/")
191 (synopsis "Emacs minor mode for editing parentheses")
192 (description
193 "ParEdit (paredit.el) is a minor mode for performing structured editing
194 of S-expression data. The typical example of this would be Lisp or Scheme
195 source code.
196
197 ParEdit helps **keep parentheses balanced** and adds many keys for moving
198 S-expressions and moving around in S-expressions. Its behavior can be jarring
199 for those who may want transient periods of unbalanced parentheses, such as
200 when typing parentheses directly or commenting out code line by line.")
201 (license license:gpl3+)))
202
203 (define-public paredit
204 (deprecated-package "paredit" emacs-paredit))
205
206 (define-public git-modes
207 (package
208 (name "emacs-git-modes")
209 (version "1.2.8")
210 (source (origin
211 (method git-fetch)
212 (uri (git-reference
213 (url "https://github.com/magit/git-modes")
214 (commit version)))
215 (file-name (git-file-name name version))
216 (sha256
217 (base32
218 "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
219 (build-system emacs-build-system)
220 (home-page "https://github.com/magit/git-modes")
221 (synopsis "Emacs major modes for Git configuration files")
222 (description
223 "This package provides Emacs major modes for editing various Git
224 configuration files, such as .gitattributes, .gitignore, and .git/config.")
225 (license license:gpl3+)))
226
227 (define-public git-modes/old-name
228 (deprecated-package "git-modes" git-modes))
229
230 (define-public emacs-with-editor
231 (package
232 (name "emacs-with-editor")
233 (version "2.8.0")
234 (source (origin
235 (method git-fetch)
236 (uri (git-reference
237 (url "https://github.com/magit/with-editor.git")
238 (commit (string-append "v" version))))
239 (file-name (git-file-name name version))
240 (sha256
241 (base32
242 "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))))
243 (build-system emacs-build-system)
244 (propagated-inputs
245 `(("emacs-dash" ,emacs-dash)))
246 (home-page "https://github.com/magit/with-editor")
247 (synopsis "Emacs library for using Emacsclient as EDITOR")
248 (description
249 "This package provides an Emacs library to use the Emacsclient as
250 @code{$EDITOR} of child processes, making sure they know how to call home.
251 For remote processes a substitute is provided, which communicates with Emacs
252 on stdout instead of using a socket as the Emacsclient does.")
253 (license license:gpl3+)))
254
255 (define-public emacs-magit
256 ;; Version 2.90.1 has trouble loading the transient library,
257 ;; so we use a more recent commit that fixes it.
258 (let ((commit "b4aec016b5577afa8d889f258b499814d1bb1d94"))
259 (package
260 (name "emacs-magit")
261 (version (git-version "2.90.1" "1" commit))
262 (source (origin
263 (method git-fetch)
264 (uri (git-reference
265 (url "https://github.com/magit/magit")
266 (commit commit)))
267 (file-name (git-file-name name version))
268 (sha256
269 (base32
270 "0zl7v6z0y50pcgqsf2r8c1k3r5nwjad9ba7r6sgrnf4rc62br7jv"))))
271 (build-system gnu-build-system)
272 (native-inputs `(("texinfo" ,texinfo)
273 ("emacs" ,emacs-minimal)))
274 (inputs
275 `(("git" ,git)
276 ("perl" ,perl)))
277 (propagated-inputs
278 `(("dash" ,emacs-dash)
279 ("with-editor" ,emacs-with-editor)
280 ("transient" ,emacs-transient)))
281 (arguments
282 `(#:modules ((guix build gnu-build-system)
283 (guix build utils)
284 (guix build emacs-utils))
285 #:imported-modules (,@%gnu-build-system-modules
286 (guix build emacs-utils))
287 #:test-target "test"
288 #:tests? #f ; tests are not included in the release
289
290 #:make-flags
291 (list (string-append "PREFIX=" %output)
292 ;; Don't put .el files in a sub-directory.
293 (string-append "lispdir=" %output "/share/emacs/site-lisp")
294 (string-append "DASH_DIR="
295 (assoc-ref %build-inputs "dash")
296 "/share/emacs/site-lisp/guix.d/dash-"
297 ,(package-version emacs-dash))
298 (string-append "WITH_EDITOR_DIR="
299 (assoc-ref %build-inputs "with-editor")
300 "/share/emacs/site-lisp/guix.d/with-editor-"
301 ,(package-version emacs-with-editor))
302 (string-append "TRANSIENT_DIR="
303 (assoc-ref %build-inputs "transient")
304 "/share/emacs/site-lisp/guix.d/transient-"
305 ,(package-version emacs-transient)))
306
307 #:phases
308 (modify-phases %standard-phases
309 (delete 'configure)
310 (add-before
311 'build 'patch-exec-paths
312 (lambda* (#:key inputs #:allow-other-keys)
313 (let ((perl (assoc-ref inputs "perl")))
314 (make-file-writable "lisp/magit-sequence.el")
315 (emacs-substitute-variables "lisp/magit-sequence.el"
316 ("magit-perl-executable" (string-append perl "/bin/perl")))
317 #t))))))
318 (home-page "https://magit.vc/")
319 (synopsis "Emacs interface for the Git version control system")
320 (description
321 "With Magit, you can inspect and modify your Git repositories with Emacs.
322 You can review and commit the changes you have made to the tracked files, for
323 example, and you can browse the history of past changes. There is support for
324 cherry picking, reverting, merging, rebasing, and other common Git
325 operations.")
326 (license license:gpl3+))))
327
328 (define-public magit
329 (deprecated-package "magit" emacs-magit))
330
331 (define-public emacs-magit-svn
332 (let ((commit "9e33ceee32f665db59909e1c00a667ccdd04178f"))
333 (package
334 (name "emacs-magit-svn")
335 (version (git-version "2.2.1" "1" commit))
336 (source (origin
337 (method git-fetch)
338 (uri (git-reference
339 (url "https://github.com/magit/magit-svn")
340 (commit commit)))
341 (file-name (git-file-name name version))
342 (sha256
343 (base32
344 "1mlqz8dh6jy5rv72lgkxv253dgh73fmbaidskicypapvbl3lr6xy"))))
345 (build-system trivial-build-system)
346 (native-inputs `(("emacs" ,emacs-minimal)))
347 (propagated-inputs `(("dash" ,emacs-dash)
348 ("with-editor" ,emacs-with-editor)
349 ("magit" ,emacs-magit)
350 ("transient" ,emacs-transient)))
351 (arguments
352 `(#:modules ((guix build utils)
353 (guix build emacs-utils))
354
355 #:builder
356 (begin
357 (use-modules (guix build utils)
358 (guix build emacs-utils))
359
360 (let ((emacs (string-append (assoc-ref %build-inputs "emacs")
361 "/bin/emacs"))
362 (magit (string-append (assoc-ref %build-inputs "magit")
363 "/share/emacs/site-lisp"))
364 (transient (string-append (assoc-ref %build-inputs "transient")
365 "/share/emacs/site-lisp/guix.d/transient-"
366 ,(package-version emacs-transient)))
367 (dash (string-append (assoc-ref %build-inputs "dash")
368 "/share/emacs/site-lisp/guix.d/dash-"
369 ,(package-version emacs-dash)))
370 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
371 "/share/emacs/site-lisp/guix.d/with-editor-"
372 ,(package-version emacs-with-editor)))
373 (source (assoc-ref %build-inputs "source"))
374 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
375
376 (install-file (string-append source "/magit-svn.el")
377 lisp-dir)
378
379 (with-directory-excursion lisp-dir
380 (parameterize ((%emacs emacs))
381 (emacs-generate-autoloads ,name lisp-dir)
382 (setenv "EMACSLOADPATH"
383 (string-append ":" magit ":" transient
384 ":" dash ":" with-editor))
385 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
386 #t))))
387 (home-page "https://github.com/magit/magit-svn")
388 (synopsis "Git-SVN extension to Magit")
389 (description
390 "This package is an extension to Magit, the Git Emacs mode, providing
391 support for Git-SVN.")
392 (license license:gpl3+))))
393
394 (define-public magit-svn
395 (deprecated-package "magit-svn" emacs-magit-svn))
396
397 (define-public emacs-magit-popup
398 (package
399 (name "emacs-magit-popup")
400 (version "2.12.5")
401 (source (origin
402 (method git-fetch)
403 (uri (git-reference
404 (url "https://github.com/magit/magit-popup.git")
405 (commit (string-append "v" version))))
406 (file-name (git-file-name name version))
407 (sha256
408 (base32
409 "13riknyqr6vxqll80sfhvz165flvdz367rbd0pr5slb01bnfsi2i"))))
410 (build-system emacs-build-system)
411 (arguments
412 `(#:phases
413 (modify-phases %standard-phases
414 (add-before 'install 'make-info
415 (lambda _
416 (invoke "make" "info"))))))
417 (native-inputs
418 `(("texinfo" ,texinfo)))
419 (propagated-inputs
420 `(("emacs-dash" ,emacs-dash)))
421 (home-page "https://github.com/magit/magit-popup")
422 (synopsis "Define prefix-infix-suffix command combos")
423 (description
424 "This library implements a generic interface for toggling switches and
425 setting options and then invoking an Emacs command which does something with
426 these arguments. The prototypical use is for the command to call an external
427 process, passing on the arguments as command line arguments.")
428 (license license:gpl3+)))
429
430 (define-public emacs-treepy
431 (package
432 (name "emacs-treepy")
433 (version "0.1.1")
434 (source (origin
435 (method git-fetch)
436 (uri (git-reference
437 (url "https://github.com/volrath/treepy.el.git")
438 (commit version)))
439 (file-name (git-file-name name version))
440 (sha256
441 (base32
442 "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))))
443 (build-system emacs-build-system)
444 (home-page
445 "https://github.com/volrath/treepy.el")
446 (synopsis "Tree traversal tools")
447 (description
448 "Generic tools for recursive and iterative tree traversal based on
449 clojure.walk and clojure.zip respectively.")
450 (license license:gpl3+)))
451
452 (define-public emacs-graphql
453 (package
454 (name "emacs-graphql")
455 (version "0.1.1")
456 (source (origin
457 (modules '((guix build utils)))
458 ;; Remove examples file with references to external packages as
459 ;; they do not exist at compilation time.
460 (snippet
461 '(begin (delete-file "examples.el")
462 #t))
463 (method git-fetch)
464 (uri (git-reference
465 (url "https://github.com/vermiculus/graphql.el.git")
466 (commit version)))
467 (file-name (git-file-name name version))
468 (sha256
469 (base32
470 "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"))))
471 (build-system emacs-build-system)
472 (home-page
473 "https://github.com/vermiculus/graphql.el")
474 (synopsis "GraphQL utilities")
475 (description
476 "GraphQL.el provides a generally-applicable domain-specific language for
477 creating and executing GraphQL queries against your favorite web services.
478 GraphQL is a data query language and runtime designed and used to request and
479 deliver data to mobile and web apps.")
480 (license license:gpl3+)))
481
482 (define-public emacs-ghub
483 (package
484 (name "emacs-ghub")
485 (version "3.2.0")
486 (source (origin
487 (method git-fetch)
488 (uri (git-reference
489 (url "https://github.com/magit/ghub")
490 (commit (string-append "v" version))))
491 (file-name (git-file-name name version))
492 (sha256
493 (base32
494 "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl"))))
495 (build-system emacs-build-system)
496 (arguments
497 `(#:phases
498 (modify-phases %standard-phases
499 (add-before 'install 'make-info
500 (lambda _
501 (invoke "make" "info"))))))
502 (native-inputs
503 `(("texinfo" ,texinfo)))
504 (propagated-inputs
505 `(("dash" ,emacs-dash)
506 ("graphql" ,emacs-graphql)
507 ("treepy" ,emacs-treepy)))
508 (home-page "https://github.com/magit/ghub")
509 (synopsis "Emacs client libraries for the APIs of various Git forges")
510 (description
511 "Ghub provides basic support for using the APIs of various Git forges from
512 Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
513 Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
514 handful of functions that are not resource-specific.")
515 (license license:gpl3+)))
516
517 (define-public emacs-scribble-mode
518 (let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
519 (version "0.0")
520 (revision 0))
521 (package
522 (name "emacs-scribble-mode")
523 (version (if (zero? revision)
524 version
525 (string-append version "-"
526 (number->string revision)
527 "." (string-take commit 7))))
528 (source (origin
529 (method git-fetch)
530 (uri (git-reference
531 (url "https://github.com/emacs-pe/scribble-mode.git")
532 (commit commit)))
533 (sha256
534 (base32
535 "0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
536 (build-system emacs-build-system)
537 (home-page "https://github.com/emacs-pe/scribble-mode")
538 (synopsis "Emacs mode for editing the Scribble documentation syntax.")
539 (description
540 "This package provides basic syntax highlighting and editing support
541 for editing Racket's Scribble documentation syntax in Emacs.")
542 (license license:gpl3+))))
543
544 (define-public emacs-unpackaged-el
545 (let ((commit "f4df7f8dfea715e893b2223adda32545803f5cce")
546 (revision "1"))
547 (package
548 (name "emacs-unpackaged-el")
549 (version (git-version "0" revision commit))
550 (source
551 (origin
552 (method git-fetch)
553 (uri (git-reference
554 (url "https://github.com/alphapapa/unpackaged.el")
555 (commit commit)))
556 (file-name (git-file-name name version))
557 (sha256
558 (base32
559 "1yf3zrgqfhnr0az8gn1kqqwnhfi3nc0vbjkcagwcqwk3sp1jda86"))))
560 (build-system emacs-build-system)
561 (propagated-inputs
562 `(("emacs-dash" ,emacs-dash)
563 ("emacs-org" ,emacs-org)
564 ("emacs-s" ,emacs-s)
565 ("emacs-use-package" ,emacs-use-package)))
566 (home-page "https://github.com/alphapapa/unpackaged.el")
567 (synopsis "Useful snippets of Emacs Lisp code")
568 (description "This package provides Emacs Lisp utilities for a variety
569 of tasks, including version control, task management, and regex-based
570 replacement.")
571 (license license:gpl3+))))
572
573 (define-public emacs-haskell-mode
574 (package
575 (name "emacs-haskell-mode")
576 (version "16.1")
577 (source (origin
578 (method git-fetch)
579 (uri (git-reference
580 (url "https://github.com/haskell/haskell-mode")
581 (commit (string-append "v" version))))
582 (file-name (git-file-name name version))
583 (sha256
584 (base32 "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"))
585 (patches
586 (search-patches ; backport test failure fixes
587 "haskell-mode-unused-variables.patch"
588 "haskell-mode-make-check.patch"))))
589 (inputs
590 `(("emacs-el-search" ,emacs-el-search) ; for tests
591 ("emacs-stream" ,emacs-stream))) ; for tests
592 (propagated-inputs
593 `(("emacs-dash" ,emacs-dash)))
594 (native-inputs
595 `(("emacs" ,emacs-minimal)
596 ("texinfo" ,texinfo)))
597 (build-system gnu-build-system)
598 (arguments
599 `(#:make-flags (list (string-append "EMACS="
600 (assoc-ref %build-inputs "emacs")
601 "/bin/emacs"))
602 #:modules ((ice-9 match)
603 (srfi srfi-26)
604 ,@%gnu-build-system-modules)
605 #:phases
606 (modify-phases %standard-phases
607 (delete 'configure)
608 (add-before
609 'build 'pre-build
610 (lambda* (#:key inputs #:allow-other-keys)
611 (define (el-dir store-dir)
612 (match (find-files store-dir "\\.el$")
613 ((f1 f2 ...) (dirname f1))
614 (_ "")))
615
616 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
617 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
618
619 (setenv "SHELL" "sh")
620 (setenv "EMACSLOADPATH"
621 (string-concatenate
622 (map (match-lambda
623 (((? emacs-prefix? name) . dir)
624 (string-append (el-dir dir) ":"))
625 (_ ""))
626 inputs)))
627 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
628 ;; embed filename to fix test failure
629 (let ((file "tests/haskell-cabal-tests.el"))
630 (substitute* file
631 (("\\(buffer-file-name\\)")
632 (format #f "(or (buffer-file-name) ~s)" file))))
633 #t)))
634 (replace
635 'install
636 (lambda* (#:key outputs #:allow-other-keys)
637 (let* ((out (assoc-ref outputs "out"))
638 (el-dir (string-append out "/share/emacs/site-lisp"))
639 (doc (string-append
640 out "/share/doc/haskell-mode-" ,version))
641 (info (string-append out "/share/info")))
642 (define (copy-to-dir dir files)
643 (for-each (lambda (f)
644 (install-file f dir))
645 files))
646
647 (with-directory-excursion "doc"
648 (invoke "makeinfo" "haskell-mode.texi")
649 (install-file "haskell-mode.info" info))
650 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
651 (copy-to-dir el-dir (find-files "." "\\.elc?"))
652 ;; These are part of other packages.
653 (with-directory-excursion el-dir
654 (for-each delete-file '("dash.el" "ert.el")))
655 #t))))))
656 (home-page "https://github.com/haskell/haskell-mode")
657 (synopsis "Haskell mode for Emacs")
658 (description
659 "This is an Emacs mode for editing, debugging and developing Haskell
660 programs.")
661 (license license:gpl3+)))
662
663 (define-public haskell-mode
664 (deprecated-package "haskell-mode" emacs-haskell-mode))
665
666 (define-public emacs-flycheck
667 (package
668 (name "emacs-flycheck")
669 (version "31")
670 (source (origin
671 (method url-fetch)
672 (uri (string-append
673 "https://github.com/flycheck/flycheck/releases/download/"
674 version "/flycheck-" version ".tar"))
675 (sha256
676 (base32
677 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
678 (modules '((guix build utils)))
679 (snippet `(begin
680 ;; Change 'flycheck-version' so that it does not
681 ;; attempt to get its version from pkg-info.el.
682 (substitute* "flycheck.el"
683 (("\\(pkg-info-version-info 'flycheck\\)")
684 (string-append "\"" ,version "\"")))
685 #t))))
686 (build-system emacs-build-system)
687 (propagated-inputs
688 `(("emacs-dash" ,emacs-dash)))
689 (home-page "https://www.flycheck.org")
690 (synopsis "On-the-fly syntax checking")
691 (description
692 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
693 replacement for the older Flymake extension which is part of GNU Emacs, with
694 many improvements and additional features.
695
696 Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
697 checking for over 30 programming and markup languages with more than 70
698 different tools. It highlights errors and warnings inline in the buffer, and
699 provides an optional IDE-like error list.")
700 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
701
702 (define-public emacs-a
703 (package
704 (name "emacs-a")
705 (version "0.1.1")
706 (source (origin
707 (method git-fetch)
708 (uri (git-reference
709 (url "https://github.com/plexus/a.el.git")
710 (commit (string-append "v" version))))
711 (file-name (git-file-name name version))
712 (sha256
713 (base32
714 "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
715 (build-system emacs-build-system)
716 (home-page "https://github.com/plexus/a.el/")
717 (synopsis
718 "Emacs library for dealing with association lists and hash tables")
719 (description "@code{emacs-a} provides Emacs Lisp functions for dealing
720 with associative structures in a uniform and functional way. These functions
721 can take association lists, hash tables, and in some cases vectors (where the
722 index is considered the key).")
723 (license license:gpl3+)))
724
725 (define-public emacs-anaphora
726 (package
727 (name "emacs-anaphora")
728 (version "1.0.4")
729 (source
730 (origin
731 (method git-fetch)
732 (uri (git-reference
733 (url "https://github.com/rolandwalker/anaphora.git")
734 (commit (string-append "v" version))))
735 (file-name (git-file-name name version))
736 (sha256
737 (base32
738 "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"))))
739 (build-system emacs-build-system)
740 (home-page "https://github.com/rolandwalker/anaphora/")
741 (synopsis "Anaphoric expressions for Emacs Lisp")
742 (description "@code{emacs-anaphora} implements anaphoric expressions for
743 Emacs Lisp.
744
745 Anaphoric expressions implicitly create one or more temporary variables which
746 can be referred to during the expression. This technique can improve clarity
747 in certain cases. It also enables recursion for anonymous functions.")
748 (license license:public-domain)))
749
750 (define-public emacs-xr
751 (package
752 (name "emacs-xr")
753 (version "1.10")
754 (source
755 (origin
756 (method url-fetch)
757 (uri (string-append
758 "https://elpa.gnu.org/packages/xr-" version ".tar"))
759 (sha256
760 (base32
761 "16p68rj5h609pnbp7y0jiiq1zkbksh4qqi1q8yby3ldj5x9sfpwc"))))
762 (build-system emacs-build-system)
763 (home-page "http://elpa.gnu.org/packages/xr.html")
764 (synopsis "Convert string regexp to rx notation")
765 (description
766 "This is an inverse companion to the @code{rx} package for translating
767 regexps in string form to the @code{rx} notation. Its chief uses are:
768
769 @itemize
770 @item Migrating existing code to @code{rx} form, for better readability and
771 maintainability
772 @item Understanding complex regexp strings and finding errors in them
773 @end itemize
774
775 In addition to Emacs regexps, this package can also parse and troubleshoot
776 skip set strings, which are arguments to @code{skip-chars-forward} and
777 @code{skip-chars-backward}.")
778 (license license:gpl3+)))
779
780 (define-public emacs-relint
781 (package
782 (name "emacs-relint")
783 (version "1.6")
784 (source
785 (origin
786 (method url-fetch)
787 (uri (string-append
788 "https://elpa.gnu.org/packages/relint-" version ".el"))
789 (sha256
790 (base32
791 "17nyy3zqpqgs22lrrpdm0k56xnhj5l3y2y3lnmhcqw63xksgbsyk"))))
792 (build-system emacs-build-system)
793 (propagated-inputs `(("emacs-xr" ,emacs-xr)))
794 (home-page "https://github.com/mattiase/relint")
795 (synopsis "Elisp regexp mistake finder")
796 (description
797 "Relint (regular expression lint) scans Elisp files for mistakes in
798 regexps, including deprecated syntax and bad practice. It also checks the
799 regexp-like arguments to @code{skip-chars-forward} and
800 @code{skip-chars-backward}.")
801 (license license:gpl3+)))
802
803 \f
804 ;;;
805 ;;; Web browsing.
806 ;;;
807
808 (define-public emacs-w3m
809 ;; Emacs-w3m follows a "rolling release" model.
810 (package
811 (name "emacs-w3m")
812 (version "2018-11-11")
813 (source (origin
814 (method cvs-fetch)
815 (uri (cvs-reference
816 (root-directory
817 ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot")
818 (module "emacs-w3m")
819 (revision version)))
820 (file-name (string-append name "-" version "-checkout"))
821 (sha256
822 (base32
823 "0nvahdbjs12zg7zsk4gql02mvnv56cf1rwj2f5p42lwp3xvswiwp"))))
824 (build-system gnu-build-system)
825 (native-inputs `(("autoconf" ,autoconf)
826 ("texinfo" ,texinfo)
827 ("emacs" ,emacs-minimal)))
828 (inputs `(("w3m" ,w3m)
829 ("imagemagick" ,imagemagick)))
830 (arguments
831 `(#:modules ((guix build gnu-build-system)
832 (guix build utils)
833 (guix build emacs-utils))
834 #:imported-modules (,@%gnu-build-system-modules
835 (guix build emacs-utils))
836 #:configure-flags
837 (let ((out (assoc-ref %outputs "out")))
838 (list (string-append "--with-lispdir="
839 out "/share/emacs/site-lisp")
840 (string-append "--with-icondir="
841 out "/share/images/emacs-w3m")
842 ;; Leave .el files uncompressed, otherwise GC can't
843 ;; identify run-time dependencies. See
844 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
845 "--without-compress-install"))
846 #:tests? #f ; no check target
847 #:phases
848 (modify-phases %standard-phases
849 (add-after 'unpack 'autoconf
850 (lambda _
851 (invoke "autoconf")))
852 (add-before 'configure 'support-emacs!
853 (lambda _
854 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
855 ;; unsupported.
856 (substitute* "configure"
857 (("EMACS_FLAVOR=unsupported")
858 "EMACS_FLAVOR=emacs"))
859 #t))
860 (add-before 'build 'patch-exec-paths
861 (lambda* (#:key inputs outputs #:allow-other-keys)
862 (let ((out (assoc-ref outputs "out"))
863 (w3m (assoc-ref inputs "w3m"))
864 (imagemagick (assoc-ref inputs "imagemagick"))
865 (coreutils (assoc-ref inputs "coreutils")))
866 (make-file-writable "w3m.el")
867 (emacs-substitute-variables "w3m.el"
868 ("w3m-command" (string-append w3m "/bin/w3m"))
869 ("w3m-touch-command"
870 (string-append coreutils "/bin/touch"))
871 ("w3m-icon-directory"
872 (string-append out "/share/images/emacs-w3m")))
873 (make-file-writable "w3m-image.el")
874 (emacs-substitute-variables "w3m-image.el"
875 ("w3m-imagick-convert-program"
876 (string-append imagemagick "/bin/convert"))
877 ("w3m-imagick-identify-program"
878 (string-append imagemagick "/bin/identify")))
879 #t)))
880 (replace 'install
881 (lambda* (#:key outputs #:allow-other-keys)
882 (invoke "make" "install" "install-icons")
883 (with-directory-excursion
884 (string-append (assoc-ref outputs "out")
885 "/share/emacs/site-lisp")
886 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
887 (symlink "w3m-load.el" "w3m-autoloads.el")
888 #t))))))
889 (home-page "http://emacs-w3m.namazu.org/")
890 (synopsis "Simple Web browser for Emacs based on w3m")
891 (description
892 "Emacs-w3m is an emacs interface for the w3m web browser.")
893 (license license:gpl2+)))
894
895 (define-public emacs-wget
896 (package
897 (name "emacs-wget")
898 (version "0.5.0")
899 (source (origin
900 (method url-fetch)
901 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
902 version ".orig.tar.gz"))
903 (sha256
904 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
905 (build-system gnu-build-system)
906 (inputs `(("wget" ,wget)))
907 (native-inputs `(("emacs" ,emacs-minimal)))
908 (arguments
909 `(#:modules ((guix build gnu-build-system)
910 (guix build utils)
911 (guix build emacs-utils))
912 #:imported-modules (,@%gnu-build-system-modules
913 (guix build emacs-utils))
914 #:tests? #f ; no check target
915 #:phases
916 (modify-phases %standard-phases
917 (replace 'configure
918 (lambda* (#:key outputs #:allow-other-keys)
919 (substitute* "Makefile"
920 (("/usr/local") (assoc-ref outputs "out"))
921 (("/site-lisp/emacs-wget") "/site-lisp"))
922 #t))
923 (add-before 'build 'patch-exec-paths
924 (lambda* (#:key inputs outputs #:allow-other-keys)
925 (let ((wget (assoc-ref inputs "wget")))
926 (emacs-substitute-variables "wget.el"
927 ("wget-command" (string-append wget "/bin/wget"))))
928 #t))
929 (add-after 'install 'post-install
930 (lambda* (#:key outputs #:allow-other-keys)
931 (emacs-generate-autoloads
932 "wget" (string-append (assoc-ref outputs "out")
933 "/share/emacs/site-lisp/"))
934 #t)))))
935 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
936 (synopsis "Simple file downloader for Emacs based on wget")
937 (description
938 "Emacs-wget is an emacs interface for the wget file downloader.")
939 (license license:gpl2+)))
940
941 \f
942 ;;;
943 ;;; Multimedia.
944 ;;;
945
946 (define-public emacs-emms
947 (package
948 (name "emacs-emms")
949 (version "5.1")
950 (source (origin
951 (method url-fetch)
952 (uri (string-append "mirror://gnu/emms/emms-"
953 version ".tar.gz"))
954 (sha256
955 (base32
956 "149ddczyx6x10zn4mn8g0rll1rwf4yciv8x6j0qdnlbwszblx2x6"))
957 (modules '((guix build utils)))
958 (snippet
959 '(begin
960 (substitute* "Makefile"
961 (("/usr/bin/install-info")
962 ;; No need to use 'install-info' since it would create a
963 ;; useless 'dir' file.
964 "true")
965 (("^INFODIR=.*")
966 ;; Install Info files to $out/share/info, not $out/info.
967 "INFODIR := $(PREFIX)/share/info\n")
968 (("/site-lisp/emms")
969 ;; Install directly in share/emacs/site-lisp, not in a
970 ;; sub-directory.
971 "/site-lisp")
972 (("^all: (.*)\n" _ rest)
973 ;; Build 'emms-print-metadata'.
974 (string-append "all: " rest " emms-print-metadata\n")))
975 #t))))
976 (build-system gnu-build-system)
977 (arguments
978 `(#:modules ((guix build gnu-build-system)
979 (guix build utils)
980 (guix build emacs-utils)
981 (ice-9 ftw))
982 #:imported-modules (,@%gnu-build-system-modules
983 (guix build emacs-utils))
984
985 #:phases
986 (modify-phases %standard-phases
987 (replace 'configure
988 (lambda* (#:key inputs outputs #:allow-other-keys)
989 (let ((out (assoc-ref outputs "out"))
990 (flac (assoc-ref inputs "flac"))
991 (vorbis (assoc-ref inputs "vorbis-tools"))
992 (alsa (assoc-ref inputs "alsa-utils"))
993 (mpg321 (assoc-ref inputs "mpg321"))
994 (mp3info (assoc-ref inputs "mp3info"))
995 (mutagen (assoc-ref inputs "mutagen"))
996 (opus (assoc-ref inputs "opus-tools")))
997 ;; Specify the installation directory.
998 (substitute* "Makefile"
999 (("PREFIX=.*$")
1000 (string-append "PREFIX := " out "\n")))
1001
1002 (setenv "SHELL" (which "sh"))
1003 (setenv "CC" "gcc")
1004
1005 ;; Specify the absolute file names of the various
1006 ;; programs so that everything works out-of-the-box.
1007 (with-directory-excursion "lisp"
1008 (emacs-substitute-variables
1009 "emms-player-mpg321-remote.el"
1010 ("emms-player-mpg321-remote-command"
1011 (string-append mpg321 "/bin/mpg321")))
1012 (substitute* "emms-player-simple.el"
1013 (("\"ogg123\"")
1014 (string-append "\"" vorbis "/bin/ogg123\"")))
1015 (substitute* "emms-player-simple.el"
1016 (("\"mpg321\"")
1017 (string-append "\"" mpg321 "/bin/mpg321\"")))
1018 (emacs-substitute-variables "emms-info-ogginfo.el"
1019 ("emms-info-ogginfo-program-name"
1020 (string-append vorbis "/bin/ogginfo")))
1021 (emacs-substitute-variables "emms-info-opusinfo.el"
1022 ("emms-info-opusinfo-program-name"
1023 (string-append opus "/bin/opusinfo")))
1024 (emacs-substitute-variables "emms-info-libtag.el"
1025 ("emms-info-libtag-program-name"
1026 (string-append out "/bin/emms-print-metadata")))
1027 (emacs-substitute-variables "emms-info-mp3info.el"
1028 ("emms-info-mp3info-program-name"
1029 (string-append mp3info "/bin/mp3info")))
1030 (emacs-substitute-variables "emms-info-metaflac.el"
1031 ("emms-info-metaflac-program-name"
1032 (string-append flac "/bin/metaflac")))
1033 (emacs-substitute-variables "emms-source-file.el"
1034 ("emms-source-file-gnu-find" (which "find")))
1035 (substitute* "emms-volume-amixer.el"
1036 (("\"amixer\"")
1037 (string-append "\"" alsa "/bin/amixer\"")))
1038 (substitute* "emms-tag-editor.el"
1039 (("\"mid3v2\"")
1040 (string-append "\"" mutagen "/bin/mid3v2\"")))
1041 #t))))
1042 (add-before 'install 'pre-install
1043 (lambda* (#:key outputs #:allow-other-keys)
1044 ;; The 'install' rule expects the target directories to exist.
1045 (let* ((out (assoc-ref outputs "out"))
1046 (bin (string-append out "/bin"))
1047 (man1 (string-append out "/share/man/man1")))
1048 (mkdir-p bin)
1049 (mkdir-p man1)
1050
1051 ;; Ensure that files are not rejected by gzip
1052 (let ((early-1980 315619200)) ; 1980-01-02 UTC
1053 (ftw "." (lambda (file stat flag)
1054 (unless (<= early-1980 (stat:mtime stat))
1055 (utime file early-1980 early-1980))
1056 #t)))
1057 #t)))
1058 (add-after 'install 'post-install
1059 (lambda* (#:key outputs #:allow-other-keys)
1060 (let ((out (assoc-ref outputs "out")))
1061 (symlink "emms-auto.el"
1062 (string-append out "/share/emacs/site-lisp/"
1063 "emms-autoloads.el")))
1064 #t)))
1065 #:tests? #f))
1066 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
1067 ("texinfo" ,texinfo)))
1068 (inputs `(("alsa-utils" ,alsa-utils)
1069 ("flac" ,flac) ;for metaflac
1070 ("vorbis-tools" ,vorbis-tools)
1071 ("mpg321" ,mpg321)
1072 ("taglib" ,taglib)
1073 ("mp3info" ,mp3info)
1074 ("mutagen" ,python-mutagen)
1075 ("opus-tools" ,opus-tools)))
1076 (properties '((upstream-name . "emms")))
1077 (synopsis "Emacs Multimedia System")
1078 (description
1079 "EMMS is the Emacs Multimedia System. It is a small front-end which
1080 can control one of the supported external players. Thus, it supports
1081 whatever formats are supported by your music player. It also
1082 supports tagging and playlist management, all behind a clean and
1083 light user interface.")
1084 (home-page "https://www.gnu.org/software/emms/")
1085 (license license:gpl3+)))
1086
1087 (define-public emacs-emms-player-mpv
1088 ;; A new mpv backend is included in Emms from 5.0.
1089 (deprecated-package "emacs-emms-player-mpv" emacs-emms))
1090
1091 (define-public emacs-emms-mode-line-cycle
1092 (package
1093 (name "emacs-emms-mode-line-cycle")
1094 (version "0.2.5")
1095 (source
1096 (origin
1097 (method git-fetch)
1098 (uri (git-reference
1099 (url "https://github.com/momomo5717/emms-mode-line-cycle")
1100 (commit version)))
1101 (file-name (git-file-name name version))
1102 (sha256
1103 (base32
1104 "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"))))
1105 (build-system emacs-build-system)
1106 (propagated-inputs
1107 `(("emms" ,emacs-emms)))
1108 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1109 (synopsis "Display the EMMS mode line as a ticker")
1110 (description
1111 "This is a minor mode for updating the EMMS mode-line string cyclically
1112 within a specified width. It is useful for displaying long track titles.")
1113 (license license:gpl3+)))
1114
1115 \f
1116 ;;;
1117 ;;; Miscellaneous.
1118 ;;;
1119
1120 (define-public emacs-bbdb
1121 (package
1122 (name "emacs-bbdb")
1123 (version "3.1.2")
1124 (source (origin
1125 (method url-fetch)
1126 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1127 version ".tar.gz"))
1128 (sha256
1129 (base32
1130 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1131 (modules '((guix build utils)))
1132 (snippet
1133 ;; We don't want to build and install the PDF.
1134 '(begin
1135 (substitute* "doc/Makefile.in"
1136 (("^doc_DATA = .*$")
1137 "doc_DATA =\n"))
1138 #t))))
1139 (build-system gnu-build-system)
1140 (arguments
1141 '(#:phases
1142 (modify-phases %standard-phases
1143 (add-after 'install 'post-install
1144 (lambda* (#:key outputs #:allow-other-keys)
1145 ;; Add an autoloads file with the right name for guix.el.
1146 (let* ((out (assoc-ref outputs "out"))
1147 (site (string-append out "/share/emacs/site-lisp")))
1148 (with-directory-excursion site
1149 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1150 #t)))))
1151 (native-inputs `(("emacs" ,emacs-minimal)))
1152 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1153 (synopsis "Contact management utility for Emacs")
1154 (description
1155 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1156 an address book for email and snail mail addresses, phone numbers and the
1157 like. It can be linked with various Emacs mail clients (Message and Mail
1158 mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1159 (license license:gpl3+)))
1160
1161 (define-public bbdb
1162 (deprecated-package "bbdb" emacs-bbdb))
1163
1164 (define-public emacs-aggressive-indent
1165 (package
1166 (name "emacs-aggressive-indent")
1167 (version "1.8.3")
1168 (source (origin
1169 (method url-fetch)
1170 (uri (string-append "https://elpa.gnu.org/packages/"
1171 "aggressive-indent-" version ".el"))
1172 (sha256
1173 (base32
1174 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1175 (build-system emacs-build-system)
1176 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1177 (synopsis "Minor mode to aggressively keep your code always indented")
1178 (description
1179 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1180 always indented. It reindents after every change, making it more reliable
1181 than @code{electric-indent-mode}.")
1182 (license license:gpl2+)))
1183
1184 (define-public emacs-link-hint
1185 ;; Last release was in 2015.
1186 (let ((commit "d74a483652486260c052941fedeadddb1ea71f88")
1187 (revision "1"))
1188 (package
1189 (name "emacs-link-hint")
1190 (version (git-version "0.1" revision commit))
1191 (source
1192 (origin
1193 (method git-fetch)
1194 (uri (git-reference
1195 (url "https://github.com/noctuid/link-hint.el")
1196 (commit commit)))
1197 (file-name (git-file-name name version))
1198 (sha256
1199 (base32
1200 "0dghxd165fbds6czy9bfwpid3i4irgp3q08n9mg57sfifi0cmij0"))))
1201 (build-system emacs-build-system)
1202 (propagated-inputs
1203 `(("emacs-avy" ,emacs-avy)))
1204 (home-page "https://github.com/noctuid/link-hint.el")
1205 (synopsis "Vimperator-style link-hinting in Emacs")
1206 (description "This package provides commands for visiting and acting on
1207 links.")
1208 (license license:gpl3+))))
1209
1210 (define-public emacs-ag
1211 (package
1212 (name "emacs-ag")
1213 (version "0.47")
1214 (source (origin
1215 (method git-fetch)
1216 (uri (git-reference
1217 (url "https://github.com/Wilfred/ag.el.git")
1218 (commit version)))
1219 (file-name (git-file-name name version))
1220 (sha256
1221 (base32
1222 "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r"))))
1223 (build-system emacs-build-system)
1224 (arguments
1225 `(#:phases
1226 (modify-phases %standard-phases
1227 (add-before 'install 'make-info
1228 (lambda _
1229 (with-directory-excursion "docs"
1230 (invoke "make" "info"))))
1231 (add-after 'install 'install-info
1232 (lambda* (#:key outputs #:allow-other-keys)
1233 (let* ((out (assoc-ref outputs "out"))
1234 (info (string-append out "/share/info")))
1235 (install-file "docs/_build/texinfo/agel.info" info)
1236 #t))))))
1237 (native-inputs
1238 `(("python-sphinx" ,python-sphinx)
1239 ("texinfo" ,texinfo)))
1240 (propagated-inputs
1241 `(("dash" ,emacs-dash)
1242 ("s" ,emacs-s)
1243 ;; We need to use 'ag' as the executable on remote systems.
1244 ("the-silver-searcher" ,the-silver-searcher)))
1245 (home-page "https://github.com/Wilfred/ag.el")
1246 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1247 (description "This package provides the ability to use the silver
1248 searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1249 include version control system awareness, use of Perl compatible regular
1250 expressions, editing the search results directly and searching file names
1251 rather than the contents of files.")
1252 (license license:gpl3+)))
1253
1254 (define-public emacs-async
1255 (package
1256 (name "emacs-async")
1257 (home-page "https://github.com/jwiegley/emacs-async")
1258 (version "1.9.3")
1259 (source (origin
1260 (method git-fetch)
1261 (uri (git-reference
1262 (url home-page)
1263 (commit (string-append "v" version))))
1264 (file-name (git-file-name name version))
1265 (sha256
1266 (base32
1267 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
1268 (build-system emacs-build-system)
1269 (synopsis "Asynchronous processing in Emacs")
1270 (description
1271 "This package provides the ability to call asynchronous functions and
1272 processes. For example, it can be used to run dired commands (for copying,
1273 moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1274 as a library for other Emacs packages.")
1275 (license license:gpl3+)))
1276
1277 (define-public emacs-auctex
1278 (package
1279 (name "emacs-auctex")
1280 (version "12.1.0")
1281 (source
1282 (origin
1283 (method url-fetch)
1284 (uri (string-append
1285 "https://elpa.gnu.org/packages/auctex-"
1286 version
1287 ".tar"))
1288 (sha256
1289 (base32
1290 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1291 (build-system emacs-build-system)
1292 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1293 ;; ('emacs-minimal' does not provide dbus).
1294 (arguments
1295 `(#:emacs ,emacs
1296 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1297 #:exclude '("^tests/" "^latex/README")))
1298 (native-inputs
1299 `(("perl" ,perl)))
1300 (home-page "https://www.gnu.org/software/auctex/")
1301 (synopsis "Integrated environment for TeX")
1302 (description
1303 "AUCTeX is a comprehensive customizable integrated environment for
1304 writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1305 or XEmacs.")
1306 (license license:gpl3+)))
1307
1308 (define-public emacs-autothemer
1309 (package
1310 (name "emacs-autothemer")
1311 (version "0.2.2")
1312 (source
1313 (origin
1314 (method git-fetch)
1315 (uri (git-reference
1316 (url "https://github.com/sebastiansturm/autothemer.git")
1317 (commit version)))
1318 (file-name (git-file-name name version))
1319 (sha256
1320 (base32
1321 "0cd2pqh6k32sjidkcd8682y4l6mx52xw4a05f38kk8nsrk28m74k"))))
1322 (build-system emacs-build-system)
1323 (propagated-inputs
1324 `(("emacs-dash" ,emacs-dash)))
1325 (home-page "https://github.com/sebastiansturm/autothemer")
1326 (synopsis "Conveniently create Emacs themes")
1327 (description
1328 "Autothemer provides a thin layer on top of @code{deftheme} and
1329 @code{custom-theme-set-faces} that creates a new custom color theme, based on
1330 a set of simplified face specifications and a user-supplied color palette")
1331 (license license:gpl3+)))
1332
1333 (define-public emacs-howm
1334 (package
1335 (name "emacs-howm")
1336 (version "1.4.4")
1337 (source
1338 (origin
1339 (method url-fetch)
1340 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1341 version ".tar.gz"))
1342 (sha256
1343 (base32
1344 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1345 (build-system gnu-build-system)
1346 (native-inputs
1347 `(("emacs" ,emacs-minimal)))
1348 (arguments
1349 `(#:configure-flags
1350 (list (string-append "--with-howmdir=" %output
1351 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1352 #:modules ((guix build gnu-build-system)
1353 ((guix build emacs-build-system) #:prefix emacs:)
1354 (guix build utils))
1355 #:imported-modules (,@%gnu-build-system-modules
1356 (guix build emacs-build-system)
1357 (guix build emacs-utils))
1358 #:phases
1359 (modify-phases %standard-phases
1360 (add-after 'install 'make-autoloads
1361 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1362 (home-page "http://howm.osdn.jp/")
1363 (synopsis "Note-taking tool for Emacs")
1364 (description "Howm is a note-taking tool for Emacs. Like
1365 code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1366 searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1367 (license license:gpl1+)))
1368
1369 (define-public emacs-calfw
1370 (package
1371 (name "emacs-calfw")
1372 (version "1.6")
1373 (source
1374 (origin
1375 (method git-fetch)
1376 (uri (git-reference
1377 (url "https://github.com/kiwanami/emacs-calfw.git")
1378 (commit (string-append "v" version))))
1379 (file-name (git-file-name name version))
1380 (sha256
1381 (base32
1382 "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa"))))
1383 (build-system emacs-build-system)
1384 (propagated-inputs
1385 `(("emacs-howm" ,emacs-howm)))
1386 (home-page "https://github.com/kiwanami/emacs-calfw/")
1387 (synopsis "Calendar framework for Emacs")
1388 (description
1389 "This package displays a calendar view with various schedule data in the
1390 Emacs buffer.")
1391 (license license:gpl3+)))
1392
1393 (define-public emacs-direnv
1394 (package
1395 (name "emacs-direnv")
1396 (version "1.2.0")
1397 (source
1398 (origin
1399 (method git-fetch)
1400 (uri (git-reference
1401 (url "https://github.com/wbolster/emacs-direnv.git")
1402 (commit version)))
1403 (file-name (git-file-name name version))
1404 (sha256
1405 (base32
1406 "172jyl8v4zy9bbha8nndq63x8svn9xqkafkj3q17z289na8iaylh"))))
1407 (build-system emacs-build-system)
1408 (propagated-inputs
1409 `(("dash" ,emacs-dash)
1410 ("with-editor" ,emacs-with-editor)))
1411 (home-page "https://github.com/wbolster/emacs-direnv")
1412 (synopsis "Direnv integration for Emacs")
1413 (description
1414 "This package provides support for invoking direnv to get the environment
1415 for the current file and updating the environment within Emacs to match.
1416
1417 Direnv can be invoked manually, and a global minor mode is included that will
1418 update the environment when the active buffer changes.
1419
1420 Using emacs-direnv means that programs started from Emacs will use the
1421 environment set through Direnv.")
1422 (license license:gpl3+)))
1423
1424 (define-public emacs-ggtags
1425 (package
1426 (name "emacs-ggtags")
1427 (version "0.8.13")
1428 (source
1429 (origin
1430 (method url-fetch)
1431 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1432 version ".el"))
1433 (sha256
1434 (base32
1435 "1qa7lcrcmf76sf6dy8sxbg4adq7rg59fm0n5848w3qxgsr0h45fg"))))
1436 (build-system emacs-build-system)
1437 (inputs
1438 `(("global" ,global)))
1439 (arguments
1440 `(#:phases
1441 (modify-phases %standard-phases
1442 (add-after 'unpack 'configure
1443 (lambda* (#:key inputs #:allow-other-keys)
1444 (chmod "ggtags.el" #o644)
1445 (emacs-substitute-variables "ggtags.el"
1446 ("ggtags-executable-directory"
1447 (string-append (assoc-ref inputs "global") "/bin")))
1448 #t)))))
1449 (home-page "https://github.com/leoliu/ggtags")
1450 (synopsis "Frontend to the GNU Global source code tagging system")
1451 (description "@code{ggtags} provides a frontend to the GNU Global source
1452 code tagging system.
1453
1454 Features:
1455
1456 @itemize
1457 @item Build on @code{compile.el} for asynchronicity and its large feature-set.
1458 @item Automatically update Global's tag files when needed with tuning for
1459 large source trees.
1460 @item Intuitive navigation among multiple matches with mode-line display of
1461 current match, total matches and exit status.
1462 @item Read tag with completion.
1463 @item Show definition at point.
1464 @item Jump to #include files.
1465 @item Support search history and saving a search to register/bookmark.
1466 @item Query replace.
1467 @item Manage Global's environment variables on a per-project basis.
1468 @item Highlight (definition) tag at point.
1469 @item Abbreviated display of file names.
1470 @item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1471 @item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1472 @code{pygments} backend.
1473 @item Support all Global's output formats: @code{grep}, @code{ctags-x},
1474 @code{cscope} etc.
1475 @item Support projects on remote hosts (e.g. via @code{tramp}).
1476 @item Support eldoc.
1477 @item Search @code{GTAGSLIBPATH} for references and symbols.
1478 @end itemize\n")
1479 (license license:gpl3+)))
1480
1481 (define-public emacs-go-mode
1482 (package
1483 (name "emacs-go-mode")
1484 (version "1.5.0")
1485 (source (origin
1486 (method git-fetch)
1487 (uri (git-reference
1488 (url "https://github.com/dominikh/go-mode.el.git")
1489 (commit (string-append "v" version))))
1490 (file-name (git-file-name name version))
1491 (sha256
1492 (base32
1493 "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"))))
1494 (build-system emacs-build-system)
1495 (arguments
1496 `(#:phases
1497 (modify-phases %standard-phases
1498 (add-after 'unpack 'make-writable
1499 (lambda _
1500 (for-each make-file-writable (find-files "." "\\.el$"))
1501 #t)))))
1502 (home-page "https://github.com/dominikh/go-mode.el")
1503 (synopsis "Go mode for Emacs")
1504 (description
1505 "This package provides go-mode, an Emacs mode for working with software
1506 written in the Go programming language.")
1507 (license license:bsd-3)))
1508
1509 (define-public emacs-google-maps
1510 (package
1511 (name "emacs-google-maps")
1512 (version "1.0.0")
1513 (source (origin
1514 (method git-fetch)
1515 (uri (git-reference
1516 (url "https://github.com/jd/google-maps.el.git")
1517 (commit version)))
1518 (file-name (git-file-name name version))
1519 (sha256
1520 (base32
1521 "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"))))
1522 (build-system emacs-build-system)
1523 (home-page "https://github.com/jd/google-maps.el")
1524 (synopsis "Access Google Maps from Emacs")
1525 (description "The @code{google-maps} package allows to display Google
1526 Maps directly inside Emacs.")
1527 (license license:gpl3+)))
1528
1529 (define-public emacs-graphviz-dot-mode
1530 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1531 (revision "1"))
1532 (package
1533 (name "emacs-graphviz-dot-mode")
1534 (version (string-append "0.3.11-" revision "."
1535 (string-take commit 7)))
1536 (source (origin
1537 (method git-fetch)
1538 (uri (git-reference
1539 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1540 (commit commit)))
1541 (file-name (git-file-name name version))
1542 (sha256
1543 (base32
1544 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1545 (build-system emacs-build-system)
1546 (arguments
1547 `(#:phases
1548 (modify-phases %standard-phases
1549 (add-before 'install 'make-info
1550 (lambda* (#:key inputs #:allow-other-keys)
1551 (with-directory-excursion "texinfo"
1552 (substitute* "Makefile"
1553 (("\\/usr\\/bin\\/gzip")
1554 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1555 (invoke "make"
1556 "clean"
1557 "info"
1558 (string-append "TEXINFODIR="
1559 (assoc-ref inputs "texinfo")
1560 "/bin")))))
1561 (add-after 'install 'install-info
1562 (lambda* (#:key outputs #:allow-other-keys)
1563 (let* ((out (assoc-ref outputs "out"))
1564 (info (string-append out "/share/info")))
1565 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1566 #t))))))
1567 (native-inputs
1568 `(("texinfo" ,texinfo)
1569 ("gzip" ,gzip)))
1570 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1571 (synopsis "Major mode for editing Graphviz Dot files")
1572 (description
1573 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1574 files using the dot syntax, and use Graphviz to convert these files to
1575 diagrams.")
1576 (license license:gpl2+))))
1577
1578 (define-public emacs-mmm-mode
1579 (package
1580 (name "emacs-mmm-mode")
1581 (version "0.5.7")
1582 (source
1583 (origin
1584 (method git-fetch)
1585 (uri (git-reference
1586 (url "https://github.com/purcell/mmm-mode.git")
1587 (commit version)))
1588 (file-name (git-file-name name version))
1589 (sha256
1590 (base32
1591 "0lxd55yhz0ag7v1ydff55bg4h8snq5lbk8cjwxqpyq6gh4v7md1h"))))
1592 (build-system gnu-build-system)
1593 (native-inputs
1594 `(("autoconf" ,autoconf)
1595 ("automake" ,automake)
1596 ("emacs" ,emacs-minimal)
1597 ("texinfo" ,texinfo)))
1598 (home-page "https://github.com/purcell/mmm-mode")
1599 (synopsis "Allow multiple major modes in an Emacs buffer")
1600 (description
1601 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1602 single buffer.")
1603 (license license:gpl3+)))
1604
1605 (define-public emacs-tablist
1606 (package
1607 (name "emacs-tablist")
1608 (version "0.70")
1609 (source (origin
1610 (method git-fetch)
1611 (uri (git-reference
1612 (url "https://github.com/politza/tablist.git")
1613 (commit (string-append "v" version))))
1614 (file-name (git-file-name name version))
1615 (sha256
1616 (base32
1617 "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"))))
1618 (build-system emacs-build-system)
1619 (home-page "https://github.com/politza/tablist")
1620 (synopsis "Extension for @code{tabulated-list-mode}")
1621 (description "Tablist is the Emacs package that provides several
1622 additional features to @code{tabulated-list-mode}: it adds marks,
1623 filters, new key bindings and faces. It can be enabled by
1624 @code{tablist-mode} or @code{tablist-minor-mode} commands.")
1625 (license license:gpl3+)))
1626
1627 (define-public emacs-pdf-tools
1628 (package
1629 (name "emacs-pdf-tools")
1630 (version "0.90")
1631 (home-page "https://github.com/politza/pdf-tools")
1632 (source (origin
1633 (method git-fetch)
1634 (uri (git-reference (url home-page)
1635 (commit (string-append "v" version))))
1636 (file-name (git-file-name name version))
1637 (sha256
1638 (base32
1639 "0iv2g5kd14zk3r5dzdw7b7hk4b5w7qpbilcqkja46jgxbb6xnpl9"))))
1640 (build-system gnu-build-system)
1641 (arguments
1642 `(#:tests? #f ; there are no tests
1643 #:modules ((guix build gnu-build-system)
1644 ((guix build emacs-build-system) #:prefix emacs:)
1645 (guix build utils)
1646 (guix build emacs-utils))
1647 #:imported-modules (,@%gnu-build-system-modules
1648 (guix build emacs-build-system)
1649 (guix build emacs-utils))
1650 #:phases
1651 (modify-phases %standard-phases
1652 ;; Build server side using 'gnu-build-system'.
1653 (add-after 'unpack 'enter-server-dir
1654 (lambda _ (chdir "server") #t))
1655 (add-after 'enter-server-dir 'autogen
1656 (lambda _
1657 (invoke "bash" "autogen.sh")))
1658
1659 ;; Build emacs side using 'emacs-build-system'.
1660 (add-after 'compress-documentation 'enter-lisp-dir
1661 (lambda _ (chdir "../lisp") #t))
1662 (add-after 'enter-lisp-dir 'emacs-patch-variables
1663 (lambda* (#:key outputs #:allow-other-keys)
1664 (for-each make-file-writable (find-files "."))
1665
1666 ;; Set path to epdfinfo program.
1667 (emacs-substitute-variables "pdf-info.el"
1668 ("pdf-info-epdfinfo-program"
1669 (string-append (assoc-ref outputs "out")
1670 "/bin/epdfinfo")))
1671 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1672 ;; upgrading" that pdf-tools tries to perform.
1673 (emacs-substitute-variables "pdf-tools.el"
1674 ("pdf-tools-handle-upgrades" '()))))
1675 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1676 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1677 (add-after 'emacs-set-emacs-load-path 'emacs-install
1678 (assoc-ref emacs:%standard-phases 'install))
1679 (add-after 'emacs-install 'emacs-build
1680 (assoc-ref emacs:%standard-phases 'build))
1681 (add-after 'emacs-install 'emacs-make-autoloads
1682 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1683 (native-inputs `(("autoconf" ,autoconf)
1684 ("automake" ,automake)
1685 ("pkg-config" ,pkg-config)
1686 ("emacs" ,emacs-minimal)))
1687 (inputs `(("poppler" ,poppler)
1688 ("cairo" ,cairo)
1689 ("glib" ,glib)
1690 ("libpng" ,libpng)
1691 ("zlib" ,zlib)))
1692 (propagated-inputs `(("tablist" ,emacs-tablist)))
1693 (synopsis "Emacs support library for PDF files")
1694 (description
1695 "PDF Tools is, among other things, a replacement of DocView for PDF
1696 files. The key difference is that pages are not pre-rendered by
1697 e.g. ghostscript and stored in the file-system, but rather created on-demand
1698 and stored in memory.")
1699 (license license:gpl3+)))
1700
1701 (define-public emacs-dash
1702 (package
1703 (name "emacs-dash")
1704 (version "2.15.0")
1705 (source (origin
1706 (method git-fetch)
1707 (uri (git-reference
1708 (url "https://github.com/magnars/dash.el.git")
1709 (commit version)))
1710 (file-name (git-file-name name version))
1711 (sha256
1712 (base32
1713 "0dx8q3jr8fh73cfl7mqi5dq0012ambpvc74d2c71fsv9rfw85693"))))
1714 (build-system emacs-build-system)
1715 (arguments
1716 `(#:tests? #t
1717 #:test-command '("./run-tests.sh")))
1718 (home-page "https://github.com/magnars/dash.el")
1719 (synopsis "Modern list library for Emacs")
1720 (description "This package provides a modern list API library for Emacs.")
1721 (license license:gpl3+)))
1722
1723 (define-public emacs-bui
1724 (package
1725 (name "emacs-bui")
1726 (version "1.2.1")
1727 (source (origin
1728 (method git-fetch)
1729 (uri (git-reference
1730 (url "https://notabug.org/alezost/emacs-bui.git")
1731 (commit (string-append "v" version))))
1732 (file-name (git-file-name name version))
1733 (sha256
1734 (base32
1735 "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"))))
1736 (build-system emacs-build-system)
1737 (propagated-inputs
1738 `(("dash" ,emacs-dash)))
1739 (home-page "https://notabug.org/alezost/emacs-bui")
1740 (synopsis "Buffer interface library for Emacs")
1741 (description
1742 "BUI (Buffer User Interface) is a library for making @code{list} and
1743 @code{info} interfaces to display an arbitrary data of the same
1744 type, for example: packages, buffers, files, etc.")
1745 (license license:gpl3+)))
1746
1747 (define-public emacs-guix
1748 (package
1749 (name "emacs-guix")
1750 (version "0.5.1.1")
1751 (source (origin
1752 (method url-fetch)
1753 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1754 "releases/emacs-guix-" version ".tar.gz"))
1755 (sha256
1756 (base32
1757 "1gxg7lan3njc2yg2d02b2zij0d2cm2pv2q08nqz86s85jk3b6m03"))))
1758 (build-system gnu-build-system)
1759 (arguments
1760 `(#:configure-flags
1761 (let ((guix (assoc-ref %build-inputs "guix"))
1762 (gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
1763 (geiser (assoc-ref %build-inputs "geiser"))
1764 (dash (assoc-ref %build-inputs "dash"))
1765 (bui (assoc-ref %build-inputs "bui"))
1766 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1767 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
1768 (site-lisp "/share/emacs/site-lisp")
1769 (site-scm "/share/guile/site")
1770 (site-go "/lib/guile")
1771 (guile-dir (lambda (dir)
1772 (car (find-files dir
1773 (lambda (file stat)
1774 (string-prefix?
1775 "2." (basename file)))
1776 #:directories? #t)))))
1777 (list (string-append "--with-guix-site-dir="
1778 (guile-dir (string-append guix site-scm)))
1779 (string-append "--with-guix-site-ccache-dir="
1780 (guile-dir (string-append guix site-go))
1781 "/site-ccache")
1782 (string-append "--with-guile-gcrypt-site-dir="
1783 (guile-dir (string-append gcrypt site-scm)))
1784 (string-append "--with-guile-gcrypt-site-ccache-dir="
1785 (guile-dir (string-append gcrypt site-go))
1786 "/site-ccache")
1787 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1788 (string-append "--with-dash-lispdir="
1789 dash site-lisp "/guix.d/dash-"
1790 ,(package-version emacs-dash))
1791 (string-append "--with-bui-lispdir="
1792 bui site-lisp "/guix.d/bui-"
1793 ,(package-version emacs-bui))
1794 (string-append "--with-editindirect-lispdir="
1795 edit-indirect site-lisp "/guix.d/edit-indirect-"
1796 ,(package-version emacs-edit-indirect))
1797 (string-append "--with-popup-lispdir="
1798 magit-popup site-lisp "/guix.d/magit-popup-"
1799 ,(package-version emacs-magit-popup))))))
1800 (native-inputs
1801 `(("pkg-config" ,pkg-config)
1802 ("emacs" ,emacs-minimal)))
1803 (inputs
1804 `(("guile" ,guile-2.2)
1805 ("guix" ,guix)))
1806 (propagated-inputs
1807 `(("geiser" ,emacs-geiser)
1808 ("guile-gcrypt" ,guile-gcrypt)
1809 ("dash" ,emacs-dash)
1810 ("bui" ,emacs-bui)
1811 ("edit-indirect" ,emacs-edit-indirect)
1812 ("magit-popup" ,emacs-magit-popup)))
1813 (home-page "https://emacs-guix.gitlab.io/website/")
1814 (synopsis "Emacs interface for GNU Guix")
1815 (description
1816 "Emacs-Guix provides a visual interface, tools and features for the GNU
1817 Guix package manager. Particularly, it allows you to do various package
1818 management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1819 @code{M-x guix-help} command.")
1820 (license license:gpl3+)))
1821
1822 (define-public emacs-build-farm
1823 (package
1824 (name "emacs-build-farm")
1825 (version "0.2.2")
1826 (source (origin
1827 (method git-fetch)
1828 (uri (git-reference
1829 (url "https://notabug.org/alezost/emacs-build-farm.git")
1830 (commit (string-append "v" version))))
1831 (file-name (git-file-name name version))
1832 (sha256
1833 (base32
1834 "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"))))
1835 (build-system emacs-build-system)
1836 (propagated-inputs
1837 `(("bui" ,emacs-bui)
1838 ("magit-popup" ,emacs-magit-popup)))
1839 (home-page "https://notabug.org/alezost/emacs-build-farm")
1840 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1841 (description
1842 "This Emacs package provides an interface for Hydra and
1843 Cuirass (build farms used by Nix and Guix). It allows you to look at
1844 various data related to the build farm projects, jobsets, builds and
1845 evaluations. The entry point is @code{M-x build-farm} command.")
1846 (license license:gpl3+)))
1847
1848 (define-public emacs-d-mode
1849 (package
1850 (name "emacs-d-mode")
1851 (version "2.0.9")
1852 (source
1853 (origin
1854 (method git-fetch)
1855 (uri (git-reference
1856 (url "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode.git")
1857 (commit version)))
1858 (file-name (git-file-name name version))
1859 (sha256
1860 (base32 "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj"))))
1861 (build-system emacs-build-system)
1862 (propagated-inputs
1863 `(("emacs-undercover" ,emacs-undercover)))
1864 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1865 (synopsis "Emacs major mode for editing D code")
1866 (description "This package provides an Emacs major mode for highlighting
1867 code written in the D programming language. This mode is currently known to
1868 work with Emacs 24 and 25.")
1869 (license license:gpl2+)))
1870
1871 (define-public emacs-keyfreq
1872 (package
1873 (name "emacs-keyfreq")
1874 (version "20160516.716")
1875 (source
1876 (origin
1877 (method url-fetch)
1878 (uri (string-append "http://melpa.org/packages/keyfreq-"
1879 version ".el"))
1880 (sha256
1881 (base32
1882 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1883 (build-system emacs-build-system)
1884 (home-page "https://github.com/dacap/keyfreq")
1885 (synopsis "Track Emacs command frequencies")
1886 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1887 a command.")
1888 (license license:gpl3+)))
1889
1890 (define-public emacs-olivetti
1891 (package
1892 (name "emacs-olivetti")
1893 (version "1.5.7")
1894 (source (origin
1895 (method url-fetch)
1896 (uri (string-append
1897 "https://stable.melpa.org/packages/olivetti-"
1898 version ".el"))
1899 (sha256
1900 (base32
1901 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1902 (build-system emacs-build-system)
1903 (home-page "https://github.com/rnkn/olivetti")
1904 (synopsis "Emacs minor mode for a nice writing environment")
1905 (description "This package provides an Emacs minor mode that puts writing
1906 in the center.")
1907 (license license:gpl3+)))
1908
1909 (define-public emacs-undo-tree
1910 (package
1911 (name "emacs-undo-tree")
1912 (version "0.6.6")
1913 (source (origin
1914 (method git-fetch)
1915 (uri (git-reference
1916 (url "http://dr-qubit.org/git/undo-tree.git")
1917 (commit (string-append "release/" version))))
1918 (file-name (git-file-name name version))
1919 (sha256
1920 (base32
1921 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1922 (build-system emacs-build-system)
1923 (home-page "http://www.dr-qubit.org/emacs.php")
1924 (synopsis "Treat undo history as a tree")
1925 (description "Tree-like interface to Emacs undo system, providing
1926 graphical tree presentation of all previous states of buffer that
1927 allows easily move between them.")
1928 (license license:gpl3+)))
1929
1930 (define-public emacs-s
1931 (package
1932 (name "emacs-s")
1933 (version "1.12.0")
1934 (source (origin
1935 (method url-fetch)
1936 (uri (string-append
1937 "https://github.com/magnars/s.el/archive/"
1938 version ".tar.gz"))
1939 (file-name (string-append name "-" version ".tar.gz"))
1940 (sha256
1941 (base32
1942 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1943 (build-system emacs-build-system)
1944 (arguments
1945 `(#:tests? #t
1946 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
1947 #:test-command '("./run-tests.sh")))
1948 (home-page "https://github.com/magnars/s.el")
1949 (synopsis "Emacs string manipulation library")
1950 (description "This package provides an Emacs library for manipulating
1951 strings.")
1952 (license license:gpl3+)))
1953
1954 (define-public emacs-symon
1955 (package
1956 (name "emacs-symon")
1957 (version "20160630")
1958 (source
1959 (origin
1960 (method git-fetch)
1961 (uri (git-reference
1962 (url "https://github.com/zk-phi/symon.git")
1963 (commit version)))
1964 (file-name (git-file-name name version))
1965 (sha256
1966 (base32 "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz"))))
1967 (build-system emacs-build-system)
1968 (home-page "https://github.com/zk-phi/symon")
1969 (synopsis "Tiny graphical system monitor")
1970 (description
1971 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1972 (license license:gpl2+)))
1973
1974 (define-public emacs-sx
1975 (let ((version "20180212")
1976 (revision "1")
1977 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1978 (package
1979 (name "emacs-sx")
1980 (version (git-version version revision commit))
1981 (source
1982 (origin
1983 (method git-fetch)
1984 (uri (git-reference
1985 (url "https://github.com/vermiculus/sx.el")
1986 (commit commit)))
1987 (file-name (git-file-name name version))
1988 (sha256
1989 (base32
1990 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1991 (build-system emacs-build-system)
1992 (propagated-inputs
1993 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1994 (home-page "https://github.com/vermiculus/sx.el")
1995 (synopsis "Emacs StackExchange client")
1996 (description
1997 "Emacs StackExchange client. Ask and answer questions on
1998 Stack Overflow, Super User, and other StackExchange sites.")
1999 (license license:gpl3+))))
2000
2001 (define-public emacs-f
2002 (package
2003 (name "emacs-f")
2004 (version "0.20.0")
2005 (source (origin
2006 (method git-fetch)
2007 (uri (git-reference
2008 (url "https://github.com/rejeep/f.el.git")
2009 (commit (string-append "v" version))))
2010 (file-name (git-file-name name version))
2011 (sha256
2012 (base32
2013 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
2014 (build-system emacs-build-system)
2015 (propagated-inputs
2016 `(("emacs-s" ,emacs-s)
2017 ("emacs-dash" ,emacs-dash)))
2018 (home-page "https://github.com/rejeep/f.el")
2019 (synopsis "Emacs API for working with files and directories")
2020 (description "This package provides an Emacs library for working with
2021 files and directories.")
2022 (license license:gpl3+)))
2023
2024 (define-public emacs-git-gutter
2025 (package
2026 (name "emacs-git-gutter")
2027 (version "0.90")
2028 (source
2029 (origin
2030 (method git-fetch)
2031 (uri (git-reference
2032 (url "https://github.com/syohex/emacs-git-gutter.git")
2033 (commit version)))
2034 (file-name (git-file-name name version))
2035 (sha256
2036 (base32 "1abagq0psip7cgsqbfjv72qy60ywsny0ibsfcn74ldj6a9v17mz5"))))
2037 (build-system emacs-build-system)
2038 (home-page "https://github.com/syohex/emacs-git-gutter")
2039 (synopsis "See and manage hunks of text in a version control system")
2040 (description
2041 "This package is an Emacs minor mode for displaying and interacting with
2042 hunks of text managed in a version control system. Added modified and deleted
2043 areas can be indicated with symbols on the edge of the buffer, and commands
2044 can be used to move between and perform actions on these hunks.
2045
2046 Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
2047 display and behaviour is easily customisable.")
2048 (license license:gpl3+)))
2049
2050 (define-public emacs-git-timemachine
2051 (package
2052 (name "emacs-git-timemachine")
2053 (version "4.5")
2054 (source
2055 (origin
2056 (method url-fetch)
2057 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
2058 "/-/archive/" version
2059 "/git-timemachine-" version ".tar.gz"))
2060 (file-name (string-append name "-" version ".tar.gz"))
2061 (sha256
2062 (base32
2063 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
2064 (build-system emacs-build-system)
2065 (home-page "https://gitlab.com/pidu/git-timemachine")
2066 (synopsis "Step through historic versions of Git-controlled files")
2067 (description "This package enables you to step through historic versions
2068 of files under Git version control from within Emacs.")
2069 (license license:gpl3+)))
2070
2071 (define-public emacs-minitest
2072 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
2073 (revision "1"))
2074 (package
2075 (name "emacs-minitest")
2076 (version (git-version "0.8.0" revision commit))
2077 (source (origin
2078 (method git-fetch)
2079 (uri (git-reference
2080 (url "https://github.com/arthurnn/minitest-emacs")
2081 (commit commit)))
2082 (file-name (git-file-name name commit))
2083 (sha256
2084 (base32
2085 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
2086 (build-system emacs-build-system)
2087 (arguments
2088 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
2089 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
2090 (propagated-inputs
2091 `(("emacs-dash" ,emacs-dash)
2092 ("emacs-f" ,emacs-f)))
2093 (home-page "https://github.com/arthurnn/minitest-emacs")
2094 (synopsis "Emacs minitest mode")
2095 (description
2096 "The minitest mode provides commands to run the tests for the current
2097 file or line, as well as rerunning the previous tests, or all the tests for a
2098 project.
2099
2100 This package also includes relevant snippets for yasnippet.")
2101 (license license:expat))))
2102
2103 (define-public emacs-el-mock
2104 (package
2105 (name "emacs-el-mock")
2106 (version "1.25.1")
2107 (source
2108 (origin
2109 (method git-fetch)
2110 (uri (git-reference
2111 (url "https://github.com/rejeep/el-mock.el.git")
2112 (commit (string-append "v" version))))
2113 (file-name (git-file-name name version))
2114 (sha256
2115 (base32 "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"))))
2116 (build-system emacs-build-system)
2117 (home-page "https://github.com/rejeep/el-mock.el")
2118 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2119 (description
2120 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2121 syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2122 Expectations, but it can be used in other contexts.")
2123 (license license:gpl3+)))
2124
2125 (define-public emacs-espuds
2126 (package
2127 (name "emacs-espuds")
2128 (version "0.3.3")
2129 (source
2130 (origin
2131 (method git-fetch)
2132 (uri (git-reference
2133 (url "https://github.com/ecukes/espuds.git")
2134 (commit (string-append "v" version))))
2135 (file-name (git-file-name name version))
2136 (sha256
2137 (base32 "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"))))
2138 (build-system emacs-build-system)
2139 (propagated-inputs
2140 `(("emacs-s" ,emacs-s)
2141 ("emacs-dash" ,emacs-dash)
2142 ("emacs-f" ,emacs-f)))
2143 (home-page "https://github.com/ecukes/espuds")
2144 (synopsis "Common step definitions for Ecukes")
2145 (description "Espuds is a collection of the most commonly used step
2146 definitions for testing with the Ecukes framework.")
2147 (license license:gpl3+)))
2148
2149 (define-public emacs-spark
2150 (let ((version "20160503") ; no proper tag, use date of commit
2151 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2152 (revision "1"))
2153 (package
2154 (name "emacs-spark")
2155 (version (git-version version revision commit))
2156 (source
2157 (origin
2158 (method git-fetch)
2159 (uri (git-reference
2160 (url "https://github.com/alvinfrancis/spark.git")
2161 (commit commit)))
2162 (file-name (git-file-name name version))
2163 (sha256
2164 (base32
2165 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2166 (build-system emacs-build-system)
2167 (home-page "https://github.com/alvinfrancis/spark")
2168 (synopsis "Sparkline generation library for Emacs Lisp")
2169 (description "@code{emacs-spark} is a sparkline generation library for
2170 Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2171 port of @code{cl-spark} to Emacs Lisp.")
2172 (license license:expat))))
2173
2174 (define-public emacs-es-mode
2175 (package
2176 (name "emacs-es-mode")
2177 (version "4.3.0")
2178 (source
2179 (origin
2180 (method git-fetch)
2181 (uri (git-reference
2182 (url "https://github.com/dakrone/es-mode.git")
2183 (commit version)))
2184 (file-name (git-file-name name version))
2185 (sha256
2186 (base32 "1qhfnd5anp5qrmravv7ks5ix763xnki2f5jwcyj70qyxwr0l60cg"))))
2187 (build-system emacs-build-system)
2188 (propagated-inputs
2189 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2190 ;; to be rendered incorrectly
2191 `(("emacs-dash" ,emacs-dash)
2192 ("emacs-org" ,emacs-org)
2193 ("emacs-spark" ,emacs-spark)))
2194 (home-page "https://github.com/dakrone/es-mode")
2195 (synopsis "Major mode for editing Elasticsearch queries")
2196 (description "@code{es-mode} includes highlighting, completion and
2197 indentation support for Elasticsearch queries. Also supported are
2198 @code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2199 be processed through @code{jq}, or in the case of aggregations, can be
2200 rendered in to a table. In addition, there is an @code{es-command-center}
2201 mode, which displays information about Elasticsearch clusters.")
2202 (license license:gpl3+)))
2203
2204 (define-public emacs-expand-region
2205 (package
2206 (name "emacs-expand-region")
2207 (version "0.11.0")
2208 (source
2209 (origin
2210 (method git-fetch)
2211 (uri (git-reference
2212 (url "https://github.com/magnars/expand-region.el.git")
2213 (commit version)))
2214 (file-name (git-file-name name version))
2215 (sha256
2216 (base32 "0h40dhc3kn8fq86xnwi5lz7ql8my8737y7wkqr897p15y90swr35"))))
2217 (build-system emacs-build-system)
2218 (home-page "https://github.com/magnars/expand-region.el")
2219 (synopsis "Increase selected region by semantic units")
2220 (description
2221 "Expand region increases the selected region by semantic units. Just
2222 keep pressing the key until it selects what you want. There's also
2223 @code{er/contract-region} if you expand too far.")
2224 (license license:gpl3+)))
2225
2226 (define-public emacs-fill-column-indicator
2227 (package
2228 (name "emacs-fill-column-indicator")
2229 (version "1.89")
2230 (source
2231 (origin
2232 (method git-fetch)
2233 (uri (git-reference
2234 (url "https://github.com/alpaker/Fill-Column-Indicator.git")
2235 (commit (string-append "v" version))))
2236 (file-name (git-file-name name version))
2237 (sha256
2238 (base32 "010kf8jsly74y7m6mmkn1h6y205kz23zphs50zgy2nag2p88rz9y"))))
2239 (build-system emacs-build-system)
2240 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2241 (synopsis "Graphically indicate the fill column")
2242 (description
2243 "Fill-column-indicator graphically indicates the location of the fill
2244 column by drawing a thin line down the length of the editing window.")
2245 (license license:gpl3+)))
2246
2247 (define-public emacs-grep-a-lot
2248 (package
2249 (name "emacs-grep-a-lot")
2250 (version "1.0.7")
2251 (source
2252 (origin
2253 (method git-fetch)
2254 (uri (git-reference
2255 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2256 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2257 (file-name (git-file-name name version))
2258 (sha256
2259 (base32 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2260 (build-system emacs-build-system)
2261 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2262 (synopsis "Enables multiple grep buffers in Emacs")
2263 (description
2264 "This Emacs package allows managing multiple grep buffers.")
2265 (license license:gpl3+)))
2266
2267 (define-public emacs-inf-ruby
2268 (package
2269 (name "emacs-inf-ruby")
2270 (version "2.5.1")
2271 (source
2272 (origin
2273 (method git-fetch)
2274 (uri (git-reference
2275 (url "https://github.com/nonsequitur/inf-ruby.git")
2276 (commit version)))
2277 (file-name (git-file-name name version))
2278 (sha256
2279 (base32 "1r452h6cyypqlc59q8dx5smkwhck4qjcg1pf9qdw539cpva5q77z"))))
2280 (build-system emacs-build-system)
2281 (home-page "https://github.com/nonsequitur/inf-ruby")
2282 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2283 (description
2284 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2285 for easy interaction with a ruby subprocess. Features include support for
2286 detecting specific uses of Ruby, e.g. when using rails, and using a
2287 appropriate console.")
2288 (license license:gpl3+)))
2289
2290 (define-public emacs-znc
2291 (package
2292 (name "emacs-znc")
2293 (version "0.0.2")
2294 (source
2295 (origin
2296 (method url-fetch)
2297 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2298 version ".el"))
2299 (sha256
2300 (base32
2301 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2302 (build-system emacs-build-system)
2303 (home-page "https://github.com/sshirokov/ZNC.el")
2304 (synopsis "Make ERC and ZNC get along better")
2305 (description
2306 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2307 IRC bouncer with ERC.")
2308 (license license:expat)))
2309
2310 (define-public emacs-shut-up
2311 (package
2312 (name "emacs-shut-up")
2313 (version "0.3.2")
2314 (source
2315 (origin
2316 (method git-fetch)
2317 (uri (git-reference
2318 (url "https://github.com/cask/shut-up.git")
2319 (commit (string-append "v" version))))
2320 (file-name (git-file-name name version))
2321 (sha256
2322 (base32 "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"))))
2323 (build-system emacs-build-system)
2324 (home-page "https://github.com/cask/shut-up")
2325 (synopsis "Silence Emacs")
2326 (description "This package silences most output of Emacs when running an
2327 Emacs shell script.")
2328 (license license:expat)))
2329
2330 (define-public emacs-undercover
2331 (package
2332 (name "emacs-undercover")
2333 (version "0.6.0")
2334 (source
2335 (origin
2336 (method git-fetch)
2337 (uri (git-reference
2338 (url "https://github.com/sviridov/undercover.el.git")
2339 (commit (string-append "v" version))))
2340 (file-name (git-file-name name version))
2341 (sha256
2342 (base32 "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"))))
2343 (build-system emacs-build-system)
2344 (propagated-inputs
2345 `(("emacs-dash" ,emacs-dash)
2346 ("emacs-shut-up" ,emacs-shut-up)))
2347 (home-page "https://github.com/sviridov/undercover.el")
2348 (synopsis "Test coverage library for Emacs Lisp")
2349 (description
2350 "Undercover is a test coverage library for software written in Emacs
2351 Lisp.")
2352 (license license:expat)))
2353
2354 (define-public emacs-paren-face
2355 (package
2356 (name "emacs-paren-face")
2357 (version "1.0.0")
2358 (source
2359 (origin
2360 (method git-fetch)
2361 (uri (git-reference
2362 (url "https://github.com/tarsius/paren-face.git")
2363 (commit version)))
2364 (file-name (git-file-name name version))
2365 (sha256
2366 (base32 "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k"))))
2367 (build-system emacs-build-system)
2368 (home-page "https://github.com/tarsius/paren-face")
2369 (synopsis "Face for parentheses in lisp modes")
2370 (description
2371 "This library defines a face named @code{parenthesis} used just for
2372 parentheses. The intended purpose of this face is to make parentheses less
2373 visible in Lisp code by dimming them. Lispers probably don't need to be
2374 constantly made aware of the existence of the parentheses. Dimming them might
2375 be even more useful for people new to lisp who have not yet learned to
2376 subconsciously blend out the parentheses.")
2377 (license license:gpl3+)))
2378
2379 (define-public emacs-page-break-lines
2380 (package
2381 (name "emacs-page-break-lines")
2382 (version "0.11")
2383 (source
2384 (origin
2385 (method git-fetch)
2386 (uri (git-reference
2387 (url "https://github.com/purcell/page-break-lines.git")
2388 (commit version)))
2389 (file-name (git-file-name name version))
2390 (sha256
2391 (base32 "1wp974716ih2cz9kdmdz7xwjy1qnnfzdzlfr9kchknagw8d9nn12"))))
2392 (build-system emacs-build-system)
2393 (home-page "https://github.com/purcell/page-break-lines")
2394 (synopsis "Display page breaks as tidy horizontal lines")
2395 (description
2396 "This library provides a global mode which displays form feed characters
2397 as horizontal rules.")
2398 (license license:gpl3+)))
2399
2400 (define-public emacs-simple-httpd
2401 (package
2402 (name "emacs-simple-httpd")
2403 (version "1.4.6")
2404 (source
2405 (origin
2406 (method git-fetch)
2407 (uri (git-reference
2408 (url "https://github.com/skeeto/emacs-web-server.git")
2409 (commit version)))
2410 (file-name (git-file-name name version))
2411 (sha256
2412 (base32 "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g"))))
2413 (build-system emacs-build-system)
2414 (home-page "https://github.com/skeeto/emacs-http-server")
2415 (synopsis "HTTP server in pure Emacs Lisp")
2416 (description
2417 "This package provides a simple HTTP server written in Emacs Lisp to
2418 serve files and directory listings.")
2419 (license license:unlicense)))
2420
2421 (define-public emacs-skewer-mode
2422 (package
2423 (name "emacs-skewer-mode")
2424 (version "1.6.2")
2425 (source
2426 (origin
2427 (method git-fetch)
2428 (uri (git-reference
2429 (url "https://github.com/skeeto/skewer-mode.git")
2430 (commit version)))
2431 (file-name (git-file-name name version))
2432 (sha256
2433 (base32 "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv"))))
2434 (build-system emacs-build-system)
2435 (propagated-inputs
2436 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2437 ("emacs-js2-mode" ,emacs-js2-mode)))
2438 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2439 (home-page "https://github.com/skeeto/skewer-mode")
2440 (synopsis "Live web development in Emacs")
2441 (description
2442 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2443 a web browser. Expressions are sent on-the-fly from an editing buffer to be
2444 evaluated in the browser, just like Emacs does with an inferior Lisp process
2445 in Lisp modes.")
2446 (license license:unlicense)))
2447
2448 (define-public emacs-string-inflection
2449 (package
2450 (name "emacs-string-inflection")
2451 (version "1.0.6")
2452 (source (origin
2453 (method git-fetch)
2454 (uri (git-reference
2455 (url "https://github.com/akicho8/string-inflection")
2456 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2457 (file-name (git-file-name name version))
2458 (sha256
2459 (base32
2460 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2461 (build-system emacs-build-system)
2462 (native-inputs
2463 `(("ert-runner" ,emacs-ert-runner)))
2464 (arguments
2465 `(#:tests? #t
2466 #:test-command '("ert-runner")))
2467 (home-page "https://github.com/akicho8/string-inflection")
2468 (synopsis "Convert symbol names between different naming conventions")
2469 (description
2470 "This Emacs package provides convenient methods for manipulating the
2471 naming style of a symbol. It supports different naming conventions such as:
2472
2473 @enumerate
2474 @item camel case
2475 @item Pascal case
2476 @item all upper case
2477 @item lower case separated by underscore
2478 @item etc...
2479 @end enumerate\n")
2480 (license license:gpl2+)))
2481
2482 (define-public emacs-stripe-buffer
2483 (package
2484 (name "emacs-stripe-buffer")
2485 (version "0.2.5")
2486 (source
2487 (origin
2488 (method git-fetch)
2489 (uri (git-reference
2490 (url "https://github.com/sabof/stripe-buffer.git")
2491 (commit version)))
2492 (file-name (git-file-name name version))
2493 (sha256
2494 (base32 "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"))))
2495 (build-system emacs-build-system)
2496 (home-page "https://github.com/sabof/stripe-buffer/")
2497 (synopsis "Add stripes to list buffers")
2498 (description
2499 "This Emacs package adds faces to add stripes to list buffers and org
2500 tables.")
2501 (license license:gpl2+)))
2502
2503 (define-public emacs-rich-minority
2504 (package
2505 (name "emacs-rich-minority")
2506 (version "1.0.1")
2507 (source
2508 (origin
2509 (method git-fetch)
2510 (uri (git-reference
2511 (url "https://github.com/Malabarba/rich-minority.git")
2512 (commit version)))
2513 (file-name (git-file-name name version))
2514 (sha256
2515 (base32 "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"))))
2516 (build-system emacs-build-system)
2517 (home-page "https://github.com/Malabarba/rich-minority")
2518 (synopsis "Clean-up and beautify the list of minor modes")
2519 (description
2520 "This Emacs package hides and/or highlights minor modes in the
2521 mode-line.")
2522 (license license:gpl2+)))
2523
2524 (define-public emacs-robe
2525 (package
2526 (name "emacs-robe")
2527 (version "0.8.1")
2528 (source
2529 (origin
2530 (method git-fetch)
2531 (uri (git-reference
2532 (url "https://github.com/dgutov/robe.git")
2533 (commit version)))
2534 (file-name (git-file-name name version))
2535 (sha256
2536 (base32 "0ll7ivxqnglfb0i70ly6qq2yfw9cyi3vq3lmj4s6h6c1c7rm3gcq"))))
2537 (build-system emacs-build-system)
2538 (arguments
2539 '(#:include (cons "^lib\\/" %default-include)))
2540 (propagated-inputs
2541 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2542 (home-page "https://github.com/dgutov/robe")
2543 (synopsis "Ruby code assistance tool for Emacs")
2544 (description
2545 "Robe can provide information on loaded classes and modules in Ruby code,
2546 as well as where methods are defined. This allows the user to jump to method
2547 definitions, modules and classes, display method documentation and provide
2548 method and constant name completion.")
2549 (license license:gpl3+)))
2550
2551 (define-public emacs-rspec
2552 (package
2553 (name "emacs-rspec")
2554 (version "1.11")
2555 (source
2556 (origin
2557 (method git-fetch)
2558 (uri (git-reference
2559 (url "https://github.com/pezra/rspec-mode.git")
2560 (commit (string-append "v" version))))
2561 (file-name (git-file-name name version))
2562 (sha256
2563 (base32 "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"))))
2564 (build-system emacs-build-system)
2565 (home-page "https://github.com/pezra/rspec-mode")
2566 (synopsis "Provides a rspec mode for working with RSpec")
2567 (description
2568 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2569 verify the spec associated with the current buffer, or entire project, as well
2570 as moving between the spec files, and coresponding code files.
2571
2572 Also included are keybindings for spec files and Dired buffers, as well as
2573 snippets for yasnippet.")
2574 (license license:gpl3+)))
2575
2576 (define-public emacs-smart-mode-line
2577 (package
2578 (name "emacs-smart-mode-line")
2579 (version "2.12.0")
2580 (source
2581 (origin
2582 (method git-fetch)
2583 (uri (git-reference
2584 (url "https://github.com/Malabarba/smart-mode-line.git")
2585 (commit version)))
2586 (file-name (git-file-name name version))
2587 (sha256
2588 (base32 "1gs4ay9hdg8gmia4ir74qawk80pqwv99hp4yhy108kpfry5mrq6z"))))
2589 (build-system emacs-build-system)
2590 (propagated-inputs
2591 `(("emacs-rich-minority" ,emacs-rich-minority)))
2592 (home-page "https://github.com/Malabarba/smart-mode-line")
2593 (synopsis "Color-coded smart mode-line")
2594 (description
2595 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2596 read from small to large monitors by using colors, a prefix feature, and smart
2597 truncation.")
2598 (license license:gpl2+)))
2599
2600 (define-public emacs-sr-speedbar
2601 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2602 (revision "0"))
2603 (package
2604 (name "emacs-sr-speedbar")
2605 (version (git-version "20161025" revision commit))
2606 (source
2607 (origin
2608 (method git-fetch)
2609 (uri (git-reference
2610 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2611 (commit commit)))
2612 (file-name (git-file-name name version))
2613 (sha256
2614 (base32
2615 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2616 (build-system emacs-build-system)
2617 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2618 (synopsis "Same frame Emacs @code{speedbar}")
2619 (description
2620 "This Emacs package allows you to show @code{M-x speedbar} in the
2621 same frame (in an extra window). You can customize the initial width of
2622 the speedbar window.")
2623 (license license:gpl3+))))
2624
2625 (define-public emacs-shell-switcher
2626 (package
2627 (name "emacs-shell-switcher")
2628 (version "1.0.1")
2629 (source
2630 (origin
2631 (method git-fetch)
2632 (uri (git-reference
2633 (url "https://github.com/DamienCassou/shell-switcher.git")
2634 (commit (string-append "v" version))))
2635 (file-name (git-file-name name version))
2636 (sha256
2637 (base32 "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"))))
2638 (build-system emacs-build-system)
2639 (home-page "https://github.com/DamienCassou/shell-switcher")
2640 (synopsis "Provide fast switching between shell buffers")
2641 (description
2642 "This package provides commands to quickly switch between shell buffers.")
2643 (license license:gpl3+)))
2644
2645 (define-public emacs-ob-ipython
2646 (package
2647 (name "emacs-ob-ipython")
2648 (version "20150704.8807064693")
2649 (source (origin
2650 (method git-fetch)
2651 (uri (git-reference
2652 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2653 (url "https://github.com/gregsexton/ob-ipython.git")))
2654 (file-name (git-file-name name version))
2655 (sha256
2656 (base32
2657 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2658 (build-system emacs-build-system)
2659 (propagated-inputs
2660 `(("emacs-f" ,emacs-f)))
2661 (home-page "http://www.gregsexton.org")
2662 (synopsis "Org-Babel functions for IPython evaluation")
2663 (description "This package adds support to Org-Babel for evaluating Python
2664 source code using IPython.")
2665 (license license:gpl3+)))
2666
2667 (define-public emacs-debbugs
2668 (package
2669 (name "emacs-debbugs")
2670 (version "0.17")
2671 (source (origin
2672 (method url-fetch)
2673 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2674 version ".tar"))
2675 (sha256
2676 (base32
2677 "0zclh2nxj5p10n214sxyxy3ca07l5s9p5spk0xp1smr6nzn0w7gb"))))
2678 (build-system emacs-build-system)
2679 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2680 (propagated-inputs
2681 `(("emacs-async" ,emacs-async)))
2682 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2683 (synopsis "Access the Debbugs bug tracker in Emacs")
2684 (description
2685 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2686 Tracker} from within Emacs.
2687
2688 For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2689 and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2690 prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2691 @code{M-x debbugs-org} and related commands.
2692
2693 A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2694 Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2695 (license license:gpl3+)))
2696
2697 (define-public emacs-ert-expectations
2698 (package
2699 (name "emacs-ert-expectations")
2700 (version "0.2")
2701 (source
2702 (origin
2703 (method url-fetch)
2704 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2705 (sha256
2706 (base32
2707 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2708 (build-system emacs-build-system)
2709 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2710 (synopsis "Simple unit test framework for Emacs Lisp")
2711 (description "@code{emacs-ert-expectations} is a simple unit test
2712 framework for Emacs Lisp to be used with @code{ert}.")
2713 (license license:gpl3+)))
2714
2715 (define-public emacs-deferred
2716 (package
2717 (name "emacs-deferred")
2718 (version "0.5.1")
2719 (home-page "https://github.com/kiwanami/emacs-deferred")
2720 (source (origin
2721 (method git-fetch)
2722 (uri (git-reference
2723 (url home-page)
2724 (commit (string-append "v" version))))
2725 (file-name (git-file-name name version))
2726 (sha256
2727 (base32
2728 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))))
2729 (build-system emacs-build-system)
2730 (arguments
2731 `(#:phases
2732 (modify-phases %standard-phases
2733 (add-after 'unpack 'set-shell
2734 ;; Setting the SHELL environment variable is required for the tests
2735 ;; to find sh.
2736 (lambda _
2737 (setenv "SHELL" (which "sh"))
2738 #t))
2739 (add-before 'check 'fix-makefile
2740 (lambda _
2741 (substitute* "Makefile"
2742 (("\\$\\(CASK\\) exec ") ""))
2743 #t)))
2744 #:tests? #t
2745 #:test-command '("make" "test")))
2746 (native-inputs
2747 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2748 ("emacs-undercover" ,emacs-undercover)
2749 ("ert-runner" ,emacs-ert-runner)))
2750 (synopsis "Simple asynchronous functions for Emacs Lisp")
2751 (description
2752 "The @code{deferred.el} library provides support for asynchronous tasks.
2753 The API is almost the same as that of
2754 @uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2755 for asynchronous tasks.")
2756 (license license:gpl3+)))
2757
2758 (define-public emacs-butler
2759 (package
2760 (name "emacs-butler")
2761 (version "0.2.4")
2762 (home-page "https://github.com/AshtonKem/Butler")
2763 (source (origin
2764 (method git-fetch)
2765 (uri (git-reference
2766 (url home-page)
2767 (commit version)))
2768 (file-name (git-file-name name version))
2769 (sha256
2770 (base32
2771 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))))
2772 (build-system emacs-build-system)
2773 (propagated-inputs
2774 `(("emacs-deferred" ,emacs-deferred)))
2775 (synopsis "Emacs client for Jenkins")
2776 (description
2777 "Butler provides an interface to connect to Jenkins continuous
2778 integration servers. Users can specify a list of server in the
2779 @code{butler-server-list} variable and then use @code{M-x butler-status} to
2780 view the build status of those servers' build jobs, and possibly to trigger
2781 build jobs.")
2782 (license license:gpl3+)))
2783
2784 (define-public emacs-company
2785 (package
2786 (name "emacs-company")
2787 (version "0.9.7")
2788 (source
2789 (origin
2790 (method git-fetch)
2791 (uri (git-reference
2792 (url "https://github.com/company-mode/company-mode.git")
2793 (commit version)))
2794 (file-name (git-file-name name version))
2795 (sha256
2796 (base32 "1gpapjxs4l6fmmj22q0q1pyhj1yd9j5iqfqnjf1abskkj69lqkpj"))))
2797 (build-system emacs-build-system)
2798 (arguments
2799 `(#:phases
2800 (modify-phases %standard-phases
2801 (add-before 'check 'fix-bin-dir
2802 (lambda _
2803 ;; The company-files-candidates-normal-root test looks
2804 ;; for the /bin directory, but the build environment has
2805 ;; no /bin directory. Modify the test to look for the
2806 ;; /tmp directory.
2807 (substitute* "test/files-tests.el"
2808 (("/bin/") "/tmp/"))
2809 #t)))
2810 #:tests? #t
2811 #:test-command '("make" "test-batch")))
2812 (home-page "http://company-mode.github.io/")
2813 (synopsis "Modular text completion framework")
2814 (description
2815 "Company is a modular completion mechanism. Modules for retrieving
2816 completion candidates are called back-ends, modules for displaying them are
2817 front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2818 These are distributed in separate files and can be used individually.")
2819 (license license:gpl3+)))
2820
2821 (define-public emacs-irony-mode
2822 (package
2823 (name "emacs-irony-mode")
2824 (version "1.2.0")
2825 (home-page "https://github.com/Sarcasm/irony-mode")
2826 (source (origin
2827 (method git-fetch)
2828 (uri (git-reference
2829 (url (string-append home-page ".git"))
2830 (commit (string-append "v" version))))
2831 (file-name (git-file-name name version))
2832 (sha256
2833 (base32
2834 "0nhjrnlmss535jbshjjd30vydbr8py21vkx4p294w6d8vg2rssf8"))))
2835 (build-system emacs-build-system)
2836 (inputs `(("server" ,emacs-irony-mode-server)))
2837 (arguments `(#:phases
2838 (modify-phases %standard-phases
2839 (add-after 'unpack 'configure
2840 (lambda* (#:key inputs #:allow-other-keys)
2841 (chmod "irony.el" #o644)
2842 (emacs-substitute-variables "irony.el"
2843 ("irony-server-install-prefix"
2844 (assoc-ref inputs "server")))
2845 #t)))))
2846 (synopsis "C/C++/ObjC Code completion and syntax checks for Emacs")
2847 (description "Irony-mode provides Clang-assisted syntax checking and
2848 completion for C, C++, and ObjC in GNU Emacs. Using @code{libclang} it can
2849 provide syntax checking and autocompletion on compiler level which is very
2850 resistent against false positives. It also integrates well with other
2851 packages like @code{eldoc-mode} and especially @code{company-mode} as
2852 described on the homepage.")
2853 (license license:gpl3+)))
2854
2855 (define-public emacs-irony-mode-server
2856 (package (inherit emacs-irony-mode)
2857 (name "emacs-irony-mode-server")
2858 (inputs
2859 `(("clang" ,clang)))
2860 (arguments
2861 `(#:phases
2862 (modify-phases %standard-phases
2863 (replace 'configure
2864 (lambda* (#:key outputs #:allow-other-keys)
2865 (let ((out (assoc-ref outputs "out")))
2866 (invoke "cmake"
2867 "server"
2868 (string-append "-DCMAKE_INSTALL_PREFIX=" out)) #t))))))
2869 (build-system cmake-build-system)
2870 (synopsis "Server for the Emacs @dfn{irony mode}")))
2871
2872 (define-public emacs-company-irony
2873 (package
2874 (name "emacs-company-irony")
2875 (version "1.1.0")
2876 (source (origin
2877 (method git-fetch)
2878 (uri (git-reference
2879 (url "https://github.com/Sarcasm/company-irony.git")
2880 (commit (string-append "v" version))))
2881 (sha256 (base32
2882 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
2883 (file-name (git-file-name name version))))
2884 (build-system emacs-build-system)
2885 (inputs
2886 `(("emacs-irony-mode" ,emacs-irony-mode)
2887 ("emacs-company" ,emacs-company)))
2888 (synopsis "C++ completion backend for Company using irony-mode")
2889 (description "This backend for company-mode allows for C++ code completion
2890 with irony-mode using clang-tooling.")
2891 (home-page "https://github.com/Sarcasm/company-irony")
2892 (license license:gpl3+)))
2893
2894 (define-public emacs-flycheck-irony
2895 (package
2896 (name "emacs-flycheck-irony")
2897 (version "0.1.0")
2898 (source (origin
2899 (method git-fetch)
2900 (uri (git-reference
2901 (url "https://github.com/Sarcasm/flycheck-irony.git")
2902 (commit (string-append "v" version))))
2903 (file-name (git-file-name name version))
2904 (sha256
2905 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))))
2906 (build-system emacs-build-system)
2907 (inputs
2908 `(("irony-mode" ,emacs-irony-mode)
2909 ("flycheck-mode" ,emacs-flycheck)
2910 ("emacs-company" ,emacs-company)))
2911 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2912 (description "This package provides a frontend for Flycheck that lets
2913 irony-mode do the syntax checking.")
2914 (home-page "https://github.com/Sarcasm/flycheck-irony")
2915 (license license:gpl3+)))
2916
2917 (define-public emacs-irony-eldoc
2918 (package
2919 (name "emacs-irony-eldoc")
2920 (version (package-version emacs-irony-mode))
2921 (source
2922 (origin
2923 (method git-fetch)
2924 (uri (git-reference
2925 (url "https://github.com/ikirill/irony-eldoc.git")
2926 (commit "0df5831eaae264a25422b061eb2792aadde8b3f2")))
2927 (file-name (git-file-name name version))
2928 (sha256
2929 (base32 "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"))))
2930 (build-system emacs-build-system)
2931 (inputs
2932 `(("irony-mode" ,emacs-irony-mode)))
2933 (synopsis "Eldoc integration for irony-mode")
2934 (description "Irony-eldoc is an eldoc extension that shows documentation
2935 for the current function or variable in the minibuffer.")
2936 (home-page "https://github.com/ikirill/irony-eldoc")
2937 (license license:gpl3+)))
2938
2939 (define-public emacs-company-quickhelp
2940 (package
2941 (name "emacs-company-quickhelp")
2942 (version "2.3.0")
2943 (source
2944 (origin
2945 (method git-fetch)
2946 (uri (git-reference
2947 (url "https://github.com/expez/company-quickhelp.git")
2948 (commit version)))
2949 (file-name (git-file-name name version))
2950 (sha256
2951 (base32 "08ccsfvwdpzpj0gai3xrdb2bv1nl6myjkxsc5774pbvlq9nkfdvr"))))
2952 (build-system emacs-build-system)
2953 (propagated-inputs
2954 `(("emacs-pos-tip" ,emacs-pos-tip)
2955 ("emacs-company" ,emacs-company)))
2956 (home-page "https://github.com/expez/company-quickhelp")
2957 (synopsis "Popup documentation for completion candidates")
2958 (description "@code{company-quickhelp} shows documentation for the
2959 completion candidate when using the Company text completion framework.")
2960 (license license:gpl3+)))
2961
2962 (define-public emacs-multiple-cursors
2963 (package
2964 (name "emacs-multiple-cursors")
2965 (version "1.4.0")
2966 (source
2967 (origin
2968 (method git-fetch)
2969 (uri (git-reference
2970 (url "https://github.com/magnars/multiple-cursors.el.git")
2971 (commit version)))
2972 (file-name (git-file-name name version))
2973 (sha256
2974 (base32 "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss"))))
2975 (build-system emacs-build-system)
2976 (home-page "https://github.com/magnars/multiple-cursors.el")
2977 (synopsis "Multiple cursors for Emacs")
2978 (description
2979 "This package adds support to Emacs for editing text with multiple
2980 simultaneous cursors.")
2981 (license license:gpl3+)))
2982
2983 (define-public emacs-typo
2984 (package
2985 (name "emacs-typo")
2986 (version "1.1")
2987 (home-page "https://github.com/jorgenschaefer/typoel")
2988 (source (origin
2989 (method git-fetch)
2990 (uri (git-reference
2991 (url home-page)
2992 (commit (string-append "v" version))))
2993 (file-name (git-file-name name version))
2994 (sha256
2995 (base32
2996 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))))
2997 (build-system emacs-build-system)
2998 (synopsis "Minor mode for typographic editing")
2999 (description
3000 "This package provides two Emacs modes, @code{typo-mode} and
3001 @code{typo-global-mode}. These modes automatically insert Unicode characters
3002 for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
3003 automatically inserts a Unicode opening or closing quotation mark, depending
3004 on context.")
3005 (license license:gpl3+)))
3006
3007 (define-public emacs-company-lsp
3008 (package
3009 (name "emacs-company-lsp")
3010 (version "2.1.0")
3011 (source (origin
3012 (method git-fetch)
3013 (uri (git-reference
3014 (url "https://github.com/tigersoldier/company-lsp.git")
3015 (commit version)))
3016 (file-name (git-file-name name version))
3017 (sha256
3018 (base32
3019 "1hy1x2w0yp5brm7714d1hziz3rpkywb5jp3yj78ibmi9ifny9vri"))))
3020 (build-system emacs-build-system)
3021 (propagated-inputs
3022 `(("emacs-dash" ,emacs-dash)
3023 ("emacs-lsp-mode" ,emacs-lsp-mode)
3024 ("emacs-company" ,emacs-company)
3025 ("emacs-s" ,emacs-s)
3026 ("emacs-dash" ,emacs-dash)))
3027 (home-page "https://github.com/tigersoldier/company-lsp")
3028 (synopsis "Completion for @code{lsp-mode}")
3029 (description
3030 "This package provides completion features that are not possible with
3031 @code{lsp-mode} and @code{company-capf} alone, including support for trigger
3032 characters and asynchronous fetching of completion candidates.")
3033 (license license:gpl3+)))
3034
3035 (define-public emacs-scheme-complete
3036 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
3037 (package
3038 (name "emacs-scheme-complete")
3039 (version (string-append "20151223." (string-take commit 8)))
3040 (source
3041 (origin
3042 (method git-fetch)
3043 (uri (git-reference
3044 (url "https://github.com/ashinn/scheme-complete.git")
3045 (commit commit)))
3046 (file-name (git-file-name name version))
3047 (sha256
3048 (base32
3049 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
3050 (patches
3051 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
3052 (build-system emacs-build-system)
3053 (home-page "https://github.com/ashinn/scheme-complete")
3054 (synopsis "Smart tab completion for Scheme in Emacs")
3055 (description
3056 "This file provides a single function, @code{scheme-smart-complete},
3057 which you can use for intelligent, context-sensitive completion for any Scheme
3058 implementation in Emacs. To use it just load this file and bind that function
3059 to a key in your preferred mode.")
3060 (license license:public-domain))))
3061
3062 (define-public emacs-scel
3063 (let ((version "20170629")
3064 (revision "1")
3065 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
3066 (package
3067 (name "emacs-scel")
3068 (version (git-version version revision commit))
3069 (source
3070 (origin
3071 (method git-fetch)
3072 (uri (git-reference
3073 (url "https://github.com/supercollider/scel.git")
3074 (commit commit)))
3075 (file-name (git-file-name name version))
3076 (sha256
3077 (base32
3078 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
3079 (build-system emacs-build-system)
3080 (arguments
3081 `(#:modules ((guix build emacs-build-system)
3082 ((guix build cmake-build-system) #:prefix cmake:)
3083 (guix build utils))
3084 #:imported-modules (,@%emacs-build-system-modules
3085 (guix build cmake-build-system))
3086 #:phases
3087 (modify-phases %standard-phases
3088 (add-after 'unpack 'configure
3089 (lambda* (#:key outputs #:allow-other-keys)
3090 (substitute* "el/CMakeLists.txt"
3091 (("share/emacs/site-lisp/SuperCollider")
3092 (string-append
3093 "share/emacs/site-lisp/guix.d/scel-" ,version)))
3094 ((assoc-ref cmake:%standard-phases 'configure)
3095 #:outputs outputs
3096 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
3097 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
3098 (lambda _
3099 (setenv "EMACSLOADPATH"
3100 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
3101 #t))
3102 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
3103 (inputs
3104 `(("supercollider" ,supercollider)))
3105 (native-inputs
3106 `(("cmake" ,cmake)))
3107 (home-page "https://github.com/supercollider/scel")
3108 (synopsis "SuperCollider Emacs interface")
3109 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
3110 SuperCollider is a platform for audio synthesis and algorithmic composition.")
3111 (license license:gpl2+))))
3112
3113 (define-public emacs-company-auctex
3114 (let ((commit "48c42c58ce2f0e693301b0cb2d085055410c1b25")
3115 (revision "1"))
3116 (package
3117 (name "emacs-company-auctex")
3118 (version (git-version "0" revision commit))
3119 (source (origin
3120 (method git-fetch)
3121 (uri (git-reference
3122 (url "https://github.com/alexeyr/company-auctex")
3123 (commit commit)))
3124 (file-name (git-file-name name version))
3125 (sha256
3126 (base32
3127 "10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8"))))
3128 (build-system emacs-build-system)
3129 (propagated-inputs
3130 `(("emacs-yasnippet" ,emacs-yasnippet)
3131 ("emacs-auctex" ,emacs-auctex)
3132 ("emacs-company" ,emacs-company)))
3133 (home-page "https://github.com/alexeyr/company-auctex/")
3134 (synopsis "Completion for @code{AUCTeX}")
3135 (description
3136 "This package provides a group of backends permitting auto-completion
3137 for @code{AUCTeX}.")
3138 (license license:gpl3+))))
3139
3140 (define-public emacs-mit-scheme-doc
3141 (package
3142 (name "emacs-mit-scheme-doc")
3143 (version "20140203")
3144 (source
3145 (origin
3146 (modules '((guix build utils)))
3147 (snippet
3148 ;; keep only file of interest
3149 '(begin
3150 (for-each delete-file '("dot-emacs.el" "Makefile"))
3151 (install-file "6.945-config/mit-scheme-doc.el" ".")
3152 (delete-file-recursively "6.945-config")
3153 #t))
3154 (file-name (string-append name "-" version ".tar.bz2"))
3155 (method url-fetch)
3156 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
3157 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
3158 (sha256
3159 (base32
3160 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
3161 (build-system emacs-build-system)
3162 (inputs `(("mit-scheme" ,mit-scheme)))
3163 (arguments
3164 `(#:phases
3165 (modify-phases %standard-phases
3166 (add-after 'unpack 'configure-doc
3167 (lambda* (#:key inputs #:allow-other-keys)
3168 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
3169 (doc-dir (string-append mit-scheme-dir "/share/doc/"
3170 "mit-scheme-"
3171 ,(package-version mit-scheme))))
3172 (substitute* "mit-scheme-doc.el"
3173 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
3174 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
3175 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
3176 (synopsis "MIT-Scheme documentation lookup for Emacs")
3177 (description
3178 "This package provides a set of Emacs functions to search definitions of
3179 identifiers in the MIT-Scheme documentation.")
3180 (license license:gpl2+)))
3181
3182 (define-public emacs-constants
3183 (package
3184 (name "emacs-constants")
3185 (version "2.6")
3186 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
3187 (source
3188 (origin
3189 (method git-fetch)
3190 (uri (git-reference
3191 (url "https://github.com/fedeinthemix/emacs-constants.git")
3192 (commit (string-append "v" version))))
3193 (file-name (git-file-name name version))
3194 (sha256
3195 (base32 "0f5sh6b45a8p9kancjp9jk44ws8ww6x50a0i6zgyyvr7dbvii1a0"))))
3196 (build-system emacs-build-system)
3197 (synopsis "Enter definition of constants into an Emacs buffer")
3198 (description
3199 "This package provides functions for inserting the definition of natural
3200 constants and units into an Emacs buffer.")
3201 (license license:gpl2+)))
3202
3203 (define-public emacs-tagedit
3204 (package
3205 (name "emacs-tagedit")
3206 (version "1.4.0")
3207 (source
3208 (origin
3209 (method git-fetch)
3210 (uri (git-reference
3211 (url "https://github.com/magnars/tagedit.git")
3212 (commit version)))
3213 (file-name (git-file-name name version))
3214 (sha256
3215 (base32 "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"))))
3216 (build-system emacs-build-system)
3217 (propagated-inputs
3218 `(("emacs-s" ,emacs-s)
3219 ("emacs-dash" ,emacs-dash)))
3220 (home-page "https://github.com/magnars/tagedit")
3221 (synopsis "Some paredit-like features for html-mode")
3222 (description
3223 "This package provides a collection of paredit-like functions for editing
3224 in @code{html-mode}.")
3225 (license license:gpl3+)))
3226
3227 (define-public emacs-slime
3228 (package
3229 (name "emacs-slime")
3230 (version "2.23")
3231 (source
3232 (origin
3233 (method git-fetch)
3234 (uri (git-reference
3235 (url "https://github.com/slime/slime.git")
3236 (commit (string-append "v" version))))
3237 (file-name (git-file-name name version))
3238 (sha256
3239 (base32 "0i637n0ragpbj39hqx65nx5k99xf0464c4w6w1qpzykm6z42grky"))))
3240 (build-system emacs-build-system)
3241 (native-inputs
3242 `(("texinfo" ,texinfo)))
3243 (arguments
3244 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
3245 #:exclude '("^slime-tests.el" "^contrib/test/"
3246 "^contrib/Makefile$" "^contrib/README.md$")
3247 #:phases
3248 (modify-phases %standard-phases
3249 (add-after 'unpack 'make-git-checkout-writable
3250 (lambda _
3251 (for-each make-file-writable (find-files "."))
3252 #t))
3253 (add-before 'install 'configure
3254 (lambda* _
3255 (emacs-substitute-variables "slime.el"
3256 ("inferior-lisp-program" "sbcl"))
3257 #t))
3258 (add-before 'install 'install-doc
3259 (lambda* (#:key outputs #:allow-other-keys)
3260 (let* ((out (assoc-ref outputs "out"))
3261 (info-dir (string-append out "/share/info"))
3262 (doc-dir (string-append out "/share/doc/"
3263 ,name "-" ,version))
3264 (doc-files '("doc/slime-refcard.pdf"
3265 "README.md" "NEWS" "PROBLEMS"
3266 "CONTRIBUTING.md")))
3267 (with-directory-excursion "doc"
3268 (substitute* "Makefile"
3269 (("infodir=/usr/local/info")
3270 (string-append "infodir=" info-dir)))
3271 (invoke "make" "html/index.html")
3272 (invoke "make" "slime.info")
3273 (install-file "slime.info" info-dir)
3274 (copy-recursively "html" (string-append doc-dir "/html")))
3275 (for-each (lambda (f)
3276 (install-file f doc-dir)
3277 (delete-file f))
3278 doc-files)
3279 (delete-file-recursively "doc")
3280 #t))))))
3281 (home-page "https://github.com/slime/slime")
3282 (synopsis "Superior Lisp Interaction Mode for Emacs")
3283 (description
3284 "SLIME extends Emacs with support for interactive programming in
3285 Common Lisp. The features are centered around @command{slime-mode},
3286 an Emacs minor mode that complements the standard @command{lisp-mode}.
3287 While lisp-mode supports editing Lisp source files, @command{slime-mode}
3288 adds support for interacting with a running Common Lisp process
3289 for compilation, debugging, documentation lookup, and so on.")
3290 (license (list license:gpl2+ license:public-domain))))
3291
3292 (define-public emacs-popup
3293 (package
3294 (name "emacs-popup")
3295 (version "0.5.3")
3296 (source
3297 (origin
3298 (method git-fetch)
3299 (uri (git-reference
3300 (url "https://github.com/auto-complete/popup-el.git")
3301 (commit (string-append "v" version))))
3302 (file-name (git-file-name name version))
3303 (sha256
3304 (base32 "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"))))
3305 (build-system emacs-build-system)
3306 (home-page "https://github.com/auto-complete/popup-el")
3307 (synopsis "Visual Popup User Interface for Emacs")
3308 (description
3309 "Popup.el is a visual popup user interface library for Emacs.
3310 This provides a basic API and common UI widgets such as popup tooltips
3311 and popup menus.")
3312 (license license:gpl3+)))
3313
3314 (define-public emacs-python-environment
3315 (package
3316 (name "emacs-python-environment")
3317 (version "0.0.2")
3318 (source
3319 (origin
3320 (method git-fetch)
3321 (uri (git-reference
3322 (url "https://github.com/tkf/emacs-python-environment/")
3323 (commit version)))
3324 (file-name (git-file-name name version))
3325 (sha256
3326 (base32 "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"))))
3327 (build-system emacs-build-system)
3328 (propagated-inputs
3329 `(("emacs-deferred" ,emacs-deferred)))
3330 (home-page "https://github.com/tkf/emacs-python-environment")
3331 (synopsis "Provides a @code{virtualenv} API in Emacs Lisp")
3332 (description
3333 "This package permits automated installation of tools written in Python.")
3334 (license license:gpl3+)))
3335
3336 (define-public emacs-jedi
3337 (package
3338 (name "emacs-jedi")
3339 (version "0.2.7")
3340 (source (origin
3341 (method git-fetch)
3342 (uri (git-reference
3343 (url "https://github.com/tkf/emacs-jedi/")
3344 (commit (string-append "v" version))))
3345 (file-name (git-file-name name version))
3346 (sha256
3347 (base32
3348 "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"))))
3349 (build-system emacs-build-system)
3350 (native-inputs
3351 `(("emacs-mocker" ,emacs-mocker)))
3352 (propagated-inputs
3353 `(("emacs-auto-complete" ,emacs-auto-complete)
3354 ("emacs-python-environment" ,emacs-python-environment)
3355 ("emacs-epc" ,emacs-epc)))
3356 (home-page "https://github.com/tkf/emacs-jedi")
3357 (synopsis "Provides Python completion in Emacs")
3358 (description
3359 "This package provides completion in Python buffers and also helps find
3360 the locations of docstrings, arguments, and functions.")
3361 (license license:gpl3+)))
3362
3363 (define-public emacs-company-jedi
3364 (package
3365 (name "emacs-company-jedi")
3366 (version "0.04")
3367 (source (origin
3368 (method git-fetch)
3369 (uri (git-reference
3370 (url "https://github.com/syohex/emacs-company-jedi")
3371 (commit version)))
3372 (file-name (git-file-name name version))
3373 (sha256
3374 (base32
3375 "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"))))
3376 (build-system emacs-build-system)
3377 (propagated-inputs
3378 `(("emacs-jedi" ,emacs-jedi)
3379 ("emacs-company" ,emacs-company)))
3380 (home-page "https://github.com/syohex/emacs-company-jedi")
3381 (synopsis "Provides Python completion in @code{company-mode}")
3382 (description
3383 "This package provides a Company backend for Python.")
3384 (license license:gpl3+)))
3385
3386 (define-public emacs-puppet-mode
3387 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3388 (revision "1"))
3389 (package
3390 (name "emacs-puppet-mode")
3391 ;; The last release, 0.3 was several years ago, and there have been many
3392 ;; commits since
3393 (version (git-version "0.3" revision commit))
3394 (source
3395 (origin
3396 (method url-fetch)
3397 (uri (string-append
3398 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3399 commit "/puppet-mode.el"))
3400 (sha256
3401 (base32
3402 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3403 (build-system emacs-build-system)
3404 (home-page "https://github.com/voxpupuli/puppet-mode")
3405 (synopsis "Emacs major mode for the Puppet configuration language")
3406 (description
3407 "This package provides support for the Puppet configuration language,
3408 including syntax highlighting, indentation of expressions and statements,
3409 linting of manifests and integration with Puppet Debugger.")
3410 ;; Also incorporates work covered by the Apache License, Version 2.0
3411 (license license:gpl3+))))
3412
3413 (define-public emacs-god-mode
3414 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3415 (revision "1"))
3416 (package
3417 (name "emacs-god-mode")
3418 (version (string-append "20151005.925."
3419 revision "-" (string-take commit 9)))
3420 (source
3421 (origin
3422 (method git-fetch)
3423 (uri (git-reference
3424 (url "https://github.com/chrisdone/god-mode.git")
3425 (commit commit)))
3426 (file-name (git-file-name name version))
3427 (sha256
3428 (base32
3429 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3430 (build-system emacs-build-system)
3431 (home-page "https://github.com/chrisdone/god-mode")
3432 (synopsis "Minor mode for entering commands without modifier keys")
3433 (description
3434 "This package provides a global minor mode for entering Emacs commands
3435 without modifier keys. It's similar to Vim's separation of commands and
3436 insertion mode. When enabled all keys are implicitly prefixed with
3437 @samp{C-} (among other helpful shortcuts).")
3438 (license license:gpl3+))))
3439
3440 (define-public emacs-jinja2-mode
3441 (package
3442 (name "emacs-jinja2-mode")
3443 (version "0.2")
3444 (source
3445 (origin
3446 (method git-fetch)
3447 (uri (git-reference
3448 (url "https://github.com/paradoxxxzero/jinja2-mode.git")
3449 (commit (string-append "v" version))))
3450 (file-name (git-file-name name version))
3451 (sha256
3452 (base32 "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"))))
3453 (build-system emacs-build-system)
3454 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3455 (synopsis "Major mode for jinja2")
3456 (description
3457 "Emacs major mode for jinja2 with: syntax highlighting,
3458 sgml/html integration, and indentation (working with sgml).")
3459 (license license:gpl3+)))
3460
3461 (define-public emacs-company-cabal
3462 ;; The latest version is 0.3.0, but no release has been provided after 0.2.1.
3463 (let ((commit "62112a7259e24bd6c08885629a185afe512b7d3d")
3464 (revision "1"))
3465 (package
3466 (name "emacs-company-cabal")
3467 (version (git-version "0.3.0" revision commit))
3468 (source (origin
3469 (method git-fetch)
3470 (uri (git-reference
3471 (url "https://github.com/iquiw/company-cabal/")
3472 (commit commit)))
3473 (file-name (git-file-name name version))
3474 (sha256
3475 (base32
3476 "1gf45xwjzdm8i4q6c6khk4dbg1mmp2r0awz2sjr4dcr2dbd1n7mg"))))
3477 (build-system emacs-build-system)
3478 (propagated-inputs
3479 `(("emacs-company" ,emacs-company)))
3480 (home-page "https://github.com/iquiw/company-cabal/")
3481 (synopsis "Company completion for Haskell Cabal files")
3482 (description
3483 "This package allows for completion of field names, section names,
3484 field values, and more within @code{haskell-cabal-mode}.")
3485 (license license:gpl3+))))
3486
3487 (define-public emacs-rfcview
3488 (package
3489 (name "emacs-rfcview")
3490 (version "0.13")
3491 (home-page "http://www.loveshack.ukfsn.org/emacs")
3492 (source (origin
3493 (method url-fetch)
3494 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3495 (sha256
3496 (base32
3497 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3498 (build-system emacs-build-system)
3499 (synopsis "Prettify Request for Comments (RFC) documents")
3500 (description "The Internet Engineering Task Force (IETF) and the Internet
3501 Society (ISOC) publish various Internet-related protocols and specifications
3502 as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3503 documents. RFCs and STDs are published in a simple text form. This package
3504 provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3505 read these documents in Emacs. It prettifies the text and adds
3506 hyperlinks/menus for easier navigation. It also provides functions for
3507 browsing the index of RFC documents and fetching them from remote servers or
3508 local directories.")
3509 (license license:gpl3+)))
3510
3511 (define-public emacs-ffap-rfc-space
3512 (package
3513 (name "emacs-ffap-rfc-space")
3514 (version "12")
3515 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3516 (source (origin
3517 (method url-fetch)
3518 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3519 (sha256
3520 (base32
3521 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3522 (build-system emacs-build-system)
3523 (synopsis "Make ffap recognize an RFC with a space before its number")
3524 (description "The Internet Engineering Task Force (IETF) and the
3525 Internet Society (ISOC) publish various Internet-related protocols and
3526 specifications as \"Request for Comments\" (RFC) documents. The
3527 built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3528 recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3529 and load the appropriate RFC from a remote server. However, it fails
3530 to recognize a name like \"RFC 1234\". This package enhances ffap so
3531 that it correctly finds RFCs even when a space appears before the
3532 number.")
3533 (license license:gpl3+)))
3534
3535 (define-public emacs-org-bullets
3536 (package
3537 (name "emacs-org-bullets")
3538 (version "0.2.4")
3539 (source
3540 (origin
3541 (method git-fetch)
3542 (uri (git-reference
3543 (url "https://github.com/sabof/org-bullets.git")
3544 (commit version)))
3545 (file-name (git-file-name name version))
3546 (sha256
3547 (base32 "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"))))
3548 (build-system emacs-build-system)
3549 (home-page "https://github.com/sabof/org-bullets")
3550 (synopsis "Show bullets in org-mode as UTF-8 characters")
3551 (description
3552 "This package provides an Emacs minor mode causing bullets in
3553 @code{org-mode} to be rendered as UTF-8 characters.")
3554 (license license:gpl3+)))
3555
3556 (define-public emacs-org-pomodoro
3557 (package
3558 (name "emacs-org-pomodoro")
3559 (version "2.1.0")
3560 (source
3561 (origin
3562 (method git-fetch)
3563 (uri (git-reference
3564 (url "https://github.com/lolownia/org-pomodoro.git")
3565 (commit version)))
3566 (file-name (git-file-name name version))
3567 (sha256
3568 (base32 "0r5shgikm34d66i2hblyknbblpg92lb2zc9x4bcb28xkh7m9d0xv"))))
3569 (build-system emacs-build-system)
3570 (propagated-inputs
3571 `(("emacs-alert" ,emacs-alert)))
3572 (home-page "https://github.com/lolownia/org-pomodoro")
3573 (synopsis "Pomodoro technique for org-mode")
3574 (description "@code{emacs-org-pomodoro} adds very basic support for
3575 Pomodoro technique in Emacs org-mode.
3576
3577 Run @code{M-x org-pomodoro} for the task at point or select one of the
3578 last tasks that you clocked time for. Each clocked-in pomodoro starts
3579 a timer of 25 minutes and after each pomodoro a break timer of 5
3580 minutes is started automatically. Every 4 breaks a long break is
3581 started with 20 minutes. All values are customizable.")
3582 (license license:gpl3+)))
3583
3584 (define-public emacs-org-trello
3585 (package
3586 (name "emacs-org-trello")
3587 (version "0.8.0")
3588 (source
3589 (origin
3590 (method git-fetch)
3591 (uri (git-reference
3592 (url "https://github.com/org-trello/org-trello.git")
3593 (commit version)))
3594 (file-name (git-file-name name version))
3595 (sha256
3596 (base32 "0m5hyhb6211hdmyp1bq6f3fklfgw3957knd96bfdafj727vdnlzm"))))
3597 (build-system emacs-build-system)
3598 (propagated-inputs
3599 `(("emacs-dash" ,emacs-dash)
3600 ("emacs-deferred" ,emacs-deferred)
3601 ("emacs-f" ,emacs-f)
3602 ("emacs-helm" ,emacs-helm)
3603 ("emacs-request" ,emacs-request)
3604 ("emacs-s" ,emacs-s)))
3605 (home-page "https://org-trello.github.io")
3606 (synopsis "Emacs minor mode for interacting with Trello")
3607 (description "This package provides an Emacs minor mode to extend
3608 @code{org-mode} with Trello abilities. Trello is an online project
3609 organizer.")
3610 (license license:gpl3+)))
3611
3612 (define-public emacs-company-flow
3613 (let ((commit "76ef585c70d2a3206c2eadf24ba61e59124c3a16")
3614 (revision "1"))
3615 (package
3616 (name "emacs-company-flow")
3617 (version (git-version "0.1.0" revision commit))
3618 (source (origin
3619 (method git-fetch)
3620 (uri (git-reference
3621 (url "https://github.com/aaronjensen/company-flow/")
3622 (commit commit)))
3623 (file-name (git-file-name name version))
3624 (sha256
3625 (base32
3626 "0zs9cblnbkxa0dxw4lyllmybqizxcdx96gv8jlhx20nrjpi78piw"))))
3627 (build-system emacs-build-system)
3628 (propagated-inputs
3629 `(("emacs-company" ,emacs-company)
3630 ("emacs-dash" ,emacs-dash)))
3631 (home-page "https://github.com/aaronjensen/company-flow/")
3632 (synopsis "Flow backend for @code{company-mode}")
3633 (description
3634 "This package provides completion for JavaScript files utilizing Flow.")
3635 (license license:gpl3+))))
3636
3637 (define-public emacs-atom-one-dark-theme
3638 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3639 (revision "0"))
3640 (package
3641 (name "emacs-atom-one-dark-theme")
3642 (version (git-version "0.4.0" revision commit))
3643 (source (origin
3644 (method git-fetch)
3645 (uri (git-reference
3646 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3647 (commit commit)))
3648 (sha256
3649 (base32
3650 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3651 (file-name (git-file-name name version))))
3652 (build-system emacs-build-system)
3653 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3654 (synopsis "Atom One Dark color theme for Emacs")
3655 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3656 (license license:gpl3+))))
3657
3658 (define-public emacs-zenburn-theme
3659 (package
3660 (name "emacs-zenburn-theme")
3661 (version "2.6")
3662 (source
3663 (origin
3664 (method git-fetch)
3665 (uri (git-reference
3666 (url "https://github.com/bbatsov/zenburn-emacs.git")
3667 (commit (string-append "v" version))))
3668 (file-name (git-file-name name version))
3669 (sha256
3670 (base32 "1n87r5hs7h5r8dgfid66skpzcypl9hssr9m3npp916g6jfsi782f"))))
3671 (build-system emacs-build-system)
3672 (home-page "https://github.com/bbatsov/zenburn-emacs")
3673 (synopsis "Low contrast color theme for Emacs")
3674 (description
3675 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3676 It is built on top of the custom theme support in Emacs 24 or later.")
3677 (license license:gpl3+)))
3678
3679 (define-public emacs-solarized-theme
3680 (package
3681 (name "emacs-solarized-theme")
3682 (version "1.2.2")
3683 (source (origin
3684 (method url-fetch)
3685 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3686 "archive/v" version ".tar.gz"))
3687 (file-name (string-append name "-" version ".tar.gz"))
3688 (sha256
3689 (base32
3690 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3691 (build-system emacs-build-system)
3692 (propagated-inputs
3693 `(("emacs-dash" ,emacs-dash)))
3694 (home-page "https://github.com/bbatsov/solarized-emacs")
3695 (synopsis "Port of the Solarized theme for Emacs")
3696 (description
3697 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3698 package provides a light and a dark variant.")
3699 (license license:gpl3+)))
3700
3701 (define-public emacs-ahungry-theme
3702 (package
3703 (name "emacs-ahungry-theme")
3704 (version "1.10.0")
3705 (source
3706 (origin (method url-fetch)
3707 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3708 version ".tar"))
3709 (sha256
3710 (base32
3711 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3712 (build-system emacs-build-system)
3713 (home-page "https://github.com/ahungry/color-theme-ahungry")
3714 (synopsis "Ahungry color theme for Emacs")
3715 (description "Ahungry theme for Emacs provides bright and bold colors.
3716 If you load it from a terminal, you will be able to make use of the
3717 transparent background. If you load it from a GUI, it will default to a
3718 dark background.")
3719 (license license:gpl3+)))
3720
3721 (define-public emacs-2048-game
3722 (package
3723 (name "emacs-2048-game")
3724 (version "20151026.1233")
3725 (source
3726 (origin
3727 (method url-fetch)
3728 (uri (string-append "https://melpa.org/packages/2048-game-"
3729 version ".el"))
3730 (sha256
3731 (base32
3732 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3733 (build-system emacs-build-system)
3734 (home-page "https://bitbucket.org/zck/2048.el")
3735 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3736 (description
3737 "This program is an implementation of 2048 for Emacs.
3738 The goal of this game is to create a tile with value 2048. The size of the
3739 board and goal value can be customized.")
3740 (license license:gpl3+)))
3741
3742 (define-public emacs-base16-theme
3743 (package
3744 (name "emacs-base16-theme")
3745 (version "2.1")
3746 (source
3747 (origin
3748 (method url-fetch)
3749 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3750 version ".tar"))
3751 (sha256
3752 (base32
3753 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3754 (build-system emacs-build-system)
3755 (home-page "https://github.com/belak/base16-emacs")
3756 (synopsis "Base16 color themes for Emacs")
3757 (description
3758 "Base16 provides carefully chosen syntax highlighting and a default set
3759 of sixteen colors suitable for a wide range of applications. Base16 is not a
3760 single theme but a set of guidelines with numerous implementations.")
3761 (license license:expat)))
3762
3763 (define-public emacs-prescient
3764 (package
3765 (name "emacs-prescient")
3766 (version "2.2.2")
3767 (source (origin
3768 (method git-fetch)
3769 (uri (git-reference
3770 (url "https://github.com/raxod502/prescient.el/")
3771 (commit (string-append "v" version))))
3772 (file-name (git-file-name name version))
3773 (sha256
3774 (base32
3775 "1ncplx5p3cffyzg9ygzqqxj0vpvwrz9rp2n4z6c375a78fyydrk0"))))
3776 (build-system emacs-build-system)
3777 (propagated-inputs
3778 `(("emacs-company" ,emacs-company)
3779 ("emacs-ivy" ,emacs-ivy)))
3780 (home-page "https://github.com/raxod502/prescient.el/")
3781 (synopsis "Library that sorts and filters lists of candidates")
3782 (description
3783 "This package provides a library for sorting and filtering, as well as
3784 extensions for @code{ivy-mode} and @code{company-mode} that make use of the
3785 library.")
3786 (license license:gpl3+)))
3787
3788 (define-public emacs-smartparens
3789 (package
3790 (name "emacs-smartparens")
3791 (version "1.11.0")
3792 (source
3793 (origin
3794 (method git-fetch)
3795 (uri (git-reference
3796 (url "https://github.com/Fuco1/smartparens.git")
3797 (commit version)))
3798 (file-name (git-file-name name version))
3799 (sha256
3800 (base32 "0zij2f2rjjym98w68jkp10n1ckpfprlkk217c3fg16hz5nq4vnm6"))))
3801 (build-system emacs-build-system)
3802 (propagated-inputs
3803 `(("emacs-dash" ,emacs-dash)
3804 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3805 (home-page "https://github.com/Fuco1/smartparens")
3806 (synopsis "Paredit-like insertion, wrapping and navigation with user
3807 defined pairs")
3808 (description
3809 "Smartparens is a minor mode for Emacs that deals with parens pairs
3810 and tries to be smart about it. It started as a unification effort to
3811 combine functionality of several existing packages in a single,
3812 compatible and extensible way to deal with parentheses, delimiters, tags
3813 and the like. Some of these packages include autopair, textmate,
3814 wrap-region, electric-pair-mode, paredit and others. With the basic
3815 features found in other packages it also brings many improvements as
3816 well as completely new features.")
3817 (license license:gpl3+)))
3818
3819 (define-public emacs-highlight-symbol
3820 (package
3821 (name "emacs-highlight-symbol")
3822 (version "1.3")
3823 (source
3824 (origin
3825 (method git-fetch)
3826 (uri (git-reference
3827 (url "https://github.com/nschum/highlight-symbol.el.git")
3828 (commit version)))
3829 (file-name (git-file-name name version))
3830 (sha256
3831 (base32 "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"))))
3832 (build-system emacs-build-system)
3833 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3834 (synopsis "Automatic and manual symbol highlighting for Emacs")
3835 (description
3836 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3837 point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3838 the symbol at point highlighted.
3839
3840 The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3841 @code{highlight-symbol-next-in-defun} and
3842 @code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3843 of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3844 bindings @code{M-p} and @code{M-p} for navigation. When
3845 @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3846 regardless of @code{highlight-symbol-idle-delay}.
3847
3848 @code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3849 (license license:gpl2+)))
3850
3851 (define-public emacs-hl-todo
3852 (package
3853 (name "emacs-hl-todo")
3854 (version "1.9.0")
3855 (source (origin
3856 (method url-fetch)
3857 (uri (string-append
3858 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3859 version "/hl-todo.el"))
3860 (file-name (string-append "hl-todo-" version ".el"))
3861 (sha256
3862 (base32
3863 "0728givzh7xv5i88ac9if8byj1p8bilrj1fnizca10s0rv100hdr"))))
3864 (build-system emacs-build-system)
3865 (home-page "https://github.com/tarsius/hl-todo")
3866 (synopsis "Emacs mode to highlight TODO and similar keywords")
3867 (description
3868 "This package provides an Emacs mode to highlight TODO and similar
3869 keywords in comments and strings. This package also provides commands for
3870 moving to the next or previous keyword and to invoke @code{occur} with a
3871 regexp that matches all known keywords.")
3872 (license license:gpl3+)))
3873
3874 (define-public emacs-perspective
3875 (package
3876 (name "emacs-perspective")
3877 (version "1.12")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (string-append "https://github.com/nex3/perspective-el/"
3882 "archive/" version ".tar.gz"))
3883 (file-name (string-append name "-" version ".tar.gz"))
3884 (sha256
3885 (base32
3886 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3887 (build-system emacs-build-system)
3888 (home-page "https://github.com/nex3/perspective-el")
3889 (synopsis "Switch between named \"perspectives\"")
3890 (description
3891 "This package provides tagged workspaces in Emacs, similar to workspaces in
3892 windows managers such as Awesome and XMonad. @code{perspective.el} provides
3893 multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3894 perspective is composed of a window configuration and a set of buffers.
3895 Switching to a perspective activates its window configuration, and when in a
3896 perspective only its buffers are available by default.")
3897 ;; This package is released under the same license as Emacs (GPLv3+) or
3898 ;; the Expat license.
3899 (license license:gpl3+)))
3900
3901 (define-public emacs-test-simple
3902 (package
3903 (name "emacs-test-simple")
3904 (version "1.3.0")
3905 (source
3906 (origin
3907 (method url-fetch)
3908 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3909 version ".el"))
3910 (sha256
3911 (base32
3912 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3913 (build-system emacs-build-system)
3914 (home-page "https://github.com/rocky/emacs-test-simple")
3915 (synopsis "Simple unit test framework for Emacs Lisp")
3916 (description
3917 "Test Simple is a simple unit test framework for Emacs Lisp. It
3918 alleviates the need for context macros, enclosing specifications or required
3919 test tags. It supports both interactive and non-interactive use.")
3920 (license license:gpl3+)))
3921
3922 (define-public emacs-load-relative
3923 (package
3924 (name "emacs-load-relative")
3925 (version "1.3")
3926 (source
3927 (origin
3928 (method url-fetch)
3929 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3930 version ".el"))
3931 (sha256
3932 (base32
3933 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3934 (build-system emacs-build-system)
3935 (home-page "http://github.com/rocky/emacs-load-relative")
3936 (synopsis "Emacs Lisp relative file loading related functions")
3937 (description
3938 "Provides functions which facilitate writing multi-file Emacs packages
3939 and running from the source tree without having to \"install\" code or fiddle
3940 with @{load-path}.
3941
3942 The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3943 another (presumably currently running) Emacs Lisp file.")
3944 (license license:gpl3+)))
3945
3946 (define-public emacs-loc-changes
3947 (package
3948 (name "emacs-loc-changes")
3949 (version "1.2")
3950 (source
3951 (origin
3952 (method url-fetch)
3953 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3954 version ".el"))
3955 (sha256
3956 (base32
3957 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3958 (build-system emacs-build-system)
3959 (home-page "https://github.com/rocky/emacs-loc-changes")
3960 (synopsis "Keeps track of positions even after buffer changes")
3961 (description
3962 "This Emacs package provides a mean to track important buffer positions
3963 after buffer changes.")
3964 (license license:gpl3+)))
3965
3966 (define-public emacs-realgud
3967 (package
3968 (name "emacs-realgud")
3969 (version "1.4.5")
3970 (source
3971 (origin
3972 (method url-fetch)
3973 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3974 version ".tar"))
3975 (sha256
3976 (base32
3977 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))
3978 (patches
3979 ;; Patch awaiting inclusion upstream (see:
3980 ;; https://github.com/realgud/realgud/pull/226).
3981 (search-patches "emacs-realgud-fix-configure-ac.patch"))))
3982 (build-system emacs-build-system)
3983 (arguments
3984 `(#:tests? #t
3985 #:phases
3986 (modify-phases %standard-phases
3987 (add-after 'set-emacs-load-path 'fix-autogen-script
3988 (lambda _
3989 (substitute* "autogen.sh"
3990 (("./configure") "sh configure"))))
3991 (add-after 'fix-autogen-script 'autogen
3992 (lambda _
3993 (setenv "CONFIG_SHELL" "sh")
3994 (invoke "sh" "autogen.sh")))
3995 (add-after 'fix-autogen-script 'set-home
3996 (lambda _
3997 (setenv "HOME" (getenv "TMPDIR"))))
3998 (add-before 'patch-el-files 'remove-realgud-pkg.el
3999 (lambda _
4000 ;; XXX: This file is auto-generated at some point and causes
4001 ;; substitute* to crash during the `patch-el-files' phase with:
4002 ;; ERROR: In procedure stat: No such file or directory:
4003 ;; "./realgud-pkg.el"
4004 (delete-file "./realgud-pkg.el")
4005 ;; FIXME: `patch-el-files' crashes on this file with error:
4006 ;; unable to locate "bashdb".
4007 (delete-file "./test/test-regexp-bashdb.el"))))
4008 #:include (cons* ".*\\.el$" %default-include)))
4009 (native-inputs
4010 `(("autoconf" ,autoconf)
4011 ("automake" ,automake)
4012 ("emacs-test-simple" ,emacs-test-simple)))
4013 (propagated-inputs
4014 `(("emacs-load-relative" ,emacs-load-relative)
4015 ("emacs-loc-changes" ,emacs-loc-changes)))
4016 (home-page "https://github.com/realgud/realgud/")
4017 (synopsis
4018 "Modular front-end for interacting with external debuggers")
4019 (description
4020 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
4021 with external debuggers. It integrates various debuggers such as gdb, pdb,
4022 ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
4023 sources. Unlike GUD, it also supports running multiple debug sessions in
4024 parallel.")
4025 (license license:gpl3+)))
4026
4027 (define-public emacs-request
4028 (package
4029 (name "emacs-request")
4030 (version "0.3.0")
4031 (source (origin
4032 (method git-fetch)
4033 (uri (git-reference
4034 (url "https://github.com/tkf/emacs-request.git")
4035 (commit (string-append "v" version))))
4036 (file-name (git-file-name name version))
4037 (sha256
4038 (base32
4039 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
4040 (build-system emacs-build-system)
4041 (propagated-inputs
4042 `(("emacs-deferred" ,emacs-deferred)))
4043 (home-page "https://github.com/tkf/emacs-request")
4044 (synopsis "Package for speaking HTTP in Emacs Lisp")
4045 (description "This package provides a HTTP request library with multiple
4046 backends. It supports url.el which is shipped with Emacs and the curl command
4047 line program.")
4048 (license license:gpl3+)))
4049
4050 (define-public emacs-rudel
4051 (package
4052 (name "emacs-rudel")
4053 (version "0.3.1")
4054 (source
4055 (origin
4056 (method url-fetch)
4057 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
4058 version ".tar"))
4059 (sha256
4060 (base32
4061 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
4062 (build-system emacs-build-system)
4063 (home-page "http://rudel.sourceforge.net/")
4064 (synopsis "Collaborative editing framework")
4065 (description
4066 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
4067 is to share buffers with other users in order to edit the contents of those
4068 buffers collaboratively. Rudel supports multiple backends to enable
4069 communication with other collaborative editors using different protocols,
4070 though currently Obby (for use with the Gobby editor) is the only
4071 fully-functional one.")
4072 (license license:gpl3+)))
4073
4074 (define-public emacs-hydra
4075 (package
4076 (name "emacs-hydra")
4077 (version "0.14.0")
4078 (source
4079 (origin
4080 (method git-fetch)
4081 (uri (git-reference
4082 (url "https://github.com/abo-abo/hydra")
4083 (commit version)))
4084 (file-name (git-file-name name version))
4085 (sha256
4086 (base32
4087 "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"))))
4088 (build-system emacs-build-system)
4089 (home-page "https://github.com/abo-abo/hydra")
4090 (synopsis "Make Emacs bindings that stick around")
4091 (description
4092 "This package can be used to tie related commands into a family of short
4093 bindings with a common prefix---a Hydra. Once you summon the Hydra (through
4094 the prefixed binding), all the heads can be called in succession with only a
4095 short extension. Any binding that isn't the Hydra's head vanquishes the
4096 Hydra. Note that the final binding, besides vanquishing the Hydra, will still
4097 serve its original purpose, calling the command assigned to it. This makes
4098 the Hydra very seamless; it's like a minor mode that disables itself
4099 automatically.")
4100 (license license:gpl3+)))
4101
4102 (define-public emacs-ivy
4103 (package
4104 (name "emacs-ivy")
4105 (version "0.11.0")
4106 (source
4107 (origin
4108 (method git-fetch)
4109 (uri (git-reference
4110 (url "https://github.com/abo-abo/swiper.git")
4111 (commit version)))
4112 (file-name (git-file-name name version))
4113 (sha256
4114 (base32
4115 "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"))))
4116 (build-system emacs-build-system)
4117 (arguments
4118 `(#:phases
4119 (modify-phases %standard-phases
4120 (add-after 'install 'install-doc
4121 (lambda* (#:key outputs #:allow-other-keys)
4122 (let* ((out (assoc-ref outputs "out"))
4123 (info (string-append out "/share/info")))
4124 (with-directory-excursion "doc"
4125 (invoke "makeinfo" "ivy.texi")
4126 (install-file "ivy.info" info)
4127 #t)))))))
4128 (propagated-inputs
4129 `(("emacs-hydra" ,emacs-hydra)))
4130 (native-inputs
4131 `(("texinfo" ,texinfo)))
4132 (home-page "http://oremacs.com/swiper/")
4133 (synopsis "Incremental vertical completion for Emacs")
4134 (description
4135 "This package provides @code{ivy-read} as an alternative to
4136 @code{completing-read} and similar functions. No attempt is made to determine
4137 the best candidate. Instead, the user can navigate candidates with
4138 @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
4139 splitting the input text by spaces and re-building it into a regular
4140 expression.")
4141 (license license:gpl3+)))
4142
4143 (define-public emacs-ivy-yasnippet
4144 (let ((commit "32580b4fd23ebf9ca7dde96704f7d53df6e253cd")
4145 (revision "2"))
4146 (package
4147 (name "emacs-ivy-yasnippet")
4148 (version (git-version "0.1" revision commit))
4149 (source
4150 (origin
4151 (method git-fetch)
4152 (uri (git-reference
4153 (url "https://github.com/mkcms/ivy-yasnippet.git")
4154 (commit commit)))
4155 (file-name (git-file-name name version))
4156 (sha256
4157 (base32
4158 "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"))))
4159 (build-system emacs-build-system)
4160 (propagated-inputs
4161 `(("emacs-ivy" ,emacs-ivy)
4162 ("emacs-yasnippet" ,emacs-yasnippet)
4163 ("emacs-dash" ,emacs-dash)))
4164 (home-page "https://github.com/mkcms/ivy-yasnippet")
4165 (synopsis "Preview @code{yasnippets} with @code{ivy}")
4166 (description "This package allows you to select @code{yasnippet}
4167 snippets using @code{ivy} completion. When current selection changes in the
4168 minibuffer, the snippet contents are temporarily expanded in the buffer. To
4169 use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
4170 @code{yas-minor-mode} first).")
4171 (license license:gpl3+))))
4172
4173 (define-public emacs-ivy-rich
4174 (package
4175 (name "emacs-ivy-rich")
4176 (version "0.1.0")
4177 (source
4178 (origin
4179 (method git-fetch)
4180 (uri (git-reference
4181 (url "https://github.com/Yevgnen/ivy-rich.git")
4182 (commit version)))
4183 (file-name (git-file-name name version))
4184 (sha256
4185 (base32 "0ayf3dwfhafcbqnckm65zy8nc1rv9ji939qfn53wbhxkrgqdicgz"))))
4186 (build-system emacs-build-system)
4187 (propagated-inputs
4188 `(("emacs-ivy" ,emacs-ivy)))
4189 (home-page "https://github.com/Yevgnen/ivy-rich")
4190 (synopsis "More friendly interface for @code{ivy}")
4191 (description
4192 "This package extends @code{ivy} by showing more information in the
4193 minibuffer for each candidate. It adds columns showing buffer modes, file
4194 sizes, docstrings, etc. If @code{emacs-all-the-icons} is installed, it can
4195 show icons as well.")
4196 (license license:gpl3+)))
4197
4198 (define-public emacs-avy
4199 (package
4200 (name "emacs-avy")
4201 (version "0.4.0")
4202 (source
4203 (origin
4204 (method git-fetch)
4205 (uri (git-reference
4206 (url "https://github.com/abo-abo/avy.git")
4207 (commit version)))
4208 (file-name (git-file-name name version))
4209 (sha256
4210 (base32 "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"))))
4211 (build-system emacs-build-system)
4212 (home-page "https://github.com/abo-abo/avy")
4213 (synopsis "Tree-based completion for Emacs")
4214 (description
4215 "This package provides a generic completion method based on building a
4216 balanced decision tree with each candidate being a leaf. To traverse the tree
4217 from the root to a desired leaf, typically a sequence of @code{read-key} can
4218 be used.
4219
4220 In order for @code{read-key} to make sense, the tree needs to be visualized
4221 appropriately, with a character at each branch node. So this completion
4222 method works only for things that you can see on your screen, all at once,
4223 such as the positions of characters, words, line beginnings, links, or
4224 windows.")
4225 (license license:gpl3+)))
4226
4227 (define-public emacs-ace-window
4228 (package
4229 (name "emacs-ace-window")
4230 (version "0.9.0")
4231 (source
4232 (origin
4233 (method git-fetch)
4234 (uri (git-reference
4235 (url "https://github.com/abo-abo/ace-window.git")
4236 (commit version)))
4237 (file-name (git-file-name name version))
4238 (sha256
4239 (base32 "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6"))))
4240 (build-system emacs-build-system)
4241 (propagated-inputs
4242 `(("emacs-avy" ,emacs-avy)))
4243 (home-page "https://github.com/abo-abo/ace-window")
4244 (synopsis "Quickly switch windows in Emacs")
4245 (description
4246 "@code{ace-window} is meant to replace @code{other-window}.
4247 In fact, when there are only two windows present, @code{other-window} is
4248 called. If there are more, each window will have its first character
4249 highlighted. Pressing that character will switch to that window.")
4250 (license license:gpl3+)))
4251
4252 (define-public emacs-iedit
4253 (package
4254 (name "emacs-iedit")
4255 (version "0.9.9.9")
4256 (source
4257 (origin
4258 (method git-fetch)
4259 (uri (git-reference
4260 (url "https://github.com/victorhge/iedit.git")
4261 (commit (string-append "v" version))))
4262 (file-name (git-file-name name version))
4263 (sha256
4264 (base32 "1pwkrm98vlpzsy5iwwfksdaz3zzyi7bvdf5fglhsn4ssf47p787g"))))
4265 (build-system emacs-build-system)
4266 (home-page "http://www.emacswiki.org/emacs/Iedit")
4267 (synopsis "Edit multiple regions in the same way simultaneously")
4268 (description
4269 "This package is an Emacs minor mode and allows you to edit one
4270 occurrence of some text in a buffer (possibly narrowed) or region, and
4271 simultaneously have other occurrences edited in the same way.
4272
4273 You can also use Iedit mode as a quick way to temporarily show only the buffer
4274 lines that match the current text being edited. This gives you the effect of
4275 a temporary @code{keep-lines} or @code{occur}.")
4276 (license license:gpl3+)))
4277
4278 (define-public emacs-zoutline
4279 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
4280 (revision "0"))
4281 (package
4282 (name "emacs-zoutline")
4283 (version (git-version "0.1" revision commit))
4284 (home-page "https://github.com/abo-abo/zoutline")
4285 (source (origin
4286 (method git-fetch)
4287 (uri (git-reference (url home-page) (commit commit)))
4288 (sha256
4289 (base32
4290 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
4291 (file-name (git-file-name name version))))
4292 (build-system emacs-build-system)
4293 (synopsis "Simple outline library")
4294 (description
4295 "This library provides helpers for outlines. Outlines allow users to
4296 navigate code in a tree-like fashion.")
4297 (license license:gpl3+))))
4298
4299 (define-public emacs-lispy
4300 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
4301 ;; since.
4302 (let ((commit "f94cfc6b8f9c3afe7d028c366928049c011023de")
4303 (revision "1"))
4304 (package
4305 (name "emacs-lispy")
4306 (version (git-version "0.26.0" revision commit))
4307 (home-page "https://github.com/abo-abo/lispy")
4308 (source (origin
4309 (method git-fetch)
4310 (uri (git-reference (url home-page) (commit commit)))
4311 (sha256
4312 (base32
4313 "1bm2cpwizg1qfpm377gpx1af1hm5maw69if1csnk5vwaphmv8c4g"))
4314 (file-name (git-file-name name version))))
4315 (build-system emacs-build-system)
4316 (propagated-inputs
4317 `(("emacs-ace-window" ,emacs-ace-window)
4318 ("emacs-iedit" ,emacs-iedit)
4319 ("emacs-ivy" ,emacs-ivy)
4320 ("emacs-hydra" ,emacs-hydra)
4321 ("emacs-zoutline" ,emacs-zoutline)))
4322 (synopsis "Modal S-expression editing")
4323 (description
4324 "Due to the structure of Lisp syntax it's very rare for the programmer
4325 to want to insert characters right before \"(\" or right after \")\". Thus
4326 unprefixed printable characters can be used to call commands when the point is
4327 at one of these special locations. Lispy provides unprefixed keybindings for
4328 S-expression editing when point is at the beginning or end of an
4329 S-expression.")
4330 (license license:gpl3+))))
4331
4332 (define-public emacs-lispyville
4333 (let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
4334 (revision "1"))
4335 (package
4336 (name "emacs-lispyville")
4337 (version (git-version "0.1" revision commit))
4338 (home-page "https://github.com/noctuid/lispyville")
4339 (source (origin
4340 (method git-fetch)
4341 (uri (git-reference (url home-page) (commit commit)))
4342 (sha256
4343 (base32
4344 "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx"))
4345 (file-name (git-file-name name version))))
4346 (propagated-inputs
4347 `(("emacs-evil" ,emacs-evil)
4348 ("emacs-lispy" ,emacs-lispy)))
4349 (build-system emacs-build-system)
4350 (synopsis "Minor mode for integrating Evil with lispy")
4351 (description
4352 "LispyVille's main purpose is to provide a Lisp editing environment
4353 suited towards Evil users. It can serve as a minimal layer on top of lispy
4354 for better integration with Evil, but it does not require the use of lispy’s
4355 keybinding style. The provided commands allow for editing Lisp in normal
4356 state and will work even without lispy being enabled.")
4357 (license license:gpl3+))))
4358
4359 (define-public emacs-clojure-mode
4360 (package
4361 (name "emacs-clojure-mode")
4362 (version "5.6.1")
4363 (source
4364 (origin
4365 (method git-fetch)
4366 (uri (git-reference
4367 (url "https://github.com/clojure-emacs/clojure-mode.git")
4368 (commit version)))
4369 (file-name (git-file-name name version))
4370 (sha256
4371 (base32 "1qadymqzs5fn1sb347xzfw8lqq6s85vvkh4kzm35m61g5i2lm86y"))))
4372 (build-system emacs-build-system)
4373 (native-inputs
4374 `(("emacs-dash" ,emacs-dash)
4375 ("emacs-s" ,emacs-s)
4376 ("ert-runner" ,emacs-ert-runner)))
4377 (arguments
4378 `(#:tests? #t
4379 #:test-command '("ert-runner")))
4380 (home-page "https://github.com/clojure-emacs/clojure-mode")
4381 (synopsis "Major mode for Clojure code")
4382 (description
4383 "This Emacs package provides font-lock, indentation, navigation and basic
4384 refactoring for the @uref{http://clojure.org, Clojure programming language}.
4385 It is recommended to use @code{clojure-mode} with paredit or smartparens.")
4386 (license license:gpl3+)))
4387
4388 (define-public emacs-epl
4389 (package
4390 (name "emacs-epl")
4391 (version "0.8")
4392 (source
4393 (origin
4394 (method git-fetch)
4395 (uri (git-reference
4396 (url "https://github.com/cask/epl.git")
4397 (commit version)))
4398 (file-name (git-file-name name version))
4399 (sha256
4400 (base32 "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr"))))
4401 (build-system emacs-build-system)
4402 (home-page "https://github.com/cask/epl")
4403 (synopsis "Emacs Package Library")
4404 (description
4405 "A package management library for Emacs, based on @code{package.el}.
4406
4407 The purpose of this library is to wrap all the quirks and hassle of
4408 @code{package.el} into a sane API.")
4409 (license license:gpl3+)))
4410
4411 (define-public emacs-counsel-projectile
4412 (package
4413 (name "emacs-counsel-projectile")
4414 (version "0.3.0")
4415 (source (origin
4416 (method git-fetch)
4417 (uri (git-reference
4418 (url "https://github.com/ericdanan/counsel-projectile")
4419 (commit version)))
4420 (file-name (git-file-name name version))
4421 (sha256
4422 (base32
4423 "1inc4ndl0ysfwvxk4avbgpj4qi9rc93da6476a5c81xmwpsv8wmq"))))
4424 (build-system emacs-build-system)
4425 (propagated-inputs
4426 `(("emacs-ivy" ,emacs-ivy)
4427 ("emacs-projectile" ,emacs-projectile)))
4428 (home-page "https://github.com/ericdanan/counsel-projectile")
4429 (synopsis "Enhance Projectile with Ivy")
4430 (description
4431 "This package uses Ivy to provide additional actions for Projectile
4432 commands and replacements for existing functions.")
4433 (license license:gpl3+)))
4434
4435 (define-public emacs-queue
4436 (package
4437 (name "emacs-queue")
4438 (version "0.2")
4439 (source (origin
4440 (method url-fetch)
4441 (uri (string-append "https://elpa.gnu.org/packages/queue-"
4442 version ".el"))
4443 (sha256
4444 (base32
4445 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
4446 (build-system emacs-build-system)
4447 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
4448 (synopsis "Queue data structure for Emacs")
4449 (description
4450 "This Emacs library provides queue data structure. These queues can be
4451 used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
4452 stack, i.e. elements can be added to the front or back of the queue, and can
4453 be removed from the front. This type of data structure is sometimes called an
4454 \"output-restricted deque\".")
4455 (license license:gpl3+)))
4456
4457 (define-public emacs-pkg-info
4458 (package
4459 (name "emacs-pkg-info")
4460 (version "0.6")
4461 (source
4462 (origin
4463 (method git-fetch)
4464 (uri (git-reference
4465 (url "https://github.com/lunaryorn/pkg-info.el.git")
4466 (commit version)))
4467 (file-name (git-file-name name version))
4468 (sha256
4469 (base32 "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"))))
4470 (build-system emacs-build-system)
4471 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4472 (home-page "https://github.com/lunaryorn/pkg-info.el")
4473 (synopsis "Information about Emacs packages")
4474 (description
4475 "This library extracts information from the installed Emacs packages.")
4476 (license license:gpl3+)))
4477
4478 (define-public emacs-spinner
4479 (package
4480 (name "emacs-spinner")
4481 (version "1.7.3")
4482 (source (origin
4483 (method url-fetch)
4484 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
4485 version ".el"))
4486 (sha256
4487 (base32
4488 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
4489 (build-system emacs-build-system)
4490 (home-page "https://github.com/Malabarba/spinner.el")
4491 (synopsis "Emacs mode-line spinner for operations in progress")
4492 (description
4493 "This Emacs package adds spinners and progress-bars to the mode-line for
4494 ongoing operations.")
4495 (license license:gpl3+)))
4496
4497 (define-public emacs-sparql-mode
4498 (package
4499 (name "emacs-sparql-mode")
4500 (version "2.0.1")
4501 (source
4502 (origin
4503 (method git-fetch)
4504 (uri (git-reference
4505 (url "https://github.com/ljos/sparql-mode.git")
4506 (commit (string-append "v" version))))
4507 (file-name (git-file-name name version))
4508 (sha256
4509 (base32 "0ywhqk6n5k0l85zjwbnrivnvxjzqipqrggv06lify6yv18qmyl6s"))))
4510 (build-system emacs-build-system)
4511 (home-page "https://github.com/ljos/sparql-mode")
4512 (synopsis "SPARQL mode for Emacs")
4513 (description "This package provides a major mode for Emacs that provides
4514 syntax highlighting for SPARQL. It also provides a way to execute queries
4515 against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4516 possible to query other endpoints like DBPedia.")
4517 (license license:gpl3+)))
4518
4519 (define-public emacs-better-defaults
4520 (package
4521 (name "emacs-better-defaults")
4522 (version "0.1.3")
4523 (source
4524 (origin
4525 (method url-fetch)
4526 (uri (string-append "https://github.com/technomancy/better-defaults"
4527 "/archive/" version ".tar.gz"))
4528 (file-name (string-append name "-" version ".tar.gz"))
4529 (sha256
4530 (base32
4531 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4532 (build-system emacs-build-system)
4533 (home-page "https://github.com/technomancy/better-defaults")
4534 (synopsis "Better defaults for Emacs")
4535 (description
4536 "Better defaults attempts to address the most obvious deficiencies of the
4537 Emacs default configuration in uncontroversial ways that nearly everyone can
4538 agree upon.")
4539 (license license:gpl3+)))
4540
4541 (define-public emacs-undohist-el
4542 (let ((commit "d2239a5f736724ceb9e3b6bcaa86f4064805cda0")
4543 (revision "1"))
4544 (package
4545 (name "emacs-undohist-el")
4546 (version (git-version "0" revision commit))
4547 (source
4548 (origin
4549 (method git-fetch)
4550 (uri (git-reference
4551 (url "https://github.com/m2ym/undohist-el")
4552 (commit commit)))
4553 (file-name (git-file-name name version))
4554 (sha256
4555 (base32
4556 "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"))
4557 (patches
4558 (search-patches "emacs-undohist-ignored.patch"))))
4559 (build-system emacs-build-system)
4560 (home-page "https://github.com/m2ym/undohist-el")
4561 (synopsis "Save undo history between sessions")
4562 (description "This package allows persistent use of undo history for
4563 individual file buffers.")
4564 (license license:gpl3+))))
4565
4566 (define-public emacs-eprime
4567 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4568 (package
4569 (name "emacs-eprime")
4570 (version (string-append "20140513-" (string-take commit 7)))
4571 (source (origin
4572 (method url-fetch)
4573 (uri (string-append "https://raw.githubusercontent.com"
4574 "/AndrewHynes/eprime-mode/"
4575 commit "/eprime-mode.el"))
4576 (file-name (string-append "eprime-" version ".el"))
4577 (sha256
4578 (base32
4579 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4580 (build-system emacs-build-system)
4581 (home-page "https://github.com/AndrewHynes/eprime-mode")
4582 (synopsis "E-prime checking mode for Emacs")
4583 (description "This package provides an E-prime checking mode for Emacs
4584 that highlights non-conforming text. The subset of the English language called
4585 E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4586 (license license:gpl3+))))
4587
4588 (define-public emacs-julia-mode
4589 ;; XXX: Upstream version remained stuck at 0.3. See
4590 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4591 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4592 (revision "1"))
4593 (package
4594 (name "emacs-julia-mode")
4595 (version (string-append "0.3-" revision "." (string-take commit 8)))
4596 (source
4597 (origin
4598 (method git-fetch)
4599 (uri (git-reference
4600 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4601 (commit commit)))
4602 (file-name (git-file-name name version))
4603 (sha256
4604 (base32
4605 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4606 (build-system emacs-build-system)
4607 (arguments
4608 `(#:tests? #t
4609 #:test-command '("emacs" "--batch"
4610 "-l" "julia-mode-tests.el"
4611 "-f" "ert-run-tests-batch-and-exit")))
4612 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4613 (synopsis "Major mode for Julia")
4614 (description "This Emacs package provides a mode for the Julia
4615 programming language.")
4616 (license license:expat))))
4617
4618 (define-public emacs-smex
4619 (package
4620 (name "emacs-smex")
4621 (version "3.0")
4622 (source (origin
4623 (method url-fetch)
4624 (uri (string-append "https://raw.githubusercontent.com"
4625 "/nonsequitur/smex/" version "/smex.el"))
4626 (file-name (string-append "smex-" version ".el"))
4627 (sha256
4628 (base32
4629 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4630 (build-system emacs-build-system)
4631 (home-page "https://github.com/nonsequitur/smex/")
4632 (synopsis "M-x interface with Ido-style fuzzy matching")
4633 (description
4634 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4635 convenient interface to your recently and most frequently used commands. And
4636 to all the other commands, too.")
4637 (license license:gpl3+)))
4638
4639 (define-public emacs-js2-mode
4640 (package
4641 (name "emacs-js2-mode")
4642 (version "20190219")
4643 (source
4644 (origin
4645 (method git-fetch)
4646 (uri (git-reference
4647 (url "https://github.com/mooz/js2-mode.git")
4648 (commit version)))
4649 (file-name (git-file-name name version))
4650 (sha256
4651 (base32 "0766bbr4piia9vfr4ivd2gwi8dxah654adv6h28ylz4q8xmfzm1b"))))
4652 (build-system emacs-build-system)
4653 (home-page "https://github.com/mooz/js2-mode/")
4654 (synopsis "Improved JavaScript editing mode for Emacs")
4655 (description
4656 "Js2-mode provides a JavaScript major mode for Emacs that is more
4657 advanced than the built-in javascript-mode. Features include accurate syntax
4658 highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4659 errors and strict-mode warnings, smart line-wrapping within comments and
4660 strings, and code folding.")
4661 (license license:gpl3+)))
4662
4663 (define-public emacs-nodejs-repl
4664 (package
4665 (name "emacs-nodejs-repl")
4666 (version "0.2.0")
4667 (source (origin
4668 (method url-fetch)
4669 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4670 "/archive/" version ".tar.gz"))
4671 (sha256
4672 (base32
4673 "0hq2cqdq2668yf48g7qnkci90nhih1gnhacsgz355jnib56lhmkz"))
4674 (file-name (string-append name "-" version ".tar.gz"))))
4675 (build-system emacs-build-system)
4676 (home-page "https://github.com/abicky/nodejs-repl.el")
4677 (synopsis "Node.js REPL inside Emacs")
4678 (description
4679 "This program is derived from comint-mode and provides the following
4680 features:
4681
4682 @itemize
4683 @item TAB completion same as Node.js REPL
4684 @item file name completion in string
4685 @item incremental history search
4686 @end itemize")
4687 (license license:gpl3+)))
4688
4689 (define-public emacs-typescript-mode
4690 (package
4691 (name "emacs-typescript-mode")
4692 (version "0.3")
4693 (source (origin
4694 (method url-fetch)
4695 (uri (string-append
4696 "https://github.com/ananthakumaran/typescript.el"
4697 "/archive/v" version ".tar.gz"))
4698 (sha256
4699 (base32
4700 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4701 (file-name (string-append name "-" version ".tar.gz"))))
4702 (build-system emacs-build-system)
4703 (home-page "https://github.com/ananthakumaran/typescript.el")
4704 (synopsis "Emacs major mode for editing Typescript code")
4705 (description
4706 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4707 This is much more robust and works with @code{cc-mode}'s comment
4708 filling (mostly). The modifications to the original @code{javascript.el} mode
4709 mainly consisted in replacing \"javascript\" with \"typescript\"
4710
4711 The main features of this Typescript mode are syntactic highlighting (enabled
4712 with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4713 indentation and filling of comments and C preprocessor fontification.")
4714 (license license:gpl3+)))
4715
4716 (define-public emacs-tide
4717 (package
4718 (name "emacs-tide")
4719 (version "3.2.3")
4720 (source (origin
4721 (method url-fetch)
4722 (uri (string-append "https://github.com/ananthakumaran/tide"
4723 "/archive/v" version ".tar.gz"))
4724 (sha256
4725 (base32
4726 "1c600myr2yqbkmy9lify38lz0zzjdqk1733db5n7vsay16vn6fzi"))
4727 (file-name (string-append name "-" version ".tar.gz"))))
4728 (build-system emacs-build-system)
4729 (propagated-inputs
4730 `(("emacs-dash" ,emacs-dash)
4731 ("emacs-s" ,emacs-s)
4732 ("emacs-flycheck" ,emacs-flycheck)
4733 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4734 (home-page "https://github.com/ananthakumaran/tide")
4735 (synopsis "Typescript IDE for Emacs")
4736 (description
4737 "Tide is an Interactive Development Environment (IDE) for Emacs which
4738 provides the following features:
4739
4740 @itemize
4741 @item ElDoc
4742 @item Auto complete
4743 @item Flycheck
4744 @item Jump to definition, Jump to type definition
4745 @item Find occurrences
4746 @item Rename symbol
4747 @item Imenu
4748 @item Compile On Save
4749 @item Highlight Identifiers
4750 @item Code Fixes
4751 @item Code Refactor
4752 @item Organize Imports
4753 @end itemize")
4754 (license license:gpl3+)))
4755
4756 (define-public emacs-markdown-mode
4757 (package
4758 (name "emacs-markdown-mode")
4759 (version "2.3")
4760 (source (origin
4761 (method url-fetch)
4762 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4763 "/markdown-mode/v" version
4764 "/markdown-mode.el"))
4765 (file-name (string-append "markdown-mode-" version ".el"))
4766 (sha256
4767 (base32
4768 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4769 (build-system emacs-build-system)
4770 (home-page "http://jblevins.org/projects/markdown-mode/")
4771 (synopsis "Emacs Major mode for Markdown files")
4772 (description
4773 "Markdown-mode is a major mode for editing Markdown-formatted text files
4774 in Emacs.")
4775 (license license:gpl3+)))
4776
4777 (define-public emacs-edit-indirect
4778 (package
4779 (name "emacs-edit-indirect")
4780 (version "0.1.5")
4781 (source
4782 (origin
4783 (method git-fetch)
4784 (uri (git-reference
4785 (url "https://github.com/Fanael/edit-indirect")
4786 (commit version)))
4787 (file-name (git-file-name name version))
4788 (sha256
4789 (base32
4790 "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r"))))
4791 (build-system emacs-build-system)
4792 (home-page "https://github.com/Fanael/edit-indirect")
4793 (synopsis "Edit regions in separate buffers")
4794 (description "This package allows you to edit regions in separate buffers,
4795 like @code{org-edit-src-code} but for arbitrary regions.")
4796 (license license:gpl3+)))
4797
4798 (define-public emacs-projectile
4799 (package
4800 (name "emacs-projectile")
4801 (version "2.0.0")
4802 (source (origin
4803 (method url-fetch)
4804 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4805 "/projectile/v" version "/projectile.el"))
4806 (file-name (string-append "projectile-" version ".el"))
4807 (sha256
4808 (base32
4809 "149hablms6n9b4wp78dz4pjz1rzyylfw9ayghq5p9d7k661mvyby"))))
4810 (build-system emacs-build-system)
4811 (propagated-inputs
4812 `(("emacs-dash" ,emacs-dash)
4813 ("emacs-pkg-info" ,emacs-pkg-info)))
4814 (home-page "https://github.com/bbatsov/projectile")
4815 (synopsis "Manage and navigate projects in Emacs easily")
4816 (description
4817 "This library provides easy project management and navigation. The
4818 concept of a project is pretty basic - just a folder containing special file.
4819 Currently git, mercurial and bazaar repos are considered projects by default.
4820 If you want to mark a folder manually as a project just create an empty
4821 .projectile file in it.")
4822 (license license:gpl3+)))
4823
4824 (define-public emacs-elfeed
4825 (package
4826 (name "emacs-elfeed")
4827 (version "3.0.0")
4828 (source
4829 (origin
4830 (method git-fetch)
4831 (uri (git-reference
4832 (url "https://github.com/skeeto/elfeed.git")
4833 (commit version)))
4834 (file-name (git-file-name name version))
4835 (sha256
4836 (base32 "01x4ww63lvn04c7f3ab5vx2s20xqisvv8213qwswz7vr9nxja5yi"))))
4837 (build-system emacs-build-system)
4838 (arguments
4839 `(#:tests? #t
4840 #:test-command '("make" "test")))
4841 (home-page "https://github.com/skeeto/elfeed")
4842 (synopsis "Atom/RSS feed reader for Emacs")
4843 (description
4844 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4845 and RSS, with a user interface inspired by notmuch.")
4846 (license license:gpl3+)))
4847
4848 (define-public emacs-el-x
4849 (package
4850 (name "emacs-el-x")
4851 (version "0.3.1")
4852 (source (origin
4853 (method git-fetch)
4854 (uri (git-reference
4855 (url "https://github.com/sigma/el-x.git")
4856 (commit (string-append "v" version))))
4857 (file-name (git-file-name name version))
4858 (sha256
4859 (base32
4860 "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"))))
4861 (build-system emacs-build-system)
4862 (arguments
4863 `(#:phases
4864 (modify-phases %standard-phases
4865 ;; Move the source files to the top level, which is included in
4866 ;; the EMACSLOADPATH.
4867 (add-after 'unpack 'move-source-files
4868 (lambda _
4869 (let ((el-files (find-files "./lisp" ".*\\.el$")))
4870 (for-each (lambda (f)
4871 (rename-file f (basename f)))
4872 el-files))
4873 #t)))))
4874 (home-page "https://github.com/sigma/el-x")
4875 (synopsis "Emacs Lisp extensions")
4876 (description "command@{emacs-el-x} defines the @code{dflet} macro to
4877 provide the historic behavior of @code{flet}, as well as
4878 @code{declare-function} stub for older Emacs.")
4879 (license license:gpl2+)))
4880
4881 (define-public emacs-mocker
4882 (package
4883 (name "emacs-mocker")
4884 (version "0.3.1")
4885 (source (origin
4886 (method git-fetch)
4887 (uri (git-reference
4888 (url "https://github.com/sigma/mocker.el.git")
4889 (commit (string-append "v" version))))
4890 (file-name (git-file-name name version))
4891 (sha256
4892 (base32
4893 "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"))))
4894 (build-system emacs-build-system)
4895 (arguments
4896 `(#:tests? #t
4897 #:test-command '("ert-runner")))
4898 (native-inputs
4899 `(("ert-runner" ,emacs-ert-runner)))
4900 (propagated-inputs
4901 `(("emacs-el-x" ,emacs-el-x)))
4902 (home-page "https://github.com/sigma/mocker.el")
4903 (synopsis "Mocking framework for Emacs Lisp")
4904 (description "Mocker.el is a framework for writing tests in Emacs Lisp.
4905 It uses regular Lisp rather than a domain specific language (DSL), which
4906 maximizes flexibility (at the expense of conciseness).")
4907 (license license:gpl2+)))
4908
4909 (define-public emacs-find-file-in-project
4910 (package
4911 (name "emacs-find-file-in-project")
4912 (version "5.4.7")
4913 (source (origin
4914 (method git-fetch)
4915 (uri (git-reference
4916 (url "https://github.com/technomancy/find-file-in-project.git")
4917 (commit version)))
4918 (file-name (git-file-name name version))
4919 (sha256
4920 (base32
4921 "1sdnyqv69mipbgs9yax88m9b6crsa59rjhwrih197pifl4089awr"))))
4922 (build-system emacs-build-system)
4923 (arguments
4924 `(#:phases
4925 (modify-phases %standard-phases
4926 (add-before 'check 'set-shell
4927 ;; Otherwise Emacs shell-file-name is set to "/bin/sh", which doesn't
4928 ;; work.
4929 (lambda _
4930 (setenv "SHELL" (which "sh"))
4931 #t)))
4932 #:tests? #t
4933 #:test-command '("./tests/test.sh")))
4934 (home-page "https://github.com/technomancy/find-file-in-project")
4935 (synopsis "File/directory finder for Emacs")
4936 (description "@code{find-file-in-project} allows to find files or
4937 directories quickly in the current project. The project root is detected
4938 automatically when Git, Subversion or Mercurial are used. It also provides
4939 functions to assist in reviewing changes on files.")
4940 (license license:gpl3+)))
4941
4942 (define-public emacs-pyvenv
4943 (package
4944 (name "emacs-pyvenv")
4945 (version "1.20")
4946 (source (origin
4947 (method git-fetch)
4948 (uri (git-reference
4949 (url "https://github.com/jorgenschaefer/pyvenv.git")
4950 (commit (string-append "v" version))))
4951 (file-name (git-file-name name version))
4952 (sha256
4953 (base32
4954 "1x052fsavb94x3scpqd6n9spqgzaahzbdxhg4qa5sy6hqsabn6zh"))))
4955 (build-system emacs-build-system)
4956 (arguments
4957 `(#:phases
4958 (modify-phases %standard-phases
4959 ;; This phase incorrectly attempts to substitute "activate" and fails
4960 ;; doing so.
4961 (delete 'patch-el-files))
4962 #:tests? #t
4963 #:test-command '("ert-runner")))
4964 (native-inputs
4965 `(("ert-runner" ,emacs-ert-runner)
4966 ("emacs-mocker" ,emacs-mocker)))
4967 (home-page "https://github.com/jorgenschaefer/pyvenv")
4968 (synopsis "Python virtual environment interface for Emacs")
4969 (description "pyvenv.el is a minor mode to support using Python virtual
4970 environments (virtualenv) inside Emacs.")
4971 (license license:gpl3+)))
4972
4973 (define-public emacs-highlight-indentation
4974 (package
4975 (name "emacs-highlight-indentation")
4976 (version "0.7.0")
4977 (source (origin
4978 (method git-fetch)
4979 (uri (git-reference
4980 (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
4981 (commit (string-append "v" version))))
4982 (file-name (git-file-name name version))
4983 (sha256
4984 (base32
4985 "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
4986 (build-system emacs-build-system)
4987 (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
4988 (synopsis "Highlighting indentation for Emacs")
4989 (description "Provides two minor modes to highlight indentation guides in Emacs:
4990 @enumerate
4991 @item @code{highlight-indentation-mode}, which displays guidelines
4992 indentation (space indentation only).
4993 @item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
4994 @end enumerate")
4995 (license license:gpl2+)))
4996
4997 (define-public emacs-elpy
4998 (package
4999 (name "emacs-elpy")
5000 (version "1.28.0")
5001 (source (origin
5002 (method git-fetch)
5003 (uri (git-reference
5004 (url "https://github.com/jorgenschaefer/elpy.git")
5005 (commit version)))
5006 (file-name (git-file-name name version))
5007 (sha256
5008 (base32
5009 "073bwxwjzcbmvpcz9q2xjwzx9x7hkvjni6fwvikh6yawzjp56jis"))))
5010 (build-system emacs-build-system)
5011 (arguments
5012 `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
5013 #:phases
5014 ;; TODO: Make `elpy-config' display Guix commands :)
5015 (modify-phases %standard-phases
5016 ;; One elpy test depends on being run inside a Python virtual
5017 ;; environment to pass. We have nothing to gain from doing so here,
5018 ;; so we just trick Elpy into thinking we are (see:
5019 ;; https://github.com/jorgenschaefer/elpy/pull/1293).
5020 (add-before 'check 'fake-virtualenv
5021 (lambda _
5022 (setenv "VIRTUAL_ENV" "/tmp")
5023 #t))
5024 (add-before 'check 'build-doc
5025 (lambda _
5026 (with-directory-excursion "docs"
5027 (invoke "make" "info" "man"))
5028 ;; Move .info file at the root so that it can installed by the
5029 ;; 'move-doc phase.
5030 (rename-file "docs/_build/texinfo/Elpy.info" "Elpy.info")
5031 #t))
5032 (add-after 'build-doc 'install-manpage
5033 (lambda* (#:key outputs #:allow-other-keys)
5034 (let* ((out (assoc-ref outputs "out"))
5035 (man1 (string-append out "/share/man/man1")))
5036 (mkdir-p man1)
5037 (copy-file "docs/_build/man/elpy.1"
5038 (string-append man1 "/elpy.1")))
5039 #t)))
5040 #:tests? #t
5041 #:test-command '("ert-runner")))
5042 (propagated-inputs
5043 `(("emacs-company" ,emacs-company)
5044 ("emacs-find-file-in-project" ,emacs-find-file-in-project)
5045 ("emacs-highlight-indentation" ,emacs-highlight-indentation)
5046 ("emacs-yasnippet" ,emacs-yasnippet)
5047 ("pyvenv" ,emacs-pyvenv)
5048 ("s" ,emacs-s)))
5049 (native-inputs
5050 `(("ert-runner" ,emacs-ert-runner)
5051 ("emacs-f" ,emacs-f)
5052 ("python" ,python-wrapper)
5053 ("python-autopep8" ,python-autopep8)
5054 ("python-black" ,python-black)
5055 ("python-flake8" ,python-flake8)
5056 ("python-jedi" ,python-jedi)
5057 ("python-yapf" ,python-yapf)
5058 ;; For documentation.
5059 ("python-sphinx" ,python-sphinx)
5060 ("texinfo" ,texinfo)))
5061 (home-page "https://github.com/jorgenschaefer/elpy")
5062 (synopsis "Python development environment for Emacs")
5063 (description "Elpy brings powerful Python editing to Emacs. It combines
5064 and configures a number of other packages written in Emacs Lisp as well as
5065 Python, together offering features such as navigation, documentation,
5066 completion, interactive development and more.")
5067 (license license:gpl3+)))
5068
5069 (define-public emacs-rainbow-delimiters
5070 (package
5071 (name "emacs-rainbow-delimiters")
5072 (version "2.1.3")
5073 (source (origin
5074 (method url-fetch)
5075 (uri (string-append "https://raw.githubusercontent.com/Fanael"
5076 "/rainbow-delimiters/" version
5077 "/rainbow-delimiters.el"))
5078 (file-name (string-append "rainbow-delimiters-" version ".el"))
5079 (sha256
5080 (base32
5081 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
5082 (build-system emacs-build-system)
5083 (home-page "https://github.com/Fanael/rainbow-delimiters")
5084 (synopsis "Highlight brackets according to their depth")
5085 (description
5086 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
5087 highlights parentheses, brackets, and braces according to their depth. Each
5088 successive level is highlighted in a different color, making it easy to spot
5089 matching delimiters, orient yourself in the code, and tell which statements
5090 are at a given level.")
5091 (license license:gpl3+)))
5092
5093 (define-public emacs-rainbow-identifiers
5094 (package
5095 (name "emacs-rainbow-identifiers")
5096 (version "0.2.2")
5097 (source (origin
5098 (method url-fetch)
5099 (uri (string-append "https://raw.githubusercontent.com/Fanael"
5100 "/rainbow-identifiers/" version
5101 "/rainbow-identifiers.el"))
5102 (file-name (string-append "rainbow-identifiers-" version ".el"))
5103 (sha256
5104 (base32
5105 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
5106 (build-system emacs-build-system)
5107 (home-page "https://github.com/Fanael/rainbow-identifiers")
5108 (synopsis "Highlight identifiers in source code")
5109 (description
5110 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
5111 identifiers based on their names. Each identifier gets a color based on a hash
5112 of its name.")
5113 (license license:bsd-2)))
5114
5115 (define-public emacs-rainbow-mode
5116 (package
5117 (name "emacs-rainbow-mode")
5118 (version "1.0.1")
5119 (source (origin
5120 (method url-fetch)
5121 (uri (string-append
5122 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
5123 (sha256
5124 (base32
5125 "0cpga4ax635rfpj7y2vmh7ank0yw00dcy20gjg1mj74r97by8csf"))))
5126 (build-system emacs-build-system)
5127 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
5128 (synopsis "Colorize color names in buffers")
5129 (description
5130 "This minor mode sets background color to strings that match color
5131 names, e.g. #0000ff is displayed in white with a blue background.")
5132 (license license:gpl3+)))
5133
5134 (define-public emacs-visual-fill-column
5135 (package
5136 (name "emacs-visual-fill-column")
5137 (version "1.11")
5138 (source (origin
5139 (method url-fetch)
5140 (uri (string-append "https://codeload.github.com/joostkremers/"
5141 "visual-fill-column/tar.gz/" version))
5142 (file-name (string-append name "-" version ".tar.gz"))
5143 (sha256
5144 (base32
5145 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
5146 (build-system emacs-build-system)
5147 (home-page "https://github.com/joostkremers/visual-fill-column")
5148 (synopsis "Fill-column for visual-line-mode")
5149 (description
5150 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
5151 the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
5152 wrapping lines at the window edge, which is the standard behaviour of
5153 @code{visual-line-mode}, it wraps lines at @code{fill-column}. If
5154 @code{fill-column} is too large for the window, the text is wrapped at the
5155 window edge.")
5156 (license license:gpl3+)))
5157
5158 (define-public emacs-writeroom
5159 (package
5160 (name "emacs-writeroom")
5161 (version "3.7")
5162 (source
5163 (origin
5164 (method git-fetch)
5165 (uri (git-reference
5166 (url "https://github.com/joostkremers/writeroom-mode.git")
5167 (commit version)))
5168 (file-name (git-file-name name version))
5169 (sha256
5170 (base32 "13nbls5qxz5z8firjxaip8m9vzfbbpxmwrmr01njbk4axpwrpj0z"))))
5171 (build-system emacs-build-system)
5172 (propagated-inputs
5173 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
5174 (home-page "https://github.com/joostkremers/writeroom-mode")
5175 (synopsis "Distraction-free writing for Emacs")
5176 (description
5177 "This package defines a minor mode for distraction-free writing. Some of
5178 the default effects include entering fullscreen, deleting other windows of the
5179 current frame, disabling the mode line, and adding margins to the buffer that
5180 restrict the text width to 80 characters.")
5181 (license license:bsd-3)))
5182
5183 (define-public emacs-ido-completing-read+
5184 (package
5185 (name "emacs-ido-completing-read+")
5186 (version "3.12")
5187 (source (origin
5188 (method url-fetch)
5189 (uri (string-append "https://raw.githubusercontent.com"
5190 "/DarwinAwardWinner/ido-ubiquitous/v"
5191 version "/ido-completing-read+.el"))
5192 (file-name (string-append "ido-completing-read+-" version ".el"))
5193 (sha256
5194 (base32
5195 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
5196 (build-system emacs-build-system)
5197 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
5198 (synopsis "Replacement for completing-read using ido")
5199 (description
5200 "The ido-completing-read+ function is a wrapper for ido-completing-read.
5201 Importantly, it detects edge cases that ordinary ido cannot handle and either
5202 adjusts them so ido can handle them, or else simply falls back to the standard
5203 Emacs completion function instead.")
5204 (license license:gpl3+)))
5205
5206 (define-public emacs-ido-ubiquitous
5207 (package
5208 (name "emacs-ido-ubiquitous")
5209 (version "3.12")
5210 (source (origin
5211 (method url-fetch)
5212 (uri (string-append "https://raw.githubusercontent.com"
5213 "/DarwinAwardWinner/ido-ubiquitous/v"
5214 version "/ido-ubiquitous.el"))
5215 (file-name (string-append "ido-ubiquitous-" version ".el"))
5216 (sha256
5217 (base32
5218 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
5219 (build-system emacs-build-system)
5220 (propagated-inputs
5221 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
5222 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
5223 (synopsis "Use ido (nearly) everywhere")
5224 (description
5225 "Ido-ubiquitous enables ido-style completion for almost every function
5226 that uses the standard completion function completing-read.")
5227 (license license:gpl3+)))
5228
5229 (define-public emacs-yaml-mode
5230 (package
5231 (name "emacs-yaml-mode")
5232 (version "0.0.13")
5233 (source (origin
5234 (method url-fetch)
5235 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
5236 "/yaml-mode/v" version "/yaml-mode.el"))
5237 (file-name (string-append "yaml-mode-" version ".el"))
5238 (sha256
5239 (base32
5240 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
5241 (build-system emacs-build-system)
5242 (home-page "https://github.com/yoshiki/yaml-mode")
5243 (synopsis "Major mode for editing YAML files")
5244 (description
5245 "Yaml-mode is an Emacs major mode for editing files in the YAML data
5246 serialization format. It was initially developed by Yoshiki Kurihara and many
5247 features were added by Marshall Vandegrift. As YAML and Python share the fact
5248 that indentation determines structure, this mode provides indentation and
5249 indentation command behavior very similar to that of python-mode.")
5250 (license license:gpl3+)))
5251
5252 (define-public emacs-web-mode
5253 (package
5254 (name "emacs-web-mode")
5255 (version "16")
5256 (source (origin
5257 (method url-fetch)
5258 (uri (string-append "https://raw.githubusercontent.com/fxbois"
5259 "/web-mode/v" version "/web-mode.el"))
5260 (file-name (string-append "web-mode-" version ".el"))
5261 (sha256
5262 (base32
5263 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
5264 (build-system emacs-build-system)
5265 (synopsis "Major mode for editing web templates")
5266 (description "Web-mode is an Emacs major mode for editing web templates
5267 aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
5268 client/server side engines). Web-mode is compatible with many template
5269 engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
5270 Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
5271 Dust.js, React/JSX, Angularjs, ejs, etc.")
5272 (home-page "http://web-mode.org/")
5273 (license license:gpl3+)))
5274
5275 (define-public emacs-wgrep
5276 (package
5277 (name "emacs-wgrep")
5278 (version "2.3.0")
5279 (source (origin
5280 (method url-fetch)
5281 (uri (string-append
5282 "https://github.com/mhayashi1120/Emacs-wgrep/archive/"
5283 version ".tar.gz"))
5284 (file-name (string-append name "-" version ".tar.gz"))
5285 (sha256
5286 (base32
5287 "1cssqbg03fjb6xwf7idv1l3jjsh9r5r232ryi11czqlxfiv658bj"))))
5288 (build-system emacs-build-system)
5289 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
5290 (synopsis "Edit a grep buffer and apply those changes to the files")
5291 (description
5292 "Emacs wgrep allows you to edit a grep buffer and apply those changes
5293 to the file buffer. Several backends are supported beside the classic grep:
5294 ack, ag, helm and pt.")
5295 (license license:gpl3+)))
5296
5297 (define-public emacs-helm
5298 (package
5299 (name "emacs-helm")
5300 (version "3.1")
5301 (source
5302 (origin
5303 (method git-fetch)
5304 (uri (git-reference
5305 (url "https://github.com/emacs-helm/helm.git")
5306 (commit (string-append "v" version))))
5307 (file-name (git-file-name name version))
5308 (sha256
5309 (base32 "1x3nv8zvp8vvl30bm2d83hd7zxb0ca64pc8kwb81ml9al6r3mm01"))))
5310 (build-system emacs-build-system)
5311 (propagated-inputs
5312 `(("emacs-async" ,emacs-async)
5313 ("emacs-popup" ,emacs-popup)))
5314 (home-page "https://emacs-helm.github.io/helm/")
5315 (synopsis "Incremental completion and selection narrowing
5316 framework for Emacs")
5317 (description "Helm is incremental completion and selection narrowing
5318 framework for Emacs. It will help steer you in the right direction when
5319 you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
5320 of @code{anything.el} originally written by Tamas Patrovic and can be
5321 considered to be its successor. Helm sets out to clean up the legacy code in
5322 @code{anything.el} and provide a cleaner, leaner and more modular tool, that's
5323 not tied in the trap of backward compatibility.")
5324 (license license:gpl3+)))
5325
5326 (define-public emacs-helm-swoop
5327 (package
5328 (name "emacs-helm-swoop")
5329 (version "1.7.4")
5330 (source
5331 (origin
5332 (method git-fetch)
5333 (uri (git-reference
5334 (url "https://github.com/ShingoFukuyama/helm-swoop.git")
5335 (commit version)))
5336 (file-name (git-file-name name version))
5337 (sha256
5338 (base32 "0b23j1bkpg4pm310hqdhgnl4mxsj05gpl08b6kb2ja4fzrg6adsk"))))
5339 (build-system emacs-build-system)
5340 (propagated-inputs
5341 `(("emacs-helm" ,emacs-helm)))
5342 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
5343 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
5344 (description
5345 "This package builds on the Helm interface to provide several commands
5346 for search-based navigation of buffers.")
5347 (license license:gpl2+)))
5348
5349 (define-public emacs-helm-projectile
5350 (package
5351 (name "emacs-helm-projectile")
5352 (version "0.14.0")
5353 (source
5354 (origin
5355 (method git-fetch)
5356 (uri (git-reference
5357 (url "https://github.com/bbatsov/helm-projectile.git")
5358 (commit (string-append "v" version))))
5359 (file-name (git-file-name name version))
5360 (sha256
5361 (base32 "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4"))))
5362 (build-system emacs-build-system)
5363 (propagated-inputs
5364 `(("emacs-dash" ,emacs-dash)
5365 ("emacs-helm" ,emacs-helm)
5366 ("emacs-projectile" ,emacs-projectile)))
5367 (home-page "https://github.com/bbatsov/helm-projectile")
5368 (synopsis "Helm integration for Projectile")
5369 (description
5370 "This Emacs library provides a Helm interface for Projectile.")
5371 (license license:gpl3+)))
5372
5373 (define-public emacs-helm-make
5374 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
5375 (revision "1"))
5376 (package
5377 (name "emacs-helm-make")
5378 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
5379 (source
5380 (origin
5381 (method git-fetch)
5382 (uri (git-reference
5383 (url "https://github.com/abo-abo/helm-make.git")
5384 (commit commit)))
5385 (file-name (git-file-name name version))
5386 (sha256
5387 (base32
5388 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
5389 (build-system emacs-build-system)
5390 (propagated-inputs
5391 `(("emacs-helm" ,emacs-helm)
5392 ("emacs-projectile" ,emacs-projectile)))
5393 (home-page "https://github.com/abo-abo/helm-make")
5394 (synopsis "Select a Makefile target with helm")
5395 (description "@code{helm-make} or @code{helm-make-projectile} will give
5396 you a @code{helm} selection of directory Makefile's targets. Selecting a
5397 target will call @code{compile} on it.")
5398 (license license:gpl3+))))
5399
5400 (define-public emacs-cider
5401 (package
5402 (name "emacs-cider")
5403 (version "0.21.0")
5404 (source
5405 (origin
5406 (method git-fetch)
5407 (uri (git-reference
5408 (url "https://github.com/clojure-emacs/cider.git")
5409 (commit (string-append "v" version))))
5410 (file-name (git-file-name name version))
5411 (sha256
5412 (base32
5413 "0lbrwj67fnvynkdkzvnzp3p8vqlz0ldrcs317vg60bqfhx7hvqkj"))))
5414 (build-system emacs-build-system)
5415 (arguments
5416 '(#:exclude ; Don't exclude 'cider-test.el'.
5417 '("^\\.dir-locals\\.el$" "^test/")))
5418 (propagated-inputs
5419 `(("emacs-clojure-mode" ,emacs-clojure-mode)
5420 ("emacs-sesman" ,emacs-sesman)
5421 ("emacs-spinner" ,emacs-spinner)
5422 ("emacs-pkg-info" ,emacs-pkg-info)
5423 ("emacs-queue" ,emacs-queue)))
5424 (home-page "https://cider.readthedocs.io/")
5425 (synopsis "Clojure development environment for Emacs")
5426 (description
5427 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
5428 provide an interactive development experience similar to the one you'd get
5429 when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
5430 Geiser) and Smalltalk.
5431
5432 CIDER is the successor to the now deprecated combination of using SLIME +
5433 swank-clojure for Clojure development.
5434
5435 There are plenty of differences between CIDER and SLIME, but the core ideas
5436 are pretty much the same (and SLIME served as the principle inspiration for
5437 CIDER).")
5438 (license license:gpl3+)))
5439
5440 ;; There hasn't been a tag or release since 2015, so we take the latest
5441 ;; commit.
5442 (define-public emacs-sly
5443 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
5444 (revision "1"))
5445 (package
5446 (name "emacs-sly")
5447 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
5448 (source
5449 (origin
5450 (method git-fetch)
5451 (uri (git-reference
5452 (url "https://github.com/joaotavora/sly.git")
5453 (commit commit)))
5454 (file-name (git-file-name name version))
5455 (sha256
5456 (base32
5457 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
5458 (build-system emacs-build-system)
5459 (arguments
5460 `(#:include (cons "^lib\\/" %default-include)
5461 #:phases
5462 ;; The package provides autoloads.
5463 (modify-phases %standard-phases
5464 (delete 'make-autoloads))))
5465 (home-page "https://github.com/joaotavora/sly")
5466 (synopsis "Sylvester the Cat's Common Lisp IDE")
5467 (description
5468 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
5469 contains the following improvements over it:
5470
5471 @enumerate
5472 @item Completely redesigned REPL based on Emacs's own full-featured
5473 @code{comint.el}
5474 @item Live code annotations via a new @code{sly-stickers} contrib
5475 @item Consistent interactive button interface. Everything can be copied to
5476 the REPL.
5477 @item Multiple inspectors with independent history
5478 @item Regexp-capable @code{M-x sly-apropos}
5479 @item Contribs are first class SLY citizens and enabled by default
5480 @item Use ASDF to loads contribs on demand.
5481 @end enumerate
5482
5483 SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
5484 xref, etc...) are still available, but with better integration.")
5485 (license license:gpl3+))))
5486
5487 (define-public emacs-lua-mode
5488 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
5489 (revision "1"))
5490 (package
5491 (name "emacs-lua-mode")
5492 (version (string-append "20151025." revision "-" (string-take commit 9)))
5493 (home-page "https://github.com/immerrr/lua-mode/")
5494 (source (origin
5495 (method git-fetch)
5496 (uri (git-reference
5497 (url home-page)
5498 (commit commit)))
5499 (file-name (string-append name "-" version ".checkout"))
5500 (sha256
5501 (base32
5502 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
5503 (build-system emacs-build-system)
5504 (synopsis "Major mode for lua")
5505 (description
5506 "This Emacs package provides a mode for @uref{https://www.lua.org/,
5507 Lua programing language}.")
5508 (license license:gpl2+))))
5509
5510 (define-public emacs-ebuild-mode
5511 (package
5512 (name "emacs-ebuild-mode")
5513 (version "1.37")
5514 (source (origin
5515 (method url-fetch)
5516 (uri (string-append
5517 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
5518 "-" version ".tar.xz"))
5519 (file-name (string-append name "-" version ".tar.xz"))
5520 (sha256
5521 (base32
5522 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
5523 (build-system emacs-build-system)
5524 (home-page "https://devmanual.gentoo.org")
5525 (synopsis "Major modes for Gentoo package files")
5526 (description
5527 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
5528 news items, openrc and runscripts.")
5529 (license license:gpl2+)))
5530
5531 (define-public emacs-evil
5532 (package
5533 (name "emacs-evil")
5534 (version "1.2.14")
5535 (source
5536 (origin
5537 (method git-fetch)
5538 (uri (git-reference
5539 (url "https://github.com/emacs-evil/evil")
5540 (commit version)))
5541 (file-name (git-file-name name version))
5542 (sha256
5543 (base32
5544 "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"))))
5545 (build-system emacs-build-system)
5546 (propagated-inputs
5547 `(("emacs-undo-tree" ,emacs-undo-tree)
5548 ("emacs-goto-chg" ,emacs-goto-chg)))
5549 (home-page "https://github.com/emacs-evil/evil")
5550 (synopsis "Extensible Vi layer for Emacs")
5551 (description
5552 "Evil is an extensible vi layer for Emacs. It emulates the
5553 main features of Vim, and provides facilities for writing custom
5554 extensions.")
5555 (license license:gpl3+)))
5556
5557 (define-public emacs-evil-collection
5558 (let ((commit "baa9c6880779d416a91bf5bde3589673a7403612")
5559 (revision "8"))
5560 (package
5561 (name "emacs-evil-collection")
5562 (version (git-version "0.0.1" revision commit))
5563 (source (origin
5564 (method git-fetch)
5565 (uri (git-reference
5566 (url "https://github.com/emacs-evil/evil-collection")
5567 (commit commit)))
5568 (file-name (git-file-name name version))
5569 (sha256
5570 (base32
5571 "09v97nk7qawphfijzqxzi2y63ydmfq7hsgpljjxwkykrc5h0kdlj"))))
5572 (build-system emacs-build-system)
5573 (propagated-inputs
5574 `(("emacs-evil" ,emacs-evil)))
5575 (home-page "https://github.com/emacs-evil/evil-collection")
5576 (synopsis "Collection of Evil bindings for many major and minor modes")
5577 (description "This is a collection of Evil bindings for the parts of
5578 Emacs that Evil does not cover properly by default, such as @code{help-mode},
5579 @code{M-x calendar}, Eshell and more.")
5580 (license license:gpl3+))))
5581
5582 (define-public emacs-goto-chg
5583 (package
5584 (name "emacs-goto-chg")
5585 (version "1.6")
5586 (source
5587 (origin
5588 (method url-fetch)
5589 ;; There is no versioned source.
5590 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
5591 (file-name (string-append "goto-chg-" version ".el"))
5592 (sha256
5593 (base32
5594 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
5595 (build-system emacs-build-system)
5596 ;; There is no other home page.
5597 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
5598 (synopsis "Go to the last change in the Emacs buffer")
5599 (description
5600 "This package provides @code{M-x goto-last-change} command that goes to
5601 the point of the most recent edit in the current Emacs buffer. When repeated,
5602 go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
5603 used for reverse direction.")
5604 (license license:gpl2+)))
5605
5606 (define-public emacs-monroe
5607 (package
5608 (name "emacs-monroe")
5609 (version "0.3.1")
5610 (source
5611 (origin
5612 (method git-fetch)
5613 (uri (git-reference
5614 (url "https://github.com/sanel/monroe.git")
5615 (commit version)))
5616 (file-name (git-file-name name version))
5617 (sha256
5618 (base32 "101lfrykdbv37spkbw7zihhx26bc1lhjyxbanrcp9880bxj04jiy"))))
5619 (build-system emacs-build-system)
5620 (home-page "https://github.com/sanel/monroe")
5621 (synopsis "Clojure nREPL client for Emacs")
5622 (description
5623 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
5624 distribution, primarily targeting Clojure users")
5625 (license license:gpl3+)))
5626
5627 (define-public emacs-orgalist
5628 (package
5629 (name "emacs-orgalist")
5630 (version "1.9")
5631 (source
5632 (origin
5633 (method url-fetch)
5634 (uri (string-append "https://elpa.gnu.org/packages/"
5635 "orgalist-" version ".el"))
5636 (sha256
5637 (base32
5638 "1rmmcyiiqkq54hn74nhzxzl4nvd902hv6gq341jwhrm7yiagffi6"))))
5639 (build-system emacs-build-system)
5640 (home-page "http://elpa.gnu.org/packages/orgalist.html")
5641 (synopsis "Manage Org-like lists in non-Org buffers")
5642 (description "Write Org mode's plain lists in non-Org buffers. More
5643 specifically, Orgalist supports the syntax of Org mode for numbered,
5644 unnumbered, description items, checkboxes, and counter cookies.
5645
5646 The library also implements radio lists, i.e., lists written in Org
5647 syntax later translated into the host format, e.g., LaTeX or HTML.")
5648 (license license:gpl3+)))
5649
5650 (define-public emacs-writegood-mode
5651 (package
5652 (name "emacs-writegood-mode")
5653 (version "2.0.2")
5654 (home-page "https://github.com/bnbeckwith/writegood-mode")
5655 (source (origin
5656 (method git-fetch)
5657 (uri (git-reference
5658 (url home-page)
5659 (commit (string-append "v" version))))
5660 (sha256
5661 (base32
5662 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5663 (file-name (string-append name "-checkout"))))
5664 (build-system emacs-build-system)
5665 (synopsis "Polish up poor writing on the fly")
5666 (description
5667 "This minor mode tries to find and highlight problems with your writing
5668 in English as you type. It primarily detects \"weasel words\" and abuse of
5669 passive voice.")
5670 (license license:gpl3+)))
5671
5672 (define-public emacs-neotree
5673 (package
5674 (name "emacs-neotree")
5675 (version "0.5.2")
5676 (home-page "https://github.com/jaypei/emacs-neotree")
5677 (source (origin
5678 (method url-fetch)
5679 (uri (string-append
5680 "https://github.com/jaypei/" name
5681 "/archive/" version ".tar.gz"))
5682 (sha256
5683 (base32
5684 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
5685 (file-name (string-append name "-" version ".tar.gz"))))
5686 (build-system emacs-build-system)
5687 (synopsis "Folder tree view for Emacs")
5688 (description "This Emacs package provides a folder tree view.")
5689 (license license:gpl3+)))
5690
5691 (define-public emacs-org
5692 (package
5693 (name "emacs-org")
5694 ;; emacs-org-contrib inherits from this package. Please update its sha256
5695 ;; checksum as well.
5696 (version "9.2.3")
5697 (source (origin
5698 (method url-fetch)
5699 (uri (string-append "http://elpa.gnu.org/packages/org-"
5700 version ".tar"))
5701 (sha256
5702 (base32
5703 "0hqy4lns9q5p0l1ylgmlckqprn9sbasszhznanmv0rsh0gzhsbyw"))))
5704 (build-system emacs-build-system)
5705 (home-page "https://orgmode.org/")
5706 (synopsis "Outline-based notes management and organizer")
5707 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5708 lists, and project planning with a fast and effective lightweight markup
5709 language. It also is an authoring system with unique support for literate
5710 programming and reproducible research.")
5711 (license license:gpl3+)))
5712
5713 (define-public emacs-org-contrib
5714 (package
5715 (inherit emacs-org)
5716 (name "emacs-org-contrib")
5717 (version "20190402")
5718 (source (origin
5719 (method url-fetch)
5720 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5721 version ".tar"))
5722 (sha256
5723 (base32
5724 "0hbrhhq6sa0gz4ylzr54raxandqs4y953894b0hlr553b8sfl1wk"))))
5725 (arguments
5726 `(#:modules ((guix build emacs-build-system)
5727 (guix build utils)
5728 (guix build emacs-utils)
5729 (ice-9 ftw)
5730 (srfi srfi-1))
5731 #:phases
5732 (modify-phases %standard-phases
5733 (add-after 'install 'delete-org-files
5734 (lambda* (#:key inputs outputs #:allow-other-keys)
5735 (let* ((out (assoc-ref outputs "out"))
5736 (org (assoc-ref inputs "org"))
5737 (contrib-files
5738 (map basename (find-files out)))
5739 (org+contrib-files
5740 (map basename (find-files org)))
5741 (duplicates (lset-intersection
5742 string=? contrib-files org+contrib-files)))
5743 (with-directory-excursion
5744 (string-append
5745 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
5746 (for-each delete-file duplicates))
5747 #t))))))
5748 (propagated-inputs
5749 `(("arduino-mode" ,emacs-arduino-mode)
5750 ("cider" ,emacs-cider)
5751 ("org" ,emacs-org)
5752 ("scel" ,emacs-scel)))
5753 (synopsis "Contributed packages to Org mode")
5754 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5755 lists, and project planning with a fast and effective plain-text system.
5756
5757 This package is equivalent to org-plus-contrib, but only includes additional
5758 files that you would find in @file{contrib/} from the git repository.")))
5759
5760 (define-public emacs-flx
5761 (package
5762 (name "emacs-flx")
5763 (version "0.6.1")
5764 (source
5765 (origin
5766 (method url-fetch)
5767 (uri (string-append "https://github.com/lewang/"
5768 "flx/archive/v" version ".tar.gz"))
5769 (sha256
5770 (base32
5771 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5772 (file-name (string-append name "-" version ".tar.gz"))))
5773 (build-system emacs-build-system)
5774 (home-page "https://github.com/lewang/flx")
5775 (synopsis "Fuzzy matching for Emacs")
5776 (description
5777 "Flx provides fuzzy matching for emacs a la sublime text.
5778 The sorting algorithm is a balance between word beginnings (abbreviation)
5779 and contiguous matches (substring). The longer the substring match,
5780 the higher it scores. This maps well to how we think about matching.
5781 Flx has support for ido (interactively do things) through flx-ido.")
5782 (license license:gpl3+)))
5783
5784 (define-public emacs-cyberpunk-theme
5785 (package
5786 (name "emacs-cyberpunk-theme")
5787 (version "1.19")
5788 (source
5789 (origin
5790 (method url-fetch)
5791 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5792 "archive/" version ".tar.gz"))
5793 (sha256
5794 (base32
5795 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
5796 (file-name (string-append name "-" version ".tar.gz"))))
5797 (build-system emacs-build-system)
5798 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5799 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5800 (description
5801 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5802 known loosely as deftheme. Many mode-specific customizations are included.")
5803 (license license:gpl3+)))
5804
5805 (define-public emacs-danneskjold-theme
5806 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5807 (revision "1"))
5808 (package
5809 (name "emacs-danneskjold-theme")
5810 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5811 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5812 (source
5813 (origin
5814 (method git-fetch)
5815 (uri (git-reference
5816 (url home-page)
5817 (commit commit)))
5818 (file-name (git-file-name name version))
5819 (sha256
5820 (base32
5821 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5822 (build-system emacs-build-system)
5823 (arguments
5824 `(#:phases
5825 (modify-phases %standard-phases
5826 (add-after 'unpack 'delete-screenshots
5827 (lambda _
5828 (delete-file-recursively "screenshots") #t)))))
5829 (synopsis "High-contrast Emacs theme")
5830 (description
5831 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5832 (license license:gpl3+))))
5833
5834 (define-public emacs-dream-theme
5835 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5836 (revision "1"))
5837 (package
5838 (name "emacs-dream-theme")
5839 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5840 (source
5841 (origin
5842 (method git-fetch)
5843 (uri (git-reference
5844 (url "https://github.com/djcb/dream-theme")
5845 (commit commit)))
5846 (file-name (string-append name "-" version "-checkout"))
5847 (sha256
5848 (base32
5849 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5850 (build-system emacs-build-system)
5851 (home-page "https://github.com/djcb/dream-theme")
5852 (synopsis "High-contrast Emacs theme")
5853 (description
5854 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5855 by zenburn, sinburn and similar themes, but slowly diverging from them.")
5856 (license license:gpl3+))))
5857
5858 (define-public emacs-auto-complete
5859 (package
5860 (name "emacs-auto-complete")
5861 (version "1.5.1")
5862 (source
5863 (origin
5864 (method url-fetch)
5865 (uri (string-append "https://github.com/auto-complete/"
5866 "auto-complete/archive/v" version ".tar.gz"))
5867 (sha256
5868 (base32
5869 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5870 (file-name (string-append name "-" version ".tar.gz"))))
5871 (build-system emacs-build-system)
5872 (propagated-inputs
5873 `(("emacs-popup" ,emacs-popup)))
5874 (home-page "https://github.com/auto-complete/auto-complete")
5875 (synopsis "Intelligent auto-completion extension for Emacs")
5876 (description
5877 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5878 It extends the standard Emacs completion interface and provides an environment
5879 that allows users to concentrate more on their own work. Its features are:
5880 a visual interface, reduce overhead of completion by using statistic method,
5881 extensibility.")
5882 (license license:gpl3+)))
5883
5884 (define-public emacs-nginx-mode
5885 (package
5886 (name "emacs-nginx-mode")
5887 (version "1.1.9")
5888 (source
5889 (origin
5890 (method git-fetch)
5891 (uri (git-reference
5892 (url "https://github.com/ajc/nginx-mode.git")
5893 (commit (string-append "v" version))))
5894 (file-name (git-file-name name version))
5895 (sha256
5896 (base32 "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs"))))
5897 (build-system emacs-build-system)
5898 (home-page "https://github.com/ajc/nginx-mode")
5899 (synopsis "Emacs major mode for editing nginx config files")
5900 (description "This package provides an Emacs major mode for
5901 editing nginx config files.")
5902 (license license:gpl2+)))
5903
5904 (define-public emacs-stream
5905 (package
5906 (name "emacs-stream")
5907 (version "2.2.0")
5908 (home-page "https://github.com/NicolasPetton/stream")
5909 (source
5910 (origin
5911 (method url-fetch)
5912 (file-name (string-append name "-" version ".tar.gz"))
5913 (uri (string-append home-page "/archive/"version ".tar.gz"))
5914 (sha256
5915 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5916 (build-system emacs-build-system)
5917 (synopsis "Implementation of streams for Emacs")
5918 (description "This library provides an implementation of streams for Emacs.
5919 Streams are implemented as delayed evaluation of cons cells.")
5920 (license license:gpl3+)))
5921
5922 (define-public emacs-el-search
5923 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5924 (revision "1"))
5925 (package
5926 (name "emacs-el-search")
5927 ;; No ufficial release.
5928 (version (string-append "0.0-" revision "." (string-take commit 7)))
5929 (home-page "https://github.com/emacsmirror/el-search")
5930 (source
5931 (origin
5932 (method git-fetch)
5933 (file-name (string-append name "-" version ".tar.gz"))
5934 (uri (git-reference
5935 (commit commit)
5936 (url (string-append home-page ".git"))))
5937 (sha256
5938 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5939 (build-system emacs-build-system)
5940 (inputs `(("emacs-stream" ,emacs-stream)))
5941 (synopsis "Expression based interactive search for emacs-lisp-mode")
5942 (description "This package provides expression based interactive search
5943 procedures for emacs-lisp-mode.")
5944 (license license:gpl3+))))
5945
5946 (define-public emacs-ht
5947 (package
5948 (name "emacs-ht")
5949 (version "2.2")
5950 (source
5951 (origin
5952 (method git-fetch)
5953 (uri (git-reference
5954 (url "https://github.com/Wilfred/ht.el.git")
5955 (commit version)))
5956 (file-name (git-file-name name version))
5957 (sha256
5958 (base32 "1p3qa7g0wa0wbviv2f8bda39cjys3naayk5xjm3nxxmqsyy8papx"))))
5959 (build-system emacs-build-system)
5960 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5961 (home-page "https://github.com/Wilfred/ht.el")
5962 (synopsis "Hash table library for Emacs")
5963 (description
5964 "This package simplifies the use of hash tables in elisp. It also
5965 provides functions to convert hash tables from and to alists and plists.")
5966 (license license:gpl3+)))
5967
5968 (define-public emacs-log4e
5969 (package
5970 (name "emacs-log4e")
5971 (version "0.3.0")
5972 (source
5973 (origin
5974 (method git-fetch)
5975 (uri (git-reference
5976 (url "https://github.com/aki2o/log4e.git")
5977 (commit (string-append "v" version))))
5978 (file-name (git-file-name name version))
5979 (sha256
5980 (base32 "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"))))
5981 (build-system emacs-build-system)
5982 (arguments
5983 `(#:phases
5984 (modify-phases %standard-phases
5985 (add-after 'unpack 'remove-tests
5986 ;; Guile builder complains about null characters in some
5987 ;; strings of test files. Remove "test" directory (it is not
5988 ;; needed anyway).
5989 (lambda _
5990 (delete-file-recursively "test"))))))
5991 (home-page "https://github.com/aki2o/log4e")
5992 (synopsis "Logging framework for elisp")
5993 (description
5994 "This package provides a logging framework for elisp. It allows
5995 you to deal with multiple log levels.")
5996 (license license:gpl3+)))
5997
5998 (define-public emacs-gntp
5999 (package
6000 (name "emacs-gntp")
6001 (version "0.1")
6002 (source
6003 (origin
6004 (method git-fetch)
6005 (uri (git-reference
6006 (url "https://github.com/tekai/gntp.el.git")
6007 (commit (string-append "v" version))))
6008 (file-name (git-file-name name version))
6009 (sha256
6010 (base32 "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"))))
6011 (build-system emacs-build-system)
6012 (home-page "https://github.com/tekai/gntp.el")
6013 (synopsis "Growl Notification Protocol for Emacs")
6014 (description
6015 "This package implements the Growl Notification Protocol GNTP
6016 described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
6017 It is incomplete as it only lets you send but not receive
6018 notifications.")
6019 (license license:bsd-3)))
6020
6021 (define-public emacs-alert
6022 (package
6023 (name "emacs-alert")
6024 (version "1.2")
6025 (source
6026 (origin
6027 (method git-fetch)
6028 (uri (git-reference
6029 (url "https://github.com/jwiegley/alert.git")
6030 (commit (string-append "v" version))))
6031 (file-name (git-file-name name version))
6032 (sha256
6033 (base32 "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26"))))
6034 (build-system emacs-build-system)
6035 (propagated-inputs
6036 `(("emacs-gntp" ,emacs-gntp)
6037 ("emacs-log4e" ,emacs-log4e)))
6038 (home-page "https://github.com/jwiegley/alert")
6039 (synopsis "Growl-style notification system for Emacs")
6040 (description
6041 "Alert is a Growl-workalike for Emacs which uses a common notification
6042 interface and multiple, selectable \"styles\", whose use is fully
6043 customizable by the user.")
6044 (license license:gpl2+)))
6045
6046 (define-public emacs-zones
6047 (let ((commit "353fc38a6544eb59887bee045e373406f1d038a5")
6048 (revision "1"))
6049 (package
6050 (name "emacs-zones")
6051 (version (git-version "0" revision commit))
6052 (source
6053 (origin
6054 (method git-fetch)
6055 (uri (git-reference
6056 (url "https://github.com/emacsmirror/zones.git")
6057 (commit commit)))
6058 (file-name (git-file-name name version))
6059 (sha256
6060 (base32
6061 "0gwnw2giii2a14nlh62xp45f47cw6ikqphhzpmcw6c7mn9x5z2ar"))
6062 (patches
6063 (search-patches
6064 "emacs-zones-called-interactively.patch"))))
6065 (build-system emacs-build-system)
6066 (home-page "https://www.emacswiki.org/emacs/Zones")
6067 (synopsis "Define and act on multiple zones of buffer text")
6068 (description "Library @file{zones.el} lets you easily define and
6069 subsequently act on multiple zones of buffer text. You can think of this as
6070 enlarging the notion of region. In effect, it can remove the requirement of
6071 target text being a contiguous sequence of characters. A set of buffer zones
6072 is, in effect, a (typically) noncontiguous set of text.")
6073 (license license:gpl3+))))
6074
6075 (define-public emacs-mu4e-alert
6076 (package
6077 (name "emacs-mu4e-alert")
6078 (version "1.0")
6079 (source
6080 (origin
6081 (method git-fetch)
6082 (uri (git-reference
6083 (url "https://github.com/iqbalansari/mu4e-alert.git")
6084 (commit (string-append "v" version))))
6085 (file-name (git-file-name name version))
6086 (sha256
6087 (base32 "1nvsfbfsma59ilf7c3vjngnmx3aapwvvvaafdy5szm5r6lkicqvg"))))
6088 (build-system emacs-build-system)
6089 (propagated-inputs
6090 `(("emacs-alert" ,emacs-alert)
6091 ("emacs-s" ,emacs-s)
6092 ("emacs-ht" ,emacs-ht)
6093 ("mu" ,mu)))
6094 (home-page "https://github.com/iqbalansari/mu4e-alert")
6095 (synopsis "Desktop notification for mu4e")
6096 (description
6097 "This package provides desktop notifications for mu4e.
6098 Additionally it can display the number of unread emails in the
6099 mode-line.")
6100 (license license:gpl3+)))
6101
6102 (define-public emacs-pretty-mode
6103 (package
6104 (name "emacs-pretty-mode")
6105 (version "2.0.3")
6106 (source
6107 (origin
6108 (method url-fetch)
6109 (uri (string-append "https://github.com/akatov/pretty-mode/"
6110 "archive/" version ".tar.gz"))
6111 (file-name (string-append name "-" version ".tar.gz"))
6112 (sha256
6113 (base32
6114 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
6115 (build-system emacs-build-system)
6116 (home-page "https://github.com/akatov/pretty-mode")
6117 (synopsis "Redisplay parts of the buffer as Unicode symbols")
6118 (description
6119 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
6120 (license license:gpl3+)))
6121
6122 (define-public emacs-yasnippet
6123 (package
6124 (name "emacs-yasnippet")
6125 (version "0.13.0")
6126 (source (origin
6127 (method url-fetch)
6128 (uri (string-append "https://github.com/joaotavora/yasnippet/"
6129 "archive/" version ".tar.gz"))
6130 (file-name (string-append name "-" version ".tar.gz"))
6131 (sha256
6132 (base32
6133 "12ls2x17agzbrj1xynjbmfa11igqxia4hj4fv6fpr66yci2r1plc"))
6134 (modules '((guix build utils)))
6135 (snippet
6136 '(begin
6137 ;; YASnippet expects a "snippets" subdirectory in the same
6138 ;; directory as yasnippet.el, but we don't install it
6139 ;; because it's a git submodule pointing to an external
6140 ;; repository. Adjust `yas-snippet-dirs' to prevent
6141 ;; warnings about a missing directory.
6142 (substitute* "yasnippet.el"
6143 (("^ +'yas-installed-snippets-dir\\)\\)\n")
6144 "))\n"))
6145 #t))))
6146 (build-system emacs-build-system)
6147 (home-page "https://github.com/joaotavora/yasnippet")
6148 (synopsis "Yet another snippet extension for Emacs")
6149 (description
6150 "YASnippet is a template system for Emacs. It allows you to type an
6151 abbreviation and automatically expand it into function templates.")
6152 (license license:gpl3+)))
6153
6154 (define-public emacs-yasnippet-snippets
6155 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
6156 (revision "1"))
6157 (package
6158 (name "emacs-yasnippet-snippets")
6159 (version (string-append "1-" revision "." (string-take commit 8)))
6160 (source
6161 (origin
6162 (method git-fetch)
6163 (uri (git-reference
6164 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
6165 (commit commit)))
6166 (file-name (git-file-name name version))
6167 (sha256
6168 (base32
6169 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
6170 (build-system trivial-build-system)
6171 (arguments
6172 `(#:modules ((ice-9 ftw)
6173 (ice-9 regex)
6174 (guix build utils))
6175 #:builder
6176 (begin
6177 (use-modules (ice-9 ftw)
6178 (ice-9 regex)
6179 (guix build utils))
6180 (with-directory-excursion (assoc-ref %build-inputs "source")
6181 (for-each (lambda (dir)
6182 (copy-recursively
6183 dir
6184 (string-append %output
6185 "/share/emacs/yasnippet-snippets/"
6186 dir)))
6187 (scandir "." (lambda (fname)
6188 (and (string-match "-mode$" fname)
6189 (directory-exists? fname))))))
6190 #t)))
6191 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
6192 (synopsis "Collection of YASnippet snippets for many languages")
6193 (description
6194 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
6195 the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
6196 To make YASnippet aware of these snippets, add the above directory to
6197 @code{yas-snippet-dirs}.")
6198 (license license:expat))))
6199
6200 (define-public emacs-helm-c-yasnippet
6201 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
6202 (revision "1"))
6203 (package
6204 (name "emacs-helm-c-yasnippet")
6205 (version (string-append "0.6.7" "-" revision "."
6206 (string-take commit 7)))
6207 (source (origin
6208 (method git-fetch)
6209 (uri (git-reference
6210 (url "https://github.com/emacs-jp/helm-c-yasnippet")
6211 (commit commit)))
6212 (file-name (string-append name "-" version "-checkout"))
6213 (sha256
6214 (base32
6215 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
6216 (build-system emacs-build-system)
6217 (propagated-inputs
6218 `(("emacs-helm" ,emacs-helm)
6219 ("emacs-yasnippet" ,emacs-yasnippet)))
6220 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
6221 (synopsis "Helm integration for Yasnippet")
6222 (description "This Emacs library provides Helm interface for
6223 Yasnippet.")
6224 (license license:gpl2+))))
6225
6226 (define-public emacs-helm-system-packages
6227 ;; There won't be a new release after 1.10.1 until
6228 ;; https://github.com/emacs-helm/helm-system-packages/issues/25 is fixed,
6229 ;; and latest commits fix import issues with Guix.
6230 (let ((commit "6572340f41611ef1991e9612d34d59130957ee4a"))
6231 (package
6232 (name "emacs-helm-system-packages")
6233 (version (git-version "1.10.1" "1" commit))
6234 (source (origin
6235 (method git-fetch)
6236 (uri (git-reference
6237 (url "https://github.com/emacs-helm/helm-system-packages")
6238 (commit commit)))
6239 (file-name (git-file-name name version))
6240 (sha256
6241 (base32
6242 "0mcz6vkpk12vsyd37xv1rbg4v442sxc3lj8yxskqg294xbdaclz4"))))
6243 (build-system emacs-build-system)
6244 (inputs
6245 `(("recutils" ,recutils)))
6246 (propagated-inputs
6247 `(("emacs-helm" ,emacs-helm)))
6248 (arguments
6249 `(#:phases
6250 (modify-phases %standard-phases
6251 (add-after 'unpack 'configure
6252 (lambda* (#:key inputs outputs #:allow-other-keys)
6253 (let ((recutils (assoc-ref inputs "recutils")))
6254 ;; Specify the absolute file names of the various
6255 ;; programs so that everything works out-of-the-box.
6256 (substitute* "helm-system-packages-guix.el"
6257 (("recsel") (string-append recutils "/bin/recsel")))))))))
6258 (home-page "https://github.com/emacs-helm/helm-system-packages")
6259 (synopsis "Helm System Packages is an interface to your package manager")
6260 (description "List all available packages in Helm (with installed
6261 packages displayed in their own respective face). Fuzzy-search, mark and
6262 execute the desired action over any selections of packages: Install,
6263 uninstall, display packages details (in Org Mode) or insert details at point,
6264 find files owned by packages... And much more, including performing all the
6265 above over the network.")
6266 (license license:gpl3+))))
6267
6268 (define-public emacs-memoize
6269 (package
6270 (name "emacs-memoize")
6271 (version "1.1")
6272 (source
6273 (origin
6274 (method git-fetch)
6275 (uri (git-reference
6276 (url "https://github.com/skeeto/emacs-memoize.git")
6277 (commit version)))
6278 (file-name (git-file-name name version))
6279 (sha256
6280 (base32 "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk"))))
6281 (build-system emacs-build-system)
6282 (arguments
6283 `(#:tests? #t
6284 #:test-command '("emacs" "--batch"
6285 "-l" "memoize-test.el"
6286 "-f" "ert-run-tests-batch-and-exit")))
6287 (home-page "https://github.com/skeeto/emacs-memoize")
6288 (synopsis "Emacs lisp memoization library")
6289 (description "@code{emacs-memoize} is an Emacs library for
6290 memoizing functions.")
6291 (license license:unlicense)))
6292
6293 (define-public emacs-linum-relative
6294 (package
6295 (name "emacs-linum-relative")
6296 (version "0.5")
6297 (source
6298 (origin
6299 (method git-fetch)
6300 (uri (git-reference
6301 (url "https://github.com/coldnew/linum-relative.git")
6302 (commit version)))
6303 (file-name (git-file-name name version))
6304 (sha256
6305 (base32 "11bjnqqwvr9zrvz5dlm8a0yw4zg9ysh3jdiq5a6iw09d3f0h1v2s"))))
6306 (build-system emacs-build-system)
6307 (home-page "https://github.com/coldnew/linum-relative")
6308 (synopsis "Relative line numbering for Emacs")
6309 (description "@code{emacs-linum-relative} displays the relative line
6310 number on the left margin in Emacs.")
6311 (license license:gpl2+)))
6312
6313 (define-public emacs-idle-highlight
6314 (package
6315 (name "emacs-idle-highlight")
6316 (version "1.1.3")
6317 (source
6318 (origin
6319 (method git-fetch)
6320 (uri (git-reference
6321 (url "https://github.com/nonsequitur/idle-highlight-mode.git")
6322 (commit version)))
6323 (file-name (git-file-name name version))
6324 (sha256
6325 (base32 "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"))))
6326 (build-system emacs-build-system)
6327 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
6328 (synopsis "Highlights all occurrences of the word the point is on")
6329 (description
6330 "This Emacs package provides @code{idle-highlight-mode} that sets
6331 an idle timer to highlight all occurrences in the buffer of the word under
6332 the point.")
6333 (license license:gpl3+)))
6334
6335 (define-public emacs-ox-twbs
6336 (package
6337 (name "emacs-ox-twbs")
6338 (version "1.1.1")
6339 (source
6340 (origin
6341 (method git-fetch)
6342 (uri (git-reference
6343 (url "https://github.com/marsmining/ox-twbs.git")
6344 (commit (string-append "v" version))))
6345 (file-name (git-file-name name version))
6346 (sha256
6347 (base32 "0kd45p8y7ykadmai4jn1x1pgpafyqggwb1ccbjzalxw4k9wmd45f"))))
6348 (build-system emacs-build-system)
6349 (home-page "https://github.com/marsmining/ox-twbs")
6350 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
6351 (description
6352 "This Emacs package outputs your org-mode docs with a simple, clean and
6353 modern look. It implements a new HTML back-end for exporting org-mode docs as
6354 HTML compatible with Twitter Bootstrap. By default, HTML is exported with
6355 jQuery and Bootstrap resources included via osscdn.")
6356 (license license:gpl3+)))
6357
6358 (define-public emacs-highlight-sexp
6359 (package
6360 (name "emacs-highlight-sexp")
6361 (version "1.0")
6362 (source
6363 (origin
6364 (method git-fetch)
6365 (uri (git-reference
6366 (url "https://github.com/daimrod/highlight-sexp.git")
6367 (commit (string-append "v" version))))
6368 (file-name (git-file-name name version))
6369 (sha256
6370 (base32 "12cyk2q5g6p4ac2hykw1cag7dp1prjjnck5f7nalwwaklmy62y79"))))
6371 (build-system emacs-build-system)
6372 (home-page "https://github.com/daimrod/highlight-sexp")
6373 (synopsis "Minor mode that highlights the s-exp at the current position")
6374 (description
6375 "This Emacs package highlights the s-exp at the current position.")
6376 (license license:gpl3+)))
6377
6378 (define-public emacs-highlight-stages
6379 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
6380 (revision "1"))
6381 (package
6382 (name "emacs-highlight-stages")
6383 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
6384 (source
6385 (origin
6386 (method git-fetch)
6387 (uri (git-reference
6388 (url "https://github.com/zk-phi/highlight-stages.git")
6389 (commit commit)))
6390 (file-name (string-append name "-" version "-checkout"))
6391 (sha256
6392 (base32
6393 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
6394 (patches
6395 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
6396 (build-system emacs-build-system)
6397 (home-page "https://github.com/wigust/highlight-stages")
6398 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
6399 (description "@code{highlight-stages} provides an Emacs minor mode that
6400 highlights quasi-quoted expressions.")
6401 (license license:gpl3+))))
6402
6403 (define-public emacspeak
6404 (package
6405 (name "emacspeak")
6406 (version "49.0")
6407 (source
6408 (origin
6409 (method url-fetch)
6410 (uri (string-append
6411 "https://github.com/tvraman/emacspeak/releases/download/"
6412 version "/emacspeak-" version ".tar.bz2"))
6413 (sha256
6414 (base32
6415 "1smf26m7201z0bk49lzbw9zhbjfi6wylidfjixb8ylp6g0wnh8dx"))))
6416 (build-system gnu-build-system)
6417 (arguments
6418 '(#:make-flags (list (string-append "prefix="
6419 (assoc-ref %outputs "out")))
6420 #:phases
6421 (modify-phases %standard-phases
6422 (replace 'configure
6423 (lambda* (#:key outputs #:allow-other-keys)
6424 (let* ((out (assoc-ref outputs "out"))
6425 (lisp (string-append out
6426 "/share/emacs/site-lisp/emacspeak")))
6427 (setenv "SHELL" (which "sh"))
6428 ;; Configure Emacspeak according to etc/install.org.
6429 (invoke "make" "config"))))
6430 (add-after 'build 'build-espeak
6431 (lambda _
6432 (invoke "make" "espeak")))
6433 (replace 'install
6434 (lambda* (#:key inputs outputs #:allow-other-keys)
6435 (let* ((out (assoc-ref outputs "out"))
6436 (bin (string-append out "/bin"))
6437 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
6438 (info (string-append out "/share/info"))
6439 (emacs (string-append (assoc-ref inputs "emacs")
6440 "/bin/emacs")))
6441 ;; According to etc/install.org, the Emacspeak directory should
6442 ;; be copied to its installation destination.
6443 (for-each
6444 (lambda (file)
6445 (copy-recursively file (string-append lisp "/" file)))
6446 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
6447 "stumpwm" "xsl"))
6448 ;; Make sure emacspeak is loaded from the correct directory.
6449 (substitute* "etc/emacspeak.sh"
6450 (("/lisp/emacspeak-setup.el")
6451 (string-append lisp "/lisp/emacspeak-setup.el")))
6452 ;; Install the convenient startup script.
6453 (mkdir-p bin)
6454 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
6455 #t))
6456 (add-after 'install 'wrap-program
6457 (lambda* (#:key inputs outputs #:allow-other-keys)
6458 (let* ((out (assoc-ref outputs "out"))
6459 (emacspeak (string-append out "/bin/emacspeak"))
6460 (espeak (string-append (assoc-ref inputs "espeak")
6461 "/bin/espeak")))
6462 ;; The environment variable DTK_PROGRAM tells emacspeak what
6463 ;; program to use for speech.
6464 (wrap-program emacspeak
6465 `("DTK_PROGRAM" ":" prefix (,espeak)))
6466 #t))))
6467 #:tests? #f)) ; no check target
6468 (inputs
6469 `(("emacs" ,emacs)
6470 ("espeak" ,espeak)
6471 ("perl" ,perl)
6472 ("tcl" ,tcl)
6473 ("tclx" ,tclx)))
6474 (home-page "http://emacspeak.sourceforge.net")
6475 (synopsis "Audio desktop interface for Emacs")
6476 (description
6477 "Emacspeak is a speech interface that allows visually impaired users to
6478 interact independently and efficiently with the computer. Audio formatting
6479 --a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
6480 allows Emacspeak to produce rich aural presentations of electronic information.
6481 By seamlessly blending all aspects of the Internet such as Web-surfing and
6482 messaging, Emacspeak speech-enables local and remote information via a
6483 consistent and well-integrated user interface.")
6484 (license license:gpl2+)))
6485
6486 (define-public emacs-adaptive-wrap
6487 (package
6488 (name "emacs-adaptive-wrap")
6489 (version "0.5.1")
6490 (source (origin
6491 (method url-fetch)
6492 (uri (string-append
6493 "http://elpa.gnu.org/packages/adaptive-wrap-"
6494 version ".el"))
6495 (sha256
6496 (base32
6497 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
6498 (build-system emacs-build-system)
6499 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
6500 (synopsis "Smart line-wrapping with wrap-prefix")
6501 (description
6502 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
6503 minor mode which sets the wrap-prefix property on the fly so that
6504 single-long-line paragraphs get word-wrapped in a way similar to what
6505 you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
6506 actually changing the buffer's text.")
6507 (license license:gpl3+)))
6508
6509 (define-public emacs-diff-hl
6510 (package
6511 (name "emacs-diff-hl")
6512 (version "1.8.5")
6513 (source
6514 (origin
6515 (method url-fetch)
6516 (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
6517 version ".tar"))
6518 (sha256
6519 (base32
6520 "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
6521 (build-system emacs-build-system)
6522 (home-page "https://github.com/dgutov/diff-hl")
6523 (synopsis
6524 "Highlight uncommitted changes using VC")
6525 (description
6526 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
6527 window (using the fringe, by default), allows you to jump between
6528 the hunks and revert them selectively.")
6529 (license license:gpl3+)))
6530
6531 (define-public emacs-diminish
6532 (package
6533 (name "emacs-diminish")
6534 (version "0.45")
6535 (source
6536 (origin
6537 (method git-fetch)
6538 (uri (git-reference
6539 (url "https://github.com/myrjola/diminish.el.git")
6540 (commit (string-append "v" version))))
6541 (file-name (git-file-name name version))
6542 (sha256
6543 (base32 "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"))))
6544 (build-system emacs-build-system)
6545 (home-page "https://github.com/myrjola/diminish.el")
6546 (synopsis "Diminish minor modes with no modeline display")
6547 (description "@code{emacs-diminish} implements hiding or
6548 abbreviation of the mode line displays (lighters) of minor modes.")
6549 (license license:gpl2+)))
6550
6551 (define-public emacs-use-package
6552 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
6553 (revision "1"))
6554 (package
6555 (name "emacs-use-package")
6556 (version (git-version "2.3" revision commit))
6557 (source (origin
6558 (method git-fetch)
6559 (uri (git-reference
6560 (url "https://github.com/jwiegley/use-package")
6561 (commit commit)))
6562 (file-name (git-file-name name version))
6563 (sha256
6564 (base32
6565 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
6566 (build-system emacs-build-system)
6567 (propagated-inputs
6568 `(("emacs-diminish" ,emacs-diminish)))
6569 (arguments
6570 `(#:tests? #t
6571 #:test-command '("emacs" "--batch"
6572 "-l" "use-package-tests.el"
6573 "-f" "ert-run-tests-batch-and-exit")))
6574 (home-page "https://github.com/jwiegley/use-package")
6575 (synopsis "Declaration for simplifying your .emacs")
6576 (description "The use-package macro allows you to isolate package
6577 configuration in your @file{.emacs} file in a way that is both
6578 performance-oriented and tidy.")
6579 (license license:gpl2+))))
6580
6581 (define-public emacs-strace-mode
6582 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
6583 (revision "1"))
6584 (package
6585 (name "emacs-strace-mode")
6586 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
6587 (source (origin
6588 (method git-fetch)
6589 (uri (git-reference
6590 (url "https://github.com/pkmoore/strace-mode")
6591 (commit commit)))
6592 (file-name (string-append name "-" version "-checkout"))
6593 (sha256
6594 (base32
6595 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
6596 (build-system emacs-build-system)
6597 (home-page "https://github.com/pkmoore/strace-mode")
6598 (synopsis "Emacs major mode to highlight strace outputs")
6599 (description "@code{emacs-strace-mode} provides an Emacs major mode
6600 highlighting strace outputs.")
6601 (license license:gpl3+))))
6602
6603 (define-public emacs-default-encrypt
6604 (package
6605 (name "emacs-default-encrypt")
6606 (version "4.3")
6607 (source
6608 (origin
6609 (method url-fetch)
6610 (uri (string-append
6611 "https://www.informationelle-selbstbestimmung-im-internet.de"
6612 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
6613 (file-name (string-append "jl-encrypt-" version ".el"))
6614 (sha256
6615 (base32
6616 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6617 (build-system emacs-build-system)
6618 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6619 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6620 (description
6621 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6622 automatically encrypts messages that you send (e.g., email) when public keys
6623 for all recipients are available, and it protects you from accidentally
6624 sending un-encrypted messages. It can also be configured to automatically
6625 sign messages that you send. For details and instructions on how to use
6626 DefaultEncrypt, please refer to the home page or read the comments in the
6627 source file, @file{jl-encrypt.el}.")
6628 (license license:gpl3+)))
6629
6630 (define-public emacs-htmlize
6631 (package
6632 (name "emacs-htmlize")
6633 (version "1.53")
6634 (source
6635 (origin
6636 (method git-fetch)
6637 (uri (git-reference
6638 (url "https://github.com/hniksic/emacs-htmlize.git")
6639 (commit (string-append "release/" version))))
6640 (file-name (git-file-name name version))
6641 (sha256
6642 (base32 "0dr235c0z8is3pi5xdgqyqljg6px0b2aya6qb79zkyi477bmz4ip"))))
6643 (build-system emacs-build-system)
6644 (home-page "https://github.com/hniksic/emacs-htmlize")
6645 (synopsis "Convert buffer text and decorations to HTML")
6646 (description "@code{emacs-htmlize} converts the buffer text and
6647 the associated decorations to HTML. Output to CSS, inline CSS and
6648 fonts is supported.")
6649 (license license:gpl2+)))
6650
6651 (define-public emacs-xmlgen
6652 (package
6653 (name "emacs-xmlgen")
6654 (version "0.5")
6655 (source
6656 (origin
6657 (method git-fetch)
6658 (uri (git-reference
6659 (url "https://github.com/philjackson/xmlgen.git")
6660 (commit version)))
6661 (file-name (git-file-name name version))
6662 (sha256
6663 (base32 "096i29v0badx0a6339h9ckdz78zj59gbjdp7vj7vhkq9d830392s"))))
6664 (build-system emacs-build-system)
6665 (arguments
6666 `(#:tests? #t
6667 #:test-command '("emacs" "--batch"
6668 "-l" "xmlgen-test.el"
6669 "-f" "ert-run-tests-batch-and-exit")))
6670 (home-page "https://github.com/philjackson/xmlgen")
6671 (synopsis "S-expression to XML domain specific language (DSL) in
6672 Emacs Lisp")
6673 (description "@code{emacs-xmlgen} provides S-expression to XML
6674 conversion for Emacs Lisp.")
6675 (license license:gpl2+)))
6676
6677 (define-public emacs-cdlatex
6678 (package
6679 (name "emacs-cdlatex")
6680 (version "4.7")
6681 (source
6682 (origin
6683 (method git-fetch)
6684 (uri (git-reference
6685 (url "https://github.com/cdominik/cdlatex.git")
6686 (commit version)))
6687 (file-name (git-file-name name version))
6688 (sha256
6689 (base32 "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"))))
6690 (build-system emacs-build-system)
6691 (propagated-inputs
6692 `(("emacs-auctex" ,emacs-auctex)))
6693 (home-page "https://github.com/cdominik/cdlatex")
6694 (synopsis "Fast Emacs input methods for LaTeX environments and
6695 math")
6696 (description "CDLaTeX is an Emacs minor mode supporting fast
6697 insertion of environment templates and math in LaTeX. Similar
6698 commands are also offered as part of the AUCTeX package, but it is not
6699 the same - CDLaTeX focuses on speediness for inserting LaTeX
6700 constructs.")
6701 (license license:gpl3+)))
6702
6703 (define-public emacs-cnfonts
6704 (package
6705 (name "emacs-cnfonts")
6706 (version "0.9.1")
6707 (source
6708 (origin
6709 (method git-fetch)
6710 (uri (git-reference
6711 (url "https://github.com/tumashu/cnfonts.git")
6712 (commit (string-append "v" version))))
6713 (file-name (git-file-name name version))
6714 (sha256
6715 (base32 "11d44lf0m0kbzq1mvyqkl4aprys0xqaarp08nij57xnynin1rynx"))))
6716 (build-system emacs-build-system)
6717 (home-page "https://github.com/tumashu/cnfonts")
6718 (synopsis "Emacs Chinese fonts setup tool")
6719 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6720 configuration of Chinese fonts.")
6721 (license license:gpl2+)))
6722
6723 (define-public emacs-php-mode
6724 (package
6725 (name "emacs-php-mode")
6726 (version "20171225.342")
6727 (source (origin
6728 (method url-fetch)
6729 (uri (string-append
6730 "https://melpa.org/packages/php-mode-"
6731 version ".tar"))
6732 (sha256
6733 (base32
6734 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6735 (build-system emacs-build-system)
6736 (home-page "https://github.com/ejmr/php-mode")
6737 (synopsis "Major mode for editing PHP code")
6738 (description "@code{php-mode} is a major mode for editing PHP source
6739 code. It's an extension of C mode; thus it inherits all C mode's navigation
6740 functionality. But it colors according to the PHP grammar and indents
6741 according to the PEAR coding guidelines. It also includes a couple handy
6742 IDE-type features such as documentation search and a source and class
6743 browser.")
6744 (license license:gpl3+)))
6745
6746 (define-public emacs-pos-tip
6747 (package
6748 (name "emacs-pos-tip")
6749 (version "0.4.6")
6750 (source
6751 (origin
6752 (method git-fetch)
6753 (uri (git-reference
6754 (url "https://github.com/pitkali/pos-tip.git")
6755 (commit version)))
6756 (file-name (git-file-name name version))
6757 (sha256
6758 (base32 "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"))))
6759 (build-system emacs-build-system)
6760 ;; The following functions and variables needed by emacs-pos-tip are
6761 ;; not included in emacs-minimal:
6762 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6763 (arguments `(#:emacs ,emacs))
6764 (home-page "https://github.com/pitkali/pos-tip")
6765 (synopsis "Show tooltip at point")
6766 (description "The standard library tooltip.el provides a function for
6767 displaying a tooltip at the mouse position. However, locating a tooltip at an
6768 arbitrary buffer position in a window is not easy. Pos-tip provides such a
6769 function to be used by other frontend programs.")
6770 (license license:gpl2+)))
6771
6772 (define-public emacs-pyim-basedict
6773 (package
6774 (name "emacs-pyim-basedict")
6775 (version "0.3.1")
6776 (source
6777 (origin
6778 (method git-fetch)
6779 (uri (git-reference
6780 (url "https://github.com/tumashu/pyim-basedict.git")
6781 (commit (string-append "v" version))))
6782 (file-name (git-file-name name version))
6783 (sha256
6784 (base32 "0576r8ap9gp91ycjf1d47pn13kxp0f9fysn09zlq44hr0s1y2y5d"))))
6785 (build-system emacs-build-system)
6786 (home-page "https://github.com/tumashu/pyim-basedict")
6787 (synopsis "Input method dictionary of pyim")
6788 (description "Pyim-basedict is the default pinyin input method dictionary,
6789 containing words from the rime project.")
6790 (license license:gpl2+)))
6791
6792 (define-public emacs-pyim
6793 (package
6794 (name "emacs-pyim")
6795 (version "1.8")
6796 (source
6797 (origin
6798 (method git-fetch)
6799 (uri (git-reference
6800 (url "https://github.com/tumashu/pyim")
6801 (commit (string-append "v" version))))
6802 (file-name (git-file-name name version))
6803 (sha256
6804 (base32
6805 "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9"))))
6806 (build-system emacs-build-system)
6807 (propagated-inputs
6808 `(("emacs-async" ,emacs-async)
6809 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
6810 ("emacs-popup" ,emacs-popup)
6811 ("emacs-posframe" ,emacs-posframe)))
6812 (home-page "https://github.com/tumashu/pyim")
6813 (synopsis "Chinese input method")
6814 (description "Chinese input method which supports quanpin, shuangpin, wubi
6815 and cangjie.")
6816 (license license:gpl2+)))
6817
6818 (define-public emacs-posframe
6819 (package
6820 (name "emacs-posframe")
6821 (version "0.4.2")
6822 (source
6823 (origin
6824 (method url-fetch)
6825 (uri (string-append
6826 "https://elpa.gnu.org/packages/posframe-" version ".el"))
6827 (sha256
6828 (base32
6829 "1h8vvxvsg41vc1nnglqjs2q0k1yzfsn72skga9s76qa3zxmx6kds"))))
6830 (build-system emacs-build-system)
6831 ;; emacs-minimal does not include the function font-info
6832 (arguments `(#:emacs ,emacs))
6833 (home-page "https://github.com/tumashu/posframe")
6834 (synopsis "Pop a posframe (a child frame) at point")
6835 (description "@code{emacs-posframe} can pop a posframe at point. A
6836 posframe is a child frame displayed within its root window's buffer.
6837 @code{emacs-posframe} is fast and works well with CJK languages.")
6838 (license license:gpl3+)))
6839
6840 (define-public emacs-el2org
6841 (package
6842 (name "emacs-el2org")
6843 (version "0.6.0")
6844 (source
6845 (origin
6846 (method git-fetch)
6847 (uri (git-reference
6848 (url "https://github.com/tumashu/el2org.git")
6849 (commit (string-append "v" version))))
6850 (file-name (git-file-name name version))
6851 (sha256
6852 (base32 "0mzddqny6wpg1fv99xrvlv7rxmaifvmy5bvj4in4pldhm4cx4q1b"))))
6853 (build-system emacs-build-system)
6854 (home-page "https://github.com/tumashu/el2org")
6855 (synopsis "Convert Emacs-lisp file to org file")
6856 (description "El2org is a simple tool, which can convert Emacs-lisp file
6857 to org file, you can use this tool to write orgify commentary.")
6858 (license license:gpl2+)))
6859
6860 (define-public emacs-mustache
6861 (package
6862 (name "emacs-mustache")
6863 (version "0.23")
6864 (source
6865 (origin
6866 (method git-fetch)
6867 (uri (git-reference
6868 (url "https://github.com/Wilfred/mustache.el.git")
6869 (commit version)))
6870 (file-name (git-file-name name version))
6871 (sha256
6872 (base32 "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q"))))
6873 (build-system emacs-build-system)
6874 (propagated-inputs
6875 `(("emacs-dash" ,emacs-dash)
6876 ("emacs-ht" ,emacs-ht)
6877 ("emacs-s" ,emacs-s)))
6878 (home-page "https://github.com/Wilfred/mustache.el")
6879 (synopsis "Mustache templating library for Emacs")
6880 (description "Mustache templating library for Emacs, mustache is
6881 a simple web template system, which is described as a logic-less system
6882 because it lacks any explicit control flow statements, both looping and
6883 conditional evaluation can be achieved using section tags processing lists
6884 and lambdas.")
6885 (license license:gpl3+)))
6886
6887 (define-public emacs-org2web
6888 (package
6889 (name "emacs-org2web")
6890 (version "0.9.1")
6891 (source
6892 (origin
6893 (method git-fetch)
6894 (uri (git-reference
6895 (url "https://github.com/tumashu/org2web.git")
6896 (commit (string-append "v" version))))
6897 (file-name (git-file-name name version))
6898 (sha256
6899 (base32 "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7"))))
6900 (build-system emacs-build-system)
6901 (propagated-inputs
6902 `(("emacs-dash" ,emacs-dash)
6903 ("emacs-el2org" ,emacs-el2org)
6904 ("emacs-ht" ,emacs-ht)
6905 ("emacs-mustache" ,emacs-mustache)
6906 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6907 (home-page "https://github.com/tumashu/org2web")
6908 (synopsis "Static site generator based on org-mode ")
6909 (description "Org2web is a static site generator based on org-mode,
6910 which code derived from Kelvin H's org-page.")
6911 (license license:gpl2+)))
6912
6913 (define-public emacs-xelb
6914 (package
6915 (name "emacs-xelb")
6916 (version "0.17")
6917 (source (origin
6918 (method url-fetch)
6919 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6920 version ".tar"))
6921 (sha256
6922 (base32
6923 "0k98580vq253fjdgklgqlwl450saninfw39fbq8lv3xsnp3dcgml"))))
6924 (build-system emacs-build-system)
6925 ;; The following functions and variables needed by emacs-xelb are
6926 ;; not included in emacs-minimal:
6927 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6928 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6929 ;; x-display-pixel-width, x-display-pixel-height
6930 (arguments
6931 `(#:emacs ,emacs
6932 #:phases
6933 (modify-phases %standard-phases
6934 (add-after 'unpack 'regenerate-el-files
6935 (lambda* (#:key inputs #:allow-other-keys)
6936 (invoke "make"
6937 (string-append "PROTO_PATH="
6938 (assoc-ref inputs "xcb-proto")
6939 "/share/xcb")
6940 (string-append "EMACS_BIN="
6941 (assoc-ref inputs "emacs")
6942 "/bin/emacs -Q")))))))
6943 (native-inputs `(("xcb-proto" ,xcb-proto)))
6944 (home-page "https://github.com/ch11ng/xelb")
6945 (synopsis "X protocol Emacs Lisp binding")
6946 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6947 X11 protocol based on the XML description files from the XCB project. It
6948 features an object-oriented API and permits a certain degree of concurrency.
6949 It should enable you to implement low-level X11 applications.")
6950 (license license:gpl3+)))
6951
6952 (define-public emacs-exwm
6953 (package
6954 (name "emacs-exwm")
6955 (version "0.22")
6956 (synopsis "Emacs X window manager")
6957 (source (origin
6958 (method url-fetch)
6959 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6960 version ".tar"))
6961 (sha256
6962 (base32
6963 "0lppm8ng37i5s4x7xdrxhjbdcnpl6pyvn4g7w52zbckjsn8qnqh0"))))
6964 (build-system emacs-build-system)
6965 (propagated-inputs
6966 `(("emacs-xelb" ,emacs-xelb)))
6967 (inputs
6968 `(("xhost" ,xhost)
6969 ("dbus" ,dbus)))
6970 ;; The following functions and variables needed by emacs-exwm are
6971 ;; not included in emacs-minimal:
6972 ;; scroll-bar-mode, fringe-mode
6973 ;; x-display-pixel-width, x-display-pixel-height
6974 (arguments
6975 `(#:emacs ,emacs
6976 #:phases
6977 (modify-phases %standard-phases
6978 (add-after 'build 'install-xsession
6979 (lambda* (#:key inputs outputs #:allow-other-keys)
6980 (let* ((out (assoc-ref outputs "out"))
6981 (xsessions (string-append out "/share/xsessions"))
6982 (bin (string-append out "/bin"))
6983 (exwm-executable (string-append bin "/exwm")))
6984 ;; Add a .desktop file to xsessions
6985 (mkdir-p xsessions)
6986 (mkdir-p bin)
6987 (with-output-to-file
6988 (string-append xsessions "/exwm.desktop")
6989 (lambda _
6990 (format #t "[Desktop Entry]~@
6991 Name=~a~@
6992 Comment=~a~@
6993 Exec=~a~@
6994 TryExec=~:*~a~@
6995 Type=Application~%" ,name ,synopsis exwm-executable)))
6996 ;; Add a shell wrapper to bin
6997 (with-output-to-file exwm-executable
6998 (lambda _
6999 (format #t "#!~a ~@
7000 ~a +SI:localuser:$USER ~@
7001 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
7002 (string-append (assoc-ref inputs "bash") "/bin/sh")
7003 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
7004 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
7005 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
7006 '(cond
7007 ((file-exists-p "~/.exwm")
7008 (load-file "~/.exwm"))
7009 ((not (featurep 'exwm))
7010 (require 'exwm)
7011 (require 'exwm-config)
7012 (exwm-config-default)
7013 (message (concat "exwm configuration not found. "
7014 "Falling back to default configuration...")))))))
7015 (chmod exwm-executable #o555)
7016 #t))))))
7017 (home-page "https://github.com/ch11ng/exwm")
7018 (description "EXWM is a full-featured tiling X window manager for Emacs
7019 built on top of XELB.")
7020 (license license:gpl3+)))
7021
7022 (define-public emacs-switch-window
7023 (package
7024 (name "emacs-switch-window")
7025 (version "1.6.2")
7026 (source
7027 (origin
7028 (method git-fetch)
7029 (uri (git-reference
7030 (url "https://github.com/dimitri/switch-window")
7031 (commit (string-append "v" version))))
7032 (file-name (git-file-name name version))
7033 (sha256
7034 (base32
7035 "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"))))
7036 (build-system emacs-build-system)
7037 (home-page "https://github.com/dimitri/switch-window")
7038 (synopsis "Emacs window switch tool")
7039 (description "Switch-window is an emacs window switch tool, which
7040 offer a visual way to choose a window to switch to, delete, split or
7041 other operations.")
7042 (license license:wtfpl2)))
7043
7044 (define-public emacs-exwm-x
7045 (package
7046 (name "emacs-exwm-x")
7047 (version "1.9.0")
7048 (synopsis "Derivative window manager based on EXWM")
7049 (source
7050 (origin
7051 (method git-fetch)
7052 (uri (git-reference
7053 (url "https://github.com/tumashu/exwm-x")
7054 (commit (string-append "v" version))))
7055 (file-name (git-file-name name version))
7056 (sha256
7057 (base32
7058 "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4"))))
7059 (build-system emacs-build-system)
7060 (propagated-inputs
7061 `(("emacs-exwm" ,emacs-exwm)
7062 ("emacs-switch-window" ,emacs-switch-window)
7063 ("emacs-ivy" ,emacs-ivy)
7064 ("emacs-use-package" ,emacs-use-package)))
7065 (inputs
7066 `(("xhost" ,xhost)
7067 ("dbus" ,dbus)))
7068 ;; Need emacs instead of emacs-minimal,
7069 ;; for emacs's bin path will be inserted into bin/exwm-x file.
7070 (arguments
7071 `(#:emacs ,emacs
7072 #:phases
7073 (modify-phases %standard-phases
7074 (add-after 'build 'install-xsession
7075 (lambda* (#:key inputs outputs #:allow-other-keys)
7076 (let* ((out (assoc-ref outputs "out"))
7077 (xsessions (string-append out "/share/xsessions"))
7078 (bin (string-append out "/bin"))
7079 (exwm-executable (string-append bin "/exwm-x")))
7080 ;; Add a .desktop file to xsessions
7081 (mkdir-p xsessions)
7082 (mkdir-p bin)
7083 (with-output-to-file
7084 (string-append xsessions "/exwm-x.desktop")
7085 (lambda _
7086 (format #t "[Desktop Entry]~@
7087 Name=~a~@
7088 Comment=~a~@
7089 Exec=~a~@
7090 TryExec=~@*~a~@
7091 Type=Application~%" ,name ,synopsis exwm-executable)))
7092 ;; Add a shell wrapper to bin
7093 (with-output-to-file exwm-executable
7094 (lambda _
7095 (format #t "#!~a ~@
7096 ~a +SI:localuser:$USER ~@
7097 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
7098 (string-append (assoc-ref inputs "bash") "/bin/sh")
7099 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
7100 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
7101 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
7102 '(require 'exwmx-loader))))
7103 (chmod exwm-executable #o555)
7104 #t))))))
7105 (home-page "https://github.com/tumashu/exwm-x")
7106 (description "EXWM-X is a derivative window manager based on EXWM, with focus
7107 on mouse-control.")
7108 (license license:gpl3+)))
7109
7110 (define-public emacs-gnuplot
7111 (package
7112 (name "emacs-gnuplot")
7113 (version "0.7.0")
7114 (source
7115 (origin
7116 (method git-fetch)
7117 (uri (git-reference
7118 (url "https://github.com/bruceravel/gnuplot-mode.git")
7119 (commit version)))
7120 (file-name (git-file-name name version))
7121 (sha256
7122 (base32 "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"))))
7123 (build-system gnu-build-system)
7124 (native-inputs `(("emacs" ,emacs-minimal)))
7125 (arguments
7126 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
7127 "/gnuplot-" version)))
7128 `(#:modules ((guix build gnu-build-system)
7129 (guix build utils)
7130 (guix build emacs-utils))
7131 #:imported-modules (,@%gnu-build-system-modules
7132 (guix build emacs-utils))
7133 #:configure-flags
7134 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
7135 "/bin/emacs")
7136 (string-append "--with-lispdir=" %output ,elisp-dir))
7137 #:phases
7138 (modify-phases %standard-phases
7139 (add-after 'install 'generate-autoloads
7140 (lambda* (#:key outputs #:allow-other-keys)
7141 (emacs-generate-autoloads
7142 "gnuplot"
7143 (string-append (assoc-ref outputs "out") ,elisp-dir))
7144 #t))))))
7145 (home-page "https://github.com/bruceravel/gnuplot-mode")
7146 (synopsis "Emacs major mode for interacting with gnuplot")
7147 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
7148 with gnuplot.")
7149 (license license:gpl2+)))
7150
7151 (define-public emacs-transpose-frame
7152 (package
7153 (name "emacs-transpose-frame")
7154 (version "0.1.0")
7155 (source
7156 (origin
7157 (method url-fetch)
7158 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
7159 (file-name (string-append "transpose-frame-" version ".el"))
7160 (sha256
7161 (base32
7162 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
7163 (build-system emacs-build-system)
7164 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
7165 (synopsis "Transpose window arrangement in current frame")
7166 (description "@code{emacs-transpose-frame} provides some interactive
7167 functions which allows users to transpose windows arrangement in currently
7168 selected frame.")
7169 (license license:bsd-2)))
7170
7171 (define-public emacs-key-chord
7172 (package
7173 (name "emacs-key-chord")
7174 (version "0.6")
7175 (source
7176 (origin
7177 (method url-fetch)
7178 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
7179 (file-name (string-append "key-chord-" version ".el"))
7180 (sha256
7181 (base32
7182 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
7183 (build-system emacs-build-system)
7184 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
7185 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
7186 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
7187 mode for binding key chords to commands. A key chord is defined as two keys
7188 pressed simultaneously or a single key quickly pressed twice.")
7189 (license license:gpl2+)))
7190
7191 (define-public emacs-evil-surround
7192 (package
7193 (name "emacs-evil-surround")
7194 (version "1.0.0")
7195 (source
7196 (origin
7197 (method git-fetch)
7198 (uri (git-reference
7199 (url "https://github.com/timcharper/evil-surround.git")
7200 (commit (string-append "v" version))))
7201 (file-name (git-file-name name version))
7202 (sha256
7203 (base32 "1smv7sqhm1l2bi9fmispnlmjssidblwkmiiycj1n3ag54q27z031"))))
7204 (build-system emacs-build-system)
7205 (propagated-inputs
7206 `(("emacs-evil" ,emacs-evil)))
7207 (home-page "https://github.com/timcharper/evil-surround")
7208 (synopsis "Easily modify surrounding parantheses and quotes")
7209 (description "@code{emacs-evil-surround} allows easy deletion, change and
7210 addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
7211 (license license:gpl3+)))
7212
7213 (define-public emacs-evil-commentary
7214 (package
7215 (name "emacs-evil-commentary")
7216 (version "2.1.1")
7217 (source
7218 (origin
7219 (method git-fetch)
7220 (uri (git-reference
7221 (url "https://github.com/linktohack/evil-commentary.git")
7222 (commit (string-append "v" version))))
7223 (file-name (git-file-name name version))
7224 (sha256
7225 (base32 "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4"))))
7226 (build-system emacs-build-system)
7227 (propagated-inputs
7228 `(("emacs-evil" ,emacs-evil)))
7229 (home-page "https://github.com/linktohack/evil-commentary")
7230 (synopsis "Comment out code in evil mode")
7231 (description "@code{emacs-evil-commentary} adds keybindings to easily
7232 comment out lines of code in evil mode. It provides @code{gcc} to comment out
7233 lines, and @code{gc} to comment out the target of a motion.")
7234 (license license:gpl3+)))
7235
7236 ;; Tests for emacs-ansi have a circular dependency with ert-runner, and
7237 ;; therefore cannot be run
7238 (define-public emacs-ansi
7239 (package
7240 (name "emacs-ansi")
7241 (version "0.4.1")
7242 (source
7243 (origin
7244 (method git-fetch)
7245 (uri (git-reference
7246 (url "https://github.com/rejeep/ansi.el.git")
7247 (commit (string-append "v" version))))
7248 (file-name (git-file-name name version))
7249 (sha256
7250 (base32 "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"))))
7251 (build-system emacs-build-system)
7252 (propagated-inputs
7253 `(("emacs-dash" ,emacs-dash)
7254 ("emacs-s" ,emacs-s)))
7255 (home-page "https://github.com/rejeep/ansi.el")
7256 (synopsis "Convert strings to ANSI")
7257 (description "@code{emacs-ansi} defines functions that turns simple
7258 strings to ANSI strings. Turning a string into an ANSI string can be to add
7259 color to a text, add color in the background of a text or adding a style, such
7260 as bold, underscore or italic.")
7261 (license license:gpl3+)))
7262
7263 ;; Tests for emacs-commander have a circular dependency with ert-runner, and
7264 ;; therefore cannot be run
7265 (define-public emacs-commander
7266 (package
7267 (name "emacs-commander")
7268 (version "0.7.0")
7269 (source
7270 (origin
7271 (method git-fetch)
7272 (uri (git-reference
7273 (url "https://github.com/rejeep/commander.el.git")
7274 (commit (string-append "v" version))))
7275 (file-name (git-file-name name version))
7276 (sha256
7277 (base32 "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"))))
7278 (build-system emacs-build-system)
7279 (propagated-inputs
7280 `(("emacs-dash" ,emacs-dash)
7281 ("emacs-f" ,emacs-f)
7282 ("emacs-s" ,emacs-s)))
7283 (home-page "https://github.com/rejeep/commander.el")
7284 (synopsis "Emacs command line parser")
7285 (description "@code{emacs-commander} provides command line parsing for
7286 Emacs.")
7287 (license license:gpl3+)))
7288
7289 ;; Tests for ert-runner have a circular dependency with ecukes, and therefore
7290 ;; cannot be run
7291 (define-public emacs-ert-runner
7292 (let ((version "0.7.0")
7293 (revision "1")
7294 (commit "90b8fdd5970ef76a4649be60003b37f82cdc1a65"))
7295 (package
7296 (name "emacs-ert-runner")
7297 (version (git-version "0.7.0" revision commit))
7298 (source
7299 (origin
7300 (method git-fetch)
7301 (uri (git-reference
7302 (url "https://github.com/rejeep/ert-runner.el.git")
7303 (commit commit)))
7304 (file-name (git-file-name name version))
7305 (sha256
7306 (base32
7307 "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz"))))
7308 (build-system emacs-build-system)
7309 (inputs
7310 `(("emacs-ansi" ,emacs-ansi)
7311 ("emacs-commander" ,emacs-commander)
7312 ("emacs-dash" ,emacs-dash)
7313 ("emacs-f" ,emacs-f)
7314 ("emacs-s" ,emacs-s)
7315 ("emacs-shut-up" ,emacs-shut-up)))
7316 (arguments
7317 `(#:phases
7318 (modify-phases %standard-phases
7319 (add-after 'install 'install-executable
7320 (lambda* (#:key inputs outputs #:allow-other-keys)
7321 (let ((out (assoc-ref outputs "out"))
7322 (source-directory (string-append
7323 (getenv "TMPDIR") "/source")))
7324 (substitute* "bin/ert-runner"
7325 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
7326 (string-append "ERT_RUNNER=\"" out
7327 "/share/emacs/site-lisp/guix.d/ert-runner-"
7328 ,version)))
7329 (install-file "bin/ert-runner" (string-append out "/bin"))
7330 (wrap-program (string-append out "/bin/ert-runner")
7331 (list "EMACSLOADPATH" ":" 'prefix
7332 ;; Do not capture the transient source directory in
7333 ;; the wrapper.
7334 (delete source-directory
7335 (string-split (getenv "EMACSLOADPATH") #\:))))
7336 #t))))
7337 #:include (cons* "^reporters/.*\\.el$" %default-include)))
7338 (home-page "https://github.com/rejeep/ert-runner.el")
7339 (synopsis "Opinionated Ert testing workflow")
7340 (description "@code{ert-runner} is a tool for Emacs projects tested
7341 using ERT. It assumes a certain test structure setup and can therefore make
7342 running tests easier.")
7343 (license license:gpl3+))))
7344
7345 (define-public ert-runner
7346 (deprecated-package "ert-runner" emacs-ert-runner))
7347
7348 (define-public emacs-disable-mouse
7349 (package
7350 (name "emacs-disable-mouse")
7351 (version "0.2")
7352 (source
7353 (origin
7354 (method git-fetch)
7355 (uri (git-reference
7356 (url "https://github.com/purcell/disable-mouse.git")
7357 (commit version)))
7358 (file-name (git-file-name name version))
7359 (sha256
7360 (base32 "1v1y5hf6k6ng7xsvgb27nh740d14m6l4krr0paccda8zgm4mw357"))))
7361 (build-system emacs-build-system)
7362 (home-page "https://github.com/purcell/disable-mouse")
7363 (synopsis "Disable mouse commands globally")
7364 (description
7365 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
7366 pair of minor modes which suppress all mouse events by intercepting them and
7367 running a customisable handler command (@code{ignore} by default). ")
7368 (license license:gpl3+)))
7369
7370 (define-public emacs-json-reformat
7371 (package
7372 (name "emacs-json-reformat")
7373 (version "0.0.6")
7374 (source
7375 (origin
7376 (method git-fetch)
7377 (uri (git-reference
7378 (url "https://github.com/gongo/json-reformat.git")
7379 (commit version)))
7380 (file-name (git-file-name name version))
7381 (sha256
7382 (base32 "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"))
7383 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
7384 (build-system emacs-build-system)
7385 (propagated-inputs
7386 `(("emacs-undercover" ,emacs-undercover)))
7387 (native-inputs
7388 `(("emacs-dash" ,emacs-dash)
7389 ("emacs-shut-up" ,emacs-shut-up)
7390 ("ert-runner" ,emacs-ert-runner)))
7391 (arguments
7392 `(#:tests? #t
7393 #:test-command '("ert-runner")
7394 #:phases
7395 (modify-phases %standard-phases
7396 (add-before 'check 'make-tests-writable
7397 (lambda _
7398 (for-each make-file-writable (find-files "test"))
7399 #t))
7400 (add-before 'check 'delete-json-objects-order-test
7401 (lambda _
7402 (emacs-batch-edit-file "test/json-reformat-test.el"
7403 `(progn (progn (goto-char (point-min))
7404 (re-search-forward
7405 "ert-deftest json-reformat-test:json-reformat-region")
7406 (beginning-of-line)
7407 (kill-sexp))
7408 (basic-save-buffer)))
7409 #t)))))
7410 (home-page "https://github.com/gongo/json-reformat")
7411 (synopsis "Reformatting tool for JSON")
7412 (description "@code{json-reformat} provides a reformatting tool for
7413 @url{http://json.org/, JSON}.")
7414 (license license:gpl3+)))
7415
7416 (define-public emacs-json-snatcher
7417 (package
7418 (name "emacs-json-snatcher")
7419 (version "1.0.0")
7420 (source
7421 (origin
7422 (method git-fetch)
7423 (uri (git-reference
7424 (url "https://github.com/Sterlingg/json-snatcher.git")
7425 (commit version)))
7426 (file-name (git-file-name name version))
7427 (sha256
7428 (base32 "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"))))
7429 (build-system emacs-build-system)
7430 (home-page "https://github.com/sterlingg/json-snatcher")
7431 (synopsis "Grabs the path to JSON values in a JSON file")
7432 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
7433 a @url{http://json.org/, JSON} file.")
7434 (license license:gpl3+)))
7435
7436 (define-public emacs-json-mode
7437 (package
7438 (name "emacs-json-mode")
7439 (version "1.7.0")
7440 (source
7441 (origin
7442 (method git-fetch)
7443 (uri (git-reference
7444 (url "https://github.com/joshwnj/json-mode.git")
7445 (commit (string-append "v" version))))
7446 (file-name (git-file-name name version))
7447 (sha256
7448 (base32 "0i79lqzdg59vkqwjd3q092xxn9vhxspb1vn4pkis0vfvn46g01jy"))))
7449 (build-system emacs-build-system)
7450 (propagated-inputs
7451 `(("emacs-json-reformat" ,emacs-json-reformat)
7452 ("emacs-json-snatcher" ,emacs-json-snatcher)))
7453 (home-page "https://github.com/joshwnj/json-mode")
7454 (synopsis "Major mode for editing JSON files")
7455 (description "@code{json-mode} extends the builtin js-mode syntax
7456 highlighting.")
7457 (license license:gpl3+)))
7458
7459 (define-public emacs-restclient
7460 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
7461 (revision "1")) ;Guix package revision,
7462 ;upstream doesn't have official releases
7463 (package
7464 (name "emacs-restclient")
7465 (version (string-append revision "."
7466 (string-take commit 7)))
7467 (source (origin
7468 (method git-fetch)
7469 (uri (git-reference
7470 (url "https://github.com/pashky/restclient.el.git")
7471 (commit commit)))
7472 (sha256
7473 (base32
7474 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
7475 (file-name (git-file-name name version))))
7476 (build-system emacs-build-system)
7477 (propagated-inputs
7478 `(("emacs-helm" ,emacs-helm)))
7479 (home-page "https://github.com/pashky/restclient.el")
7480 (synopsis "Explore and test HTTP REST webservices")
7481 (description
7482 "This tool allows for testing and exploration of HTTP REST Web services
7483 from within Emacs. Restclient runs queries from a plan-text query sheet,
7484 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
7485 (license license:public-domain))))
7486
7487 (define-public emacs-eimp
7488 (let ((version "1.4.0")
7489 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
7490 (revision "1"))
7491 (package
7492 (name "emacs-eimp")
7493 (version (git-version version revision commit))
7494 (source
7495 (origin
7496 (method git-fetch)
7497 (uri (git-reference
7498 (url "https://github.com/nicferrier/eimp.git")
7499 (commit commit)))
7500 (file-name (git-file-name name version))
7501 (sha256
7502 (base32
7503 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
7504 (build-system emacs-build-system)
7505 (arguments
7506 `(#:phases
7507 (modify-phases %standard-phases
7508 (add-after 'unpack 'configure
7509 (lambda* (#:key inputs #:allow-other-keys)
7510 (let ((imagemagick (assoc-ref inputs "imagemagick")))
7511 ;; eimp.el is read-only in git.
7512 (chmod "eimp.el" #o644)
7513 (emacs-substitute-variables "eimp.el"
7514 ("eimp-mogrify-program"
7515 (string-append imagemagick "/bin/mogrify"))))
7516 #t)))))
7517 (inputs
7518 `(("imagemagick" ,imagemagick)))
7519 (home-page "https://github.com/nicferrier/eimp")
7520 (synopsis "Interactive image manipulation utility for Emacs")
7521 (description "@code{emacs-eimp} allows interactive image manipulation
7522 from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
7523 the actual transformations.")
7524 (license license:gpl2+))))
7525
7526 (define-public emacs-dired-hacks
7527 (let ((commit "2c1234592aee91dcd9401bcd67213e6a4a464fd9")
7528 (revision "1"))
7529 (package
7530 (name "emacs-dired-hacks")
7531 (version (string-append "0.0.1-" revision "."
7532 (string-take commit 7)))
7533 (source (origin
7534 (method git-fetch)
7535 (uri (git-reference
7536 (url "https://github.com/Fuco1/dired-hacks.git")
7537 (commit commit)))
7538 (file-name (string-append name "-" version "-checkout"))
7539 (sha256
7540 (base32
7541 "1g7mky41cahpryzj6frdgzdymknpqq7pidzfjj9304887kijmhj3"))))
7542 (build-system emacs-build-system)
7543 (propagated-inputs
7544 `(("emacs-dash" ,emacs-dash)
7545 ("emacs-eimp" ,emacs-eimp)
7546 ("emacs-f" ,emacs-f)
7547 ("emacs-s" ,emacs-s)))
7548 (home-page "https://github.com/Fuco1/dired-hacks")
7549 (synopsis
7550 "Collection of useful dired additions")
7551 (description
7552 "Collection of Emacs dired mode additions:
7553 @itemize
7554 @item dired-avfs
7555 @item dired-columns
7556 @item dired-filter
7557 @item dired-hacks-utils
7558 @item dired-images
7559 @item dired-list
7560 @item dired-narrow
7561 @item dired-open
7562 @item dired-rainbow
7563 @item dired-ranger
7564 @item dired-subtree
7565 @item dired-tagsistant
7566 @end itemize\n")
7567 (license license:gpl3+))))
7568
7569 (define-public emacs-dired-sidebar
7570 (let ((commit "06bd0d40bab812c61a668129daf29ba359424454")
7571 (revision "0"))
7572 (package
7573 (name "emacs-dired-sidebar")
7574 (home-page "https://github.com/jojojames/dired-sidebar")
7575 (version (git-version "0.0.1" revision commit))
7576 (source (origin
7577 (method git-fetch)
7578 (uri (git-reference (url home-page) (commit commit)))
7579 (sha256
7580 (base32
7581 "0lvwvq6sl80sha9fq5m4568sg534dhmifyjqw75bqddcbf3by84x"))))
7582 (build-system emacs-build-system)
7583 (propagated-inputs
7584 `(("emacs-dired-subtree" ,emacs-dired-hacks)))
7585 (synopsis "Sidebar for Emacs using Dired")
7586 (description
7587 "This package provides a sidebar for Emacs similar to @code{NeoTree}
7588 or @code{treemacs}, but leveraging @code{Dired} to do the job of display.")
7589 (license license:gpl3+))))
7590
7591 (define-public emacs-which-key
7592 (package
7593 (name "emacs-which-key")
7594 (version "3.3.1")
7595 (source
7596 (origin
7597 (method git-fetch)
7598 (uri (git-reference
7599 (url "https://github.com/justbur/emacs-which-key.git")
7600 (commit (string-append "v" version))))
7601 (file-name (git-file-name name version))
7602 (sha256
7603 (base32 "1dh6kr00wmql46whjkvnl953zngiv5j99ypvr1b3cb2174623afb"))))
7604 (build-system emacs-build-system)
7605 (arguments
7606 `(#:tests? #t
7607 #:test-command '("emacs" "--batch"
7608 "-l" "which-key-tests.el"
7609 "-f" "ert-run-tests-batch-and-exit")))
7610 (home-page "https://github.com/justbur/emacs-which-key")
7611 (synopsis "Display available key bindings in popup")
7612 (description
7613 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
7614 bindings following your currently entered incomplete command (a prefix) in a
7615 popup. For example, after enabling the minor mode if you enter C-x and wait
7616 for the default of 1 second, the minibuffer will expand with all of the
7617 available key bindings that follow C-x (or as many as space allows given your
7618 settings).")
7619 (license license:gpl3+)))
7620
7621 (define-public emacs-ws-butler
7622 (package
7623 (name "emacs-ws-butler")
7624 (version "0.6")
7625 (source (origin
7626 (method git-fetch)
7627 (uri (git-reference
7628 (url "https://github.com/lewang/ws-butler.git")
7629 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
7630 (file-name (string-append name "-" version "-checkout"))
7631 (sha256
7632 (base32
7633 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
7634 (build-system emacs-build-system)
7635 (native-inputs
7636 `(("ert-runner" ,emacs-ert-runner)))
7637 (arguments
7638 `(#:tests? #t
7639 #:test-command '("ert-runner" "tests")))
7640 (home-page "https://github.com/lewang/ws-butler")
7641 (synopsis "Trim spaces from end of lines")
7642 (description
7643 "This Emacs package automatically and unobtrusively trims whitespace
7644 characters from end of lines.")
7645 (license license:gpl3+)))
7646
7647 (define-public emacs-org-edit-latex
7648 (package
7649 (name "emacs-org-edit-latex")
7650 (version "0.8.0")
7651 (source
7652 (origin
7653 (method git-fetch)
7654 (uri (git-reference
7655 (url "https://github.com/et2010/org-edit-latex.git")
7656 (commit (string-append "v" version))))
7657 (file-name (git-file-name name version))
7658 (sha256
7659 (base32 "0zcllyhx9n9vcr5w87h0hfz25v52lvh5fi717cb7mf3jh89zh842"))))
7660 (build-system emacs-build-system)
7661 (propagated-inputs
7662 `(("emacs-auctex" ,emacs-auctex)
7663 ;; The version of org in Emacs 25.2 is not sufficient, because the
7664 ;; `org-latex-make-preamble' function is required.
7665 ("emacs-org" ,emacs-org)))
7666 (home-page "https://github.com/et2010/org-edit-latex")
7667 (synopsis "Edit a latex fragment just like editing a src block")
7668 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
7669 It lets you edit a latex fragment in a dedicated buffer just like editing a
7670 src block.")
7671 (license license:gpl3+)))
7672
7673 (define-public emacs-emamux
7674 (package
7675 (name "emacs-emamux")
7676 (version "0.14")
7677 (source
7678 (origin
7679 (method git-fetch)
7680 (uri (git-reference
7681 (url "https://github.com/syohex/emacs-emamux.git")
7682 (commit version)))
7683 (file-name (git-file-name name version))
7684 (sha256
7685 (base32 "19y69qw79miim9cz5ji54gwspjkcp9g2c1xr5s7jj2fiabnxax6b"))))
7686 (build-system emacs-build-system)
7687 (home-page "https://github.com/syohex/emacs-emamux")
7688 (synopsis "Manipulate Tmux from Emacs")
7689 (description
7690 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7691 multiplexer.")
7692 (license license:gpl3+)))
7693
7694 (define-public emacs-rpm-spec-mode
7695 (package
7696 (name "emacs-rpm-spec-mode")
7697 (version "0.16")
7698 (source
7699 (origin
7700 (method url-fetch)
7701 ;; URI has the Fedora release number instead of the version
7702 ;; number. This will have to updated manually every new release.
7703 (uri (string-append
7704 "https://src.fedoraproject.org/cgit/rpms"
7705 "/emacs-rpm-spec-mode.git/snapshot"
7706 "/emacs-rpm-spec-mode-f26.tar.gz"))
7707 (sha256
7708 (base32
7709 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7710 (build-system emacs-build-system)
7711 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7712 (synopsis "Emacs major mode for editing RPM spec files")
7713 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7714 editing RPM spec files.")
7715 (license license:gpl2+)))
7716
7717 (define-public emacs-git-messenger
7718 (package
7719 (name "emacs-git-messenger")
7720 (version "0.18")
7721 (source
7722 (origin
7723 (method git-fetch)
7724 (uri (git-reference
7725 (url "https://github.com/syohex/emacs-git-messenger.git")
7726 (commit version)))
7727 (file-name (git-file-name name version))
7728 (sha256
7729 (base32 "04fnby2nblk8l70gv09asxkmnn53fh1pdfs77ix44npp99fyw8ix"))))
7730 (build-system emacs-build-system)
7731 (propagated-inputs
7732 `(("emacs-popup" ,emacs-popup)))
7733 (arguments
7734 `(#:tests? #t
7735 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7736 "-f" "ert-run-tests-batch-and-exit")))
7737 (home-page "https://github.com/syohex/emacs-git-messenger")
7738 (synopsis "Popup commit message at current line")
7739 (description "@code{emacs-git-messenger} provides
7740 @code{git-messenger:popup-message}, a function that when called, will popup
7741 the last git commit message for the current line. This uses git-blame
7742 internally.")
7743 (license license:gpl3+)))
7744
7745 (define-public emacs-gitpatch
7746 (package
7747 (name "emacs-gitpatch")
7748 (version "0.5.0")
7749 (source
7750 (origin
7751 (method git-fetch)
7752 (uri (git-reference
7753 (url "https://github.com/tumashu/gitpatch.git")
7754 (commit (string-append "v" version))))
7755 (file-name (git-file-name name version))
7756 (sha256
7757 (base32 "1jj12pjwza6cq8a3kr8nqnmm3vxs0wam8h983irry4xr4ifywsn4"))))
7758 (build-system emacs-build-system)
7759 (home-page "https://github.com/tumashu/gitpatch")
7760 (synopsis "Mail git patch from Emacs")
7761 (description "@code{emacs-gitpatch} lets users easily send git patches,
7762 created by @code{git format-patch}, from @code{magit}, @code{dired} and
7763 @code{ibuffer} buffers.")
7764 (license license:gpl3+)))
7765
7766 (define-public emacs-erc-hl-nicks
7767 (package
7768 (name "emacs-erc-hl-nicks")
7769 (version "1.3.3")
7770 (source
7771 (origin
7772 (method url-fetch)
7773 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7774 "/archive/" version ".tar.gz"))
7775 (file-name (string-append name "-" version ".tar.gz"))
7776 (sha256
7777 (base32
7778 "1a1r2kc3688g8c2ybkpwh88kgmnqhg3h3032g2yn4zr9m0n3vpkr"))))
7779 (build-system emacs-build-system)
7780 (synopsis "Nickname highlighting for Emacs ERC")
7781 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7782 client for Emacs. The main features are:
7783 @itemize
7784 @item Auto-colorizes nicknames without having to specify colors
7785 @item Ignores certain characters that IRC clients add to nicknames to avoid
7786 duplicates (nickname, nickname’, nickname\", etc.)
7787 @item Attempts to produce colors with a sufficient amount of contrast between
7788 the nick color and the background color
7789 @end itemize\n")
7790 (home-page "https://github.com/leathekd/erc-hl-nicks")
7791 (license license:gpl3+)))
7792
7793 (define-public emacs-engine-mode
7794 (package
7795 (name "emacs-engine-mode")
7796 (version "2.0.0")
7797 (source
7798 (origin
7799 (method git-fetch)
7800 (uri (git-reference
7801 (url "https://github.com/hrs/engine-mode.git")
7802 (commit (string-append "v" version))))
7803 (file-name (git-file-name name version))
7804 (sha256
7805 (base32 "02xas46nl28mascqsyr1zcd4hn15bh0fjv2xlxv1kmrj0pis94ml"))))
7806 (build-system emacs-build-system)
7807 (synopsis "Minor mode for defining and querying search engines")
7808 (description "@code{engine-mode} is a global minor mode for Emacs. It
7809 enables you to easily define search engines, bind them to keybindings, and
7810 query them from the comfort of your editor.")
7811 (home-page "https://github.com/hrs/engine-mode")
7812 (license license:gpl3+)))
7813
7814 (define-public emacs-prop-menu
7815 (package
7816 (name "emacs-prop-menu")
7817 (version "0.1.2")
7818 (source
7819 (origin
7820 (method url-fetch)
7821 (uri (string-append
7822 "http://stable.melpa.org/packages/prop-menu-"
7823 version ".el"))
7824 (sha256
7825 (base32
7826 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7827 (build-system emacs-build-system)
7828 (home-page
7829 "https://github.com/david-christiansen/prop-menu-el")
7830 (synopsis
7831 "Create and display a context menu based on text and overlay properties")
7832 (description
7833 "This is a library for computing context menus based on text
7834 properties and overlays. The intended use is to have tools that
7835 annotate source code and others that use these annotations, without
7836 requiring a direct coupling between them, but maintaining
7837 discoverability.
7838
7839 Major modes that wish to use this library should first define an
7840 appropriate value for @code{prop-menu-item-functions}. Then, they should
7841 bind @code{prop-menu-by-completing-read} to an appropriate
7842 key. Optionally, a mouse pop-up can be added by binding
7843 @code{prop-menu-show-menu} to a mouse event.")
7844 (license license:gpl3+)))
7845
7846 (define-public emacs-idris-mode
7847 (package
7848 (name "emacs-idris-mode")
7849 (version "0.9.19")
7850 (source
7851 (origin
7852 (method url-fetch)
7853 (uri (string-append
7854 "http://stable.melpa.org/packages/idris-mode-"
7855 version ".tar"))
7856 (sha256
7857 (base32
7858 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
7859 (build-system emacs-build-system)
7860 (propagated-inputs
7861 `(("emacs-prop-menu" ,emacs-prop-menu)))
7862 (home-page
7863 "https://github.com/idris-hackers/idris-mode")
7864 (synopsis "Major mode for editing Idris code")
7865 (description
7866 "This is an Emacs mode for editing Idris code. It requires the latest
7867 version of Idris, and some features may rely on the latest Git version of
7868 Idris.")
7869 (license license:gpl3+)))
7870
7871 (define-public emacs-browse-at-remote
7872 (package
7873 (name "emacs-browse-at-remote")
7874 (version "0.10.0")
7875 (source
7876 (origin
7877 (method git-fetch)
7878 (uri (git-reference
7879 (url "https://github.com/rmuslimov/browse-at-remote.git")
7880 (commit version)))
7881 (file-name (git-file-name name version))
7882 (sha256
7883 (base32 "0vhia7xmszcb3lxrb8wh93a3knjfzj48h8nhj4fh8zj1pjz6args"))))
7884 (build-system emacs-build-system)
7885 (propagated-inputs
7886 `(("emacs-f" ,emacs-f)
7887 ("emacs-s" ,emacs-s)))
7888 (native-inputs
7889 `(("ert-runner" ,emacs-ert-runner)))
7890 (arguments
7891 `(#:tests? #t
7892 #:test-command '("ert-runner")))
7893 (home-page "https://github.com/rmuslimov/browse-at-remote")
7894 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7895 (description
7896 "This Emacs package allows you to open a target page on
7897 github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7898 It supports dired buffers and opens them in tree mode at destination.")
7899 (license license:gpl3+)))
7900
7901 (define-public emacs-tiny
7902 (package
7903 (name "emacs-tiny")
7904 (version "0.2.1")
7905 (source
7906 (origin
7907 (method url-fetch)
7908 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7909 (sha256
7910 (base32
7911 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
7912 (build-system emacs-build-system)
7913 (home-page "https://github.com/abo-abo/tiny")
7914 (synopsis "Quickly generate linear ranges in Emacs")
7915 (description
7916 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
7917 It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
7918 proficiency is an advantage, since you can transform your numeric range with
7919 an elisp expression.")
7920 (license license:gpl3+)))
7921
7922 (define-public emacs-emojify
7923 (package
7924 (name "emacs-emojify")
7925 (version "0.4")
7926 (source
7927 (origin
7928 (method url-fetch)
7929 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7930 "releases/download/v" version "/emojify-"
7931 version ".tar"))
7932 (sha256
7933 (base32
7934 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7935 (build-system emacs-build-system)
7936 (arguments
7937 `(#:phases
7938 (modify-phases %standard-phases
7939 (add-after 'install 'install-data
7940 (lambda* (#:key outputs #:allow-other-keys)
7941 (copy-recursively "data"
7942 (string-append (assoc-ref outputs "out")
7943 "/share/emacs/site-lisp/guix.d/"
7944 "emojify-" ,version "/data"))
7945 #t)))))
7946 (propagated-inputs
7947 `(("emacs-ht" ,emacs-ht)))
7948 (home-page "https://github.com/iqbalansari/emacs-emojify")
7949 (synopsis "Display emojis in Emacs")
7950 (description "This package displays emojis in Emacs similar to how Github,
7951 Slack, and other websites do. It can display plain ASCII like @code{:)} as
7952 well as Github-style emojis like @code{:smile:}. It provides a minor mode
7953 @code{emojify-mode} to enable the display of emojis in a buffer.")
7954 (license license:gpl3+)))
7955
7956 (define-public emacs-websocket
7957 (package
7958 (name "emacs-websocket")
7959 (version "1.10")
7960 (source
7961 (origin
7962 (method git-fetch)
7963 (uri (git-reference
7964 (url "https://github.com/ahyatt/emacs-websocket.git")
7965 (commit version)))
7966 (file-name (git-file-name name version))
7967 (sha256
7968 (base32
7969 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
7970 (build-system emacs-build-system)
7971 (home-page "http://elpa.gnu.org/packages/websocket.html")
7972 (synopsis "Emacs WebSocket client and server")
7973 (description "This is an Elisp library for WebSocket clients to talk to
7974 WebSocket servers, and for WebSocket servers to accept connections from
7975 WebSocket clients. This library is designed to be used by other library
7976 writers, to write applications that use WebSockets, and is not useful by
7977 itself.")
7978 (license license:gpl3+)))
7979
7980 (define-public emacs-oauth2
7981 (package
7982 (name "emacs-oauth2")
7983 (version "0.11")
7984 (source
7985 (origin
7986 (method url-fetch)
7987 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7988 version ".el"))
7989 (sha256
7990 (base32
7991 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7992 (build-system emacs-build-system)
7993 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7994 (synopsis "OAuth 2.0 authorization protocol implementation")
7995 (description
7996 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7997 The main entry point is @code{oauth2-auth-and-store} which will return a token
7998 structure. This token structure can be then used with
7999 @code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
8000 retrieve any data that need OAuth authentication to be accessed. If the token
8001 needs to be refreshed, the code handles it automatically and stores the new
8002 value of the access token.")
8003 (license license:gpl3+)))
8004
8005 (define-public emacs-circe
8006 (package
8007 (name "emacs-circe")
8008 (version "2.10")
8009 (source
8010 (origin
8011 (method git-fetch)
8012 (uri (git-reference
8013 (url "https://github.com/jorgenschaefer/circe.git")
8014 (commit (string-append "v" version))))
8015 (file-name (git-file-name name version))
8016 (sha256
8017 (base32
8018 "10gi14kwxd81blddpvqh95lgmpbfgp0m955naxix3bs3r6a75n4s"))))
8019 (build-system emacs-build-system)
8020 (arguments
8021 `(#:tests? #t
8022 #:test-command '("buttercup" "-L" ".")
8023 #:phases
8024 (modify-phases %standard-phases
8025 ;; The HOME environment variable should be set to an existing
8026 ;; directory for the tests to succeed.
8027 (add-before 'check 'set-home
8028 (lambda _
8029 (setenv "HOME" "/tmp")
8030 #t)))))
8031 (native-inputs
8032 `(("emacs-buttercup" ,emacs-buttercup)))
8033 ;; In order to securely connect to an IRC server using TLS, Circe requires
8034 ;; the GnuTLS binary.
8035 (propagated-inputs
8036 `(("gnutls" ,gnutls)))
8037 (home-page "https://github.com/jorgenschaefer/circe")
8038 (synopsis "Client for IRC in Emacs")
8039 (description "Circe is a Client for IRC in Emacs. It integrates well with
8040 the rest of the editor, using standard Emacs key bindings and indicating
8041 activity in channels in the status bar so it stays out of your way unless you
8042 want to use it.")
8043 (license license:gpl3+)))
8044
8045 (define-public emacs-tracking
8046 (package
8047 (inherit emacs-circe)
8048 (name "emacs-tracking")
8049 (arguments
8050 ;; "tracking.el" is a library extracted from Circe package. It requires
8051 ;; "shorten.el".
8052 `(#:include '("^shorten.el$" "^tracking.el$")
8053 ,@(package-arguments emacs-circe)))
8054 (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking")
8055 (synopsis "Buffer tracking library")
8056 (description "@code{tracking.el} provides a way for different modes to
8057 notify the user that a buffer needs attention. The user then can cycle
8058 through them using @key{C-c C-SPC}.")
8059 (license license:gpl3+)))
8060
8061 (define-public emacs-slack
8062 (let ((commit "99a57501629a0329a9ca090c1ea1296462eda02d")
8063 (revision "5"))
8064 (package
8065 (name "emacs-slack")
8066 (version (git-version "0.0.2" revision commit))
8067 (source (origin
8068 (method git-fetch)
8069 (uri (git-reference
8070 (url "https://github.com/yuya373/emacs-slack.git")
8071 (commit commit)))
8072 (file-name (git-file-name name commit))
8073 (sha256
8074 (base32
8075 "0jw1diypfw8pmzkq0napgxmfc0gqka7zcccgnw359604lr30k2z2"))))
8076 (build-system emacs-build-system)
8077 (propagated-inputs
8078 `(("emacs-alert" ,emacs-alert)
8079 ("emacs-emojify" ,emacs-emojify)
8080 ("emacs-helm" ,emacs-helm)
8081 ("emacs-request" ,emacs-request)
8082 ("emacs-websocket" ,emacs-websocket)
8083 ("emacs-oauth2" ,emacs-oauth2)
8084 ("emacs-circe" ,emacs-circe)))
8085 (home-page "https://github.com/yuya373/emacs-slack")
8086 (synopsis "Slack client for Emacs")
8087 (description "This package provides an Emacs client for the Slack
8088 messaging service.")
8089 (license license:gpl3+))))
8090
8091 (define-public emacs-bash-completion
8092 (package
8093 (name "emacs-bash-completion")
8094 (version "2.1.0")
8095 (source
8096 (origin
8097 (method git-fetch)
8098 (uri (git-reference
8099 (url "https://github.com/szermatt/emacs-bash-completion.git")
8100 (commit version)))
8101 (file-name (git-file-name name version))
8102 (sha256
8103 (base32 "1a1wxcqzh0javjmxwi3lng5i99xiylm8lm04kv4q1lh9bli6vmv0"))))
8104 (inputs `(("bash" ,bash)))
8105 (build-system emacs-build-system)
8106 (arguments
8107 `(#:phases
8108 (modify-phases %standard-phases
8109 (add-after 'unpack 'make-git-checkout-writable
8110 (λ _
8111 (for-each make-file-writable (find-files "."))
8112 #t))
8113 (add-before 'install 'configure
8114 (lambda* (#:key inputs #:allow-other-keys)
8115 (let ((bash (assoc-ref inputs "bash")))
8116 (emacs-substitute-variables "bash-completion.el"
8117 ("bash-completion-prog" (string-append bash "/bin/bash"))))
8118 #t)))))
8119 (home-page "https://github.com/szermatt/emacs-bash-completion")
8120 (synopsis "Bash completion for the shell buffer")
8121 (description
8122 "@code{bash-completion} defines dynamic completion hooks for shell-mode
8123 and shell-command prompts that are based on Bash completion.")
8124 (license license:gpl2+)))
8125
8126 (define-public emacs-easy-kill
8127 (package
8128 (name "emacs-easy-kill")
8129 (version "0.9.3")
8130 (source (origin
8131 (method url-fetch)
8132 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
8133 version ".tar"))
8134 (sha256
8135 (base32
8136 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
8137 (build-system emacs-build-system)
8138 (home-page "https://github.com/leoliu/easy-kill")
8139 (synopsis "Kill and mark things easily in Emacs")
8140 (description
8141 "This package provides commands @code{easy-kill} and @code{easy-mark} to
8142 let users kill or mark things easily.")
8143 (license license:gpl3+)))
8144
8145 (define-public emacs-csv-mode
8146 (package
8147 (name "emacs-csv-mode")
8148 (version "1.7")
8149 (source
8150 (origin
8151 (method url-fetch)
8152 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
8153 version ".el"))
8154 (sha256
8155 (base32
8156 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
8157 (build-system emacs-build-system)
8158 (home-page
8159 "http://elpa.gnu.org/packages/csv-mode.html")
8160 (synopsis
8161 "Major mode for editing comma/char separated values")
8162 (description
8163 "This Emacs package implements CSV mode, a major mode for editing records
8164 in a generalized CSV (character-separated values) format.")
8165 (license license:gpl3+)))
8166
8167 (define-public emacs-transmission
8168 (package
8169 (name "emacs-transmission")
8170 (version "0.12.1")
8171 (source
8172 (origin
8173 (method git-fetch)
8174 (uri (git-reference
8175 (url "https://github.com/holomorph/transmission.git")
8176 (commit version)))
8177 (file-name (git-file-name name version))
8178 (sha256
8179 (base32 "0kvg2gawsgy440x1fsl2c4pkxwp3zirq9rzixanklk0ryijhd3ry"))))
8180 (build-system emacs-build-system)
8181 (home-page "https://github.com/holomorph/transmission")
8182 (synopsis "Emacs interface to a Transmission session")
8183 (description "This package provides an Emacs interface to interact with a
8184 running session of the Transmission Bittorrent client.
8185
8186 Features:
8187
8188 @itemize
8189 @item List, add, start/stop, verify, remove torrents.
8190 @item Set speed limits, ratio limits, bandwidth priorities, trackers.
8191 @item Navigate to the corresponding file list, torrent info, peer info
8192 contexts.
8193 @item Toggle downloading and set priorities for individual files.
8194 @end itemize\n")
8195 (license license:gpl3+)))
8196
8197 (define-public emacs-polymode
8198 (package
8199 (name "emacs-polymode")
8200 (version "0.1.5")
8201 (source (origin
8202 (method git-fetch)
8203 (uri (git-reference
8204 (url "https://github.com/vspinu/polymode.git")
8205 (commit (string-append "v" version))))
8206 (file-name (git-file-name name version))
8207 (sha256
8208 (base32
8209 "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
8210 (build-system emacs-build-system)
8211 (arguments
8212 `(#:include (cons* "^modes/.*\\.el$" %default-include)
8213 #:phases
8214 (modify-phases %standard-phases
8215 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
8216 (lambda _
8217 (setenv "EMACSLOADPATH"
8218 (string-append (getenv "EMACSLOADPATH")
8219 ":" (getcwd) "/modes" ":")))))))
8220 (home-page "https://github.com/vspinu/polymode")
8221 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
8222 (description "Polymode is an Emacs package that offers generic support
8223 for multiple major modes inside a single Emacs buffer. It is lightweight,
8224 object oriented and highly extensible. Creating a new polymode typically
8225 takes only a few lines of code. Polymode also provides extensible facilities
8226 for external literate programming tools for exporting, weaving and tangling.")
8227 (license license:gpl3+)))
8228
8229 (define-public emacs-polymode-ansible
8230 (let ((commit "b26094d029e25dc797b94254f797e7807a57e4c8"))
8231 (package
8232 (name "emacs-polymode-ansible")
8233 ;; No upstream version release yet.
8234 (version (git-version "0.1" "1" commit))
8235 (source
8236 (origin
8237 (method git-fetch)
8238 (uri (git-reference
8239 (url "https://gitlab.com/mavit/poly-ansible")
8240 (commit commit)))
8241 (file-name (git-file-name name version))
8242 (sha256
8243 (base32
8244 "055shddqibib3hx2ykwdz910nrqws40cd407mq946l2bf6v87gj6"))))
8245 (build-system emacs-build-system)
8246 (propagated-inputs
8247 `(("emacs-ansible-doc" ,emacs-ansible-doc)
8248 ("emacs-jinja2-mode" ,emacs-jinja2-mode)
8249 ("emacs-polymode" ,emacs-polymode)
8250 ("emacs-yaml-mode" ,emacs-yaml-mode)))
8251 (properties '((upstream-name . "poly-ansible")))
8252 (home-page "https://gitlab.com/mavit/poly-ansible/")
8253 (synopsis "Polymode for Ansible - Jinja2 in YAML")
8254 (description
8255 "Edit YAML files for Ansible containing embedded Jinja2 templating.")
8256 (license license:gpl3+))))
8257
8258 (define-public eless
8259 (package
8260 (name "eless")
8261 (version "0.3")
8262 (source
8263 (origin
8264 (method git-fetch)
8265 (uri (git-reference
8266 (url "https://github.com/kaushalmodi/eless.git")
8267 (commit (string-append "v" version))))
8268 (file-name (git-file-name name version))
8269 (sha256
8270 (base32 "0jr7vhh4vw69llhi0fh9ljscljkszkj0acdxl04da5hvqv6pnqbb"))))
8271 (build-system trivial-build-system)
8272 (inputs
8273 `(("bash" ,bash)))
8274 (arguments
8275 `(#:modules ((guix build utils))
8276 #:builder
8277 (begin
8278 (use-modules (guix build utils))
8279 (copy-recursively (assoc-ref %build-inputs "source") "source")
8280 (chdir "source")
8281 (substitute* "eless" (("/usr/bin/env bash")
8282 (string-append (assoc-ref %build-inputs "bash")
8283 "/bin/bash")))
8284 (install-file "eless" (string-append %output "/bin"))
8285 (install-file "doc/eless.info" (string-append %output "/share/info"))
8286 #t)))
8287 (home-page "https://github.com/kaushalmodi/eless")
8288 (synopsis "Use Emacs as a paginator")
8289 (description "@code{eless} provides a combination of Bash script
8290 and a minimal Emacs view-mode.
8291
8292 Feautures:
8293
8294 @itemize
8295 @item Independent of a user’s Emacs config.
8296 @item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
8297 @item Not require an Emacs server to be already running.
8298 @item Syntax highlighting.
8299 @item Org-mode file rendering.
8300 @item @code{man} page viewer.
8301 @item Info viewer.
8302 @item Dired, wdired, (batch edit symbolic links).
8303 @item Colored diffs, git diff, git log, ls with auto ANSI detection.
8304 @item Filter log files lines matching a regexp.
8305 @item Auto-revert log files similar to @code{tail -f}.
8306 @item Quickly change frame and font sizes.
8307 @end itemize\n")
8308 (license license:expat)))
8309
8310 (define-public emacs-evil-matchit
8311 (package
8312 (name "emacs-evil-matchit")
8313 (version "2.2.9")
8314 (source
8315 (origin
8316 (method git-fetch)
8317 (uri (git-reference
8318 (url "https://github.com/redguardtoo/evil-matchit.git")
8319 (commit version)))
8320 (file-name (git-file-name name version))
8321 (sha256
8322 (base32 "12if45pxfndy3d7r4gd3zx4d3jk4d64fdmwkhc3y5zhqq9h9iy4c"))))
8323 (build-system emacs-build-system)
8324 (propagated-inputs
8325 `(("emacs-evil" ,emacs-evil)))
8326 (home-page "https://github.com/redguardtoo/evil-matchit")
8327 (synopsis "Vim matchit ported into Emacs")
8328 (description
8329 "@code{evil-matchit} is a minor mode for jumping between matching tags in
8330 evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
8331 (license license:gpl3+)))
8332
8333 (define-public emacs-evil-smartparens
8334 (package
8335 (name "emacs-evil-smartparens")
8336 (version "0.4.0")
8337 (source
8338 (origin
8339 (method git-fetch)
8340 (uri (git-reference
8341 (url "https://github.com/expez/evil-smartparens.git")
8342 (commit version)))
8343 (file-name (git-file-name name version))
8344 (sha256
8345 (base32 "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"))))
8346 (build-system emacs-build-system)
8347 (propagated-inputs
8348 `(("emacs-evil" ,emacs-evil)
8349 ("emacs-smartparens" ,emacs-smartparens)))
8350 (home-page "https://github.com/expez/evil-smartparens")
8351 (synopsis "Emacs Evil integration for Smartparens")
8352 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
8353 makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
8354 emulates Vim features and provides Vim-like key bindings.")
8355 (license license:gpl3+)))
8356
8357 (define-public emacs-evil-quickscope
8358 (package
8359 (name "emacs-evil-quickscope")
8360 (version "0.1.4")
8361 (source
8362 (origin
8363 (method git-fetch)
8364 (uri (git-reference
8365 (url "https://github.com/blorbx/evil-quickscope.git")
8366 (commit (string-append "v" version))))
8367 (file-name (git-file-name name version))
8368 (sha256
8369 (base32 "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"))))
8370 (build-system emacs-build-system)
8371 (propagated-inputs
8372 `(("emacs-evil" ,emacs-evil)))
8373 (arguments
8374 `(#:tests? #t
8375 #:test-command '("emacs" "--batch"
8376 "-l" "evil-quickscope-tests.el"
8377 "-f" "ert-run-tests-batch-and-exit")))
8378 (home-page "https://github.com/blorbx/evil-quickscope")
8379 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
8380 (description "@code{emacs-evil-quickscope} highlights targets for Evil
8381 mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
8382 port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
8383 features and provides Vim-like key bindings.")
8384 (license license:gpl3+)))
8385
8386 (define-public emacs-bongo
8387 (package
8388 (name "emacs-bongo")
8389 (version "1.0")
8390 (source
8391 (origin
8392 (method git-fetch)
8393 (uri (git-reference
8394 (url "https://github.com/dbrock/bongo.git")
8395 (commit version)))
8396 (file-name (git-file-name name version))
8397 (sha256
8398 (base32 "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"))))
8399 (build-system emacs-build-system)
8400 (home-page "https://github.com/dbrock/bongo")
8401 (synopsis "Media player for Emacs")
8402 (description
8403 "This package provides a flexible media player for Emacs. @code{Bongo}
8404 supports multiple backends such as @code{vlc}, @code{mpg123},
8405 @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
8406 @code{afplay}.")
8407 (license license:gpl2+)))
8408
8409 (define-public emacs-groovy-modes
8410 (package
8411 (name "emacs-groovy-modes")
8412 (version "2.0")
8413 (source (origin
8414 (method url-fetch)
8415 (uri (string-append
8416 "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
8417 "/archive/" version ".tar.gz"))
8418 (file-name (string-append name "-" version ".tar.gz"))
8419 (sha256
8420 (base32
8421 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
8422 (build-system emacs-build-system)
8423 (propagated-inputs
8424 `(("emacs-s" ,emacs-s)))
8425 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
8426 (synopsis "Groovy related modes for Emacs")
8427 (description
8428 "This package provides @code{groovy-mode} for syntax highlighing in
8429 Groovy source files, REPL integration with run-groovy and Grails project
8430 navigation with the grails mode.")
8431 (license license:gpl3+)))
8432
8433 (define-public groovy-emacs-modes
8434 (deprecated-package "groovy-emacs-modes" emacs-groovy-modes))
8435
8436 (define-public emacs-org-tree-slide
8437 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
8438 (revision "0"))
8439 (package
8440 (name "emacs-org-tree-slide")
8441 (version (git-version "0.1" revision commit))
8442 (home-page "https://github.com/takaxp/org-tree-slide")
8443 (source (origin
8444 (method git-fetch)
8445 (uri (git-reference (url home-page) (commit commit)))
8446 (sha256
8447 (base32
8448 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
8449 (file-name (git-file-name name version))))
8450 (build-system emacs-build-system)
8451 (synopsis "Presentation tool for org-mode")
8452 (description
8453 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
8454 @code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
8455 @kbd{C-<} to jump to the next and previous slide.")
8456 (license license:gpl3+))))
8457
8458 (define-public emacs-scratch-el
8459 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
8460 (revision "1"))
8461 (package
8462 (name "emacs-scratch-el")
8463 (version (git-version "1.2" revision commit))
8464 (source (origin
8465 (method git-fetch)
8466 (uri (git-reference
8467 (url "https://github.com/ieure/scratch-el.git")
8468 (commit commit)))
8469 (file-name (git-file-name name version))
8470 (sha256
8471 (base32
8472 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
8473 (build-system emacs-build-system)
8474 (native-inputs
8475 `(("texinfo" ,texinfo)))
8476 (arguments
8477 '(#:phases
8478 (modify-phases %standard-phases
8479 (add-after 'install 'install-doc
8480 (lambda* (#:key outputs #:allow-other-keys)
8481 (unless (invoke "makeinfo" "scratch.texi")
8482 (error "makeinfo failed"))
8483 (install-file "scratch.info"
8484 (string-append (assoc-ref outputs "out")
8485 "/share/info"))
8486 #t)))))
8487 (home-page "https://github.com/ieure/scratch-el/")
8488 (synopsis "Create scratch buffers with the same mode as current buffer")
8489 (description "Scratch is an extension to Emacs that enables one to create
8490 scratch buffers that are in the same mode as the current buffer. This is
8491 notably useful when working on code in some language; you may grab code into a
8492 scratch buffer, and, by virtue of this extension, do so using the Emacs
8493 formatting rules for that language.")
8494 (license license:bsd-2))))
8495
8496 (define-public emacs-kv
8497 (package
8498 (name "emacs-kv")
8499 (version "0.0.19")
8500 (source
8501 (origin
8502 (method git-fetch)
8503 (uri (git-reference
8504 (url "https://github.com/nicferrier/emacs-kv.git")
8505 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
8506 (file-name (git-file-name name version))
8507 (sha256
8508 (base32
8509 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
8510 (build-system emacs-build-system)
8511 (arguments
8512 `(#:tests? #t
8513 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
8514 "-f" "ert-run-tests-batch-and-exit")))
8515 (home-page "https://github.com/nicferrier/emacs-kv")
8516 (synopsis "Key/Value data structures library for Emacs Lisp")
8517 (description "@code{emacs-kv} is a collection of tools for dealing with
8518 key/value data structures such as plists, alists and hash-tables in Emacs
8519 Lisp.")
8520 (license license:gpl3+)))
8521
8522 (define-public emacs-esxml
8523 (package
8524 (name "emacs-esxml")
8525 (version "0.3.4")
8526 (source (origin
8527 (method git-fetch)
8528 (uri (git-reference
8529 (url "https://github.com/tali713/esxml.git")
8530 (commit version)))
8531 (file-name (git-file-name name version))
8532 (sha256
8533 (base32
8534 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
8535 (build-system emacs-build-system)
8536 (arguments
8537 `(#:phases
8538 (modify-phases %standard-phases
8539 (add-after 'unpack 'fix-sources
8540 (lambda _
8541 ;; See: https://github.com/tali713/esxml/pull/28.
8542 (substitute* "css-lite.el"
8543 ((";;; main interface")
8544 (string-append ";;; main interface\n"
8545 "(require 'cl-lib)"))
8546 (("mapcan")
8547 "cl-mapcan")
8548 (("',\\(cl-mapcan #'process-css-rule rules\\)")
8549 "(cl-mapcan #'process-css-rule ',rules)"))
8550 (substitute* "esxml-form.el"
8551 ((",esxml-form-field-defn")
8552 "#'esxml-form-field-defn"))
8553 ;; See: https://github.com/tali713/esxml/issues/25
8554 (delete-file "esxpath.el")
8555 #t)))))
8556 (propagated-inputs
8557 `(("emacs-kv" ,emacs-kv)))
8558 (home-page "https://github.com/tali713/esxml/")
8559 (synopsis "SXML for EmacsLisp")
8560 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
8561 Simply, this is the easiest way to write HTML or XML in Lisp. This library
8562 uses the native form of XML representation as used by many libraries already
8563 included within Emacs. See @code{esxml-to-xml} for a concise description of
8564 the format.")
8565 (license license:gpl3+)))
8566
8567 (define-public emacs-nov-el
8568 (package
8569 (name "emacs-nov-el")
8570 (version "0.2.6")
8571 (source (origin
8572 (method git-fetch)
8573 (uri (git-reference
8574 (url "https://github.com/wasamasa/nov.el.git")
8575 (commit version)))
8576 (file-name (git-file-name name version))
8577 (sha256
8578 (base32
8579 "188h5gzn1zf443g0b7q5bpmvvpr6ds5h8aci8vxc92py56rhyrvc"))))
8580 (build-system emacs-build-system)
8581 (arguments
8582 `(#:phases
8583 (modify-phases %standard-phases
8584 (add-after 'unpack 'embed-path-to-unzip
8585 (lambda _
8586 (substitute* "nov.el"
8587 (("\\(executable-find \"unzip\"\\)")
8588 (string-append "\"" (which "unzip") "\"")))
8589 #t)))))
8590 (propagated-inputs
8591 `(("emacs-dash" ,emacs-dash)
8592 ("emacs-esxml" ,emacs-esxml)))
8593 (inputs
8594 `(("unzip" ,unzip)))
8595 (home-page "https://github.com/wasamasa/nov.el/")
8596 (synopsis "Major mode for reading EPUBs in Emacs")
8597 (description "@code{nov.el} provides a major mode for reading EPUB
8598 documents.
8599
8600 Features:
8601
8602 @itemize
8603 @item Basic navigation (jump to TOC, previous/next chapter)
8604 @item Remembering and restoring the last read position
8605 @item Jump to next chapter when scrolling beyond end
8606 @item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
8607 @item Hyperlinks to internal and external targets
8608 @item Supports textual and image documents
8609 @item View source of document files
8610 @item Metadata display
8611 @item Image rescaling
8612 @end itemize
8613 ")
8614 (license license:gpl3+)))
8615
8616 (define-public epipe
8617 (package
8618 (name "epipe")
8619 (version "0.1.0")
8620 (source
8621 (origin
8622 (method git-fetch)
8623 (uri (git-reference
8624 (url "https://github.com/cute-jumper/epipe.git")
8625 (commit version)))
8626 (file-name (git-file-name name version))
8627 (sha256
8628 (base32 "0lkisi1s7sn12nx8zh58qmsxwnk1rjwryj18wcbr148xqz3swg57"))))
8629 (build-system trivial-build-system)
8630 (inputs
8631 `(("bash" ,bash)
8632 ("perl" ,perl)))
8633 (arguments
8634 `(#:modules
8635 ((guix build utils))
8636 #:builder
8637 (begin
8638 (use-modules (guix build utils))
8639 ;; Extract source.
8640 (copy-recursively (assoc-ref %build-inputs "source") "source")
8641 (chdir "source")
8642 ;; Patch shebangs.
8643 (substitute* "epipe"
8644 (("/usr/bin/env bash")
8645 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
8646 (patch-shebang "epipe.pl"
8647 (list (string-append (assoc-ref %build-inputs "perl")
8648 "/bin")))
8649 ;; Install.
8650 (for-each (lambda (file)
8651 (install-file file (string-append %output "/bin")))
8652 '("epipe" "epipe.pl"))
8653 #t)))
8654 (home-page "https://github.com/cute-jumper/epipe")
8655 (synopsis "Pipe to the @code{emacsclient}")
8656 (description "@code{epipe} provides an utility to use your editor in
8657 the pipeline, featuring the support for running @code{emacsclient}.")
8658 (license license:gpl3+)))
8659
8660 (define-public emacs-hcl-mode
8661 (package
8662 (name "emacs-hcl-mode")
8663 (version "0.03")
8664 (source
8665 (origin
8666 (method git-fetch)
8667 (uri (git-reference
8668 (url "https://github.com/syohex/emacs-hcl-mode.git")
8669 (commit version)))
8670 (file-name (git-file-name name version))
8671 (sha256
8672 (base32 "0jqrgq15jz6pvx38pnwkizzfiih0d3nxqphyrc92nqpcyimg8b6g"))))
8673 (build-system emacs-build-system)
8674 (home-page "https://github.com/syohex/emacs-hcl-mode")
8675 (synopsis "Major mode for the Hashicorp Configuration Language")
8676 (description
8677 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
8678 @acronym{HCL, Hashicorp Configuration Language}. It provides syntax
8679 highlighting and indentation support.")
8680 (license license:gpl3+)))
8681
8682 (define-public emacs-terraform-mode
8683 (package
8684 (name "emacs-terraform-mode")
8685 (version "0.06")
8686 (source
8687 (origin
8688 (method git-fetch)
8689 (uri (git-reference
8690 (url "https://github.com/syohex/emacs-terraform-mode.git")
8691 (commit version)))
8692 (file-name (git-file-name name version))
8693 (sha256
8694 (base32 "05hn8kskx9lcgn7bzgam99c629zlryir2pickwrqndacjrqpdykx"))))
8695 (build-system emacs-build-system)
8696 (propagated-inputs
8697 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
8698 (home-page "https://github.com/syohex/emacs-terraform-mode")
8699 (synopsis "Major mode for Terraform")
8700 (description
8701 "@code{emacs-terraform-mode} provides a major mode for working with
8702 @uref{https://www.terraform.io/, Terraform} configuration files. Most of the
8703 functionality is inherited from @code{hcl-mode}.")
8704 (license license:gpl3+)))
8705
8706 (define-public emacs-exec-path-from-shell
8707 (package
8708 (name "emacs-exec-path-from-shell")
8709 (version "1.11")
8710 (source
8711 (origin
8712 (method url-fetch)
8713 (uri (string-append
8714 "https://stable.melpa.org/packages/exec-path-from-shell-"
8715 version ".el"))
8716 (sha256
8717 (base32
8718 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
8719 (build-system emacs-build-system)
8720 (home-page "https://github.com/purcell/exec-path-from-shell")
8721 (synopsis "Get environment variables such as @var{PATH} from the shell")
8722 (description
8723 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8724 from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8725 the like work as expected on systems on which Emacs is not guaranteed to
8726 inherit a login shell's environment variables. It also allows other
8727 environment variables to be retrieved from the shell, so that Emacs will see
8728 the same values you get in a terminal.")
8729 (license license:gpl3+)))
8730
8731 (define-public emacs-deft
8732 (package
8733 (name "emacs-deft")
8734 (version "0.8")
8735 (source
8736 (origin
8737 (method url-fetch)
8738 (uri (string-append "https://stable.melpa.org/packages/deft-"
8739 version ".el"))
8740 (sha256
8741 (base32
8742 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8743 (build-system emacs-build-system)
8744 (home-page "https://jblevins.org/projects/deft/")
8745 (synopsis "Quickly browse, filter, and edit plain text notes")
8746 (description
8747 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8748 directories of plain text notes, inspired by Notational Velocity.")
8749 (license license:bsd-3)))
8750
8751 (define-public emacs-anzu
8752 (package
8753 (name "emacs-anzu")
8754 (version "0.62")
8755 (source
8756 (origin
8757 (method git-fetch)
8758 (uri (git-reference
8759 (url "https://github.com/syohex/emacs-anzu.git")
8760 (commit version)))
8761 (file-name (git-file-name name version))
8762 (sha256
8763 (base32 "1lzvc0ihcbplir4hqfyxfqpsd78arz15gk92kmq4f8ggbkl37fan"))))
8764 (build-system emacs-build-system)
8765 (home-page "https://github.com/syohex/emacs-anzu")
8766 (synopsis "Show number of matches in mode-line while searching")
8767 (description
8768 "Anzu provides a minor mode which displays \"current match/total
8769 matches\" in the mode line in various search modes. This is an Emacs port of
8770 Anzu.zim.")
8771 (license license:gpl3+)))
8772
8773 (define-public emacs-emmet-mode
8774 (package
8775 (name "emacs-emmet-mode")
8776 (version "1.0.8")
8777 (source (origin
8778 (method git-fetch)
8779 (uri (git-reference
8780 (url "https://github.com/smihica/emmet-mode.git")
8781 (commit version)))
8782 (file-name (git-file-name name version))
8783 (sha256
8784 (base32
8785 "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"))))
8786 (build-system emacs-build-system)
8787 (home-page "https://github.com/smihica/emmet-mode")
8788 (synopsis "Unofficial Emmet's support for Emacs")
8789 (description
8790 "Unfold CSS-selector-like expressions to markup. It is intended to be
8791 used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8792 (license license:gpl3+)))
8793
8794 (define-public emacs-ergoemacs-mode
8795 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8796 (revision "1"))
8797 (package
8798 (name "emacs-ergoemacs-mode")
8799 (version (git-version "5.16.10.12" revision commit))
8800 (source
8801 (origin
8802 (method git-fetch)
8803 (uri (git-reference
8804 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8805 (commit commit)))
8806 (sha256
8807 (base32
8808 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8809 (build-system emacs-build-system)
8810 (propagated-inputs
8811 `(("emacs-undo-tree" ,emacs-undo-tree)))
8812 (home-page "https://ergoemacs.github.io/")
8813 (synopsis "Emacs mode based on common modern interface and ergonomics")
8814 (description
8815 "This package provides an efficient Emacs keybinding set based on
8816 statistics of command frequency, and supports common shortcuts for open,
8817 close, copy, cut, paste, undo, redo.")
8818 (license license:gpl3+))))
8819
8820 (define-public emacs-password-store
8821 (package
8822 (name "emacs-password-store")
8823 (version "1.7.3")
8824 (source (origin
8825 (method url-fetch)
8826 (uri
8827 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8828 "password-store-" version ".tar.xz"))
8829 (sha256
8830 (base32
8831 "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b"))))
8832 (build-system emacs-build-system)
8833 (arguments
8834 `(#:phases
8835 (modify-phases %standard-phases
8836 (add-after 'unpack 'extract-el-file
8837 (lambda _
8838 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8839 (delete-file-recursively "contrib")
8840 (delete-file-recursively "man")
8841 (delete-file-recursively "src")
8842 (delete-file-recursively "tests"))))))
8843 (propagated-inputs
8844 `(("emacs-f" ,emacs-f)
8845 ("emacs-s" ,emacs-s)
8846 ("emacs-with-editor" ,emacs-with-editor)
8847 ("password-store" ,password-store)))
8848 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8849 (synopsis "Password store (pass) support for Emacs")
8850 (description
8851 "This package provides functions for working with pass (\"the
8852 standard Unix password manager\").")
8853 (license license:gpl2+)))
8854
8855 (define-public emacs-pass
8856 (package
8857 (name "emacs-pass")
8858 (version "1.8")
8859 (source
8860 (origin
8861 (method git-fetch)
8862 (uri (git-reference
8863 (url "https://github.com/NicolasPetton/pass.git")
8864 (commit version)))
8865 (file-name (git-file-name name version))
8866 (sha256
8867 (base32 "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx"))))
8868 (build-system emacs-build-system)
8869 (propagated-inputs
8870 `(("emacs-password-store" ,emacs-password-store)
8871 ("emacs-f" ,emacs-f)))
8872 (home-page "https://github.com/NicolasPetton/pass")
8873 (synopsis "Major mode for @file{password-store.el}")
8874 (description "This is a major mode for managing password-store (pass)
8875 keychains. The keychain entries are displayed in a directory-like structure
8876 and can be consulted and modified.")
8877 (license license:gpl3+)))
8878
8879 (define-public emacs-evil-anzu
8880 (package
8881 (name "emacs-evil-anzu")
8882 (version "0.03")
8883 (source
8884 (origin
8885 (method url-fetch)
8886 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8887 "/archive/" version ".tar.gz"))
8888 (file-name (string-append name "-" version ".tar.gz"))
8889 (sha256
8890 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8891 (build-system emacs-build-system)
8892 (propagated-inputs
8893 `(("emacs-evil" ,emacs-evil)
8894 ("emacs-anzu" ,emacs-anzu)))
8895 (home-page "https://github.com/syohex/emacs-evil-anzu")
8896 (synopsis "Anzu for evil-mode")
8897 (description "@code{anzu} provides a minor mode that displays the current
8898 match and total match information in the mode-line in various search modes.")
8899 (license license:gpl3+)))
8900
8901 (define-public emacs-pg
8902 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8903 (package
8904 (name "emacs-pg")
8905 (version (git-version "0.1" "1" commit))
8906 (source (origin
8907 (method git-fetch)
8908 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8909 (commit commit)))
8910 (file-name (git-file-name name version))
8911 (sha256
8912 (base32
8913 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8914 (build-system emacs-build-system)
8915 (home-page "https://github.com/cbbrowne/pg.el")
8916 (synopsis "Emacs Lisp interface for PostgreSQL")
8917 (description
8918 "This package provides an Emacs Lisp interface for PostgreSQL.")
8919 (license license:gpl3+))))
8920
8921 (define-public emacs-cl-generic
8922 (package
8923 (name "emacs-cl-generic")
8924 (version "0.3")
8925 (source
8926 (origin
8927 (method url-fetch)
8928 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8929 version ".el"))
8930 (sha256
8931 (base32
8932 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8933 (build-system emacs-build-system)
8934 (home-page "https://elpa.gnu.org/packages/seq.html")
8935 (synopsis
8936 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8937 (description "This package provides a subset of the features of the
8938 @code{cl-generic} package introduced in Emacs-25, for use on previous
8939 @code{emacsen}.")
8940 (license license:gpl3+)))
8941
8942 (define-public emacs-finalize
8943 (package
8944 (name "emacs-finalize")
8945 (version "2.0.0")
8946 (source
8947 (origin
8948 (method git-fetch)
8949 (uri (git-reference
8950 (url "https://github.com/skeeto/elisp-finalize.git")
8951 (commit version)))
8952 (file-name (git-file-name name version))
8953 (sha256
8954 (base32 "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"))))
8955 (build-system emacs-build-system)
8956 (propagated-inputs
8957 `(("emacs-cl-generic" ,emacs-cl-generic)))
8958 (home-page "https://github.com/skeeto/elisp-finalize")
8959 (synopsis "Finalizers for Emacs Lisp")
8960 (description
8961 "This package will allows to immediately run a callback (a finalizer)
8962 after its registered lisp object has been garbage collected. This allows for
8963 extra resources, such as buffers and processes, to be cleaned up after the
8964 object has been freed.")
8965 (license license:unlicense)))
8966
8967 (define-public emacs-emacsql
8968 (package
8969 (name "emacs-emacsql")
8970 (version "3.0.0")
8971 (source (origin
8972 (method git-fetch)
8973 (uri (git-reference
8974 (url "https://github.com/skeeto/emacsql.git")
8975 (commit (string-append version))))
8976 (file-name (git-file-name name version))
8977 (sha256
8978 (base32
8979 "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"))))
8980 (build-system emacs-build-system)
8981 (arguments
8982 `(#:modules ((guix build emacs-build-system)
8983 (guix build utils)
8984 (guix build emacs-utils)
8985 (srfi srfi-26))
8986 #:phases
8987 (modify-phases %standard-phases
8988 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8989 (add-before 'install 'patch-elisp-shell-shebangs
8990 (lambda _
8991 (substitute* (find-files "." "\\.el")
8992 (("/bin/sh") (which "sh")))
8993 #t))
8994 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8995 (lambda _
8996 (setenv "SHELL" "sh")))
8997 (add-after 'setenv-shell 'build-emacsql-sqlite
8998 (lambda _
8999 (invoke "make" "binary" "CC=gcc")))
9000 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
9001 ;; This build phase installs emacs-emacsql binary.
9002 (lambda* (#:key outputs #:allow-other-keys)
9003 (install-file "sqlite/emacsql-sqlite"
9004 (string-append (assoc-ref outputs "out")
9005 "/bin"))
9006 #t))
9007 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
9008 ;; This build phase removes interactive prompts
9009 ;; and makes sure Emacs look for binaries in the right places.
9010 (lambda* (#:key outputs #:allow-other-keys)
9011 (let ((file "emacsql-sqlite.el"))
9012 (chmod file #o644)
9013 (emacs-substitute-sexps file
9014 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
9015 ("(executable-find" (which "gcc"))
9016 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
9017 ;; in the right place.
9018 ("(defvar emacsql-sqlite-executable"
9019 (string-append (assoc-ref outputs "out")
9020 "/bin/emacsql-sqlite"))))))
9021 (replace 'install
9022 (lambda* (#:key outputs #:allow-other-keys)
9023 (let* ((out (assoc-ref outputs "out")))
9024 (install-file "sqlite/emacsql-sqlite"
9025 (string-append out "/bin"))
9026 (for-each (cut install-file <>
9027 (string-append out "/share/emacs/site-lisp/guix.d/"
9028 "emacsql" "-" ,version))
9029 (find-files "." "\\.elc*$")))
9030 #t)))))
9031 (inputs
9032 `(("emacs-minimal" ,emacs-minimal)
9033 ("mariadb" ,mariadb)
9034 ("postgresql" ,postgresql)))
9035 (propagated-inputs
9036 `(("emacs-finalize" ,emacs-finalize)
9037 ("emacs-pg" ,emacs-pg)))
9038 (home-page "https://github.com/skeeto/emacsql")
9039 (synopsis "Emacs high-level SQL database front-end")
9040 (description "Any readable Lisp value can be stored as a value in EmacSQL,
9041 including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
9042 has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
9043 object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
9044 (license license:gpl3+)))
9045
9046 (define-public emacs-closql
9047 (package
9048 (name "emacs-closql")
9049 (version "1.0.0")
9050 (source
9051 (origin
9052 (method git-fetch)
9053 (uri (git-reference
9054 (url "https://github.com/emacscollective/closql.git")
9055 (commit (string-append "v" version))))
9056 (file-name (git-file-name name version))
9057 (sha256
9058 (base32
9059 "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"))))
9060 (build-system emacs-build-system)
9061 (propagated-inputs
9062 `(("emacs-emacsql" ,emacs-emacsql)))
9063 (home-page "https://github.com/emacscollective/closql")
9064 (synopsis "Store EIEIO objects using EmacSQL")
9065 (description
9066 "This package allows to store uniform EIEIO objects in an EmacSQL
9067 database. SQLite is used as backend. This library imposes some restrictions
9068 on what kind of objects can be stored; it isn't intended to store arbitrary
9069 objects. All objects have to share a common superclass and subclasses cannot
9070 add any additional instance slots.")
9071 (license license:gpl3)))
9072
9073 (define-public emacs-epkg
9074 ;; The release version is to old for the current database scheme.
9075 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
9076 (package
9077 (name "emacs-epkg")
9078 (version (git-version "3.0.0" "1" commit))
9079 (source
9080 (origin
9081 (method git-fetch)
9082 (uri (git-reference
9083 (url "https://github.com/emacscollective/epkg.git")
9084 (commit commit)))
9085 (file-name (git-file-name name version))
9086 (sha256
9087 (base32
9088 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
9089 (build-system emacs-build-system)
9090 (propagated-inputs
9091 `(("emacs-closql" ,emacs-closql)
9092 ("emacs-dash" ,emacs-dash)))
9093 (home-page "https://emacsmirror.net")
9094 (synopsis "Browse the Emacsmirror package database")
9095 (description "This package provides access to a local copy of the
9096 Emacsmirror package database. It provides low-level functions for querying
9097 the database and a @file{package.el} user interface for browsing the database.
9098 Epkg itself is not a package manager.
9099
9100 Getting a local copy:
9101
9102 @example
9103 git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
9104 cd ~/.emacs.d/epkgs
9105 git submodule init
9106 git config --global url.https://github.com/.insteadOf git@@github.com:
9107 git submodule update
9108 @end example
9109
9110 Some submodule may be missing. In this case Git will prompt for a GitHub user
9111 name and password. To skip it press a @key{Return} key.
9112
9113 You could get a Epkg package list by invoking @code{epkg-list-packages} in
9114 Emacs.")
9115 (license license:gpl3+))))
9116
9117 (define-public emacs-elisp-slime-nav
9118 (package
9119 (name "emacs-elisp-slime-nav")
9120 (version "0.9")
9121 (source
9122 (origin
9123 (method git-fetch)
9124 (uri (git-reference
9125 (url "https://github.com/purcell/elisp-slime-nav.git")
9126 (commit version)))
9127 (file-name (git-file-name name version))
9128 (sha256
9129 (base32 "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"))))
9130 (build-system emacs-build-system)
9131 (home-page "https://github.com/purcell/elisp-slime-nav")
9132 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
9133 (description
9134 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
9135 in @code{emacs-lisp-mode}, together with an elisp equivalent of
9136 @code{slime-describe-symbol}.")
9137 (license license:gpl3+)))
9138
9139 (define-public emacs-dedicated
9140 (package
9141 (name "emacs-dedicated")
9142 (version "1.0.0")
9143 (source
9144 (origin
9145 (method git-fetch)
9146 (uri (git-reference
9147 (url "https://github.com/emacsorphanage/dedicated.git")
9148 (commit version)))
9149 (file-name (git-file-name name version))
9150 (sha256
9151 (base32 "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"))))
9152 (build-system emacs-build-system)
9153 (home-page "https://github.com/emacsorphanage/dedicated")
9154 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
9155 (description
9156 "This simple Emacs minor mode allows you to toggle a window's
9157 \"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
9158 files into that window. This can be quite handy since many commands will use
9159 another window to show results (compilation mode, starting info, and so on).
9160 A dedicated window won't be used for such a purpose. For details, please read
9161 the source file.")
9162 (license license:gpl2+)))
9163
9164 (define-public emacs-nnreddit
9165 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
9166 (revision "1"))
9167 (package
9168 (name "emacs-nnreddit")
9169 (version (string-append "0.0.1-" revision "."
9170 (string-take commit 7)))
9171 (source (origin
9172 (method git-fetch)
9173 (uri (git-reference
9174 (url "https://github.com/paul-issartel/nnreddit.git")
9175 (commit commit)))
9176 (file-name (string-append name "-" version "-checkout"))
9177 (sha256
9178 (base32
9179 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
9180 (build-system emacs-build-system)
9181 (home-page "https://github.com/paul-issartel/nnreddit")
9182 (synopsis "Reddit backend for the Gnus newsreader")
9183 (description "@url{https://www.reddit.com} backend for the Gnus
9184 newsreader.")
9185 (license license:gpl3+))))
9186
9187 (define-public emacs-makey
9188 (package
9189 (name "emacs-makey")
9190 (version "0.3")
9191 (source
9192 (origin
9193 (method git-fetch)
9194 (uri (git-reference
9195 (url "https://github.com/mickeynp/makey.git")
9196 (commit version)))
9197 (file-name (git-file-name name version))
9198 (sha256
9199 (base32 "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"))))
9200 (build-system emacs-build-system)
9201 (home-page "https://github.com/mickeynp/makey")
9202 (synopsis "Emacs interactive command-line mode")
9203 (description
9204 "This package provides an Emacs interactive command-line mode.")
9205 (license license:gpl3+)))
9206
9207 (define-public emacs-outorg
9208 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
9209 (package
9210 (name "emacs-outorg")
9211 (version (git-version "2.0" "1" commit))
9212 (source
9213 (origin
9214 (method git-fetch)
9215 (uri (git-reference
9216 (url "https://github.com/alphapapa/outorg")
9217 (commit commit)))
9218 (file-name (git-file-name name version))
9219 (sha256
9220 (base32
9221 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
9222 (build-system emacs-build-system)
9223 (home-page "https://github.com/alphapapa/outorg")
9224 (synopsis "Org-style comment editing")
9225 (description "Outorg is for editing comment-sections of source-code
9226 files in temporary Org-mode buffers. It turns conventional
9227 literate-programming upside-down in that the default mode is the
9228 programming-mode, and special action has to be taken to switch to the
9229 text-mode (i.e. Org-mode).")
9230 (license license:gpl3+))))
9231
9232 (define-public emacs-outshine
9233 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
9234 (package
9235 (name "emacs-outshine")
9236 (version (git-version "2.0" "1" commit))
9237 (source (origin
9238 (method git-fetch)
9239 (uri (git-reference
9240 (url "https://github.com/alphapapa/outshine.git")
9241 (commit commit)))
9242 (file-name (git-file-name name version))
9243 (sha256
9244 (base32
9245 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
9246 (build-system emacs-build-system)
9247 (propagated-inputs
9248 `(("emacs-outorg" ,emacs-outorg)))
9249 (home-page "https://github.com/alphapapa/outshine")
9250 (synopsis "Emacs outline with outshine")
9251 (description "Outshine attempts to bring the look and feel of
9252 @code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
9253 of @code{outline-minor-mode} (@code{org-mode} itself derives from
9254 outline-mode), so there is no such thing like an outshine mode, only
9255 @code{outline-minor-mode} with outshine extensions loaded.")
9256 (license license:gpl3+))))
9257
9258 (define-public emacs-parsebib
9259 (package
9260 (name "emacs-parsebib")
9261 (version "2.3.1")
9262 (source
9263 (origin
9264 (method git-fetch)
9265 (uri (git-reference
9266 (url "https://github.com/joostkremers/parsebib.git")
9267 (commit version)))
9268 (file-name (git-file-name name version))
9269 (sha256
9270 (base32 "1bnqnxkb9dnl0fjrrjx0xn9jsqki2h8ygw3d5dm4bl79smah3qkh"))))
9271 (build-system emacs-build-system)
9272 (home-page "https://github.com/joostkremers/parsebib")
9273 (synopsis "Library for parsing bib files")
9274 (description
9275 "This package provides an Emacs library for parsing bib files.")
9276 (license license:gpl3+)))
9277
9278 (define-public emacs-biblio
9279 (package
9280 (name "emacs-biblio")
9281 (version "0.2")
9282 (source
9283 (origin
9284 (method git-fetch)
9285 (uri (git-reference
9286 (url "https://github.com/cpitclaudel/biblio.el.git")
9287 (commit version)))
9288 (file-name (git-file-name name version))
9289 (sha256
9290 (base32 "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz"))))
9291 (build-system emacs-build-system)
9292 (propagated-inputs
9293 `(("emacs-seq" ,emacs-seq)
9294 ("emacs-dash" ,emacs-dash)
9295 ("emacs-let-alist" ,emacs-let-alist)))
9296 (home-page "https://github.com/cpitclaudel/biblio.el")
9297 (synopsis "Browse and import bibliographic references")
9298 (description "This package provides an extensible Emacs package for
9299 browsing and fetching references.
9300
9301 @file{biblio.el} makes it easy to browse and gather bibliographic references
9302 and publications from various sources, by keywords or by DOI. References are
9303 automatically fetched from well-curated sources, and formatted as BibTeX.")
9304 (license license:gpl3+)))
9305
9306 (define-public emacs-helm-bibtex
9307 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
9308 (revision "1"))
9309 (package
9310 (name "emacs-helm-bibtex")
9311 (version (string-append "2.0.0" "-" revision "."
9312 (string-take commit 7)))
9313 (source
9314 (origin
9315 (method git-fetch)
9316 (uri (git-reference
9317 (url "https://github.com/tmalsburg/helm-bibtex.git")
9318 (commit commit)))
9319 (file-name (git-file-name name version))
9320 (sha256
9321 (base32
9322 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
9323 (build-system emacs-build-system)
9324 (propagated-inputs
9325 `(("emacs-helm" ,emacs-helm)
9326 ("emacs-parsebib" ,emacs-parsebib)
9327 ("emacs-s" ,emacs-s)
9328 ("emacs-dash" ,emacs-dash)
9329 ("emacs-f" ,emacs-f)
9330 ("emacs-biblio" ,emacs-biblio)
9331 ("emacs-ivy" ,emacs-ivy)))
9332 (home-page "https://github.com/tmalsburg/helm-bibtex")
9333 (synopsis "Bibliography manager based on Helm")
9334 (description "This package provides bibliography manager for Emacs,
9335 based on Helm and the bibtex-completion backend.
9336
9337 Key features:
9338
9339 @itemize
9340 @item Quick access to your bibliography from within Emacs
9341 @item Powerful search capabilities
9342 @item Provides instant search results as you type
9343 @item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
9344 @item Open the PDFs, URLs, or DOIs associated with an entry
9345 @item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
9346 BibTeX entries, or plain text references at point, attach PDFs to emails
9347 @item Support for note taking
9348 @item Quick access to online bibliographic databases such as Pubmed,
9349 arXiv, Google Scholar, Library of Congress, etc.
9350 @item Imports BibTeX entries from CrossRef and other sources.
9351 @end itemize\n")
9352 (license license:gpl3+))))
9353
9354 (define-public emacs-ewmctrl
9355 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
9356 (package
9357 (name "emacs-ewmctrl")
9358 (version (git-version "0.0.1" "1" commit))
9359 (source
9360 (origin
9361 (method git-fetch)
9362 (uri (git-reference
9363 (url "https://github.com/flexibeast/ewmctrl.git")
9364 (commit commit)))
9365 (file-name (git-file-name name version))
9366 (sha256
9367 (base32
9368 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
9369 (build-system emacs-build-system)
9370 (arguments
9371 '(#:phases
9372 (modify-phases %standard-phases
9373 (add-after 'unpack 'patch-ewmctrl
9374 ;; This build phase makes sure ‘ewmctrl’ looks
9375 ;; for ‘wmctrl’ in the right place.
9376 (lambda _
9377 (let ((file "ewmctrl.el"))
9378 (chmod file #o644)
9379 (emacs-substitute-sexps file
9380 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
9381 (inputs
9382 `(("wmctrl" ,wmctrl)))
9383 (home-page "https://github.com/flexibeast/ewmctrl")
9384 (synopsis "Emacs interface to @code{wmctrl}")
9385 (description "@code{ewmctrl} provides an Emacs interface to
9386 @code{wmctrl} command-line window-management program.")
9387 (license license:gpl3+))))
9388
9389 (define-public emacs-erc-image
9390 (let ((commit "82fb3871f02e24b1e880770b9a3d187aab43d0f0")
9391 (revision "1"))
9392 (package
9393 (name "emacs-erc-image")
9394 (version (git-version "0" revision commit))
9395 (source
9396 (origin
9397 (method git-fetch)
9398 (uri (git-reference
9399 (url "https://github.com/kidd/erc-image.el")
9400 (commit commit)))
9401 (file-name (git-file-name name version))
9402 (sha256
9403 (base32
9404 "1q8mkf612fb4fjp8h4kbr107wn083iqfdgv8f80pcmil8y33dw9i"))))
9405 (build-system emacs-build-system)
9406 (home-page "https://github.com/kidd/erc-image.el")
9407 (synopsis "Show inlined images (png/jpg/gif/svg) in ERC buffers")
9408 (description "This plugin subscribes to hooks @code{erc-insert-modify-hook}
9409 and @code{erc-send-modify-hook} to download and show images.")
9410 (license license:gpl3+))))
9411
9412 (define-public emacs-helm-gtags
9413 (package
9414 (name "emacs-helm-gtags")
9415 (version "1.5.6")
9416 (source
9417 (origin
9418 (method git-fetch)
9419 (uri (git-reference
9420 (url "https://github.com/syohex/emacs-helm-gtags.git")
9421 (commit version)))
9422 (file-name (git-file-name name version))
9423 (sha256
9424 (base32 "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"))))
9425 (build-system emacs-build-system)
9426 (propagated-inputs
9427 `(("emacs-helm" ,emacs-helm)))
9428 (home-page "https://github.com/syohex/emacs-helm-gtags")
9429 (synopsis "Emacs Helm interface to GNU Global")
9430 (description
9431 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
9432 (license license:gpl3+)))
9433
9434 (define-public emacs-list-utils
9435 (package
9436 (name "emacs-list-utils")
9437 (version "0.4.4")
9438 (source
9439 (origin
9440 (method url-fetch)
9441 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
9442 "v" version ".tar.gz"))
9443 (file-name (string-append name "-" version ".tar.gz"))
9444 (sha256
9445 (base32
9446 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
9447 (build-system emacs-build-system)
9448 (home-page "https://github.com/rolandwalker/list-utils")
9449 (synopsis "List-manipulation utility functions")
9450 (description "This package provides a list manipulation library for Emacs.")
9451 (license license:gpl3+)))
9452
9453 (define-public emacs-move-text
9454 (package
9455 (name "emacs-move-text")
9456 (version "2.0.8")
9457 (source
9458 (origin
9459 (method url-fetch)
9460 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
9461 version ".tar.gz"))
9462 (file-name (string-append name "-" version ".tar.gz"))
9463 (sha256
9464 (base32
9465 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
9466 (build-system emacs-build-system)
9467 (home-page "https://github.com/emacsfodder/move-text")
9468 (synopsis "Move current line or region with M-up or M-down")
9469 (description "This package provide functions to move the current line
9470 using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
9471 region instead.")
9472 (license license:gpl3+)))
9473
9474 (define-public emacs-validate
9475 (package
9476 (name "emacs-validate")
9477 (version "1.0.5")
9478 (source (origin
9479 (method url-fetch)
9480 (uri (string-append "https://github.com/Malabarba/validate.el"
9481 "/archive/" version ".tar.gz"))
9482 (file-name (string-append name "-" version ".tar.gz"))
9483 (sha256
9484 (base32
9485 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
9486 (build-system emacs-build-system)
9487 (home-page "https://github.com/Malabarba/validate.el")
9488 (synopsis "Emacs library for scheme validation")
9489 (description "This Emacs library provides two functions that perform
9490 schema validation.")
9491 (license license:gpl3+)))
9492
9493 (define-public emacs-rainbow-blocks
9494 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
9495 (package
9496 (name "emacs-rainbow-blocks")
9497 (version (git-version "1.0.0" "1" commit))
9498 (source (origin
9499 (method git-fetch)
9500 (uri (git-reference
9501 (url "https://github.com/istib/rainbow-blocks.git")
9502 (commit commit)))
9503 (file-name (git-file-name name version))
9504 (sha256
9505 (base32
9506 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
9507 (build-system emacs-build-system)
9508 (home-page "https://github.com/istib/rainbow-blocks")
9509 (synopsis "Highlight sexp blocks")
9510 (description "Rainbow-blocks is an Emacs mode that highlights blocks
9511 made of parentheses, brackets, and braces according to their depth. Each
9512 successive level is highlighted in a different color. This makes it easy to
9513 orient yourself in the code, and tell which statements are at a given level.")
9514 (license license:gpl3+))))
9515
9516 (define-public emacs-hierarchy
9517 (package
9518 (name "emacs-hierarchy")
9519 (version "0.7.0")
9520 (source
9521 (origin
9522 (method url-fetch)
9523 (uri (string-append
9524 "https://github.com/DamienCassou/hierarchy/archive/"
9525 "v" version ".tar.gz"))
9526 (file-name (string-append name "-" version ".tar.gz"))
9527 (sha256
9528 (base32
9529 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
9530 (build-system emacs-build-system)
9531 (home-page "https://github.com/DamienCassou/hierarchy")
9532 (synopsis "Library to create and display hierarchy structures")
9533 (description "This package provides an Emacs library to create, query,
9534 navigate and display hierarchy structures.")
9535 (license license:gpl3+)))
9536
9537 (define-public emacs-tree-mode
9538 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
9539 (revision "1"))
9540 (package
9541 (name "emacs-tree-mode")
9542 (version (string-append "0.0.1" "-" revision "."
9543 (string-take commit 7)))
9544 (source
9545 (origin
9546 (method git-fetch)
9547 (uri (git-reference
9548 (url "https://github.com/emacsorphanage/tree-mode.git")
9549 (commit commit)))
9550 (file-name (git-file-name name version))
9551 (sha256
9552 (base32
9553 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
9554 (build-system emacs-build-system)
9555 (home-page "https://github.com/emacsorphanage/tree-mode")
9556 (synopsis "Emacs mode to manage tree widgets")
9557 (description
9558 "This package provides an Emacs library to manage tree widgets.")
9559 (license license:gpl3+))))
9560
9561 (define-public emacs-md4rd
9562 (let ((commit "c55512c2f7680db2a1e73db6bdf93adecaf40fec")
9563 (revision "1"))
9564 (package
9565 (name "emacs-md4rd")
9566 (version (string-append "0.0.2" "-" revision "."
9567 (string-take commit 7)))
9568 (source (origin
9569 (method git-fetch)
9570 (uri (git-reference
9571 (url "https://github.com/ahungry/md4rd.git")
9572 (commit commit)))
9573 (file-name (string-append name "-" version "-checkout"))
9574 (sha256
9575 (base32
9576 "0mvv1mvsrpkrmikcpfqf2zbawnzgq33j6zjdrlv48mcw57xb2ak9"))))
9577 (propagated-inputs
9578 `(("emacs-hierarchy" ,emacs-hierarchy)
9579 ("emacs-request" ,emacs-request)
9580 ("emacs-dash" ,emacs-dash)
9581 ("emacs-s" ,emacs-s)
9582 ("emacs-tree-mode" ,emacs-tree-mode)))
9583 (build-system emacs-build-system)
9584 (home-page "https://github.com/ahungry/md4rd")
9585 (synopsis "Emacs Mode for Reddit")
9586 (description
9587 "This package allows to read Reddit from within Emacs interactively.")
9588 (license license:gpl3+))))
9589
9590 (define-public emacs-pulseaudio-control
9591 (let ((commit "7e1a87068379075a5e9ce36c64c686c03d20d379")
9592 (revision "3"))
9593 (package
9594 (name "emacs-pulseaudio-control")
9595 (version (git-version "0.0.1" revision commit))
9596 (source
9597 (origin
9598 (method git-fetch)
9599 (uri (git-reference
9600 (url "https://github.com/flexibeast/pulseaudio-control.git")
9601 (commit commit)))
9602 (file-name (git-file-name name version))
9603 (sha256
9604 (base32
9605 "0wcaqyh15x56255rrj350089z15pnwixa2vf0ly6dv0hjmzmh3mr"))))
9606 (build-system emacs-build-system)
9607 (arguments
9608 '(#:phases (modify-phases %standard-phases
9609 (add-after 'unpack 'patch-file-name
9610 (lambda* (#:key inputs #:allow-other-keys)
9611 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
9612 (chmod "pulseaudio-control.el" #o600)
9613 (emacs-substitute-variables "pulseaudio-control.el"
9614 ("pulseaudio-control-pactl-path"
9615 (string-append pulseaudio "/bin/pactl")))
9616 #t))))))
9617 (inputs `(("pulseaudio" ,pulseaudio)))
9618 (home-page "https://github.com/flexibeast/pulseaudio-control")
9619 (synopsis "Control @code{pulseaudio} from Emacs")
9620 (description
9621 "This package allows to control @code{pulseaudio} from Emacs.")
9622 (license license:gpl3+))))
9623
9624 (define-public emacs-datetime
9625 (package
9626 (name "emacs-datetime")
9627 (version "0.3")
9628 (source (origin
9629 (method url-fetch)
9630 (uri (string-append
9631 "https://github.com/doublep/datetime/archive/"
9632 version ".tar.gz"))
9633 (file-name (string-append name "-" version ".tar.gz"))
9634 (sha256
9635 (base32
9636 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
9637 (build-system emacs-build-system)
9638 (home-page "https://github.com/doublep/datetime/")
9639 (synopsis "Library to work with dates in Emacs")
9640 (description "Parsing, formatting, matching and recoding
9641 timestamps and date-time format strings library for Emacs.")
9642 (license license:gpl3+)))
9643
9644 (define-public emacs-org-mind-map
9645 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
9646 (revision "1"))
9647 (package
9648 (name "emacs-org-mind-map")
9649 (version (string-append "0.0.1" "-" revision "."
9650 (string-take commit 7)))
9651 (source
9652 (origin
9653 (method git-fetch)
9654 (uri (git-reference
9655 (url "https://github.com/theodorewiles/org-mind-map.git")
9656 (commit commit)))
9657 (file-name (git-file-name name version))
9658 (sha256
9659 (base32
9660 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
9661 (propagated-inputs
9662 `(("emacs-dash" ,emacs-dash)))
9663 (build-system emacs-build-system)
9664 (home-page "https://github.com/theodorewiles/org-mind-map")
9665 (synopsis "Create Graphviz directed graphs from Org files")
9666 (description
9667 "This package creates Graphviz directed graphs from Org files.")
9668 (license license:gpl3+))))
9669
9670 (define-public emacs-npm-mode
9671 (package
9672 (name "emacs-npm-mode")
9673 (version "0.6.0")
9674 (source
9675 (origin
9676 (method url-fetch)
9677 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
9678 version ".tar.gz"))
9679 (file-name (string-append name "-" version ".tar.gz"))
9680 (sha256
9681 (base32
9682 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
9683 (build-system emacs-build-system)
9684 (home-page "https://github.com/mojochao/npm-mode")
9685 (synopsis "Minor mode for working with @code{npm} projects")
9686 (description
9687 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
9688 (license license:gpl3+)))
9689
9690 (define-public emacs-seq
9691 (package
9692 (name "emacs-seq")
9693 (version "2.20")
9694 (source
9695 (origin
9696 (method url-fetch)
9697 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
9698 (sha256
9699 (base32
9700 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
9701 (build-system emacs-build-system)
9702 (home-page "http://elpa.gnu.org/packages/seq.html")
9703 (synopsis "Sequence manipulation functions")
9704 (description "Sequence-manipulation functions that complement basic
9705 functions provided by @file{subr.el}.")
9706 (license license:gpl3+)))
9707
9708 (define-public emacs-itail
9709 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
9710 (revision "1"))
9711 (package
9712 (name "emacs-itail")
9713 (version (string-append "0.0.1" "-" revision "."
9714 (string-take commit 7)))
9715 (source
9716 (origin
9717 (method git-fetch)
9718 (uri (git-reference
9719 (url "https://github.com/re5et/itail.git")
9720 (commit commit)))
9721 (file-name (git-file-name name version))
9722 (sha256
9723 (base32
9724 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
9725 (build-system emacs-build-system)
9726 (home-page "https://github.com/re5et/itail")
9727 (synopsis "Interactive @code{tail} Emacs mode")
9728 (description "@code{itail} provides interactive @code{tail} mode
9729 that allows you to filter the tail with unix pipes and highlight the
9730 contents of the tailed file. Works locally or on remote files using
9731 tramp.")
9732 (license license:gpl3+))))
9733
9734 (define-public emacs-loop
9735 (package
9736 (name "emacs-loop")
9737 (version "1.3")
9738 (source
9739 (origin
9740 (method url-fetch)
9741 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9742 version ".tar.gz"))
9743 (file-name (string-append name "-" version ".tar.gz"))
9744 (sha256
9745 (base32
9746 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9747 (build-system emacs-build-system)
9748 (home-page "https://github.com/Wilfred/loop.el")
9749 (synopsis "Imperative loop structures for Emacs")
9750 (description "Loop structures familiar to users of other languages. This
9751 library adds a selection of popular loop structures as well as break and
9752 continue.")
9753 (license license:gpl3+)))
9754
9755 (define-public emacs-elisp-refs
9756 (package
9757 (name "emacs-elisp-refs")
9758 (version "1.3")
9759 (source
9760 (origin
9761 (method url-fetch)
9762 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9763 version ".tar.gz"))
9764 (file-name (string-append name "-" version ".tar.gz"))
9765 (sha256
9766 (base32
9767 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
9768 (build-system emacs-build-system)
9769 (propagated-inputs
9770 `(("emacs-dash" ,emacs-dash)
9771 ("emacs-f" ,emacs-f)
9772 ("emacs-list-utils" ,emacs-list-utils)
9773 ("emacs-loop" ,emacs-loop)
9774 ("emacs-s" ,emacs-s)
9775 ("emacs-shut-up" ,emacs-shut-up)))
9776 (home-page "https://github.com/Wilfred/elisp-refs")
9777 (synopsis "Find callers of elisp functions or macros")
9778 (description "Find references to functions, macros or variables. Unlike a
9779 dumb text search, @code{elisp-refs} actually parses the code, so it's never
9780 confused by comments or @code{foo-bar} matching @code{foo}.")
9781 (license license:gpl3+)))
9782
9783 (define-public emacs-crux
9784 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9785 (revision "1"))
9786 (package
9787 (name "emacs-crux")
9788 (version (string-append "0.3.0" "-" revision "."
9789 (string-take commit 7)))
9790 (source
9791 (origin
9792 (method git-fetch)
9793 (uri (git-reference
9794 (url "https://github.com/bbatsov/crux.git")
9795 (commit commit)))
9796 (file-name (git-file-name name version))
9797 (sha256
9798 (base32
9799 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9800 (build-system emacs-build-system)
9801 (home-page "https://github.com/bbatsov/crux")
9802 (synopsis "Collection of useful functions for Emacs")
9803 (description
9804 "@code{crux} provides a collection of useful functions for Emacs.")
9805 (license license:gpl3+))))
9806
9807 (define-public emacs-edit-server
9808 (package
9809 (name "emacs-edit-server")
9810 (version "1.13")
9811 (source
9812 (origin
9813 (method url-fetch)
9814 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9815 "v" version ".tar.gz"))
9816 (file-name (string-append name "-" version ".tar.gz"))
9817 (sha256
9818 (base32
9819 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9820 (build-system emacs-build-system)
9821 (arguments
9822 `(#:phases
9823 (modify-phases %standard-phases
9824 (add-after 'unpack 'chdir-elisp
9825 ;; Elisp directory is not in root of the source.
9826 (lambda _
9827 (chdir "servers"))))))
9828 (home-page "https://github.com/stsquad/emacs_chrome")
9829 (synopsis "Server that responds to edit requests from Chromium")
9830 (description
9831 "This package provides an edit server to respond to requests from Emacs.")
9832 (license license:gpl3+)))
9833
9834 (define-public emacs-m-buffer-el
9835 (package
9836 (name "emacs-m-buffer-el")
9837 (version "0.15")
9838 (source
9839 (origin
9840 (method url-fetch)
9841 (uri (string-append "https://github.com/phillord/m-buffer-el"
9842 "/archive/" "v" version ".tar.gz"))
9843 (file-name (string-append name "-" version ".tar.gz"))
9844 (sha256
9845 (base32
9846 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9847 (arguments
9848 `(#:phases
9849 (modify-phases %standard-phases
9850 (add-before 'install 'check
9851 (lambda* (#:key inputs #:allow-other-keys)
9852 (invoke "emacs" "--batch" "-L" "."
9853 "-l" "test/m-buffer-test.el"
9854 "-l" "test/m-buffer-at-test.el"
9855 "-f" "ert-run-tests-batch-and-exit"))))))
9856 (build-system emacs-build-system)
9857 (home-page "https://github.com/phillord/m-buffer-el")
9858 (synopsis "List oriented buffer operations for Emacs")
9859 (description "@code{m-buffer} provides a set of list-orientated functions
9860 for operating over the contents of Emacs buffers.")
9861 (license license:gpl3+)))
9862
9863 (define-public emacs-let-alist
9864 (package
9865 (name "emacs-let-alist")
9866 (version "1.0.5")
9867 (source
9868 (origin
9869 (method url-fetch)
9870 (uri (string-append
9871 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9872 (sha256
9873 (base32
9874 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9875 (build-system emacs-build-system)
9876 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9877 (synopsis "Easily let-bind values of an assoc-list by their names")
9878 (description "This package offers a single macro, @code{let-alist}. This
9879 macro takes a first argument (whose value must be an alist) and a body.")
9880 (license license:gpl3+)))
9881
9882 (define-public emacs-esup
9883 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9884 (revision "1"))
9885 (package
9886 (name "emacs-esup")
9887 (version (string-append "0.6" "-" revision "."
9888 (string-take commit 7)))
9889 (source
9890 (origin
9891 (method git-fetch)
9892 (uri (git-reference
9893 (url "https://github.com/jschaf/esup.git")
9894 (commit commit)))
9895 (file-name (git-file-name name version))
9896 (sha256
9897 (base32
9898 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9899 ;; TODO: Add tests
9900 (build-system emacs-build-system)
9901 (home-page "https://github.com/jschaf/esup")
9902 (synopsis "Emacs start up profiler")
9903 (description "Benchmark Emacs Startup time without ever leaving
9904 your Emacs.")
9905 (license license:gpl2+))))
9906
9907 (define-public emacs-sourcemap
9908 (package
9909 (name "emacs-sourcemap")
9910 (version "0.03")
9911 (source
9912 (origin
9913 (method url-fetch)
9914 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9915 version ".tar.gz"))
9916 (file-name (string-append name "-" version ".tar.gz"))
9917 (sha256
9918 (base32
9919 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9920 (build-system emacs-build-system)
9921 (home-page "https://github.com/syohex/emacs-sourcemap")
9922 (synopsis "Sourcemap parser")
9923 (description "Sourcemap parser")
9924 (license license:gpl3+)))
9925
9926 (define-public emacs-macrostep
9927 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9928 (package
9929 (name "emacs-macrostep")
9930 (version (git-version "0.9" "1" commit))
9931 (source (origin
9932 (method git-fetch)
9933 (uri (git-reference
9934 (url "https://github.com/joddie/macrostep.git")
9935 (commit commit)))
9936 (file-name (git-file-name name version))
9937 (sha256
9938 (base32
9939 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9940 (build-system emacs-build-system)
9941 (arguments
9942 '(#:phases
9943 (modify-phases %standard-phases
9944 (add-before 'check 'remove-test
9945 ;; Fails because of requirement ‘/bin/sh’.
9946 (lambda _
9947 (let ((file "macrostep-test.el"))
9948 (chmod file #o644)
9949 (emacs-batch-edit-file file
9950 `(progn (progn (goto-char (point-min))
9951 (re-search-forward
9952 "(ert-deftest macrostep-expand-c-macros")
9953 (beginning-of-line)
9954 (kill-sexp))
9955 (basic-save-buffer))))))
9956 (add-before 'install 'check
9957 (lambda _
9958 (invoke "emacs" "--batch" "-L" "."
9959 "-l" "macrostep-test.el"
9960 "-f" "ert-run-tests-batch-and-exit"))))))
9961 (home-page "https://github.com/joddie/macrostep")
9962 (synopsis "Interactive macro-expander for Emacs")
9963 (description "@code{macrostep} is an Emacs minor mode for interactively
9964 stepping through the expansion of macros in Emacs Lisp source code. It lets
9965 you see exactly what happens at each step of the expansion process by
9966 pretty-printing the expanded forms inline in the source buffer, which is
9967 temporarily read-only while macro expansions are visible. You can expand and
9968 collapse macro forms one step at a time, and evaluate or instrument the
9969 expansions for debugging with Edebug as normal (but see “Bugs and known
9970 limitations”, below). Single-stepping through the expansion is particularly
9971 useful for debugging macros that expand into another macro form. These can be
9972 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9973 until the top-level form is no longer a macro call.")
9974 (license license:gpl3+))))
9975
9976 (define-public emacs-parent-mode
9977 (package
9978 (name "emacs-parent-mode")
9979 (version "2.3")
9980 (source
9981 (origin
9982 (method url-fetch)
9983 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9984 version ".tar.gz"))
9985 (file-name (string-append name "-" version ".tar.gz"))
9986 (sha256
9987 (base32
9988 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9989 (build-system emacs-build-system)
9990 (home-page "https://github.com/Fanael/parent-mode")
9991 (synopsis "Get major mode's parent modes")
9992 (description "Get major mode's parent modes")
9993 (license license:gpl3+)))
9994
9995 (define-public emacs-lacarte
9996 (package
9997 (name "emacs-lacarte")
9998 (version "0.1")
9999 (source (origin
10000 (method url-fetch)
10001 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
10002 (sha256
10003 (base32
10004 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
10005 (build-system emacs-build-system)
10006 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
10007 (synopsis "Execute menu items as commands, with completion")
10008 (description "Execute menu items as commands, with completion.")
10009 (license license:gpl3)))
10010
10011 (define-public emacs-isearch-prop
10012 (let ((commit "5e9dc44cf582d998aaa73ccd4d07cbda01248156")
10013 (revision "1"))
10014 (package
10015 (name "emacs-isearch-prop")
10016 (version (git-version "0" revision commit))
10017 (source
10018 (origin
10019 (method git-fetch)
10020 (uri (git-reference
10021 (url "https://github.com/emacsmirror/isearch-prop.git")
10022 (commit commit)))
10023 (file-name (git-file-name name version))
10024 (sha256
10025 (base32
10026 "1xawppy705ybsgx566zvj8zk2aajq0sqvhvfs7nijqq32lx0a2zl"))))
10027 (build-system emacs-build-system)
10028 (home-page "https://www.emacswiki.org/emacs/isearch-prop.el")
10029 (synopsis "Extensions to @code{isearch.el}")
10030 (description "The Emacs library @code{isearch-prop.el} lets you search within
10031 contexts. You can limit incremental search to a set of zones of
10032 buffer text, search contexts that in effect constitute a multi-region.
10033 These zones can be defined in various ways, including some ways
10034 provided specially by this library.")
10035 (license license:gpl3+))))
10036
10037 (define-public emacs-company-lua
10038 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
10039 (package
10040 (name "emacs-company-lua")
10041 (version (git-version "0.1" "1" commit))
10042 (source
10043 (origin
10044 (method git-fetch)
10045 (uri (git-reference
10046 (url "https://github.com/ptrv/company-lua.git")
10047 (commit commit)))
10048 (file-name (git-file-name name version))
10049 (sha256
10050 (base32
10051 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
10052 (build-system emacs-build-system)
10053 (propagated-inputs
10054 `(("emacs-company" ,emacs-company)
10055 ("emacs-s" ,emacs-s)
10056 ("emacs-f" ,emacs-f)
10057 ("emacs-lua-mode" ,emacs-lua-mode)))
10058 (home-page "https://github.com/ptrv/company-lua")
10059 (synopsis "Company backend for Lua")
10060 (description
10061 "This package provides Company backend for Lua programming language.")
10062 (license license:gpl3+))))
10063
10064 (define-public emacs-beginend
10065 (package
10066 (name "emacs-beginend")
10067 (version "2.0.0")
10068 (source
10069 (origin
10070 (method url-fetch)
10071 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
10072 "v" version ".tar.gz"))
10073 (file-name (string-append name "-" version ".tar.gz"))
10074 (sha256
10075 (base32
10076 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
10077 ;; TODO: Run tests.
10078 (build-system emacs-build-system)
10079 (inputs
10080 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
10081 (home-page "https://github.com/DamienCassou/beginend")
10082 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
10083 (description "@code{beginend} redefines @code{M-<} and @code{M->}
10084 keybindings for Emacs modes so that point moves to meaningful
10085 locations. Redefined keys are still accessible by pressing the same
10086 key again.")
10087 (license license:gpl3+)))
10088
10089 (define-public emacs-mbsync
10090 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
10091 (revision "1"))
10092 (package
10093 (name "emacs-mbsync")
10094 (version (string-append "0.0.1" "-" revision "."
10095 (string-take commit 7)))
10096 (source
10097 (origin
10098 (method git-fetch)
10099 (uri (git-reference
10100 (url "https://github.com/dimitri/mbsync-el.git")
10101 (commit commit)))
10102 (file-name (git-file-name name version))
10103 (sha256
10104 (base32
10105 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
10106 (build-system emacs-build-system)
10107 (home-page "https://github.com/dimitri/mbsync-el")
10108 (synopsis "Interface to mbsync for Emacs")
10109 (description "This package allows to call the @code{mbsync} from
10110 within Emacs.")
10111 (license license:gpl3+))))
10112
10113 (define-public emacs-ibuffer-projectile
10114 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
10115 (revision "1"))
10116 (package
10117 (name "emacs-ibuffer-projectile")
10118 (version (string-append "0.2" "-" revision "."
10119 (string-take commit 7)))
10120 (source
10121 (origin
10122 (method git-fetch)
10123 (uri (git-reference
10124 (url "https://github.com/purcell/ibuffer-projectile.git")
10125 (commit commit)))
10126 (file-name (git-file-name name version))
10127 (sha256
10128 (base32
10129 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
10130 (build-system emacs-build-system)
10131 (propagated-inputs
10132 `(("emacs-projectile" ,emacs-projectile)))
10133 (home-page "https://github.com/purcell/ibuffer-projectile")
10134 (synopsis "Group ibuffer's list by projectile root")
10135 (description "Adds functionality to Emacs @code{ibuffer} for
10136 grouping buffers by their projectile root directory.")
10137 (license license:gpl3+))))
10138
10139 (define-public emacs-helm-mode-manager
10140 (package
10141 (name "emacs-helm-mode-manager")
10142 (version "1.0.0")
10143 (source
10144 (origin
10145 (method url-fetch)
10146 (uri (string-append "https://github.com/istib/helm-mode-manager/"
10147 "archive/" version ".tar.gz"))
10148 (file-name (string-append name "-" version ".tar.gz"))
10149 (sha256
10150 (base32
10151 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
10152 (build-system emacs-build-system)
10153 (propagated-inputs
10154 `(("emacs-helm" ,emacs-helm)))
10155 (home-page "https://github.com/istib/helm-mode-manager/")
10156 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
10157 (description "This package provides a Helm interface for toggling Emacs
10158 major or minor mode.
10159
10160 @itemize
10161 @item @code{helm-switch-major-mode} list of all major modes
10162 @item @code{helm-enable-minor-mode} list of all inactive minor modes
10163 @item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
10164 @end itemize\n
10165
10166 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
10167 documentation.")
10168 (license license:gpl3+)))
10169
10170 (define-public emacs-hy-mode
10171 (package
10172 (name "emacs-hy-mode")
10173 (version "1.0.3")
10174 (source
10175 (origin
10176 (method url-fetch)
10177 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
10178 "v" version ".tar.gz"))
10179 (file-name (string-append name "-" version ".tar.gz"))
10180 (sha256
10181 (base32
10182 "0b4pvbr2hf77bq2vsyfsv653q0dab7qzq85wc7kdziw7687jdf2z"))))
10183 (build-system emacs-build-system)
10184 (propagated-inputs
10185 `(("emacs-dash" ,emacs-dash)
10186 ("emacs-s" ,emacs-s)))
10187 (home-page "https://github.com/hylang/hy-mode")
10188 (synopsis "Major mode for Hylang")
10189 (description "This package provides a major mode for Hylang.")
10190 (license license:gpl3+)))
10191
10192 (define-public emacs-web-beautify
10193 (package
10194 (name "emacs-web-beautify")
10195 (version "0.3.2")
10196 (source
10197 (origin
10198 (method url-fetch)
10199 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
10200 version ".tar.gz"))
10201 (file-name (string-append name "-" version ".tar.gz"))
10202 (sha256
10203 (base32
10204 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
10205 (build-system emacs-build-system)
10206 (home-page "https://github.com/yasuyk/web-beautify")
10207 (synopsis "Format HTML, CSS and JavaScript, JSON")
10208 (description "This package provides an Emacs functions to format HTML,
10209 CSS, JavaScript, JSON.")
10210 (license license:gpl3+)))
10211
10212 (define-public emacs-helm-shell-history
10213 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
10214 (package
10215 (name "emacs-helm-shell-history")
10216 (version (git-version "0.1" "1" commit))
10217 (source
10218 (origin
10219 (method git-fetch)
10220 (uri (git-reference
10221 (url "https://github.com/yuutayamada/helm-shell-history.git")
10222 (commit commit)))
10223 (file-name (git-file-name name version))
10224 (sha256
10225 (base32
10226 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
10227 (build-system emacs-build-system)
10228 (arguments
10229 '(#:phases
10230 (modify-phases %standard-phases
10231 (add-before 'check 'patch-helm-shell-history-file
10232 (lambda _
10233 (let ((file "helm-shell-history.el"))
10234 (chmod file #o644)
10235 (emacs-substitute-sexps file
10236 ("(defvar helm-shell-history-file"
10237 `(expand-file-name "~/.bash_history"))))
10238 #t)))))
10239 (propagated-inputs
10240 `(("emacs-helm" ,emacs-helm)))
10241 (home-page "https://github.com/yuutayamada/helm-shell-history")
10242 (synopsis "Find shell history with Emacs Helm")
10243 (description "This package provides an Emacs Helm interface to search
10244 throw a shell history.")
10245 (license license:gpl3+))))
10246
10247 (define-public emacs-discover-my-major
10248 (package
10249 (name "emacs-discover-my-major")
10250 (version "1.0")
10251 (source
10252 (origin
10253 (method url-fetch)
10254 (uri
10255 (string-append "https://github.com/steckerhalter/discover-my-major"
10256 "/archive/" version ".tar.gz"))
10257 (file-name (string-append name "-" version ".tar.gz"))
10258 (sha256
10259 (base32
10260 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
10261 (build-system emacs-build-system)
10262 (propagated-inputs
10263 `(("emacs-makey" ,emacs-makey)))
10264 (home-page "https://github.com/steckerhalter/discover-my-major")
10265 (synopsis "Discover key bindings for the current Emacs major mode")
10266 (description "This package provides allows to discover key bindings and
10267 their meaning for the current Emacs major-mode.")
10268 (license license:gpl3+)))
10269
10270 (define-public emacs-org-ref
10271 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
10272 (revision "1"))
10273 (package
10274 (name "emacs-org-ref")
10275 (version (string-append "1.1.1" "-" revision "."
10276 (string-take commit 7)))
10277 (source
10278 (origin
10279 (method git-fetch)
10280 (uri (git-reference
10281 (url "https://github.com/jkitchin/org-ref.git")
10282 (commit commit)))
10283 (file-name (string-append name "-" version "-checkout"))
10284 (sha256
10285 (base32
10286 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
10287 (build-system emacs-build-system)
10288 (propagated-inputs
10289 `(("emacs-dash" ,emacs-dash)
10290 ("emacs-helm" ,emacs-helm)
10291 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
10292 ("emacs-ivy" ,emacs-ivy)
10293 ("emacs-hydra" ,emacs-hydra)
10294 ("emacs-key-chord" ,emacs-key-chord)
10295 ("emacs-s" ,emacs-s)
10296 ("emacs-f" ,emacs-f)
10297 ("emacs-pdf-tools" ,emacs-pdf-tools)))
10298 (home-page "https://github.com/jkitchin/org-ref")
10299 (synopsis "Citations, cross-references and bibliographies in org-mode")
10300 (description
10301 "Lisp code to setup bibliography, cite, ref and label org-mode links.
10302 Also sets up reftex and helm for org-mode citations. The links are
10303 clickable and do things that are useful.
10304
10305 The default setup uses helm-bibtex.
10306
10307 You should really read org-ref.org in this package for details.")
10308 (license license:gpl3+))))
10309
10310 ;; This project is unmaintained. Please use emacs-org-re-reveal instead.
10311 (define-public emacs-org-reveal
10312 (let ((commit "1cdd088ec5fab631c564dca7f9f74fd3e9b7d4d4"))
10313 (package
10314 (name "emacs-org-reveal")
10315 (version (git-version "0.1" "2" commit))
10316 (source (origin
10317 (method git-fetch)
10318 (uri (git-reference
10319 (url "https://github.com/yjwen/org-reveal.git")
10320 (commit commit)))
10321 (file-name (git-file-name name version))
10322 (sha256
10323 (base32
10324 "1vjxjadq2i74p96y9jxnqj1yb86fsgxzmn7bjgnb88ay6nvc1l72"))))
10325 (build-system emacs-build-system)
10326 (home-page "https://github.com/yjwen/org-reveal")
10327 (synopsis "Org and Reveal.js powered HTML presentation tool")
10328 (description "Org-Reveal is a command@{org-mode} extension that allows
10329 to create beautiful presentations (slides) with 3D effects from simple but
10330 powerful Org contents.")
10331 (license license:gpl3+))))
10332
10333 (define-public emacs-org-re-reveal
10334 (package
10335 (name "emacs-org-re-reveal")
10336 (version "1.0.3")
10337 (source (origin
10338 (method git-fetch)
10339 (uri (git-reference
10340 (url "https://gitlab.com/oer/org-re-reveal.git")
10341 (commit "50cc6574c77f12d423f6cd096d8f76feb3673abc")))
10342 (file-name (git-file-name name version))
10343 (sha256
10344 (base32
10345 "1v3z30gpimg4spf6zzqwp9b597zxk89h0vpq6xp58js4rjg4ixk8"))))
10346 (build-system emacs-build-system)
10347 (propagated-inputs
10348 `(("emacs-htmlize" ,emacs-htmlize)
10349 ("emacs-org" ,emacs-org)))
10350 (home-page "https://gitlab.com/oer/org-re-reveal")
10351 (synopsis "Build HTML presentations with reveal.js from Org source files")
10352 (description "This project started as fork of org-reveal. It provides an
10353 export back-end for HTML presentations with reveal.js from Org mode source
10354 files.")
10355 (license license:gpl3+)))
10356
10357 (define-public emacs-add-hooks
10358 (package
10359 (name "emacs-add-hooks")
10360 (version "3.1.1")
10361 (source (origin
10362 (method url-fetch)
10363 (uri (string-append
10364 "https://github.com/nickmccurdy/add-hooks/archive/"
10365 version ".tar.gz"))
10366 (file-name (string-append name "-" version ".tar.gz"))
10367 (sha256
10368 (base32
10369 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
10370 (build-system emacs-build-system)
10371 (home-page "https://github.com/nickmccurdy/add-hooks/")
10372 (synopsis "Emacs function for setting multiple hooks")
10373 (description "This package provides a @code{add-hooks} function tidies up
10374 duplicate hook and function names further into a single declarative call.")
10375 (license license:gpl3+)))
10376
10377 (define-public emacs-fancy-narrow
10378 (package
10379 (name "emacs-fancy-narrow")
10380 (version "0.9.5")
10381 (source
10382 (origin
10383 (method url-fetch)
10384 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
10385 version ".tar.gz"))
10386 (file-name (string-append name "-" version ".tar.gz"))
10387 (sha256
10388 (base32
10389 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
10390 (build-system emacs-build-system)
10391 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
10392 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
10393 (description
10394 "Unlike @code{narrow-to-region}, which completely hides text outside
10395 the narrowed region, this package simply de-emphasizes the text, makes it
10396 read-only, and makes it unreachable. This leads to a much more natural
10397 feeling where the region stays static (instead of being brutally moved to a
10398 blank slate) and is clearly highlighted with respect to the rest of the
10399 buffer.")
10400 (license license:gpl2+)))
10401
10402 (define-public emacs-know-your-http-well
10403 (package
10404 (name "emacs-know-your-http-well")
10405 (version "0.5.0")
10406 (source
10407 (origin
10408 (method url-fetch)
10409 (uri (string-append
10410 "https://github.com/for-GET/know-your-http-well/archive/"
10411 "v" version ".tar.gz"))
10412 (file-name (string-append name "-" version ".tar.gz"))
10413 (sha256
10414 (base32
10415 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
10416 (arguments
10417 `(#:phases
10418 (modify-phases %standard-phases
10419 (add-after 'unpack 'install-json-files
10420 (lambda* (#:key outputs #:allow-other-keys)
10421 (for-each (lambda (directory)
10422 (copy-recursively directory
10423 (string-append
10424 (assoc-ref outputs "out")
10425 directory)))
10426 '("js" "json"))))
10427 (add-after 'unpack 'chdir-elisp
10428 ;; Elisp directory is not in root of the source.
10429 (lambda _
10430 (chdir "emacs"))))))
10431 (build-system emacs-build-system)
10432 (home-page "https://github.com/for-GET/know-your-http-well")
10433 (synopsis "Meaning of HTTP headers codes")
10434 (description "Meaning of HTTP headers codes.")
10435 (license license:gpl3+)))
10436
10437 (define-public emacs-navi-mode
10438 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
10439 (package
10440 (name "emacs-navi-mode")
10441 (version (git-version "2.0" "1" commit))
10442 (source
10443 (origin
10444 (method git-fetch)
10445 (uri (git-reference
10446 (url "https://github.com/alphapapa/navi.git")
10447 (commit commit)))
10448 (file-name (git-file-name name version))
10449 (sha256
10450 (base32
10451 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
10452 (build-system emacs-build-system)
10453 (propagated-inputs
10454 `(("emacs-outshine" ,emacs-outshine)
10455 ("emacs-outorg" ,emacs-outorg)))
10456 (home-page "https://github.com/alphapapa/navi")
10457 (synopsis "Emacs major-mode for easy buffer-navigation")
10458 (description
10459 "This package provides an Emacs major-mode for easy buffer-navigation")
10460 (license license:gpl3+))))
10461
10462 (define-public emacs-download-region
10463 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
10464 (revision "1"))
10465 (package
10466 (name "emacs-download-region")
10467 (version (string-append "0.0.1" "-" revision "."
10468 (string-take commit 7)))
10469 (source
10470 (origin
10471 (method git-fetch)
10472 (uri (git-reference
10473 (url "https://github.com/zk-phi/download-region.git")
10474 (commit commit)))
10475 (file-name (string-append name "-" version "-checkout"))
10476 (sha256
10477 (base32
10478 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
10479 (build-system emacs-build-system)
10480 (home-page "https://github.com/zk-phi/download-region")
10481 (synopsis "In buffer download manager for Emacs")
10482 (description "@code{download-region} provides in buffer
10483 downloading manager for Emacs.")
10484 (license license:gpl3+))))
10485
10486 (define-public emacs-helpful
10487 (package
10488 (name "emacs-helpful")
10489 (version "0.15")
10490 (source (origin
10491 (method url-fetch)
10492 (uri (string-append
10493 "https://github.com/Wilfred/helpful/archive/"
10494 version ".tar.gz"))
10495 (file-name (string-append name "-" version ".tar.gz"))
10496 (sha256
10497 (base32
10498 "1xmvhphzb4hbg647dz4lafy6hd19b7bk3lxni6irqrzdsrclhzn6"))))
10499 (build-system emacs-build-system)
10500 (propagated-inputs
10501 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
10502 (home-page "https://github.com/Wilfred/helpful")
10503 (synopsis "More contextual information in Emacs help")
10504 (description "@code{helpful} is an alternative to the built-in Emacs help
10505 that provides much more contextual information.
10506
10507 @itemize
10508 @item Show the source code for interactively defined functions (unlike the
10509 built-in Help).
10510 @item Fall back to the raw sexp if no source is available.
10511 @item Show where a function is being called.
10512 @item Docstrings will Highlight the summary (the first sentence), include
10513 cross-references, hide superfluous puncuation.
10514 @item Show you the properties that have been applied to the current
10515 symbol. This provides visibility of features like edebug or byte-code
10516 optimisation.
10517 @item Provide a separate @code{helpful-command} function to view interactive
10518 functions.
10519 @item Display any keybindings that apply to interactive functions.
10520 @item Trace, disassemble functions from inside Helpful. This is discoverable
10521 and doesn't require memorisation of commands.
10522 @end itemize\n")
10523 (license license:gpl3+)))
10524
10525 (define-public emacs-logview
10526 (package
10527 (name "emacs-logview")
10528 (version "0.9")
10529 (source (origin
10530 (method url-fetch)
10531 (uri (string-append
10532 "https://github.com/doublep/logview/archive/"
10533 version ".tar.gz"))
10534 (file-name (string-append name "-" version ".tar.gz"))
10535 (sha256
10536 (base32
10537 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
10538 (propagated-inputs
10539 `(("emacs-datetime" ,emacs-datetime)))
10540 (build-system emacs-build-system)
10541 (home-page "https://github.com/doublep/logview/")
10542 (synopsis "Emacs mode for viewing log files")
10543 (description "@code{logview} provides an Emacs mode to view log files.")
10544 (license license:gpl3+)))
10545
10546 (define-public emacs-suggest
10547 (package
10548 (name "emacs-suggest")
10549 (version "0.7")
10550 (home-page "https://github.com/Wilfred/suggest.el")
10551 (source
10552 (origin
10553 (method git-fetch)
10554 (uri (git-reference
10555 (url home-page)
10556 (commit version)))
10557 (file-name (git-file-name name version))
10558 (sha256
10559 (base32
10560 "01v8plska5d3g19sb1m4ph1i3ayprfzk8mi6mpabjy6zad397xjl"))))
10561 (build-system emacs-build-system)
10562 (propagated-inputs
10563 `(("emacs-loop" ,emacs-loop)
10564 ("emacs-dash" ,emacs-dash)
10565 ("emacs-s" ,emacs-s)
10566 ("emacs-f" ,emacs-f)
10567 ("emacs-spinner" ,emacs-spinner)
10568 ("emacs-shut-up" ,emacs-shut-up)))
10569 (synopsis "Suggest Elisp functions that give the output requested")
10570 (description "Suggest.el will find functions that give the output
10571 requested. It's a great way of exploring list, string and arithmetic
10572 functions.")
10573 (license license:gpl3+)))
10574
10575 (define-public emacs-benchmark-init
10576 (package
10577 (name "emacs-benchmark-init")
10578 (version "1.0")
10579 (source (origin
10580 (method url-fetch)
10581 (uri (string-append
10582 "https://github.com/dholm/benchmark-init-el/archive/"
10583 version ".tar.gz"))
10584 (file-name (string-append name "-" version ".tar.gz"))
10585 (sha256
10586 (base32
10587 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
10588 (build-system emacs-build-system)
10589 (home-page "https://github.com/dholm/benchmark-init-el")
10590 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
10591 (description "@code{benchmark-init} provides a way to keep track of where
10592 time is being spent during Emacs startup in order to optimize startup time.")
10593 (license license:gpl3+)))
10594
10595 (define-public emacs-emms-player-simple-mpv
10596 ;; A new mpv backend is included in Emms from 5.0.
10597 (deprecated-package "emacs-emms-player-simple-mpv" emacs-emms))
10598
10599 (define-public emacs-magit-gerrit
10600 (let ((version "0.3")
10601 (revision "1")
10602 (commit "ece6f369694aca17f3ac166ed2801b432acfe20d"))
10603 (package
10604 (name "emacs-magit-gerrit")
10605 (version (git-version version revision commit))
10606 (source (origin
10607 (method git-fetch)
10608 (uri (git-reference
10609 (url "https://github.com/terranpro/magit-gerrit.git")
10610 (commit commit)))
10611 (file-name (git-file-name name version))
10612 (sha256
10613 (base32
10614 "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"))))
10615 (build-system emacs-build-system)
10616 (propagated-inputs
10617 `(("emacs-magit" ,emacs-magit)))
10618 (home-page "https://github.com/terranpro/magit-gerrit")
10619 (synopsis "Magit extension for Gerrit")
10620 (description "This Magit extension provides integration with Gerrit,
10621 which makes it possible to conduct Gerrit code reviews directly from within
10622 Emacs.")
10623 (license license:gpl3+))))
10624
10625 (define-public emacs-magit-org-todos-el
10626 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
10627 (package
10628 (name "emacs-magit-org-todos-el")
10629 (version (git-version "0.1.1" "1" commit))
10630 (source
10631 (origin
10632 (method git-fetch)
10633 (uri (git-reference
10634 (url "https://github.com/danielma/magit-org-todos.el.git")
10635 (commit commit)))
10636 (file-name (git-file-name name version))
10637 (sha256
10638 (base32
10639 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
10640 (propagated-inputs
10641 `(("magit" ,emacs-magit)))
10642 (build-system emacs-build-system)
10643 (home-page "https://github.com/danielma/magit-org-todos.el")
10644 (synopsis "Get todo.org into Emacs Magit status")
10645 (description "This package allows you to get @file{todo.org} into your
10646 magit status.
10647
10648 If you have a @file{todo.org} file with @code{TODO} items in the root of your
10649 repository, @code{magit-org-todos} will create a section in your Magit status
10650 buffer with each of your todos.")
10651 (license license:gpl3+))))
10652
10653 (define-public emacs-f3
10654 (package
10655 (name "emacs-f3")
10656 (version "0.1")
10657 (source
10658 (origin
10659 (method url-fetch)
10660 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
10661 version ".tar.gz"))
10662 (file-name (string-append name "-" version ".tar.gz"))
10663 (sha256
10664 (base32
10665 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
10666 (build-system emacs-build-system)
10667 (propagated-inputs
10668 `(("emacs-helm" ,emacs-helm)))
10669 (home-page "https://github.com/cosmicexplorer/f3")
10670 (synopsis "Fantastic File Finder for Emacs")
10671 (description
10672 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
10673 (license license:gpl3+)))
10674
10675 (define-public emacs-lice-el
10676 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
10677 (package
10678 (name "emacs-lice-el")
10679 (version (git-version "0.2" "1" commit))
10680 (source (origin
10681 (method git-fetch)
10682 (uri (git-reference
10683 (url "https://github.com/buzztaiki/lice-el.git")
10684 (commit commit)))
10685 (file-name (git-file-name name version))
10686 (sha256
10687 (base32
10688 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
10689 (build-system emacs-build-system)
10690 (home-page "https://github.com/buzztaiki/lice-el")
10691 (synopsis "License and header template for Emacs")
10692 (description "@code{lice.el} provides following features:
10693
10694 @itemize
10695 @item License template management.
10696 @item File header insertion.
10697 @end itemize\n")
10698 (license license:gpl3+))))
10699
10700 (define-public emacs-academic-phrases
10701 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
10702 (package
10703 (name "emacs-academic-phrases")
10704 (version (git-version "0.1" "1" commit))
10705 (source
10706 (origin
10707 (method git-fetch)
10708 (uri (git-reference
10709 (url "https://github.com/nashamri/academic-phrases.git")
10710 (commit commit)))
10711 (file-name (string-append name "-" version "-checkout"))
10712 (sha256
10713 (base32
10714 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
10715 (build-system emacs-build-system)
10716 (propagated-inputs
10717 `(("emacs-dash" ,emacs-dash)
10718 ("emacs-s" ,emacs-s)
10719 ("emacs-ht" ,emacs-ht)))
10720 (home-page "https://github.com/nashamri/academic-phrases")
10721 (synopsis "Bypass that mental block when writing your papers")
10722 (description
10723 "When writing your academic paper, you might get stuck trying to find
10724 the right phrase that captures your intention. This package tries to
10725 alleviate that problem by presenting you with a list of phrases organized by
10726 the topic or by the paper section that you are writing. This package has
10727 around 600 phrases so far.
10728
10729 Using this package is easy, just call @code{academic-phrases} to get a list of
10730 phrases organized by topic, or call @code{academic-phrases-by-section} to
10731 browse the phrases by the paper section and fill-in the blanks if required.")
10732 (license license:gpl3+))))
10733
10734 (define-public emacs-auto-yasnippet
10735 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
10736 (package
10737 (name "emacs-auto-yasnippet")
10738 (version (git-version "0.3.0" "1" commit))
10739 (source (origin
10740 (method git-fetch)
10741 (uri (git-reference
10742 (url "https://github.com/abo-abo/auto-yasnippet.git")
10743 (commit commit)))
10744 (file-name (string-append name "-" version "-checkout"))
10745 (sha256
10746 (base32
10747 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
10748 (build-system emacs-build-system)
10749 (arguments
10750 '(#:phases
10751 (modify-phases %standard-phases
10752 (add-before 'install 'check
10753 (lambda _
10754 (invoke "emacs" "--batch"
10755 "-l" "auto-yasnippet.el"
10756 "-l" "auto-yasnippet-test.el"
10757 "-f" "ert-run-tests-batch-and-exit"))))))
10758 (propagated-inputs
10759 `(("emacs-yasnippet" ,emacs-yasnippet)))
10760 (home-page "https://github.com/abo-abo/auto-yasnippet/")
10761 (synopsis "Quickly create disposable yasnippets")
10762 (description "This package provides a hybrid of keyboard macros and
10763 yasnippet. You create the snippet on the go, usually to be used just in the
10764 one place. It's fast, because you're not leaving the current buffer, and all
10765 you do is enter the code you'd enter anyway, just placing ~ where you'd like
10766 yasnippet fields and mirrors to be.")
10767 (license license:gpl3+))))
10768
10769 (define-public emacs-highlight-numbers
10770 (package
10771 (name "emacs-highlight-numbers")
10772 (version "0.2.3")
10773 (source
10774 (origin
10775 (method url-fetch)
10776 (uri (string-append
10777 "https://github.com/Fanael/highlight-numbers/archive/"
10778 version ".tar.gz"))
10779 (file-name (string-append name "-" version ".tar.gz"))
10780 (sha256
10781 (base32
10782 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
10783 (build-system emacs-build-system)
10784 (propagated-inputs
10785 `(("emacs-parent-mode" ,emacs-parent-mode)))
10786 (home-page "https://github.com/Fanael/highlight-numbers")
10787 (synopsis "Highlight numbers in source code")
10788 (description "@code{highlight-numbers-mode} provides a minor mode for
10789 syntax highlighting of numeric literals in source code.
10790
10791 It s customizable: it's easy to add or redefine what exactly consitutes a
10792 \"number\" in given major mode. See @code{highlight-numbers-modelist}.")
10793 (license license:gpl3+)))
10794
10795 (define-public emacs-darkroom
10796 (package
10797 (name "emacs-darkroom")
10798 (version "0.1")
10799 (source (origin
10800 (method url-fetch)
10801 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
10802 version ".el"))
10803 (sha256
10804 (base32
10805 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
10806 (build-system emacs-build-system)
10807 (home-page "https://elpa.gnu.org/packages/darkroom.html")
10808 (synopsis "Remove visual distractions and focus on writing")
10809 (description "@code{darkroom-mode} makes visual distractions disappear.
10810 The mode-line is temporarily elided, text is enlarged and margins are adjusted
10811 so that it's centered on the window.
10812
10813 @code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
10814 @code{darkroom-mode}, unless the current buffer lives in the sole window of
10815 the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
10816 split to display more windows and more buffers, the buffer exits
10817 @code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
10818 @code{darkroom-mode}.")
10819 (license license:gpl3+)))
10820
10821 (define-public emacs-rsw-elisp
10822 (package
10823 (name "emacs-rsw-elisp")
10824 (version "1.0.5")
10825 (source (origin
10826 (method url-fetch)
10827 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
10828 "/archive/" version ".tar.gz"))
10829 (file-name (string-append name "-" version ".tar.gz"))
10830 (sha256
10831 (base32
10832 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
10833 (build-system emacs-build-system)
10834 (home-page "https://github.com/rswgnu/rsw-elisp")
10835 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
10836 (description "This package improves and replaces the GNU Emacs commands
10837 that interactively evaluate Emacs Lisp expressions. The new commands replace
10838 standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
10839 the same way as the old commands when called non-interactively; only the
10840 interactive behavior should be different.")
10841 (license license:gpl3+)))
10842
10843 (define-public emacs-default-text-scale
10844 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10845 (revision "1"))
10846 (package
10847 (name "emacs-default-text-scale")
10848 (version (string-append "0.1" "-" revision "."
10849 (string-take commit 7)))
10850 (source (origin
10851 (method git-fetch)
10852 (uri (git-reference
10853 (url "https://github.com/purcell/default-text-scale")
10854 (commit commit)))
10855 (file-name (string-append name "-" version "-checkout"))
10856 (sha256
10857 (base32
10858 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10859 (build-system emacs-build-system)
10860 (home-page "https://github.com/purcell/default-text-scale")
10861 (synopsis "Adjust the font size in all Emacs frames")
10862 (description "This package provides commands for increasing or
10863 decreasing the default font size in all GUI Emacs frames.")
10864 (license license:gpl3+))))
10865
10866 (define-public emacs-visual-regexp
10867 (package
10868 (name "emacs-visual-regexp")
10869 (version "1.1.1")
10870 (source
10871 (origin
10872 (method url-fetch)
10873 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10874 "v" version ".tar.gz"))
10875 (file-name (string-append name "-" version ".tar.gz"))
10876 (sha256
10877 (base32
10878 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10879 (build-system emacs-build-system)
10880 (home-page "https://github.com/benma/visual-regexp.el/")
10881 (synopsis "Regexp command with interactive visual feedback")
10882 (description "This package provides an Emacs regexp command with
10883 interactive visual feedback.")
10884 (license license:gpl3+)))
10885
10886 (define-public emacs-faceup
10887 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10888 (revision "1"))
10889 (package
10890 (name "emacs-faceup")
10891 (version (string-append "0.0.1" "-" revision "."
10892 (string-take commit 7)))
10893 (source
10894 (origin
10895 (method git-fetch)
10896 (uri (git-reference
10897 (url "https://github.com/Lindydancer/faceup.git")
10898 (commit commit)))
10899 (file-name (string-append name "-" version "-checkout"))
10900 (sha256
10901 (base32
10902 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10903 (build-system emacs-build-system)
10904 (home-page "https://github.com/Lindydancer/faceup")
10905 (synopsis "Markup language for faces and font-lock regression testing")
10906 (description "Emacs is capable of highlighting buffers based on
10907 language-specific @code{font-lock} rules. This package makes it possible to
10908 perform regression test for packages that provide font-lock rules.")
10909 (license license:gpl3+))))
10910
10911 (define-public emacs-racket-mode
10912 (let ((commit "b977873e6128f8399432dcd60cc39f6a6f803d9c")
10913 (revision "2"))
10914 (package
10915 (name "emacs-racket-mode")
10916 (version (string-append "0.0.2" "-" revision "."
10917 (string-take commit 7)))
10918 (source
10919 (origin
10920 (method git-fetch)
10921 (uri (git-reference
10922 (url "https://github.com/greghendershott/racket-mode")
10923 (commit commit)))
10924 (file-name (string-append name "-" version "-checkout"))
10925 (sha256
10926 (base32
10927 "0vp4bbbplqvmnhjpl6ajrlydmrhqzil56cfbs18m5c5fddx0zlh7"))))
10928 (build-system emacs-build-system)
10929 (arguments
10930 `(#:include '("\\.el$" "\\.rkt$")))
10931 (propagated-inputs
10932 `(("emacs-faceup" ,emacs-faceup)
10933 ("emacs-s" ,emacs-s)))
10934 (home-page "https://github.com/greghendershott/racket-mode")
10935 (synopsis "Major mode for Racket language")
10936 (description "@code{racket-mode} provides:
10937
10938 @itemize
10939 @item Focus on Racket (not various Schemes).
10940 @item Follow DrRacket concepts where applicable.
10941 @item Thorough font-lock and indent.
10942 @end itemize\n")
10943 (license license:gpl3+))))
10944
10945 (define-public emacs-grep-context
10946 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10947 (package
10948 (name "emacs-grep-context")
10949 (version (git-version "0.1" "1" commit))
10950 (source
10951 (origin
10952 (method git-fetch)
10953 (uri (git-reference
10954 (url "https://github.com/mkcms/grep-context.git")
10955 (commit commit)))
10956 (file-name (string-append name "-" version "-checkout"))
10957 (sha256
10958 (base32
10959 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10960 (build-system emacs-build-system)
10961 (propagated-inputs
10962 `(("emacs-dash" ,emacs-dash)))
10963 (home-page "https://github.com/nashamri/academic-phrases")
10964 (synopsis "Increase context in compilation and grep buffers")
10965 (description
10966 "This package provides an Emacs package for more context in
10967 compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10968 @code{ivy}.")
10969 (license license:gpl3+))))
10970
10971 (define-public emacs-helm-firefox
10972 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10973 (revision "1"))
10974 (package
10975 (name "emacs-helm-firefox")
10976 (version (string-append "0.0.1" "-" revision "."
10977 (string-take commit 7)))
10978 (source
10979 (origin
10980 (method git-fetch)
10981 (uri (git-reference
10982 (url "https://github.com/emacs-helm/helm-firefox.git")
10983 (commit commit)))
10984 (file-name (string-append name "-" version "-checkout"))
10985 (sha256
10986 (base32
10987 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
10988 (propagated-inputs
10989 `(("emacs-helm" ,emacs-helm)))
10990 (build-system emacs-build-system)
10991 (home-page "https://github.com/emacs-helm/helm-firefox")
10992 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10993 (description "Display firefox bookmarks with Emacs Helm interface")
10994 (license license:gpl3+))))
10995
10996 (define-public emacs-interactive-align
10997 (package
10998 (name "emacs-interactive-align")
10999 (version "0.1.0")
11000 (source
11001 (origin
11002 (method url-fetch)
11003 (uri (string-append "https://github.com/mkcms/interactive-align/"
11004 "archive/" "v" version ".tar.gz"))
11005 (file-name (string-append name "-" version ".tar.gz"))
11006 (sha256
11007 (base32
11008 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
11009 (build-system emacs-build-system)
11010 (home-page "https://github.com/mkcms/interactive-align/")
11011 (synopsis "Interactive align-regexp command in Emacs")
11012 (description "Interactive align-regexp command in Emacs")
11013 (license license:gpl3+)))
11014
11015 (define-public emacs-shift-number
11016 (package
11017 (name "emacs-shift-number")
11018 (version "0.1")
11019 (source
11020 (origin
11021 (method url-fetch)
11022 (uri (string-append "https://github.com/alezost/shift-number.el"
11023 "/archive/" "v" version ".tar.gz"))
11024 (file-name (string-append name "-" version ".tar.gz"))
11025 (sha256
11026 (base32
11027 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
11028 (build-system emacs-build-system)
11029 (home-page "https://github.com/alezost/shift-number.el")
11030 (synopsis "Increase or decrease the number at point")
11031 (description "@code{emacs-shift-number} provides commands
11032 @code{shift-number-up} to increase and @code{shift-number-down} to
11033 decrease the number at point.")
11034 (license license:gpl3+)))
11035
11036 (define-public emacs-highlight-defined
11037 (package
11038 (name "emacs-highlight-defined")
11039 (version "0.1.5")
11040 (source
11041 (origin
11042 (method url-fetch)
11043 (uri (string-append
11044 "https://github.com/Fanael/highlight-defined/archive/"
11045 version ".tar.gz"))
11046 (file-name (string-append name "-" version ".tar.gz"))
11047 (sha256
11048 (base32
11049 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
11050 (build-system emacs-build-system)
11051 (home-page "https://github.com/Fanael/highlight-defined")
11052 (synopsis "Syntax highlighting of known Elisp symbols")
11053 (description "Minor mode providing syntax highlighting of known Emacs Lisp
11054 symbols. Currently the code distinguishes Lisp functions, built-in functions,
11055 macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
11056 (license license:gpl3+)))
11057
11058 (define-public emacs-parinfer-mode
11059 (package
11060 (name "emacs-parinfer-mode")
11061 (version "0.4.10")
11062 (source
11063 (origin
11064 (method url-fetch)
11065 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
11066 "v" version ".tar.gz"))
11067 (file-name (string-append name "-" version ".tar.gz"))
11068 (sha256
11069 (base32
11070 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
11071 (propagated-inputs
11072 `(("emacs-dash" ,emacs-dash)
11073 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
11074 ("emacs-company" ,emacs-company)))
11075 (build-system emacs-build-system)
11076 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
11077 (synopsis "Lisp structure editing mode")
11078 (description "@code{parinfer-mode} is a proof-of-concept editor
11079 mode for Lisp programming languages. It will infer some changes to
11080 keep Parens and Indentation inline with one another.")
11081 (license license:gpl3+)))
11082
11083 (define-public emacs-helm-eww
11084 (package
11085 (name "emacs-helm-eww")
11086 (version "1.2")
11087 (source (origin
11088 (method git-fetch)
11089 (uri (git-reference
11090 (url "https://github.com/emacs-helm/helm-eww.git")
11091 (commit version)))
11092 (file-name (string-append name "-" version "-checkout"))
11093 (sha256
11094 (base32
11095 "0hpq1h0p69c9k6hkd2mjpprx213sc5475q7pr2zpmwrjdzgcv70z"))))
11096 (propagated-inputs
11097 `(("emacs-helm" ,emacs-helm)))
11098 (build-system emacs-build-system)
11099 (home-page "https://github.com/emacs-helm/helm-eww/")
11100 (synopsis "Helm interface to EWW")
11101 (description "This package provides a Helm interface for EWW buffers,
11102 bookmarks and history.")
11103 (license license:gpl3+)))
11104
11105 (define-public emacs-stumpwm-mode
11106 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
11107 (revision "1"))
11108 (package
11109 (name "emacs-stumpwm-mode")
11110 (version (string-append "0.0.1-" revision "."
11111 (string-take commit 7)))
11112 (source (origin
11113 (method git-fetch)
11114 (uri (git-reference
11115 (url "https://github.com/stumpwm/stumpwm-contrib.git")
11116 (commit commit)))
11117 (file-name (string-append name "-" version "-checkout"))
11118 (sha256
11119 (base32
11120 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
11121 (build-system emacs-build-system)
11122 (arguments
11123 `(#:phases
11124 (modify-phases %standard-phases
11125 (add-after 'unpack 'chdir-elisp
11126 ;; Elisp directory is not in root of the source.
11127 (lambda _
11128 (chdir "util/swm-emacs"))))))
11129 (home-page "https://github.com/stumpwm/stumpwm-contrib")
11130 (synopsis "Emacs minor-mode for Stumpwm")
11131 (description "Emacs minor-mode for Stumpwm")
11132 (license license:gpl3+))))
11133
11134 (define-public emacs-irfc
11135 (package
11136 (name "emacs-irfc")
11137 (version "20130824.507")
11138 (source
11139 (origin
11140 (method url-fetch)
11141 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
11142 (file-name (string-append "irfc-" version ".el"))
11143 (sha256
11144 (base32
11145 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
11146 (build-system emacs-build-system)
11147 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
11148 (synopsis "Interface for IETF RFC document")
11149 (description
11150 "This package provides an Emacs interface for IETF RFC document.")
11151 (license license:gpl3+)))
11152
11153 (define-public emacs-ido-vertical-mode
11154 (package
11155 (name "emacs-ido-vertical-mode")
11156 (version "0.1.6")
11157 (source
11158 (origin
11159 (method url-fetch)
11160 (uri (string-append
11161 "https://github.com/creichert/ido-vertical-mode.el/archive/"
11162 "v" version ".tar.gz"))
11163 (file-name (string-append name "-" version ".tar.gz"))
11164 (sha256
11165 (base32
11166 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
11167 (build-system emacs-build-system)
11168 (home-page "https://github.com/creichert/ido-vertical-mode.el")
11169 (synopsis "Makes ido-mode display vertically")
11170 (description "Makes ido-mode display prospects vertically.")
11171 (license license:gpl3+)))
11172
11173 (define-public emacs-wordgen
11174 (package
11175 (name "emacs-wordgen")
11176 (version "0.1.4")
11177 (source
11178 (origin
11179 (method url-fetch)
11180 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
11181 version ".tar.gz"))
11182 (file-name (string-append name "-" version ".tar.gz"))
11183 (sha256
11184 (base32
11185 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
11186 (build-system emacs-build-system)
11187 (home-page "https://github.com/Fanael/wordgen.el")
11188 (synopsis "Random word generator")
11189 (description "This package provides functions to generate random words
11190 using user-provided rules.")
11191 (license license:gpl3+)))
11192
11193 (define-public emacs-on-screen
11194 (package
11195 (name "emacs-on-screen")
11196 (version "1.3.2")
11197 (source
11198 (origin
11199 (method url-fetch)
11200 (uri (string-append
11201 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
11202 (file-name (string-append name "-" version ".el"))
11203 (sha256
11204 (base32
11205 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
11206 (build-system emacs-build-system)
11207 (home-page
11208 "https://github.com/michael-heerdegen/on-screen.el")
11209 (synopsis "Guide your eyes while scrolling")
11210 (description
11211 "Scrolling can be distracting because your eyes may lose
11212 orientation. This library implements a minor mode that highlights
11213 the previously visible buffer part after each scroll.")
11214 (license license:gpl3+)))
11215
11216 (define-public emacs-highlight-escape-sequences
11217 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
11218 (revision "1"))
11219 (package
11220 (name "emacs-highlight-escape-sequences")
11221 (version (string-append "0.0.1" "-" revision "."
11222 (string-take commit 7)))
11223 (source
11224 (origin
11225 (method git-fetch)
11226 (uri (git-reference
11227 (url "https://github.com/dgutov/highlight-escape-sequences.git")
11228 (commit commit)))
11229 (file-name (string-append name "-" version "-checkout"))
11230 (sha256
11231 (base32
11232 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
11233 (build-system emacs-build-system)
11234 (home-page "https://github.com/dgutov/highlight-escape-sequences")
11235 (synopsis "Highlight escape sequences in Emacs")
11236 (description "@code{highlight-escape-sequences} provides an
11237 Emacs minor mode to escape sequences in code.")
11238 (license license:gpl3+))))
11239
11240 (define-public emacs-dashboard
11241 (package
11242 (name "emacs-dashboard")
11243 (version "1.2.4")
11244 (source
11245 (origin
11246 (method url-fetch)
11247 (uri (string-append
11248 "https://github.com/rakanalh/emacs-dashboard/archive/"
11249 version ".tar.gz"))
11250 (file-name (string-append name "-" version ".tar.gz"))
11251 (sha256
11252 (base32
11253 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
11254 (build-system emacs-build-system)
11255 (propagated-inputs
11256 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
11257 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
11258 (home-page "https://github.com/rakanalh/emacs-dashboard")
11259 (synopsis "Startup screen extracted from Spacemacs")
11260 (description "This package provides an extensible Emacs dashboard, with
11261 sections for bookmarks, projectil projects, org-agenda and more. ")
11262 (license license:gpl3+)))
11263
11264 (define-public emacs-slime-company
11265 (package
11266 (name "emacs-slime-company")
11267 (version "1.1")
11268 (source
11269 (origin
11270 (method url-fetch)
11271 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
11272 "v" version ".tar.gz"))
11273 (sha256
11274 (base32
11275 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
11276 (file-name (string-append name "-" version ".tar.gz"))))
11277 (build-system emacs-build-system)
11278 (propagated-inputs
11279 `(("emacs-slime" ,emacs-slime)
11280 ("emacs-company" ,emacs-company)))
11281 (home-page "https://company-mode.github.io")
11282 (synopsis "SLIME completion backend for @code{company-mode}")
11283 (description
11284 "This is a backend implementation for the completion package
11285 @code{company-mode} which supports the normal and the fuzzy completion
11286 modes of SLIME.")
11287 (license license:gpl3+)))
11288
11289 (define-public emacs-sml-mode
11290 (package
11291 (name "emacs-sml-mode")
11292 (version "6.8")
11293 (source
11294 (origin
11295 (method url-fetch)
11296 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
11297 version ".el"))
11298 (sha256
11299 (base32
11300 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
11301 (build-system emacs-build-system)
11302 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
11303 (synopsis "Major mode for editing (Standard) ML")
11304 (description "SML-MODE is a major Emacs mode for editing Standard ML.
11305 It provides syntax highlighting and automatic indentation and
11306 comes with sml-proc which allows interaction with an inferior SML
11307 interactive loop.")
11308 (license license:gpl3+)))
11309
11310 (define-public emacs-eros
11311 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
11312 (revision "1"))
11313 (package
11314 (name "emacs-eros")
11315 (version (string-append "0.0.1" "-" revision "."
11316 (string-take commit 7)))
11317 (source
11318 (origin
11319 (method git-fetch)
11320 (uri (git-reference
11321 (url "https://github.com/xiongtx/eros.git")
11322 (commit commit)))
11323 (file-name (string-append name "-" version "-checkout"))
11324 (sha256
11325 (base32
11326 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
11327 (build-system emacs-build-system)
11328 (home-page "https://github.com/xiongtx/eros")
11329 (synopsis "Evaluation result overlays")
11330 (description "@code{eros} provides evaluation result overlays.")
11331 (license license:gpl3+))))
11332
11333 (define-public emacs-stickyfunc-enhance
11334 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
11335 (revision "1"))
11336 (package
11337 (name "emacs-stickyfunc-enhance")
11338 (version "0.1")
11339 (source
11340 (origin
11341 (method git-fetch)
11342 (uri (git-reference
11343 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
11344 (commit commit)))
11345 (file-name (string-append name "-" version "-checkout"))
11346 (sha256
11347 (base32
11348 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
11349 (build-system emacs-build-system)
11350 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
11351 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
11352 (description
11353 "@code{semantic-stickyfunc-mode} shows the function point is currently
11354 in at the first line of the current buffer. This is useful when you have a
11355 very long function that spreads more than a screen, and you don't have to
11356 scroll up to read the function name and then scroll down to original position.")
11357 (license license:gpl3+))))
11358
11359 (define-public emacs-git-auto-commit-mode
11360 (package
11361 (name "emacs-git-auto-commit-mode")
11362 (version "4.4.0")
11363 (source
11364 (origin
11365 (method url-fetch)
11366 (uri (string-append
11367 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
11368 version ".tar.gz"))
11369 (file-name (string-append name "-" version ".tar.gz"))
11370 (sha256
11371 (base32
11372 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
11373 (build-system emacs-build-system)
11374 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
11375 (synopsis "Emacs Minor mode to automatically commit and push")
11376 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
11377 tries to commit changes to a file after every save.
11378
11379 When @code{gac-automatically-push-p} is non-nil, it also tries to push to
11380 the current upstream.")
11381 (license license:gpl3+)))
11382
11383 (define-public emacs-company-restclient
11384 (package
11385 (name "emacs-company-restclient")
11386 (version "0.1.0")
11387 (source
11388 (origin
11389 (method url-fetch)
11390 (uri (string-append
11391 "https://github.com/iquiw/company-restclient/archive/"
11392 "v" version ".tar.gz"))
11393 (file-name (string-append name "-" version ".tar.gz"))
11394 (sha256
11395 (base32
11396 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
11397 (build-system emacs-build-system)
11398 (propagated-inputs
11399 `(("emacs-company" ,emacs-company)
11400 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
11401 ("emacs-restclient" ,emacs-restclient)))
11402 (home-page "https://github.com/iquiw/company-restclient")
11403 (synopsis "Company-mode completion back-end for restclient-mode")
11404 (description "@code{company-mode} back-end for
11405 @code{restclient-mode}.
11406
11407 It provides auto-completion for HTTP methods and headers in
11408 @code{restclient-mode}. Completion source is given by
11409 @code{know-your-http-well}.")
11410 (license license:gpl3+)))
11411
11412 (define-public emacs-noflet
11413 (let ((version "20170629")
11414 (revision "1")
11415 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
11416 (package
11417 (name "emacs-noflet")
11418 (version (git-version version revision commit))
11419 (source
11420 (origin
11421 (method git-fetch)
11422 (uri (git-reference
11423 (url "https://github.com/nicferrier/emacs-noflet")
11424 (commit commit)))
11425 (file-name (string-append name "-" version "-checkout"))
11426 (sha256
11427 (base32
11428 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
11429 (build-system emacs-build-system)
11430 (arguments
11431 `(#:phases
11432 (modify-phases %standard-phases
11433 (add-after 'unpack 'require-dash
11434 ;; noflet.el uses -map from dash, but (require 'dash) is
11435 ;; missing. So, add it.
11436 (lambda _
11437 (substitute* "noflet.el"
11438 ((";;; Code:") ";;; Code:\n(require 'dash)"))
11439 #t)))))
11440 (propagated-inputs
11441 `(("emacs-dash" ,emacs-dash)))
11442 (home-page "https://github.com/nicferrier/emacs-noflet")
11443 (synopsis "Locally override functions")
11444 (description "@code{emacs-noflet} let's you locally override functions,
11445 in the manner of @command{flet}, but with access to the original function
11446 through the symbol: @command{this-fn}.")
11447 (license license:gpl3+))))
11448
11449 (define-public emacs-dumb-jump
11450 (package
11451 (name "emacs-dumb-jump")
11452 (version "0.5.2")
11453 (source
11454 (origin
11455 (method url-fetch)
11456 (uri (string-append
11457 "https://github.com/jacktasia/dumb-jump/archive/v"
11458 version ".tar.gz"))
11459 (file-name (string-append name "-" version ".tar.gz"))
11460 (sha256
11461 (base32
11462 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
11463 (build-system emacs-build-system)
11464 (arguments
11465 `(#:tests? #f ; FIXME: Tests freeze when run.
11466 #:test-command '("ert-runner")
11467 #:phases
11468 (modify-phases %standard-phases
11469 (add-after 'unpack 'set-shell
11470 (lambda _
11471 ;; Setting the SHELL environment variable is required for the
11472 ;; tests to find sh.
11473 (setenv "SHELL" (which "sh"))
11474 #t)))))
11475 (native-inputs
11476 `(("emacs-el-mock" ,emacs-el-mock)
11477 ("emacs-noflet" ,emacs-noflet)
11478 ("emacs-undercover" ,emacs-undercover)
11479 ("ert-runner" ,emacs-ert-runner)))
11480 (propagated-inputs
11481 `(("emacs-f" ,emacs-f)
11482 ("emacs-popup" ,emacs-popup)))
11483 (home-page "https://github.com/jacktasia/dumb-jump")
11484 (synopsis "Jump to definition for multiple languages without configuration")
11485 (description "Dumb Jump is an Emacs \"jump to definition\" package with
11486 support for multiple programming languages that favors \"just working\" over
11487 speed or accuracy. This means minimal --- and ideally zero --- configuration
11488 with absolutely no stored indexes (tags) or persistent background processes.
11489 Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
11490 @command{rg} installed.")
11491 (license license:gpl3+)))
11492
11493 (define-public emacs-dts-mode
11494 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
11495 (revision "1"))
11496 (package
11497 (name "emacs-dts-mode")
11498 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
11499 (source
11500 (origin
11501 (method git-fetch)
11502 (uri (git-reference
11503 (url "https://github.com/bgamari/dts-mode.git")
11504 (commit commit)))
11505 (file-name (string-append name "-" version "-checkout"))
11506 (sha256
11507 (base32
11508 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
11509 (build-system emacs-build-system)
11510 (home-page "https://github.com/bgamari/dts-mode.git")
11511 (synopsis "Emacs minor mode for editing device tree files")
11512 (description
11513 "This package provides an Emacs minor mode for highlighting
11514 device tree files.")
11515 (license license:gpl3+))))
11516
11517 (define-public emacs-daemons
11518 (package
11519 (name "emacs-daemons")
11520 (version "2.0.0")
11521 (source
11522 (origin
11523 (method git-fetch)
11524 (uri (git-reference
11525 (url "https://github.com/cbowdon/daemons.el")
11526 (commit version)))
11527 (file-name (string-append name "-" version "-checkout"))
11528 (sha256
11529 (base32
11530 "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4"))))
11531 (build-system emacs-build-system)
11532 (home-page "https://github.com/cbowdon/daemons.el")
11533 (synopsis "Emacs UI for managing init system services")
11534 (description
11535 "This is an Emacs mode to give you a UI for managing init system
11536 daemons (services) for those getting tired of typing out @code{sudo service
11537 my_thing reload} all the time. It offers a consistent UI over different init
11538 systems.")
11539 (license license:gpl3+)))
11540
11541 (define-public emacs-isearch+
11542 (let ((commit "95e49af9dbf0254e095a11f115e101b52659520a")
11543 (revision "1"))
11544 (package
11545 (name "emacs-isearch+")
11546 (version (git-version "0" revision commit))
11547 (source
11548 (origin
11549 (method git-fetch)
11550 (uri (git-reference
11551 (url "https://github.com/emacsmirror/isearch-plus.git")
11552 (commit commit)))
11553 (file-name (git-file-name name version))
11554 (sha256
11555 (base32
11556 "0xhd9zgknf4lvzyf4apirpd7spb1hbpzkvys00a7pkmd0vvahk0v"))))
11557 (build-system emacs-build-system)
11558 (home-page "https://www.emacswiki.org/emacs/isearch+.el")
11559 (synopsis "Extensions to @code{isearch.el}")
11560 (description "This package extends @code{isearch} with advice, dynamic
11561 filters, highlighting of regexp group levels, and more.")
11562 (license license:gpl2+))))
11563
11564 (define-public emacs-eshell-bookmark
11565 (package
11566 (name "emacs-eshell-bookmark")
11567 (version "2.0.0")
11568 (source
11569 (origin
11570 (method git-fetch)
11571 (uri (git-reference
11572 (url "https://github.com/Fuco1/eshell-bookmark")
11573 (commit version)))
11574 (file-name (git-file-name name version))
11575 (sha256
11576 (base32
11577 "14dmsnixf9vqdhsixw693sml0fn80zcf0b37z049fb40cmppqxdw"))))
11578 (build-system emacs-build-system)
11579 (home-page "https://github.com/Fuco1/eshell-bookmark")
11580 (synopsis "Provide @file{bookmark.el} integration for @code{eshell}")
11581 (description
11582 "This package allows for bookmarking @code{eshell} buffers. Upon
11583 visiting the bookmark, a new @code{eshell} session will be opened in the
11584 appropriate directory if no @code{eshell} session is active.")
11585 (license license:gpl3+)))
11586
11587 (define-public emacs-eshell-z
11588 (package
11589 (name "emacs-eshell-z")
11590 (version "0.3.2")
11591 (source
11592 (origin
11593 (method git-fetch)
11594 (uri (git-reference
11595 (url "https://github.com/xuchunyang/eshell-z")
11596 (commit (string-append "v" version))))
11597 (file-name (git-file-name name version))
11598 (sha256
11599 (base32
11600 "1aac4m814jgxwpz7lbyx5r4z5dmawp4sk7pwbx0zqpnbcsaq5wwc"))))
11601 (build-system emacs-build-system)
11602 (home-page "https://github.com/xuchunyang/eshell-z")
11603 (synopsis "Quick navigation to frequently visited directories")
11604 (description
11605 "This package is a port of @code{z}, and keeps track of visited directories
11606 and commands invoked within them in order to enable navigation via input of
11607 matching regexps.")
11608 (license license:gpl3+)))
11609
11610 (define-public emacs-esh-autosuggest
11611 (package
11612 (name "emacs-esh-autosuggest")
11613 (version "2.0.0")
11614 (source
11615 (origin
11616 (method git-fetch)
11617 (uri (git-reference
11618 (url "https://github.com/dieggsy/esh-autosuggest")
11619 (commit version)))
11620 (file-name (string-append name "-" version "-checkout"))
11621 (sha256
11622 (base32
11623 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
11624 (build-system emacs-build-system)
11625 (propagated-inputs `(("emacs-company" ,emacs-company)))
11626 (home-page "https://github.com/dieggsy/esh-autosuggest")
11627 (synopsis "Fish-like autosuggestions in Eshell")
11628 (description
11629 "This package assumes you use something other than company for eshell
11630 completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
11631 @code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
11632 for history autosuggestions.
11633
11634 Unless you're using @code{use-package}'s hook keyword, you can enable the
11635 autosuggestions with:
11636 @code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
11637 (license license:gpl3+)))
11638
11639 (define-public emacs-desktop-environment
11640 (let ((commit "a9eba14f2b5b8070f78dca839ca8259736e346a6"))
11641 (package
11642 (name "emacs-desktop-environment")
11643 (version (git-version "0.2.0" "1" commit))
11644 (source
11645 (origin
11646 (method git-fetch)
11647 (uri (git-reference
11648 (url "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11649 (commit commit)))
11650 (file-name (string-append name "-" version "-checkout"))
11651 (sha256
11652 (base32
11653 "0x73x5hy7w55jrzy3xvqhk90rrsznmxjqvsvwhh21qznv5w269xz"))))
11654 (build-system emacs-build-system)
11655 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11656 (synopsis "Control your GNU/Linux desktop environment from Emacs")
11657 (description
11658 "This package helps you control your GNU/Linux desktop from Emacs.
11659 With @code{desktop-environment}, you can control the brightness and volume as
11660 well as take screenshots and lock your screen. The package depends on the
11661 availability of shell commands to do the hard work for us. These commands can
11662 be changed by customizing the appropriate variables.")
11663 (license license:gpl3+))))
11664
11665 (define-public emacs-org-caldav
11666 (package
11667 (name "emacs-org-caldav")
11668 (version "20180403")
11669 (source
11670 (origin
11671 (method url-fetch)
11672 (uri (string-append
11673 "https://github.com/dengste/org-caldav/raw/"
11674 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
11675 "/org-caldav.el"))
11676 (sha256
11677 (base32
11678 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
11679 (build-system emacs-build-system)
11680 (propagated-inputs `(("emacs-org" ,emacs-org)))
11681 (home-page "https://github.com/dengste/org-caldav")
11682 (synopsis
11683 "Sync Org files with external calendars via the CalDAV protocol")
11684 (description
11685 "Synchronize between events in Org-mode files and a CalDAV calendar.
11686 This code is still alpha.")
11687 (license license:gpl3+)))
11688
11689 (define-public emacs-zotxt
11690 (package
11691 (name "emacs-zotxt")
11692 (version "20180518")
11693 (source
11694 (origin
11695 (method url-fetch)
11696 (uri (string-append
11697 "https://github.com/egh/zotxt-emacs/archive/"
11698 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
11699 ".tar.gz"))
11700 (sha256
11701 (base32
11702 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
11703 (build-system emacs-build-system)
11704 (propagated-inputs
11705 `(("emacs-deferred" ,emacs-deferred)
11706 ("emacs-request" ,emacs-request)))
11707 (home-page "https://github.com/egh/zotxt-emacs")
11708 (synopsis "Integrate Emacs with Zotero")
11709 (description "This package provides two integration features between Emacs
11710 and the Zotero research assistant: Insertion of links to Zotero items into an
11711 Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
11712 (license license:gpl3+)))
11713
11714 (define-public emacs-evil-ediff
11715 ;; Evil-Ediff is included in Evil Collection from 20180617.
11716 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
11717
11718 (define-public emacs-evil-magit
11719 (let ((commit "e2fec5877994c0c19f0c25fa01f3d22cb0ab38ba"))
11720 (package
11721 (name "emacs-evil-magit")
11722 (version (git-version "0.4.2" "2" commit))
11723 (source
11724 (origin
11725 (method git-fetch)
11726 (uri (git-reference
11727 (url "https://github.com/emacs-evil/evil-magit")
11728 (commit commit)))
11729 (file-name (string-append name "-" version "-checkout"))
11730 (sha256
11731 (base32
11732 "134v7s03jvbhm70mavwab85r09i68g2a5bvriirh0chz1av2y16v"))))
11733 (build-system emacs-build-system)
11734 (propagated-inputs
11735 `(("emacs-evil" ,emacs-evil)
11736 ("magit" ,emacs-magit)))
11737 (home-page
11738 "https://github.com/emacs-evil/evil-magit")
11739 (synopsis "Evil-based key bindings for Magit")
11740 (description
11741 "This Emacs library configures Magit and Evil to play well with each other.
11742 For some background see @url{https://github.com/magit/evil-magit/issues/1}.
11743 See the README at @url{https://github.com/justbur/evil-magit} for a table
11744 describing the key binding changes.")
11745 (license license:gpl3+))))
11746
11747 (define-public emacs-evil-mu4e
11748 ;; Evil-mu4e is included in Evil Collection from 20180617.
11749 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
11750
11751 (define-public emacs-evil-multiedit
11752 (package
11753 (name "emacs-evil-multiedit")
11754 (version "1.3.9")
11755 (source
11756 (origin
11757 (method git-fetch)
11758 (uri (git-reference
11759 (url "https://github.com/hlissner/evil-multiedit")
11760 (commit (string-append "v" version))))
11761 (file-name (string-append name "-" version "-checkout"))
11762 (sha256
11763 (base32
11764 "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"))))
11765 (build-system emacs-build-system)
11766 (propagated-inputs
11767 `(("emacs-evil" ,emacs-evil)
11768 ("emacs-iedit" ,emacs-iedit)))
11769 (home-page
11770 "https://github.com/hlissner/evil-multiedit")
11771 (synopsis "Multiple cursors for Evil mode")
11772 (description
11773 "This plugin was an answer to the lack of proper multiple cursor support
11774 in Emacs+Evil. It allows you to select and edit matches interactively,
11775 integrating @code{iedit-mode} into Evil mode with an attempt at sensible
11776 defaults.")
11777 (license license:gpl3+)))
11778
11779 (define-public emacs-evil-org
11780 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
11781 (package
11782 (name "emacs-evil-org")
11783 (version (git-version "0.1.1" "1" commit))
11784 (source
11785 (origin
11786 (method git-fetch)
11787 (uri (git-reference
11788 (url "https://github.com/Somelauw/evil-org-mode")
11789 (commit commit)))
11790 (file-name (string-append name "-" version "-checkout"))
11791 (sha256
11792 (base32
11793 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
11794 (build-system emacs-build-system)
11795 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
11796 (home-page
11797 "https://github.com/Somelauw/evil-org-mode")
11798 (synopsis "Evil keybindings for Org mode")
11799 (description
11800 "This package adds supplemental Evil mode key-bindings to Emacs
11801 Org-mode. It features:
11802 @itemize
11803 @item normal, visual and insert mode bindings;
11804 @item key bindings organised in key themes;
11805 @item operators like > and < to work on headings;
11806 @item text objects;
11807 @item table support;
11808 @item calendar (date selection) support;
11809 @item agenda support.
11810 @end itemize\n")
11811 (license license:gpl3+))))
11812
11813 (define-public emacs-debpaste
11814 (package
11815 (name "emacs-debpaste")
11816 (version "0.1.5")
11817 (home-page "https://github.com/alezost/debpaste.el")
11818 (source
11819 (origin
11820 (method git-fetch)
11821 (uri (git-reference (url home-page)
11822 (commit (string-append "v" version))))
11823 (file-name (string-append name "-" version ".tar.gz"))
11824 (sha256
11825 (base32
11826 "1wi70r56pd5z0x4dp4m58p9asq03j74kdm4fi9vai83vsl2z9amq"))))
11827 (build-system emacs-build-system)
11828 (propagated-inputs
11829 `(("emacs-xml-rpc" ,emacs-xml-rpc)))
11830 (synopsis "Manipulate pastes from the Debian Pastezone")
11831 (description "Debpaste is an Emacs interface for the Debian Pastezone,
11832 allowing you to receive, post, and delete pastes. It communicates with the
11833 server using XML-RPC.")
11834 (license license:gpl3+)))
11835
11836 (define-public emacs-xml-rpc
11837 (let ((commit "8f624f8b964e9145acb504e4457c9510e87dd93c")
11838 (revision "1"))
11839 (package
11840 (name "emacs-xml-rpc")
11841 (version (git-version "1.6.12" revision commit))
11842 (source
11843 (origin
11844 (method git-fetch)
11845 (uri (git-reference
11846 (url "https://github.com/hexmode/xml-rpc-el")
11847 (commit commit)))
11848 (file-name (git-file-name name version))
11849 (sha256
11850 (base32
11851 "0xa54z52rsfl3n0xgmbycj4zazp8ksgdwcq56swzs6wp72zlalmj"))))
11852 (build-system emacs-build-system)
11853 (home-page "https://github.com/hexmode/xml-rpc-el")
11854 (synopsis "XML-RPC client for Emacs")
11855 (description "This package provides an XML-RPC client for Emacs capable
11856 of both synchronous and asynchronous method calls using the @code{url}
11857 package's async retrieval functionality. @file{xml-rpc.el} represents XML-RPC
11858 datatypes as Lisp values, automatically converting to and from the XML
11859 datastructures as needed, both for method parameters and return values, making
11860 using XML-RPC methods fairly transparent to the Lisp code.")
11861 (license license:gpl3+))))
11862
11863 (define-public emacs-fish-completion
11864 (package
11865 (name "emacs-fish-completion")
11866 (version "1.0")
11867 (source
11868 (origin
11869 (method url-fetch)
11870 (uri (string-append
11871 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
11872 "archive.tar.gz?ref="
11873 version))
11874 (sha256
11875 (base32
11876 "1hpma1c5j50ja03ibr7h1xmyv7k8j3rbvqivad47kwqhlsgw0jk0"))))
11877 (build-system emacs-build-system)
11878 (inputs `(("fish" ,fish)))
11879 (arguments
11880 `(#:phases
11881 (modify-phases %standard-phases
11882 (add-after 'unpack 'configure
11883 (lambda* (#:key inputs outputs #:allow-other-keys)
11884 (let ((fish (assoc-ref inputs "fish")))
11885 ;; Specify the absolute file names of the various
11886 ;; programs so that everything works out-of-the-box.
11887 (emacs-substitute-variables
11888 "fish-completion.el"
11889 ("fish-completion-command"
11890 (string-append fish "/bin/fish")))))))))
11891 (home-page
11892 "https://gitlab.com/Ambrevar/emacs-fish-completion")
11893 (synopsis "Fish completion for Emacs pcomplete")
11894 (description
11895 "This package provides completion for the Fish shell to pcomplete (used
11896 by shell and Eshell). You can set it up globally with:
11897
11898 @example
11899 (when (and (executable-find \"fish\")
11900 (require 'fish-completion nil t))
11901 (global-fish-completion-mode))
11902 @end example
11903
11904 Alternatively, you can call the @code{fish-completion-mode} manually or in
11905 shell/Eshell mode hook.
11906
11907 The package @code{emacs-bash-completion} is an optional dependency: if available,
11908 @code{fish-completion-complete} can be configured to fall back on bash to further
11909 try completing. See @code{fish-completion-fallback-on-bash-p}.")
11910 (license license:gpl3+)))
11911
11912 (define-public emacs-gif-screencast
11913 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
11914 (package
11915 (name "emacs-gif-screencast")
11916 (version (git-version "20180616" "1" commit))
11917 (source
11918 (origin
11919 (method url-fetch)
11920 (uri (string-append
11921 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
11922 "repository/archive.tar.gz?ref="
11923 commit))
11924 (sha256
11925 (base32
11926 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
11927 (build-system emacs-build-system)
11928 (inputs
11929 `(("scrot" ,scrot)
11930 ("imagemagick" ,imagemagick)
11931 ("gifsicle" ,gifsicle)))
11932 (arguments
11933 `(#:phases
11934 (modify-phases %standard-phases
11935 (add-after 'unpack 'configure
11936 (lambda* (#:key inputs outputs #:allow-other-keys)
11937 (let ((scrot (assoc-ref inputs "scrot"))
11938 (imagemagick (assoc-ref inputs "imagemagick"))
11939 (gifsicle (assoc-ref inputs "gifsicle")))
11940 ;; Specify the absolute file names of the various
11941 ;; programs so that everything works out-of-the-box.
11942 (emacs-substitute-variables
11943 "gif-screencast.el"
11944 ("gif-screencast-program"
11945 (string-append scrot "/bin/scrot"))
11946 ("gif-screencast-convert-program"
11947 (string-append imagemagick "/bin/convert"))
11948 ("gif-screencast-cropping-program"
11949 (string-append imagemagick "/bin/mogrify"))
11950 ("gif-screencast-optimize-program"
11951 (string-append imagemagick "/bin/gifsicle")))))))))
11952 (home-page
11953 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
11954 (synopsis "One-frame-per-action GIF recording")
11955 (description
11956 "Call @code{gif-screencast} to start a recording.
11957 A screenshot is taken for every user action. Call
11958 @code{gif-screencast-stop} (<f9> by default) to finish recording and create
11959 the GIF result.")
11960 (license license:gpl3+))))
11961
11962 (define-public emacs-google-translate
11963 (package
11964 (name "emacs-google-translate")
11965 (version "0.11.16")
11966 (source
11967 (origin
11968 (method url-fetch)
11969 (uri (string-append "https://github.com/atykhonov/google-translate/"
11970 "archive/v" version ".tar.gz"))
11971 (file-name (string-append name "-" version ".tar.gz"))
11972 (sha256
11973 (base32
11974 "01n9spj1d0gjfj39x526rl3m9c28wnx9afipmf5s8y77cx3mfwhl"))))
11975 (build-system emacs-build-system)
11976 (home-page "https://github.com/atykhonov/google-translate")
11977 (synopsis "Emacs interface to Google Translate")
11978 (description
11979 "This packages provides an Emacs interface to the Google Translate
11980 on-line service.")
11981 (license license:gpl3+)))
11982
11983 (define-public emacs-helm-company
11984 (let ((commit "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f"))
11985 (package
11986 (name "emacs-helm-company")
11987 (version (git-version "0.2.3" "1" commit))
11988 (source
11989 (origin
11990 (method git-fetch)
11991 (uri (git-reference
11992 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11993 (commit commit)))
11994 (file-name (string-append name "-" version "-checkout"))
11995 (sha256
11996 (base32
11997 "1ciirsanhajdqm5iwl8k9ywf4jha1wdv4sc4d9kslyrfr9zn4q6k"))))
11998 (build-system emacs-build-system)
11999 (propagated-inputs
12000 `(("emacs-helm" ,emacs-helm)
12001 ("emacs-company" ,emacs-company)))
12002 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
12003 (synopsis "Helm interface for company-mode")
12004 (description
12005 "This is a Helm interface to company-mode, a text completion
12006 framework.")
12007 (license license:gpl3+))))
12008
12009 (define-public emacs-helm-descbinds
12010 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
12011 (package
12012 (name "emacs-helm-descbinds")
12013 (version (git-version "1.13" "1" commit))
12014 (source
12015 (origin
12016 (method git-fetch)
12017 (uri (git-reference
12018 (url "https://github.com/emacs-helm/helm-descbinds")
12019 (commit commit)))
12020 (file-name (string-append name "-" version "-checkout"))
12021 (sha256
12022 (base32
12023 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
12024 (build-system emacs-build-system)
12025 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
12026 (home-page "https://github.com/emacs-helm/helm-descbinds")
12027 (synopsis "Convenient @code{describe-bindings} with Helm")
12028 (description
12029 "This package is a replacement of @code{describe-bindings} for Helm.
12030 @code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
12031 type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
12032 @code{helm-descbinds}. The bindings are presented in a similar way as
12033 @code{describe-bindings} does, but you can use completion to find the command
12034 you searched for and execute it, or view its documentation.")
12035 (license license:gpl3+))))
12036
12037 (define-public emacs-helm-emms
12038 (let ((commit "b785cb845a98a643eba9d5d53c9c0b4e6810a3cd"))
12039 (package
12040 (name "emacs-helm-emms")
12041 (version (git-version "1.3" "2" commit))
12042 (source
12043 (origin
12044 (method git-fetch)
12045 (uri (git-reference
12046 (url "https://github.com/emacs-helm/helm-emms")
12047 (commit commit)))
12048 (file-name (string-append name "-" version "-checkout"))
12049 (sha256
12050 (base32
12051 "1595r09y3rmwd46nnhvjja3hb8j2ila295ijxv61cg52ws4wginh"))))
12052 (build-system emacs-build-system)
12053 (propagated-inputs
12054 `(("emacs-helm" ,emacs-helm)
12055 ("emacs-emms" ,emacs-emms)))
12056 (home-page
12057 "https://github.com/emacs-helm/helm-emms")
12058 (synopsis "Emms for Helm")
12059 (description "Helm interface for Emms to browse all tracks and all folders
12060 from @code{emms-source-file-default-directory}.")
12061 (license license:gpl3+))))
12062
12063 (define-public emacs-helm-exwm
12064 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
12065 (package
12066 (name "emacs-helm-exwm")
12067 (version (git-version "20180703" "2" commit))
12068 (source
12069 (origin
12070 (method url-fetch)
12071 (uri (string-append
12072 "https://github.com/emacs-helm/helm-exwm/archive/"
12073 commit
12074 ".tar.gz"))
12075 (sha256
12076 (base32
12077 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
12078 (build-system emacs-build-system)
12079 (propagated-inputs
12080 `(("emacs-helm" ,emacs-helm)
12081 ("emacs-exwm" ,emacs-exwm)))
12082 (home-page
12083 "https://github.com/emacs-helm/helm-exwm")
12084 (synopsis "Helm for EXWM buffers")
12085 (description
12086 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
12087 @code{helm-exwm-switch} is a convenience X application launcher using Helm to
12088 switch between the various windows of one or several specific applications.
12089 See @code{helm-exwm-switch-browser} for an example.")
12090 (license license:gpl3+))))
12091
12092 (define-public emacs-helm-flycheck
12093 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
12094 (package
12095 (name "emacs-helm-flycheck")
12096 (version (git-version "0.4" "1" commit))
12097 (source
12098 (origin
12099 (method git-fetch)
12100 (uri (git-reference
12101 (url "https://github.com/yasuyk/helm-flycheck")
12102 (commit commit)))
12103 (file-name (string-append name "-" version "-checkout"))
12104 (sha256
12105 (base32
12106 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
12107 (build-system emacs-build-system)
12108 (propagated-inputs
12109 `(("emacs-dash" ,emacs-dash)
12110 ("emacs-flycheck" ,emacs-flycheck)
12111 ("emacs-helm" ,emacs-helm)))
12112 (home-page "https://github.com/yasuyk/helm-flycheck")
12113 (synopsis "Show Flycheck errors with Helm")
12114 (description
12115 "This integrates Flycheck with Helm.")
12116 (license license:gpl3+))))
12117
12118 (define-public emacs-helm-ls-git
12119 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
12120 (package
12121 (name "emacs-helm-ls-git")
12122 (version (git-version "1.9.1" "1" commit))
12123 (source
12124 (origin
12125 (method git-fetch)
12126 (uri (git-reference
12127 (url "https://github.com/emacs-helm/helm-ls-git")
12128 (commit commit)))
12129 (file-name (string-append name "-" version "-checkout"))
12130 (sha256
12131 (base32
12132 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
12133 (build-system emacs-build-system)
12134 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
12135 (home-page "https://github.com/emacs-helm/helm-ls-git")
12136 (synopsis "Helm interface for listing the files in a Git repository")
12137 (description
12138 "This package provides a Helm interface for Git files.
12139 @itemize
12140 @item Display the open buffers in project.
12141 @item Display a status source showing state of project (modified files etc.).
12142 @item Display a list of all files in project under git control.
12143 @item Quickly look at diffs of modified files.
12144 @item Allow switching to @code{git status} with your preferred frontend
12145 (vc-dir, Magit,etc.).
12146 @item Full integration of git-grep, also allow usage of @code{helm-grep} (you
12147 can use ack-grep instead of grep).
12148 @item Integrate usage of gid from id-utils.
12149 @item Full integration with @code{helm-find-files}, allow you to browse
12150 projects unrelated to current-buffer.
12151 @item In addition, all actions of type files and buffers are provided.
12152 @end itemize\n")
12153 (license license:gpl3+))))
12154
12155 (define-public emacs-helm-mu
12156 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
12157 (package
12158 (name "emacs-helm-mu")
12159 (version (git-version "20180513" "1" commit))
12160 (source
12161 (origin
12162 (method url-fetch)
12163 (uri (string-append
12164 "https://github.com/emacs-helm/helm-mu/archive/"
12165 commit
12166 ".tar.gz"))
12167 (sha256
12168 (base32
12169 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
12170 (build-system emacs-build-system)
12171 (propagated-inputs
12172 `(("emacs-helm" ,emacs-helm)
12173 ("mu" ,mu)))
12174 (home-page
12175 "https://github.com/emacs-helm/helm-mu")
12176 (synopsis
12177 "Helm sources for searching emails and contacts")
12178 (description
12179 "Helm sources for searching emails and contacts using @code{mu} and
12180 @code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
12181 Emacs build on top of mu. Mu is highly efficient making it possible to get
12182 instant results even for huge maildirs. It also provides search operators,
12183 e.g: @code{from:Peter to:Anne flag:attach search term}.")
12184 (license license:gpl3+))))
12185
12186 (define-public emacs-helm-pass
12187 (package
12188 (name "emacs-helm-pass")
12189 (version "0.3")
12190 (source
12191 (origin
12192 (method git-fetch)
12193 (uri (git-reference
12194 (url "https://github.com/emacs-helm/helm-pass")
12195 (commit version)))
12196 (sha256
12197 (base32
12198 "0vglaknmir3yv4iwibwn8r40ran8d04gcyp99hx73ldmf3zqpnxv"))))
12199 (build-system emacs-build-system)
12200 (propagated-inputs
12201 `(("emacs-helm" ,emacs-helm)
12202 ("emacs-password-store" ,emacs-password-store)))
12203 (home-page "https://github.com/emacs-helm/helm-pass")
12204 (synopsis "Helm interface to pass, the standard Unix password manager")
12205 (description
12206 "Users of @code{helm-pass} may also be interested in functionality
12207 provided by other Emacs packages dealing with pass:
12208 @itemize
12209 @item @code{emacs-password-store}, which @code{helm-pass} relies on.
12210 @item @code{emacs-pass}, a major mode for @code{pass}.
12211 @item @code{auth-source-pass.el}: integration of Emacs' auth-source with
12212 @code{pass}, included in Emacs 26+).
12213 @end itemize\n")
12214 (license license:gpl3+)))
12215
12216 (define-public emacs-image+
12217 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
12218 (package
12219 (name "emacs-image+")
12220 (version (git-version "0.6.2" "1" commit))
12221 (source
12222 (origin
12223 (method git-fetch)
12224 (uri (git-reference
12225 (url "https://github.com/mhayashi1120/Emacs-imagex")
12226 (commit commit)))
12227 (file-name (string-append name "-" version "-checkout"))
12228 (sha256
12229 (base32
12230 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
12231 (build-system emacs-build-system)
12232 (inputs `(("imagemagick" ,imagemagick)))
12233 (arguments
12234 `(#:phases
12235 (modify-phases %standard-phases
12236 (add-after 'unpack 'configure
12237 (lambda* (#:key inputs outputs #:allow-other-keys)
12238 (let ((imagemagick (assoc-ref inputs "imagemagick")))
12239 ;; Specify the absolute file names of the various
12240 ;; programs so that everything works out-of-the-box.
12241 (chmod "image+.el" #o666)
12242 (emacs-substitute-variables
12243 "image+.el"
12244 ("imagex-convert-command"
12245 (string-append imagemagick "/bin/convert"))
12246 ("imagex-identify-command"
12247 (string-append imagemagick "/bin/identify")))))))))
12248 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
12249 (synopsis "Image manipulation extensions for Emacs")
12250 (description
12251 "Image+ provides keybindings allowing you to zoom in or zoom out of an
12252 image, rotate it, save modified images, and more.")
12253 (license license:gpl3+))))
12254
12255 (define-public emacs-package-lint
12256 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
12257 (package
12258 (name "emacs-package-lint")
12259 (version (git-version "0.5" "1" commit))
12260 (source
12261 (origin
12262 (method git-fetch)
12263 (uri (git-reference
12264 (url "https://github.com/purcell/package-lint")
12265 (commit commit)))
12266 (file-name (string-append name "-" version "-checkout"))
12267 (sha256
12268 (base32
12269 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
12270 (build-system emacs-build-system)
12271 (home-page "https://github.com/purcell/package-lint")
12272 (synopsis "Linting library for elisp package authors")
12273 (description
12274 "This provides a list of issues with the Emacs package metadata of a file,
12275 e.g. the package dependencies it requires. See function
12276 @code{package-lint-buffer}. Checks will currently be enabled only if a
12277 \"Package-Requires:\" or \"Package-Version:\" header is present in the
12278 file.")
12279 (license license:gpl3+))))
12280
12281 (define-public emacs-picpocket
12282 (let ((version "40")
12283 (commit "6fd88b8711c4370662c0f9c462170187d092a046"))
12284 (package
12285 (name "emacs-picpocket")
12286 (version version)
12287 (source
12288 (origin
12289 (method git-fetch)
12290 (uri (git-reference
12291 (url "https://github.com/johanclaesson/picpocket")
12292 (commit commit)))
12293 (file-name (git-file-name name version))
12294 (sha256
12295 (base32 "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw"))))
12296 (build-system emacs-build-system)
12297 (arguments ; needed for running tests
12298 `(#:tests? #t
12299 #:emacs ,emacs
12300 #:test-command '("emacs" "--batch"
12301 "-l" "picpocket-test.el"
12302 "-f" "ert-run-tests-batch-and-exit")))
12303 (home-page "https://github.com/johanclaesson/picpocket")
12304 (synopsis "Image viewer for Emacs")
12305 (description
12306 "Picpocket is an image viewer for GNU Emacs. It has commands for:
12307
12308 @itemize
12309 @item File operations on the picture files (delete, move, copy, hardlink).
12310 @item Scale and rotate the picture.
12311 @item Associate pictures with tags which are saved to disk.
12312 @item Filter pictures according to tags.
12313 @item Customizing keystrokes for quick tagging and file operations.
12314 @item Undo and browse history of undoable commands.
12315 @end itemize")
12316 (license license:gpl3+))))
12317
12318 (define-public emacs-wgrep-helm
12319 ;; `emacs-wgrep-helm' was mistakenly added.
12320 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
12321
12322 (define-public emacs-mu4e-conversation
12323 (let ((commit "e7d4bfcb0d392b0aed1f705ccac2419a168d1f5e"))
12324 (package
12325 (name "emacs-mu4e-conversation")
12326 (version (git-version "20181126" "4" commit))
12327 (source
12328 (origin
12329 (method url-fetch)
12330 (uri (string-append
12331 "https://gitlab.com/Ambrevar/mu4e-conversation/"
12332 "repository/archive.tar.gz?ref="
12333 commit))
12334 (file-name (string-append name "-" version "-checkout"))
12335 (sha256
12336 (base32
12337 "0b52hf9rm2afba9pvgink9bwqm705sk0y5qikp0ff5sk53wqvy29"))))
12338 (build-system emacs-build-system)
12339 (propagated-inputs
12340 `(("mu" ,mu)))
12341 (home-page
12342 "https://gitlab.com/Ambrevar/mu4e-conversation")
12343 (synopsis
12344 "Show a complete thread in a single buffer")
12345 (description
12346 "This package offers an alternate view to mu4e's e-mail display. It
12347 shows all e-mails of a thread in a single view, where each correspondent has
12348 their own face. Threads can be displayed linearly (in which case e-mails are
12349 displayed in chronological order) or as an Org document where the node tree
12350 maps the thread tree.")
12351 (license license:gpl3+))))
12352
12353 (define-public emacs-pinentry
12354 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
12355 (revision "1"))
12356 (package
12357 (name "emacs-pinentry")
12358 (version (git-version "0.1" revision commit))
12359 (source
12360 (origin
12361 (method url-fetch)
12362 (uri (string-append
12363 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
12364 "/packages/pinentry/pinentry.el?id=" commit))
12365 (file-name (string-append "pinentry.el"))
12366 (sha256
12367 (base32
12368 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
12369 (build-system emacs-build-system)
12370 (propagated-inputs
12371 `(("gnupg" ,gnupg)))
12372 (home-page "https://elpa.gnu.org/packages/pinentry.html")
12373 (synopsis "GnuPG Pinentry server implementation")
12374 (description
12375 "This package allows GnuPG passphrase to be prompted through the
12376 minibuffer instead of graphical dialog.
12377
12378 To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
12379 reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
12380 server with @code{M-x pinentry-start}.")
12381 (license license:gpl3+))))
12382
12383 (define-public emacs-org-brain
12384 (package
12385 (name "emacs-org-brain")
12386 (version "0.5")
12387 (source
12388 (origin
12389 (method git-fetch)
12390 (uri (git-reference
12391 (url "https://github.com/Kungsgeten/org-brain.git")
12392 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
12393 (file-name (git-file-name name version))
12394 (sha256
12395 (base32
12396 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
12397 (build-system emacs-build-system)
12398 (home-page "https://github.com/Kungsgeten/org-brain")
12399 (synopsis "Org-mode wiki and concept-mapping for Emacs")
12400 (description "@code{emacs-org-brain} implements a variant of concept
12401 mapping in Emacs, using @code{org-mode}. An org-brain is a network of
12402 org-mode entries, where each entry is a file or a headline, and you can get a
12403 visual overview of the relationships between the entries: parents, children,
12404 siblings and friends. This visual overview can also be used to browse your
12405 entries. You can think of entries as nodes in a mind map, or pages in a
12406 wiki.")
12407 (license license:expat)))
12408
12409 (define-public emacs-recent-addresses
12410 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
12411 (revision "1"))
12412 (package
12413 (name "emacs-recent-addresses")
12414 (home-page "http://nschum.de/src/emacs/recent-addresses/")
12415 (version (git-version "0.1" revision commit))
12416 (source (origin
12417 (method git-fetch)
12418 (uri (git-reference
12419 ;; Note: Use a branch that works with Helm. Submitted
12420 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
12421 (url "https://github.com/civodul/recent-addresses.el")
12422 (commit commit)))
12423 (sha256
12424 (base32
12425 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
12426 (file-name (git-file-name name version))))
12427 (build-system emacs-build-system)
12428 (synopsis "Record recently-used email addressed and auto-complete them")
12429 (description
12430 "@code{recent-addresses} is an Emacs package that allows you to quickly
12431 look up previously used email addresses. It can be used alongside the Gnus
12432 email client.")
12433 (license license:gpl2+))))
12434
12435 (define-public emacs-fold-dwim
12436 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
12437 (revision "0"))
12438 (package
12439 (name "emacs-fold-dwim")
12440 (version (git-version "1.2" revision commit))
12441 (home-page "https://github.com/emacsattic/fold-dwim")
12442 (source (origin
12443 (method git-fetch)
12444 (uri (git-reference (url home-page) (commit commit)))
12445 (sha256
12446 (base32
12447 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
12448 (file-name (git-file-name name version))))
12449 (build-system emacs-build-system)
12450 (synopsis "Unified user interface for Emacs folding modes")
12451 (description
12452 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
12453 can do different things depending on the context. In this package, it means
12454 that, if the cursor is in a currently hidden folded construction, we want to
12455 show it; if it's not, we want to hide whatever fold the cursor is in.")
12456 (license license:gpl2+))))
12457
12458 (define-public emacs-markup-faces
12459 (package
12460 (name "emacs-markup-faces")
12461 (version "1.0.0")
12462 (source
12463 (origin
12464 (method url-fetch)
12465 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
12466 version ".el"))
12467 (sha256
12468 (base32
12469 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
12470 (build-system emacs-build-system)
12471 (home-page "https://github.com/sensorflo/markup-faces")
12472 (synopsis "Collection of Emacs faces for markup language modes")
12473 (description "emacs-markup-faces is like font-lock-faces, but tailored for
12474 markup languages instead programming languages. The sub group markup-faces-text
12475 is also intended for 'text viewing modes' such as info or (wo)man. This gives a
12476 common look and feel, or let's say theme, across different markup language modes
12477 and 'text viewing modes' respectively.")
12478 (license license:gpl3+)))
12479
12480 (define-public emacs-adoc-mode
12481 (package
12482 (name "emacs-adoc-mode")
12483 (version "0.6.6")
12484 (source
12485 (origin
12486 (method url-fetch)
12487 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
12488 version ".el"))
12489 (sha256
12490 (base32
12491 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
12492 (build-system emacs-build-system)
12493 (propagated-inputs
12494 `(("emacs-markup-faces" ,emacs-markup-faces)))
12495 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
12496 (synopsis "AsciiDoc mode for Emacs")
12497 (description "This package provides an Emacs major mode for editing AsciiDoc
12498 files. It focuses on highlighting the document to improve readability.")
12499 (license license:gpl2+)))
12500
12501 (define-public emacs-rust-mode
12502 (let ((commit
12503 ;; Last release is old (2016), use more recent commit to get bug
12504 ;; fixes.
12505 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
12506 (revision "0"))
12507 (package
12508 (name "emacs-rust-mode")
12509 (version (git-version "0.3.0" revision commit))
12510 (source (origin
12511 (method git-fetch)
12512 (uri
12513 (git-reference
12514 (url "https://github.com/rust-lang/rust-mode")
12515 (commit commit)))
12516 (file-name (git-file-name name version))
12517 (sha256
12518 (base32
12519 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
12520 (build-system emacs-build-system)
12521 (arguments
12522 `(#:phases
12523 (modify-phases %standard-phases
12524 (replace 'check
12525 (lambda _
12526 (invoke "sh" "run_rust_emacs_tests.sh"))))))
12527 (home-page "https://github.com/rust-lang/rust-mode")
12528 (synopsis "Major Emacs mode for editing Rust source code")
12529 (description "This package provides a major Emacs mode for editing Rust
12530 source code.")
12531 (license (list license:expat
12532 license:asl2.0)))))
12533
12534 (define-public emacs-ztree
12535 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
12536 (package
12537 (name "emacs-ztree")
12538 (version (git-version "1.0.5" "1" commit))
12539 (source
12540 (origin
12541 (method git-fetch)
12542 (uri (git-reference
12543 (url "https://github.com/fourier/ztree")
12544 (commit commit)))
12545 (file-name (git-file-name name version))
12546 (sha256
12547 (base32
12548 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
12549 (build-system emacs-build-system)
12550 (home-page "https://github.com/fourier/ztree")
12551 (synopsis "Directory tree comparison mode for Emacs")
12552 (description "Ztree is a project dedicated to implementation of several
12553 text-tree applications inside GNU Emacs. It consists of 2 subprojects:
12554 @command{ztree-diff} and @command{ztree-dir} (the basis of
12555 @command{ztree-diff}).")
12556 (license license:gpl3))))
12557
12558 (define-public emacs-helm-org-contacts
12559 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
12560 (package
12561 (name "emacs-helm-org-contacts")
12562 (version (git-version "20180707" "1" commit))
12563 (source
12564 (origin
12565 (method git-fetch)
12566 (uri (git-reference
12567 (url "https://github.com/tmalsburg/helm-org-contacts")
12568 (commit commit)))
12569 (file-name (git-file-name name version))
12570 (sha256
12571 (base32
12572 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
12573 (build-system emacs-build-system)
12574 (propagated-inputs
12575 `(("emacs-dash" ,emacs-dash)
12576 ("emacs-helm" ,emacs-helm)
12577 ("emacs-s" ,emacs-s)))
12578 (home-page "https://github.com/tmalsburg/helm-org-contacts")
12579 (synopsis "Helm source for org-contacts")
12580 (description "This Helm source can be used to search contacts stored in
12581 org-contacts format. There are actions for inserting postal addresses, email
12582 addresses, and phone numbers in the buffer where @command{helm-org-contacts}
12583 was called.")
12584 (license license:gpl3))))
12585
12586 (define-public emacs-dired-du
12587 (package
12588 (name "emacs-dired-du")
12589 (version "0.5.1")
12590 (source
12591 (origin
12592 (method url-fetch)
12593 (uri (string-append
12594 "https://elpa.gnu.org/packages/dired-du-"
12595 version ".tar"))
12596 (sha256
12597 (base32
12598 "1091scnrjh0a4gja4z6jxic6ghy1yryv46qk9c76pmh50cpw6766"))))
12599 (build-system emacs-build-system)
12600 (home-page "http://elpa.gnu.org/packages/dired-du.html")
12601 (synopsis "Dired with recursive directory sizes")
12602 (description
12603 "Display the recursive size of directories in Dired.
12604 This file defines a minor mode @command{dired-du-mode} to show the recursive
12605 size of directories in Dired buffers. If @command{du} program is available,
12606 then the directory sizes are obtained with it. Otherwise, the directory sizes
12607 are obtained with Lisp. The former is faster and provide a more precise
12608 value. For directories where the user doesn't have read permission, the
12609 recursive size is not obtained. Once this mode is enabled, every new Dired
12610 buffer displays recursive dir sizes.")
12611 (license license:gpl3+)))
12612
12613 (define-public emacs-pcre2el
12614 ;; Last release is very old so we get the latest commit.
12615 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
12616 (package
12617 (name "emacs-pcre2el")
12618 (version (git-version "1.8" "1" commit))
12619 (source
12620 (origin
12621 (method git-fetch)
12622 (uri (git-reference
12623 (url "https://github.com/joddie/pcre2el")
12624 (commit commit)))
12625 (file-name (git-file-name name version))
12626 (sha256
12627 (base32
12628 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
12629 (build-system emacs-build-system)
12630 (home-page "https://github.com/joddie/pcre2el")
12631 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
12632 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
12633 Tools) is a utility for working with regular expressions in Emacs, based on a
12634 recursive-descent parser for regexp syntax. In addition to converting (a
12635 subset of) PCRE syntax into its Emacs equivalent, it can do the following:
12636
12637 @itemize
12638 @item convert Emacs syntax to PCRE
12639 @item convert either syntax to @code{rx}, an S-expression based regexp syntax
12640 @item untangle complex regexps by showing the parse tree in @code{rx} form and
12641 highlighting the corresponding chunks of code
12642 @item show the complete list of strings (productions) matching a regexp,
12643 provided the list is finite
12644 @item provide live font-locking of regexp syntax (so far only for Elisp
12645 buffers – other modes on the TODO list).
12646 @end itemize\n")
12647 (license license:gpl3))))
12648
12649 (define-public emacs-magit-todos
12650 (package
12651 (name "emacs-magit-todos")
12652 (version "1.1.7")
12653 (source
12654 (origin
12655 (method git-fetch)
12656 (uri (git-reference
12657 (url "https://github.com/alphapapa/magit-todos")
12658 (commit version)))
12659 (file-name (git-file-name name version))
12660 (sha256
12661 (base32
12662 "0qagdxpik64n4rw9scy451ws5sw00v64ri9g2dcw7b66bx2c6c6w"))))
12663 (build-system emacs-build-system)
12664 (propagated-inputs
12665 `(("emacs-async" ,emacs-async)
12666 ("emacs-dash" ,emacs-dash)
12667 ("emacs-f" ,emacs-f)
12668 ("emacs-hl-todo" ,emacs-hl-todo)
12669 ("magit" ,emacs-magit)
12670 ("emacs-pcre2el" ,emacs-pcre2el)
12671 ("emacs-s" ,emacs-s)))
12672 (home-page "https://github.com/alphapapa/magit-todos")
12673 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
12674 (description "This package displays keyword entries from source code
12675 comments and Org files in the Magit status buffer. Activating an item jumps
12676 to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
12677 few (like NOTE).")
12678 (license license:gpl3)))
12679
12680 (define-public emacs-git-annex
12681 ;; Unreleased version has a fontification fix.
12682 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
12683 (revision "1"))
12684 (package
12685 (name "emacs-git-annex")
12686 (version (string-append "1.1-" revision "." (string-take commit 8)))
12687 (source
12688 (origin
12689 (method git-fetch)
12690 (uri (git-reference
12691 (url "https://github.com/jwiegley/git-annex-el")
12692 (commit commit)))
12693 (file-name (string-append name "-" version "-checkout"))
12694 (sha256
12695 (base32
12696 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
12697 (build-system emacs-build-system)
12698 (home-page "https://github.com/jwiegley/git-annex-el")
12699 (synopsis "Emacs integration for git-annex")
12700 (description "Enhances Dired and buffers visiting annex files with
12701 git-annex functionality. In Dired, the names of annex files are shortened by
12702 hiding the symbolic links and fontified based on whether content is present.
12703 Commands for performing some common operations (e.g., unlocking and adding
12704 files) are provided.")
12705 (license license:gpl2+))))
12706
12707 (define-public emacs-hackernews
12708 (let ((commit "916c3da8da45c757f5ec2faeed57fa370513d4ac"))
12709 (package
12710 (name "emacs-hackernews")
12711 (version (git-version "0.5.0" "1" commit))
12712 (source
12713 (origin
12714 (method git-fetch)
12715 (uri (git-reference
12716 (url "https://github.com/clarete/hackernews.el")
12717 (commit commit)))
12718 (file-name (git-file-name name version))
12719 (sha256
12720 (base32
12721 "09bxaaczana1cfvxyk9aagjvdszkj0j1yldl5r4xa60b59lxihsg"))))
12722 (build-system emacs-build-system)
12723 (home-page "https://github.com/clarete/hackernews.el")
12724 (synopsis "Hacker News client for Emacs")
12725 (description "The @command{hackernews} package is able to fetch stories
12726 from six different Hacker News feeds, namely top, new, best, ask, show and job
12727 stories. The default feed is top stories, which corresponds to the Hacker
12728 News homepage.")
12729 (license license:gpl3))))
12730
12731 (define-public emacs-youtube-dl
12732 (let ((commit "7c9d7a7d05b72a7d1b1257a36c5e2b2567b185dd"))
12733 (package
12734 (name "emacs-youtube-dl")
12735 (version (git-version "1.0" "1" commit))
12736 (source
12737 (origin
12738 (method git-fetch)
12739 (uri (git-reference
12740 (url "https://github.com/skeeto/youtube-dl-emacs/")
12741 (commit commit)))
12742 (file-name (git-file-name name version))
12743 (sha256
12744 (base32
12745 "0mh4s089a4x8s380agzb2306kdp1hl204px1n5rrrrdcls7imnh6"))))
12746 (build-system emacs-build-system)
12747 (inputs
12748 `(("youtube-dl" ,youtube-dl)))
12749 (arguments
12750 `(#:phases
12751 (modify-phases %standard-phases
12752 (add-after 'unpack 'configure
12753 (lambda* (#:key inputs #:allow-other-keys)
12754 (let ((youtube-dl (assoc-ref inputs "youtube-dl")))
12755 ;; .el is read-only in git.
12756 (chmod "youtube-dl.el" #o644)
12757 ;; Specify the absolute file names of the various
12758 ;; programs so that everything works out-of-the-box.
12759 (emacs-substitute-variables
12760 "youtube-dl.el"
12761 ("youtube-dl-program"
12762 (string-append youtube-dl "/bin/youtube-dl")))))))))
12763 (home-page "https://github.com/skeeto/youtube-dl-emacs/")
12764 (synopsis "Emacs youtube-dl download manager")
12765 (description "This package manages a video download queue for
12766 @command{youtube-dl}, which serves as the back end. It manages a single
12767 @command{youtube-dl} subprocess, downloading one video at a time. New videos
12768 can be queued at any time.")
12769 (license license:unlicense))))
12770
12771 (define-public emacs-org-web-tools
12772 (package
12773 (name "emacs-org-web-tools")
12774 (version "1.0")
12775 (source
12776 (origin
12777 (method git-fetch)
12778 (uri (git-reference
12779 (url "https://github.com/alphapapa/org-web-tools")
12780 (commit version)))
12781 (file-name (git-file-name name version))
12782 (sha256
12783 (base32
12784 "0kak9h5ny00d39gnwspv53nadnag01brw2fq9zk5wpfc91h9bjng"))))
12785 (build-system emacs-build-system)
12786 (propagated-inputs
12787 `(("emacs-dash" ,emacs-dash)
12788 ("emacs-esxml" ,emacs-esxml)
12789 ("emacs-s" ,emacs-s)))
12790 (inputs
12791 `(("pandoc" ,ghc-pandoc)))
12792 (arguments
12793 `(#:phases
12794 (modify-phases %standard-phases
12795 (add-after 'unpack 'patch-exec-paths
12796 (lambda* (#:key inputs #:allow-other-keys)
12797 (let ((pandoc (assoc-ref inputs "pandoc")))
12798 (substitute* "org-web-tools.el"
12799 (("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\"")))
12800 #t))))))
12801 (home-page "https://github.com/alphapapa/org-web-tools")
12802 (synopsis "Display/Process web page as Org-mode content")
12803 (description "This package contains library functions and commands useful
12804 for retrieving web page content and processing it into Org-mode content.
12805
12806 For example, you can copy a URL to the clipboard or kill-ring, then run a
12807 command that downloads the page, isolates the “readable” content with
12808 @command{eww-readable}, converts it to Org-mode content with Pandoc, and
12809 displays it in an Org-mode buffer. Another command does all of that but
12810 inserts it as an Org entry instead of displaying it in a new buffer.")
12811 (license license:gpl3+)))
12812
12813 (define-public emacs-blimp
12814 (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03"))
12815 (package
12816 (name "emacs-blimp")
12817 (version (git-version "0.0.0" "1" commit))
12818 (source
12819 (origin
12820 (method git-fetch)
12821 (uri (git-reference
12822 (url "https://github.com/walseb/blimp")
12823 (commit commit)))
12824 (file-name (git-file-name name version))
12825 (sha256
12826 (base32
12827 "09wmhpym516b81dfq8smdmysh1fn610dzlyvyl2rkx8600f0fizd"))))
12828 (build-system emacs-build-system)
12829 (propagated-inputs
12830 `(("emacs-eimp" ,emacs-eimp)))
12831 (home-page "https://github.com/walseb/blimp")
12832 (synopsis "Emacs wrapper around all Imagemagick commands")
12833 (description "Blimp (Bustling Image Manipulation Package) is a complete
12834 wrapper around all Imagemagick commands with descriptions, autocompletion (for
12835 some commands) and hints displayed in prompt using @command{eimp.el} to
12836 execute its commands and resize images.")
12837 (license license:gpl3+))))
12838
12839 (define-public emacs-synosaurus
12840 (let ((commit "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb"))
12841 (package
12842 (name "emacs-synosaurus")
12843 (version (git-version "0.1.0" "1" commit))
12844 (source
12845 (origin
12846 (method git-fetch)
12847 (uri (git-reference
12848 (url "https://github.com/hpdeifel/synosaurus")
12849 (commit commit)))
12850 (file-name (git-file-name name version))
12851 (sha256
12852 (base32
12853 "15by9jccab6kyplxa6k0glzaivxkqdigl33gl2qi2cvy6f2q7gva"))))
12854 (build-system emacs-build-system)
12855 (propagated-inputs
12856 `(("wordnet" ,wordnet)))
12857 (arguments
12858 `(#:phases
12859 (modify-phases %standard-phases
12860 (add-after 'unpack 'configure
12861 (lambda* (#:key inputs outputs #:allow-other-keys)
12862 (let ((wn (assoc-ref inputs "wordnet")))
12863 ;; .el is read-only in git.
12864 (chmod "synosaurus-wordnet.el" #o644)
12865 ;; Specify the absolute file names of the various
12866 ;; programs so that everything works out-of-the-box.
12867 (emacs-substitute-variables
12868 "synosaurus-wordnet.el"
12869 ("wordnet-command"
12870 (string-append wn "/bin/wn")))))))))
12871 (home-page "https://github.com/hpdeifel/synosaurus")
12872 (synopsis "Extensible thesaurus mode for Emacs")
12873 (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
12874 backends, including the @command{wordnet} offline backend.")
12875 (license license:gpl3+))))
12876
12877 (define-public emacs-editorconfig
12878 (package
12879 (name "emacs-editorconfig")
12880 (version "0.7.14")
12881 (source
12882 (origin
12883 (method git-fetch)
12884 (uri (git-reference
12885 (url "https://github.com/editorconfig/editorconfig-emacs")
12886 (commit (string-append "v" version))))
12887 (file-name (git-file-name name version))
12888 (sha256
12889 (base32
12890 "19j2428ij7sqvrqs7rqg1mcnv9109y6drqba40dkv3vrkk5d2yia"))))
12891 (build-system emacs-build-system)
12892 (home-page "https://github.com/editorconfig/editorconfig-emacs")
12893 (synopsis "Define and maintain consistent coding styles between different
12894 editors and IDEs")
12895 (description "The EditorConfig project consists of a file format for
12896 defining coding styles and a collection of text editor plugins that enable
12897 editors to read the file format and adhere to defined styles. EditorConfig
12898 files are easily readable and they work nicely with version control systems.")
12899 (license license:gpl3+)))
12900
12901 (define-public emacs-all-the-icons
12902 (package
12903 (name "emacs-all-the-icons")
12904 (version "3.2.0")
12905 (source
12906 (origin
12907 (method git-fetch)
12908 (uri (git-reference
12909 (url "https://github.com/domtronn/all-the-icons.el.git")
12910 (commit version)))
12911 (file-name (git-file-name name version))
12912 (sha256
12913 (base32
12914 "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
12915 (build-system emacs-build-system)
12916 (arguments
12917 `(#:include '("\\.el$" "^data/" "^fonts/")
12918 ;; Compiling "test/" fails with "Symbol’s value as variable is void:
12919 ;; all-the-icons--root-code". Ignoring tests.
12920 #:exclude '("^test/")
12921 #:tests? #f))
12922 (propagated-inputs
12923 `(("f" ,emacs-f)
12924 ("memoize" ,emacs-memoize)))
12925 (home-page "https://github.com/domtronn/all-the-icons.el")
12926 (synopsis "Collect icon fonts and propertize them within Emacs")
12927 (description "All-the-icons is a utility package to collect various icon
12928 fonts and propertize them within Emacs. Icon fonts allow you to propertize
12929 and format icons the same way you would normal text. This enables things such
12930 as better scaling of and anti aliasing of the icons.")
12931 ;; Package is released under Expat license. Elisp files are licensed
12932 ;; under GPL3+. Fonts come with various licenses: Expat for
12933 ;; "all-the-icons.ttf" and "file-icons.ttf", Apache License 2.0 for
12934 ;; "material-design-icons.ttf", and SIL OFL 1.1 for "fontawesome.ttf",
12935 ;; "ocitcons.ttf" and "weathericons.ttf".
12936 (license
12937 (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0))))
12938
12939 (define-public emacs-powerline
12940 (package
12941 (name "emacs-powerline")
12942 (version "2.4")
12943 (source
12944 (origin
12945 (method git-fetch)
12946 (uri (git-reference
12947 (url "https://github.com/milkypostman/powerline.git")
12948 (commit version)))
12949 (file-name (git-file-name name version))
12950 (sha256
12951 (base32
12952 "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
12953 (build-system emacs-build-system)
12954 (home-page "https://github.com/milkypostman/powerline/")
12955 (synopsis "Mode-line plugin for Emacs")
12956 (description "Powerline is a utility plugin which allows you to create
12957 a better-looking, more functional Emacs mode-line. A collection of predefined
12958 themes comes with the package.")
12959 (license license:gpl3+)))
12960
12961 (define-public emacs-spaceline
12962 (package
12963 (name "emacs-spaceline")
12964 (version "2.0.1")
12965 (source
12966 (origin
12967 (method git-fetch)
12968 (uri (git-reference
12969 (url "https://github.com/TheBB/spaceline.git")
12970 (commit (string-append "v" version))))
12971 (file-name (git-file-name name version))
12972 (sha256
12973 (base32
12974 "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
12975 (build-system emacs-build-system)
12976 (propagated-inputs
12977 `(("dash" ,emacs-dash)
12978 ("powerline" ,emacs-powerline)
12979 ("s" ,emacs-s)))
12980 (home-page "https://github.com/TheBB/spaceline")
12981 (synopsis "Powerline theme from Spacemacs")
12982 (description "Spaceline provides Spacemacs' mode-line theme.
12983 This package provides features for three kinds of users.
12984
12985 @itemize
12986 @item You just want to use the Spacemacs mode-line theme and forget about it.
12987 @item You want to use something similar to the Spacemacs mode-line theme, but
12988 with a handful of easy tweaks.
12989 @item You want an easy-to-use library for building your own mode-line from
12990 scratch, and you think the Spacemacs theme looks good.
12991 @end itemize")
12992 (license license:gpl3+)))
12993
12994 (define-public emacs-column-marker
12995 (package
12996 (name "emacs-column-marker")
12997 (version "9")
12998 (source
12999 (origin
13000 (method url-fetch)
13001 (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
13002 (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
13003 (build-system emacs-build-system)
13004 (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
13005 (synopsis "Emacs mode for highlighting columns")
13006 (description
13007 "With @code{column-marker.el} you can highlight any number of text columns.
13008 Three such highlight column markers are provided by default. This is
13009 especially useful for languages like COBOL or Fortran where certain columns
13010 have special meaning. It is also handy for aligning text across long vertical
13011 distances. Multi-column characters, such as @kbd{TAB} are treated
13012 correctly.")
13013 (license license:gpl2+)))
13014
13015 (define-public emacs-slime-repl-ansi-color
13016 (let ((commit "ad03263f5d4de473bc173b64a6fc3dc1106393d7"))
13017 (package
13018 (name "emacs-slime-repl-ansi-color")
13019 (version (git-version "0.0.0" "1" commit))
13020 (source (origin
13021 (method git-fetch)
13022 (uri (git-reference
13023 (url "https://github.com/deadtrickster/slime-repl-ansi-color")
13024 (commit commit)))
13025 (file-name (git-file-name name version))
13026 (sha256
13027 (base32
13028 "0bpg7gxz310x7bnlg324c507sxc5gxwwz6h64h6kdq141r73vbi4"))))
13029 (build-system emacs-build-system)
13030 (home-page "https://github.com/deadtrickster/slime-repl-ansi-color")
13031 (synopsis "Color ANSI codes in the REPL of SLIME")
13032 (description "Color ANSI codes in the REPL of SLIME")
13033 (license license:gpl2+))))
13034
13035 (define-public emacs-helm-slime
13036 (package
13037 (name "emacs-helm-slime")
13038 (version "0.3.0")
13039 (source (origin
13040 (method git-fetch)
13041 (uri (git-reference
13042 (url "https://github.com/emacs-helm/helm-slime")
13043 (commit version)))
13044 (file-name (git-file-name name version))
13045 (sha256
13046 (base32
13047 "1qhb9446rpj17pm0hi3miy5gs5k3ld43bq29kzy0y26bf7ivfcjv"))))
13048 (build-system emacs-build-system)
13049 (propagated-inputs
13050 `(("emacs-helm" ,emacs-helm)
13051 ("emacs-slime" ,emacs-slime)))
13052 (home-page "https://github.com/emacs-helm/helm-slime")
13053 (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
13054 (description "Helm-SLIME defines a few new commands:
13055
13056 @itemize
13057 @item helm-slime-complete: Select a symbol from the SLIME completion systems.
13058 @item helm-slime-list-connections: Yet another slime-list-connections with Helm.
13059 @item: helm-slime-apropos: Yet another slime-apropos with Helm.
13060 @item helm-slime-repl-history: Select an input from the SLIME REPL history and insert it.
13061 @end itemize\n")
13062 (license license:gpl3+)))
13063
13064 (define-public emacs-gtk-look
13065 (package
13066 (name "emacs-gtk-look")
13067 (version "29")
13068 (source (origin
13069 (method url-fetch)
13070 (uri "https://download.tuxfamily.org/user42/gtk-look.el")
13071 (sha256
13072 (base32
13073 "14p2nwrd51cr1v06fxbjjn6jdrkf9d6vcxhmscm0kl677s25ypsp"))))
13074 (build-system emacs-build-system)
13075 (arguments
13076 `(#:phases
13077 (modify-phases %standard-phases
13078 (add-after 'unpack 'configure
13079 (lambda _
13080 ;; File is read-only.
13081 (chmod "gtk-look.el" #o644)
13082 (emacs-substitute-variables "gtk-look.el"
13083 ("gtk-lookup-devhelp-indices"
13084 '(list (expand-file-name "~/.guix-profile/share/gtk-doc/html/*/*.devhelp*"))))
13085 #t)))))
13086 (home-page "http://user42.tuxfamily.org/gtk-look/index.html")
13087 (synopsis "Find and display HTML documentation for GTK, GNOME and Glib")
13088 (description "@command{gtk-look} finds and displays HTML documentation for
13089 GTK, GNOME and Glib functions and variables in Emacs, similar to what
13090 info-lookup-symbol does for info files (C-h S). The documentation is expected
13091 to be devhelp indexes with HTML files. The location of the indexes can be
13092 customized. In addition to C code development @command{gtk-look} is good for
13093
13094 @itemize
13095 @item @command{perl-gtk2}, recognising class funcs like
13096 @command{Gtk2::Label->new} and bare method names like @command{set_text}.
13097 @item @command{guile-gnome}, recognising methods like @command{set-text} and
13098 classes like @command{<gtk-window>}.
13099 @end itemize\n")
13100 (license license:gpl3+)))
13101
13102 (define-public emacs-ov
13103 (package
13104 (name "emacs-ov")
13105 (version "1.0.6")
13106 (source (origin
13107 (method git-fetch)
13108 (uri (git-reference
13109 (url "https://github.com/ShingoFukuyama/ov.el.git")
13110 (commit version)))
13111 (file-name (git-file-name name version))
13112 (sha256
13113 (base32
13114 "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
13115 (build-system emacs-build-system)
13116 (home-page "https://github.com/ShingoFukuyama/ov.el")
13117 (synopsis "Overlay library for Emacs Lisp")
13118 (description "@code{ov.el} provides a simple way to manipulate overlays in
13119 Emacs.")
13120 (license license:gpl3+)))
13121
13122 (define-public emacs-matrix-client
13123 (let ((commit "a0623667b07a4bf60980c97b078e9faed97ace79"))
13124 (package
13125 (name "emacs-matrix-client")
13126 (version (git-version "0.0.0" "4" commit))
13127 (source (origin
13128 (method git-fetch)
13129 (uri (git-reference
13130 (url "https://github.com/jgkamat/matrix-client-el.git")
13131 (commit commit)))
13132 (file-name (git-file-name name version))
13133 (sha256
13134 (base32
13135 "1zya8id3y9wzjaj7nplq7br6nhm3lsskv0fkn1xr1y77fzcfgcdb"))))
13136 (build-system emacs-build-system)
13137 (arguments
13138 `(#:phases
13139 (modify-phases %standard-phases
13140 (add-after 'unpack 'add-missing-require
13141 ;; Fix a filter error at runtime due to a missing require.
13142 ;; Reported upstream:
13143 ;; <https://github.com/alphapapa/matrix-client.el/issues/76>
13144 (lambda _
13145 (substitute* "matrix-client-room.el"
13146 (("\\(require 'dash-functional\\)" all)
13147 (string-append all "\n" "(require 'anaphora)")))
13148 #t)))))
13149 (propagated-inputs
13150 `(("a" ,emacs-a)
13151 ("anaphora" ,emacs-anaphora)
13152 ("dash" ,emacs-dash)
13153 ("esxml" ,emacs-esxml)
13154 ("f" ,emacs-f)
13155 ("frame-purpose" ,emacs-frame-purpose)
13156 ("ht" ,emacs-ht)
13157 ("ov" ,emacs-ov)
13158 ("rainbow-identifiers" ,emacs-rainbow-identifiers)
13159 ("request" ,emacs-request)
13160 ("s" ,emacs-s)
13161 ("tracking" ,emacs-tracking)))
13162 (home-page "https://github.com/jgkamat/matrix-client-el")
13163 (synopsis "Matrix client for Emacs")
13164 (description "@code{matrix-client} is a simple chat UI to Matrix.org
13165 rooms. It also provides an API which allows Emacs to seamlessly create
13166 RPC channels with users and other software.")
13167 (license license:gpl3+))))
13168
13169 (define-public emacs-sesman
13170 (package
13171 (name "emacs-sesman")
13172 (version "0.3.3")
13173 (source
13174 (origin
13175 (method git-fetch)
13176 (uri (git-reference
13177 (url "https://github.com/vspinu/sesman.git")
13178 (commit (string-append "v" version))))
13179 (file-name (git-file-name name version))
13180 (sha256
13181 (base32
13182 "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra"))))
13183 (build-system emacs-build-system)
13184 (arguments
13185 `(#:tests? #t
13186 #:test-command '("make" "test")))
13187 (home-page "https://github.com/vspinu/sesman")
13188 (synopsis "Session manager for Emacs based IDEs")
13189 (description "Sesman provides facilities for session management and
13190 interactive session association with the current contexts (project, directory,
13191 buffers). While sesman can be used to manage arbitrary sessions, it primary
13192 targets the Emacs based IDEs (CIDER, ESS, Geiser, Robe, SLIME etc.)")
13193 (license license:gpl3+)))
13194
13195 (define-public emacs-buttercup
13196 (package
13197 (name "emacs-buttercup")
13198 (version "1.16")
13199 (source
13200 (origin
13201 (method git-fetch)
13202 (uri (git-reference
13203 (url "https://github.com/jorgenschaefer/emacs-buttercup.git")
13204 (commit (string-append "v" version))))
13205 (file-name (git-file-name name version))
13206 (sha256
13207 (base32
13208 "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"))))
13209 (build-system emacs-build-system)
13210 (arguments
13211 `(#:tests? #t
13212 #:test-command '("make" "test")
13213 #:phases
13214 (modify-phases %standard-phases
13215 (add-after 'install 'install-bin
13216 (lambda* (#:key outputs #:allow-other-keys)
13217 (install-file "bin/buttercup"
13218 (string-append (assoc-ref outputs "out") "/bin"))
13219 #t)))))
13220 (home-page "https://github.com/jorgenschaefer/emacs-buttercup")
13221 (synopsis "Behavior driven emacs lisp testing framework")
13222 (description "Buttercup is a behavior-driven development framework for
13223 testing Emacs Lisp code. It allows to group related tests so they can share
13224 common set-up and tear-down code, and allows the programmer to \"spy\" on
13225 functions to ensure they are called with the right arguments during testing.")
13226 (license license:gpl3+)))
13227
13228 (define-public emacs-wordnut
13229 (let ((commit "feac531404041855312c1a046bde7ea18c674915")
13230 (revision "0"))
13231 (package
13232 (name "emacs-wordnut")
13233 (version (git-version "0.1" revision commit))
13234 (home-page "https://github.com/gromnitsky/wordnut")
13235 (source (origin
13236 (method git-fetch)
13237 (uri (git-reference (url home-page) (commit commit)))
13238 (sha256
13239 (base32
13240 "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn"))
13241 (patches
13242 (search-patches "emacs-wordnut-require-adaptive-wrap.patch"))
13243 (file-name (git-file-name name version))))
13244 (build-system emacs-build-system)
13245 (propagated-inputs
13246 `(("wordnet" ,wordnet)
13247 ("emacs-adaptive-wrap" ,emacs-adaptive-wrap)))
13248 (synopsis "Major mode for WordNet")
13249 (description "This Emacs package provides an interface for
13250 @code{wordnet}. Features include completion, if the query is not found
13251 too ambiguous and navigation in the result buffer.")
13252 (license license:gpl3+))))
13253
13254 (define-public emacs-frame-purpose
13255 (package
13256 (name "emacs-frame-purpose")
13257 (version "1.0")
13258 (source (origin
13259 (method git-fetch)
13260 (uri (git-reference
13261 (url "https://github.com/alphapapa/frame-purpose.el.git")
13262 (commit version)))
13263 (sha256
13264 (base32
13265 "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"))
13266 (file-name (git-file-name name version))))
13267 (build-system emacs-build-system)
13268 (inputs
13269 `(("dash" ,emacs-dash)))
13270 (synopsis "Purpose-specific frames for Emacs")
13271 (description "@code{frame-purpose} makes it easy to open purpose-specific
13272 frames that only show certain buffers, e.g. by buffers’ major mode, their
13273 filename or directory, etc, with custom frame/X-window titles, icons, and
13274 other frame parameters.")
13275 (home-page "https://github.com/alphapapa/frame-purpose.el")
13276 (license license:gpl3+)))
13277
13278 (define-public emacs-arduino-mode
13279 (let ((commit "3e2bad4569ad26e929e6db2cbcff0d6d36812698")) ;no release yet
13280 (package
13281 (name "emacs-arduino-mode")
13282 (version (git-version "0" "0" commit))
13283 (source (origin
13284 (method git-fetch)
13285 (uri (git-reference
13286 (url "https://github.com/bookest/arduino-mode.git")
13287 (commit commit)))
13288 (sha256
13289 (base32
13290 "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"))
13291 (file-name (git-file-name name version))))
13292 (build-system emacs-build-system)
13293 (synopsis "Emacs major mode for editing Arduino sketches")
13294 (description "Emacs major mode for editing Arduino sketches.")
13295 (home-page "https://github.com/bookest/arduino-mode")
13296 (license license:gpl3+))))
13297
13298 (define-public emacs-general
13299 (let ((commit "675050199b5a30d54a24b58a367db32c0bdc47f5"))
13300 (package
13301 (name "emacs-general")
13302 (version (git-version "0" "0" commit))
13303 (home-page "https://github.com/noctuid/general.el")
13304 (source (origin
13305 (method git-fetch)
13306 (uri (git-reference
13307 (url (string-append home-page ".git"))
13308 (commit commit)))
13309 (sha256
13310 (base32
13311 "175yyhzk57yk1sskxh3d2jzhrh2waiibbcfsll167qxr117yji5h"))
13312 (file-name (git-file-name name version))))
13313 (build-system emacs-build-system)
13314 (synopsis "More convenient key definitions in emacs")
13315 (description "@code{general.el} provides a more convenient method for
13316 binding keys in emacs (for both evil and non-evil users). Like
13317 @code{use-package}, which provides a convenient, unified interface for
13318 managing packages, @code{general.el} is intended to provide a convenient,
13319 unified interface for key definitions. While this package does implement some
13320 completely new functionality (such as the ability to make vim-style
13321 keybindings under non-prefix keys with an optional timeout), its primary
13322 purpose is to build on existing functionality to make key definition more
13323 clear and concise. @code{general-define-key} is user-extensible and supports
13324 defining multiple keys in multiple keymaps at once, implicitly wrapping key
13325 strings with (@code{kbd ...}), using named prefix key sequences (like the
13326 leader key in vim), and much more.")
13327 (license license:gpl3+))))
13328
13329 (define-public emacs-tldr
13330 (let ((commit "398b197c8d2238628b07e1b32d0f373876279f4c"))
13331 (package
13332 (name "emacs-tldr")
13333 (version (git-version "0" "0" commit))
13334 (home-page "https://github.com/kuanyui/tldr.el")
13335 (source (origin
13336 (method git-fetch)
13337 (uri (git-reference
13338 (url (string-append home-page ".git"))
13339 (commit commit)))
13340 (sha256
13341 (base32
13342 "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f"))
13343 (file-name (git-file-name name version))))
13344 (build-system emacs-build-system)
13345 (synopsis "Simplified and community-driven man pages for Emacs")
13346 (description "@code{emacs-tldr} allows the user to access tldr pages
13347 from within emacs. The @code{tldr} pages are a community effort to simplify
13348 the man pages with practical examples.")
13349 (license license:wtfpl2))))
13350
13351 (define-public emacs-window-layout
13352 (package
13353 (name "emacs-window-layout")
13354 (version "1.4")
13355 (home-page "https://github.com/kiwanami/emacs-window-layout")
13356 (source (origin
13357 (method git-fetch)
13358 (uri (git-reference
13359 (url home-page)
13360 (commit (string-append "v" version))))
13361 (sha256
13362 (base32
13363 "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"))
13364 (file-name (git-file-name name version))))
13365 (build-system emacs-build-system)
13366 (synopsis "Simple window layout management framework for emacs")
13367 (description "A window-layout management library that can split a frame
13368 or a window into some windows according to a layout recipe.")
13369 (license license:gpl3+)))
13370
13371 (define-public emacs-e2wm
13372 (package
13373 (name "emacs-e2wm")
13374 (version "1.4")
13375 (home-page "https://github.com/kiwanami/emacs-window-manager")
13376 (source (origin
13377 (method git-fetch)
13378 (uri (git-reference
13379 (url home-page)
13380 (commit (string-append "v" version))))
13381 (sha256
13382 (base32
13383 "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"))
13384 (file-name (git-file-name name version))))
13385 (build-system emacs-build-system)
13386 (propagated-inputs
13387 `(("emacs-window-layout" ,emacs-window-layout)))
13388 (synopsis "Equilibrium Emacs Window Manager")
13389 (description "E2WM is a window manager for Emacs. It enables to
13390 customize the place of pop-up window, how the windows are split, how the
13391 buffers are located in the windows, keybinds to manipulate windows and
13392 buffers, etc. It also has plug-ins to help your Emacs life.")
13393 (license license:gpl3+)))
13394
13395 (define-public emacs-ctable
13396 (let ((commit "b8830d1ca95abb100a81bc32011bd17d5ecba000"))
13397 (package
13398 (name "emacs-ctable")
13399 (version (git-version "0.1.2" "1" commit))
13400 (home-page "https://github.com/kiwanami/emacs-ctable")
13401 (source (origin
13402 (method git-fetch)
13403 (uri (git-reference
13404 (url home-page)
13405 (commit commit)))
13406 (sha256
13407 (base32
13408 "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"))
13409 (file-name (git-file-name name version))))
13410 (build-system emacs-build-system)
13411 (synopsis "Table component for Emacs Lisp")
13412 (description "This program is a table component for Emacs Lisp. Other
13413 programs can use this table component for the application UI.")
13414 (license license:gpl3+))))
13415
13416 (define-public emacs-epc
13417 (let ((commit "e1bfa5ca163273859336e3cc89b4b6460f7f8cda"))
13418 (package
13419 (name "emacs-epc")
13420 (version (git-version "0.1.1" "1" commit))
13421 (home-page "https://github.com/kiwanami/emacs-epc")
13422 (source (origin
13423 (method git-fetch)
13424 (uri (git-reference
13425 (url home-page)
13426 (commit commit)))
13427 (sha256
13428 (base32
13429 "15nkrjgi64f829isfd6xrhl4zw8jirr8pkas7nisrbk1av868hx0"))
13430 (file-name (git-file-name name version))))
13431 (build-system emacs-build-system)
13432 (propagated-inputs
13433 `(("emacs-deferred" ,emacs-deferred)
13434 ("emacs-ctable" ,emacs-ctable)))
13435 (synopsis "RPC stack for Emacs Lisp")
13436 (description "This program is an asynchronous RPC stack for Emacs.
13437 Using this RPC stack, Emacs can communicate with the peer process
13438 smoothly. Because the protocol employs S-expression encoding and consists of
13439 asynchronous communications, the RPC response is fairly good.")
13440 (license license:gpl3+))))
13441
13442 (define-public emacs-edbi
13443 (let ((commit "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"))
13444 (package
13445 (name "emacs-edbi")
13446 (version (git-version "0.1.3" "1" commit))
13447 (home-page "https://github.com/kiwanami/emacs-edbi")
13448 (source (origin
13449 (method git-fetch)
13450 (uri (git-reference
13451 (url home-page)
13452 (commit commit)))
13453 (sha256
13454 (base32
13455 "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"))
13456 (file-name (git-file-name name version))))
13457 (build-system emacs-build-system)
13458 (inputs
13459 `(("perl" ,perl)
13460 ("perl-rpc-epc-service" ,perl-rpc-epc-service)
13461 ("perl-dbi" ,perl-dbi)
13462 ;; TODO: Adding support for perl-dbd-mysql and others would
13463 ;; dramatically increase the closure size. Make several packages?
13464 ("perl-dbd-sqlite" ,perl-dbd-sqlite)))
13465 (propagated-inputs
13466 `(("emacs-e2wm" ,emacs-e2wm)
13467 ("emacs-epc" ,emacs-epc)))
13468 (arguments
13469 `(#:include '("\\.el$" "\\.pl$")
13470 #:phases
13471 (modify-phases %standard-phases
13472 (add-after 'install 'patch-path
13473 (lambda* (#:key inputs outputs #:allow-other-keys)
13474 (let ((perl (assoc-ref inputs "perl"))
13475 (dir (string-append (assoc-ref outputs "out")
13476 "/share/emacs/site-lisp/guix.d/edbi-"
13477 ,version)))
13478 (substitute* (string-append dir "/edbi.el")
13479 (("\"perl\"") (string-append "\"" perl "/bin/perl\"")))
13480 (chmod (string-append dir "/edbi-bridge.pl") #o555)
13481 (wrap-program (string-append dir "/edbi-bridge.pl")
13482 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
13483 #t))))))
13484 (synopsis "Database Interface for Emacs Lisp")
13485 (description "This program connects the database server through Perl's
13486 DBI, and provides DB-accessing API and the simple management UI.")
13487 (license license:gpl3+))))
13488
13489 (define-public emacs-edbi-sqlite
13490 (let ((commit "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"))
13491 (package
13492 (name "emacs-edbi-sqlite")
13493 (version (git-version "0.1.1" "1" commit))
13494 (home-page "https://github.com/proofit404/edbi-sqlite")
13495 (source (origin
13496 (method git-fetch)
13497 (uri (git-reference
13498 (url home-page)
13499 (commit commit)))
13500 (sha256
13501 (base32
13502 "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"))
13503 (file-name (git-file-name name version))))
13504 (build-system emacs-build-system)
13505 (propagated-inputs
13506 `(("emacs-edbi" ,emacs-edbi)))
13507 (synopsis "Open SQLite files in Emacs")
13508 (description "This package is a convenience wrapper for @command{edbi}
13509 to open SQLite databases.")
13510 (license license:gpl3+))))
13511
13512 (define-public emacs-nix-mode
13513 (package
13514 (name "emacs-nix-mode")
13515 (version "1.2.2")
13516 (source
13517 (origin
13518 (method url-fetch)
13519 (uri (string-append "https://github.com/NixOS/nix-mode/archive/v"
13520 version ".tar.gz"))
13521 (file-name (string-append name "-" version ".tar.gz"))
13522 (sha256
13523 (base32
13524 "06aqz0czznsj8835jqnk794sy2p6pa8kxfqwh0nl5d5vxivria6z"))))
13525 (build-system emacs-build-system)
13526 (inputs
13527 `(("emacs-company" ,emacs-company)
13528 ("emacs-mmm-mode" ,emacs-mmm-mode)))
13529 (home-page "https://github.com/NixOS/nix-mode")
13530 (synopsis "Emacs major mode for editing Nix expressions")
13531 (description "@code{nixos-mode} provides an Emacs major mode for editing
13532 Nix expressions. It supports syntax highlighting, indenting and refilling of
13533 comments.")
13534 (license license:lgpl2.1+)))
13535
13536 (define-public emacs-simple-mpc
13537 ;; There have been no releases.
13538 (let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2")
13539 (revision "1"))
13540 (package
13541 (name "emacs-simple-mpc")
13542 (version (git-version "0" revision commit))
13543 (source
13544 (origin
13545 (method git-fetch)
13546 (uri (git-reference
13547 (url "https://github.com/jorenvo/simple-mpc.git")
13548 (commit commit)))
13549 (file-name (git-file-name name version))
13550 (sha256
13551 (base32
13552 "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"))))
13553 (build-system emacs-build-system)
13554 (propagated-inputs `(("emacs-s" ,emacs-s)))
13555 (home-page "https://github.com/jorenvo/simple-mpc")
13556 (synopsis "Simple Emacs frontend to mpc")
13557 (description "This package provides an Emacs major mode which acts as a
13558 front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).")
13559 (license license:gpl3+))))
13560
13561 (define-public emacs-mkmcc-gnuplot-mode
13562 (package
13563 (name "emacs-mkmcc-gnuplot-mode")
13564 (version "1.2.0")
13565 (source
13566 (origin
13567 (method git-fetch)
13568 (uri (git-reference
13569 (url "https://github.com/mkmcc/gnuplot-mode")
13570 (commit "601f6392986f0cba332c87678d31ae0d0a496ce7")))
13571 (file-name (string-append name "-" version "-checkout"))
13572 (sha256
13573 (base32
13574 "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb"))))
13575 (build-system emacs-build-system)
13576 (home-page "https://mkmcc.github.io/software/gnuplot-mode.html")
13577 (synopsis "Minimal emacs major mode for editing gnuplot scripts")
13578 (description "@code{emacs-mkmcc-gnuplot-mode} is a minimal emacs major
13579 mode for editing gnuplot scripts. It provides syntax highlighting,
13580 indentation and a command to plot the file.")
13581 (license license:gpl3+)))
13582
13583 (define-public emacs-dtrt-indent
13584 (package
13585 (name "emacs-dtrt-indent")
13586 (version "0.8")
13587 (source (origin
13588 (method git-fetch)
13589 (uri (git-reference
13590 (url "https://github.com/jscheid/dtrt-indent")
13591 (commit version)))
13592 (file-name (git-file-name name version))
13593 (sha256
13594 (base32
13595 "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"))))
13596 (build-system emacs-build-system)
13597 (home-page "https://github.com/jscheid/dtrt-indent")
13598 (synopsis "Minor mode that guesses the indentation offset")
13599 (description "This package provides a minor mode that guesses the
13600 indentation offset originally used for creating source code files and
13601 transparently adjusts the corresponding settings in Emacs, making it more
13602 convenient to edit foreign files.")
13603 (license license:gpl2+)))
13604
13605 (define-public emacs-repo
13606 (package
13607 (name "emacs-repo")
13608 (version "0.1.3")
13609 (source (origin
13610 (method git-fetch)
13611 (uri (git-reference
13612 (url "https://github.com/canatella/repo-el")
13613 (commit version)))
13614 (file-name (git-file-name name version))
13615 (sha256
13616 (base32
13617 "0rbvcvm7bfr6ncji7cllfxyyr6x7n9fx863byp243phsj3n93adz"))))
13618 (build-system emacs-build-system)
13619 (native-inputs
13620 `(("emacs-el-mock" ,emacs-el-mock)
13621 ("ert-runner" ,emacs-ert-runner)))
13622 (propagated-inputs
13623 `(("emacs-f" ,emacs-f)
13624 ("magit" ,emacs-magit)))
13625 (home-page "https://github.com/canatella/repo-el")
13626 (synopsis "Emacs interface for the Google Repo tool")
13627 (description "This package provides integration of the Google Repo tool
13628 with emacs. It displays the output of the @code{repo status} command in a
13629 buffer and launches Magit from the status buffer for the project at point.")
13630 (license license:gpl3+)))
13631
13632 (define-public emacs-alect-themes
13633 (package
13634 (name "emacs-alect-themes")
13635 (version "0.9")
13636 (source (origin
13637 (method git-fetch)
13638 (uri (git-reference
13639 (url "https://github.com/alezost/alect-themes")
13640 (commit (string-append "v" version))))
13641 (file-name (git-file-name name version))
13642 (sha256
13643 (base32
13644 "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9"))))
13645 (build-system emacs-build-system)
13646 (home-page "https://github.com/alezost/alect-themes")
13647 (synopsis "Low contrast, light, dark and black color theme for Emacs")
13648 (description "@code{emacs-alect-themes} provides configurable light, dark
13649 and black color themes for Emacs. The themes are intended to be used with
13650 GUI.")
13651 (license license:gpl3+)))
13652
13653 (define-public emacs-google-c-style
13654 (let ((commit "6271f3f473ceb3a7fef99388a3040903b1a145f1")
13655 (revision "0"))
13656 (package
13657 (name "emacs-google-c-style")
13658 (version (git-version "0.1" revision commit))
13659 (source (origin
13660 (method git-fetch)
13661 (uri (git-reference
13662 (url "https://github.com/google/styleguide")
13663 (commit commit)))
13664 (file-name (git-file-name name version))
13665 (sha256
13666 (base32
13667 "1jghyyasdl15c4gaqaxmdn43am63k6bykn5ab83f1ahv9zi1krxk"))))
13668 (build-system emacs-build-system)
13669 (home-page "https://github.com/google/styleguide")
13670 (synopsis "Emacs settings file for Google C/C++ style")
13671 (description "@code{emacs-google-c-style} provides an Emacs settings
13672 file for Google C and C++ style.")
13673 (license license:gpl1+))))
13674
13675 (define-public emacs-redshank
13676 (let ((commit "f98e68f532e622bcd464292ca4a9cf5fbea14ebb")
13677 (revision "1"))
13678 (package
13679 (name "emacs-redshank")
13680 (version (git-version "0.1" revision commit))
13681 (source (origin
13682 (method git-fetch)
13683 (uri (git-reference
13684 (url "http://www.foldr.org/~michaelw/projects/redshank.git")
13685 (commit commit)))
13686 (file-name (git-file-name name version))
13687 (sha256
13688 (base32
13689 "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"))))
13690 (build-system emacs-build-system)
13691 (propagated-inputs
13692 `(("emacs-paredit" ,emacs-paredit)))
13693 (home-page "http://www.foldr.org/~michaelw/emacs/redshank/")
13694 (synopsis "Common Lisp Editing Extensions (for Emacs)")
13695 (description "Redshank is a collection of code-wrangling Emacs macros
13696 mostly geared towards Common Lisp, but some are useful for other Lisp
13697 dialects, too. Redshank's code transformations aim to be expression-based (as
13698 opposed to character-based).")
13699 (license license:gpl1+))))
13700
13701 (define-public emacs-disk-usage
13702 (package
13703 (name "emacs-disk-usage")
13704 (version "1.3.0")
13705 (home-page "https://gitlab.com/Ambrevar/emacs-disk-usage")
13706 (source
13707 (origin
13708 (method url-fetch)
13709 (uri (string-append
13710 "https://elpa.gnu.org/packages/disk-usage-"
13711 version
13712 ".el"))
13713 (sha256
13714 (base32
13715 "0ky6c34z7c6hd4yvcrcsidkfk2kvffkg63v02vch2i6hg1n6n028"))))
13716 (build-system emacs-build-system)
13717 (synopsis "Sort and browse disk usage listings with Emacs")
13718 (description "Disk Usage is a file system analyzer: it offers a tabulated
13719 view of file listings sorted by size. Directory sizes are computed
13720 recursively. The results are cached for speed.")
13721 (license license:gpl3+)))
13722
13723 (define-public emacs-orgit
13724 (let ((commit "2456436a7e64d26bcf455b3890a586acaa3e7f93"))
13725 (package
13726 (name "emacs-orgit")
13727 (version (git-version "1.5.1" "2" commit))
13728 (home-page "https://github.com/magit/orgit")
13729 (source (origin
13730 (method git-fetch)
13731 (uri (git-reference
13732 (url home-page)
13733 (commit commit)))
13734 (file-name (git-file-name name version))
13735 (sha256
13736 (base32
13737 "1i52dq2ynddb1irgigr5mdwfbfd3bvm1f29jnzd7nlc0nk186nvh"))))
13738 (build-system emacs-build-system)
13739 (propagated-inputs
13740 `(("emacs-dash" ,emacs-dash)
13741 ("emacs-magit" ,emacs-magit)))
13742 (synopsis "Support for Org links to Magit buffers")
13743 (description "This package defines several Org link types, which can be
13744 used to link to certain Magit buffers. Use the command
13745 @command{org-store-link} while such a buffer is current to store a link.
13746 Later you can insert it into an Org buffer using the command
13747 @code{org-insert-link}.")
13748 (license license:gpl3+))))
13749
13750 (define-public emacs-amx
13751 (package
13752 (name "emacs-amx")
13753 (version "3.2")
13754 (source (origin
13755 (method git-fetch)
13756 (uri (git-reference
13757 (url "https://github.com/DarwinAwardWinner/amx")
13758 (commit (string-append "v" version))))
13759 (file-name (git-file-name name version))
13760 (sha256
13761 (base32
13762 "0bb8y1dmzyqkrb4mg6zndcsxppby3glridv2aap2pv05gv8kx7mj"))))
13763 (build-system emacs-build-system)
13764 (propagated-inputs `(("emacs-s" ,emacs-s)))
13765 (home-page "https://github.com/DarwinAwardWinner/amx")
13766 (synopsis "Alternative interface for M-x")
13767 (description "Amx is an alternative interface for M-x in Emacs. It
13768 provides several enhancements over the ordinary
13769 @code{execute-extended-command}, such as prioritizing your most-used commands
13770 in the completion list and showing keyboard shortcuts, and it supports several
13771 completion systems for selecting commands, such as ido and ivy.")
13772 (license license:gpl3+)))
13773
13774 (define-public emacs-lorem-ipsum
13775 (let ((commit "4b39f6fed455d67f635b3837cf5668bf74d0f6cd"))
13776 (package
13777 (name "emacs-lorem-ipsum")
13778 (version (git-version "0.2" "1" commit))
13779 (home-page "https://github.com/jschaf/emacs-lorem-ipsum/")
13780 (source (origin
13781 (method git-fetch)
13782 (uri (git-reference
13783 (url home-page)
13784 (commit commit)))
13785 (file-name (git-file-name name version))
13786 (sha256
13787 (base32
13788 "0a3b18p3vdjci89prsgdzjnfxsl8p67vjhf8ai4qdng7zvh50lir"))))
13789 (build-system emacs-build-system)
13790 (synopsis "Insert dummy pseudo Latin text in Emacs")
13791 (description "This package provides convenience functions to insert
13792 dummy Latin text into a buffer. This can be useful if you need to produce
13793 paragraphs or pages of text for testing purposes.")
13794 (license license:gpl3+))))
13795
13796 (define-public emacs-lisp-extra-font-lock
13797 (let ((commit "4605eccbe1a7fcbd3cacf5b71249435413b4db4f"))
13798 (package
13799 (name "emacs-lisp-extra-font-lock")
13800 (version (git-version "0.0.6" "1" commit))
13801 (home-page "https://github.com/Lindydancer/lisp-extra-font-lock")
13802 (source (origin
13803 (method git-fetch)
13804 (uri (git-reference
13805 (url home-page)
13806 (commit commit)))
13807 (file-name (git-file-name name version))
13808 (sha256
13809 (base32
13810 "152vcp3mdlv33jf5va4rinl1d0k960gnfhbrqqrafazgx9j3ya8w"))))
13811 (build-system emacs-build-system)
13812 (synopsis "Highlight bound variables and quoted expressions in Emacs")
13813 (description "This package highlight the location where local variables
13814 is created (bound, for example, by let) as well as quoted and backquoted
13815 constant expressions.")
13816 (license license:gpl3+))))
13817
13818 (define-public emacs-docker-tramp
13819 (package
13820 (name "emacs-docker-tramp")
13821 (version "0.1")
13822 (source
13823 (origin
13824 (method git-fetch)
13825 (uri (git-reference
13826 (url "https://github.com/emacs-pe/docker-tramp.el")
13827 (commit (string-append "v" version))))
13828 (file-name (git-file-name name version))
13829 (sha256
13830 (base32
13831 "0lxvzmfg52fhxrhbvp92zwp7cv4i1rlxnkyyzgngj3sjm7y60yvg"))))
13832 (build-system emacs-build-system)
13833 (home-page "https://github.com/emacs-pe/docker-tramp.el")
13834 (synopsis "TRAMP integration for docker containers")
13835 (description
13836 "This package provides a TRAMP method for Docker containers.")
13837 (license license:gpl3+)))
13838
13839 (define-public emacs-docker
13840 (package
13841 (name "emacs-docker")
13842 (version "1.2.0")
13843 (source (origin
13844 (method git-fetch)
13845 (uri (git-reference
13846 (url "https://github.com/Silex/docker.el")
13847 (commit version)))
13848 (file-name (git-file-name name version))
13849 (sha256
13850 (base32
13851 "15kd86kaq1x6giz855q9w6zvnyc742j309j0pmm86rwx398g4rq1"))))
13852 (inputs
13853 `(("emacs-undercover" ,emacs-undercover)))
13854 (propagated-inputs
13855 `(("emacs-dash" ,emacs-dash)
13856 ("emacs-docker-tramp" ,emacs-docker-tramp)
13857 ("emacs-magit-popup" ,emacs-magit-popup)
13858 ("emacs-s" ,emacs-s)
13859 ("emacs-tablist" ,emacs-tablist)
13860 ("emacs-json-mode" ,emacs-json-mode)))
13861 (arguments
13862 `(#:phases
13863 (modify-phases %standard-phases
13864 (delete 'check)))) ;no tests
13865 (build-system emacs-build-system)
13866 (home-page "https://github.com/Silex/docker.el")
13867 (synopsis "Manage docker from Emacs")
13868 (description "This package provides an Emacs interface for Docker.")
13869 (license license:gpl3+)))
13870
13871 (define-public emacs-dockerfile-mode
13872 ;; Latest upstream release is too old.
13873 (let ((commit "7223d92718f78fa3ab15667cdb2ed90cfeb579e7"))
13874 (package
13875 (name "emacs-dockerfile-mode")
13876 (version (git-version "1.2" "1" commit))
13877 (source
13878 (origin
13879 (method git-fetch)
13880 (uri (git-reference
13881 (url "https://github.com/spotify/dockerfile-mode.git")
13882 (commit commit)))
13883 (file-name (git-file-name name version))
13884 (sha256
13885 (base32
13886 "0hmipgl4rk6aih11i8mnspwdijjiwk2y0wns6lzs8bgkvy3c064r"))))
13887 (build-system emacs-build-system)
13888 (propagated-inputs
13889 `(("emacs-s" ,emacs-s)))
13890 (home-page "https://github.com/spotify/dockerfile-mode")
13891 (synopsis "Major mode for editing Dockerfile")
13892 (description
13893 "This package provides a major mode @code{dockerfile-mode} for use with
13894 the standard @code{Dockerfile} file format.")
13895 (license license:asl2.0))))
13896
13897 (define-public emacs-lsp-mode
13898 (package
13899 (name "emacs-lsp-mode")
13900 (version "6.0")
13901 (source (origin
13902 (method git-fetch)
13903 (uri (git-reference
13904 (url "https://github.com/emacs-lsp/lsp-mode.git")
13905 (commit version)))
13906 (file-name (git-file-name name version))
13907 (sha256
13908 (base32
13909 "1v1mq6ixzlgiazj8fmg4xaqhsqn3l89iqy74yndhvzh2rdf0pbkl"))))
13910 (build-system emacs-build-system)
13911 (propagated-inputs
13912 `(("emacs-dash" ,emacs-dash)
13913 ("emacs-f" ,emacs-f)
13914 ("emacs-ht" ,emacs-ht)
13915 ("emacs-spinner" ,emacs-spinner)))
13916 (home-page "https://github.com/emacs-lsp/lsp-mode")
13917 (synopsis "Emacs client and library for the Language Server Protocol")
13918 (description "@code{LSP-mode} is a client and library implmentation for
13919 the Language Server Protocol. This mode aims to provide an IDE-like
13920 experience by providing optional integration with other popular Emacs packages
13921 like @code{company}, @code{flycheck}, and @code{projectile}.")
13922 (license license:gpl3+)))
13923
13924 (define-public emacs-lsp-ui
13925 (package
13926 (name "emacs-lsp-ui")
13927 (version "6.0")
13928 (source (origin
13929 (method git-fetch)
13930 (uri (git-reference
13931 (url "https://github.com/emacs-lsp/lsp-ui.git")
13932 (commit version)))
13933 (file-name (git-file-name name version))
13934 (sha256
13935 (base32
13936 "1r4327fd8cvjxfwkddp5c4bdskyncbs4sx9m3z2w4d773y2jrakc"))))
13937 (build-system emacs-build-system)
13938 (propagated-inputs
13939 `(("emacs-dash" ,emacs-dash)
13940 ("emacs-lsp-mode" ,emacs-lsp-mode)
13941 ("emacs-markdown-mode" ,emacs-markdown-mode)
13942 ("emacs-flycheck" ,emacs-flycheck)))
13943 (home-page "https://github.com/emacs-lsp/lsp-ui")
13944 (synopsis "User interface extensions for @code{lsp-mode}")
13945 (description
13946 "@code{LSP-ui} contains several enhancements and integrations for
13947 @code{lsp-mode}, such as visual flychecking, displaying references in-line,
13948 and code peeking.")
13949 (license license:gpl3+)))
13950
13951 (define-public emacs-helm-notmuch
13952 (package
13953 (name "emacs-helm-notmuch")
13954 (version "1.2")
13955 (home-page "https://github.com/emacs-helm/helm-notmuch/")
13956 (source (origin
13957 (method git-fetch)
13958 (uri (git-reference
13959 (url home-page)
13960 (commit version)))
13961 (file-name (git-file-name name version))
13962 (sha256
13963 (base32
13964 "1k038dbdpaa411gl4071x19fklhnizhr346plxw23lsnxir9dhqc"))))
13965 (build-system emacs-build-system)
13966 (propagated-inputs
13967 `(("emacs-helm" ,emacs-helm)
13968 ("notmuch" ,notmuch)))
13969 (synopsis "Search emails with Emacs Notmuch and Helm")
13970 (description
13971 "This package can be used to search emails in Emacs, searching result
13972 displays as you type thanks to Helm, though @command{notmuch-search} does the
13973 real search.")
13974 (license license:gpl3+)))
13975
13976 (define-public emacs-elmacro
13977 (let ((commit "89b9b0feabafd01fee48111d67131c4c9b5fed9a"))
13978 (package
13979 (name "emacs-elmacro")
13980 (version (git-version "1.1.0" "1" commit))
13981 (home-page "https://github.com/Silex/elmacro")
13982 (source (origin
13983 (method git-fetch)
13984 (uri (git-reference
13985 (url home-page)
13986 (commit commit)))
13987 (file-name (git-file-name name version))
13988 (sha256
13989 (base32
13990 "06wkzafh6vbcjf0m3sl253mgcq32p8cdv7vsfmyx51baa36938ha"))))
13991 (build-system emacs-build-system)
13992 (propagated-inputs
13993 `(("emacs-s" ,emacs-s)
13994 ("emacs-dash" ,emacs-dash)))
13995 (synopsis "Convert keyboard macros to Emacs Lisp")
13996 (description
13997 "This package displays keyboard macros or latest interactive commands
13998 as Emacs Lisp.")
13999 (license license:gpl3+))))
14000
14001 (define-public emacs-transient
14002 ;; 0.1.0 depends on lv.el but not later versions.
14003 (let ((commit "7e45a57ec81185631fe763733f64c99021df2a06"))
14004 (package
14005 (name "emacs-transient")
14006 (version (git-version "0.1.0" "1" commit))
14007 (source (origin
14008 (method git-fetch)
14009 (uri (git-reference
14010 (url "https://github.com/magit/transient")
14011 (commit commit)))
14012 (file-name (git-file-name name version))
14013 (sha256
14014 (base32
14015 "0r6d4c1lga3bk0s7q7y4v4hbpxnd9h40cjxybqvax2z902931fz1"))))
14016 (build-system gnu-build-system)
14017 (native-inputs `(("texinfo" ,texinfo)
14018 ("emacs" ,emacs-minimal)))
14019 (propagated-inputs
14020 `(("dash" ,emacs-dash)))
14021 (arguments
14022 `(#:modules ((guix build gnu-build-system)
14023 (guix build utils)
14024 (srfi srfi-26)
14025 (guix build emacs-utils))
14026 #:imported-modules (,@%gnu-build-system-modules
14027 (guix build emacs-utils))
14028 #:tests? #f ; tests are not included in the release
14029 #:make-flags (list "lisp" "info"
14030 (string-append "LOAD_PATH=-L . -L "
14031 (assoc-ref %build-inputs "dash")
14032 "/share/emacs/site-lisp/guix.d/dash-"
14033 ,(package-version emacs-dash)))
14034 #:phases
14035 (modify-phases %standard-phases
14036 (delete 'configure)
14037 (replace 'install
14038 (lambda* (#:key inputs outputs #:allow-other-keys)
14039 (let* ((out (assoc-ref outputs "out"))
14040 (lisp (string-append out "/share/emacs/site-lisp/guix.d/"
14041 "transient" "-" ,version))
14042 (info (string-append out "/share/info")))
14043 (for-each (cut install-file <> lisp)
14044 (find-files "." "\\.elc*$"))
14045 (install-file "docs/transient.info" (string-append info)))
14046 #t)))))
14047 (home-page "https://magit.vc/manual/transient")
14048 (synopsis "Transient commands in Emacs")
14049 (description
14050 "Taking inspiration from prefix keys and prefix arguments in Emacs,
14051 Transient implements a similar abstraction involving a prefix command, infix
14052 arguments and suffix commands. We could call this abstraction a \"transient
14053 command\", but because it always involves at least two commands (a prefix and
14054 a suffix) we prefer to call it just a \"transient\".")
14055 (license license:gpl3+))))
14056
14057 (define-public emacs-semantic-refactor
14058 ;; The last release, 0.5, was made on 2015-07-26 and there have been 47
14059 ;; commits since then.
14060 (let ((commit "6f2c97d17fb70f4ca2112f5a2b99a8ec162004f5"))
14061 (package
14062 (name "emacs-semantic-refactor")
14063 (version (git-version "0.5" "1" commit))
14064 (source
14065 (origin
14066 (method git-fetch)
14067 (uri (git-reference
14068 (url "https://github.com/tuhdo/semantic-refactor")
14069 (commit commit)))
14070 (file-name (git-file-name name version))
14071 (sha256
14072 (base32
14073 "1lyz3zjkx2csh0xdy1zpx8s32qp1p3sig57mwi9xhgpqjyf0axmb"))))
14074 (build-system emacs-build-system)
14075 (home-page "https://github.com/tuhdo/semantic-refactor")
14076 (synopsis "Refactoring tool for C/C++ and Lisp dialects")
14077 (description "This package provides a refactoring tool based on the
14078 Emacs Semantic parser framework. For C and C++ it supports operations such as:
14079
14080 @enumerate
14081 @item Generating class implementations
14082 @item Generating function prototypes
14083 @item Converting functions to function pointers
14084 @item Moving semantic units
14085 @item etc...
14086 @end enumerate
14087
14088 For Lisp dialects like Clojure, ELisp, and Scheme, it supports operations such
14089 as:
14090
14091 @enumerate
14092 @item Formatting the whole buffer
14093 @item Converting sexpressions to one or multiple lines
14094 @item etc...
14095 @end enumerate\n")
14096 (license license:gpl3+))))
14097
14098 (define-public emacs-nhexl-mode
14099 (package
14100 (name "emacs-nhexl-mode")
14101 (version "1.2")
14102 (source
14103 (origin
14104 (method url-fetch)
14105 (uri (string-append
14106 "https://elpa.gnu.org/packages/nhexl-mode-"
14107 version ".el"))
14108 (sha256
14109 (base32
14110 "031h22p564qdvr9khs05qcba06pmsk68cr7zyc7c04hfr3y3ziaf"))))
14111 (build-system emacs-build-system)
14112 (home-page "http://elpa.gnu.org/packages/nhexl-mode.html")
14113 (synopsis "Minor mode to edit files via hex-dump format")
14114 (description
14115 "This package implements NHexl mode, a minor mode for editing files
14116 in hex dump format. The mode command is called @command{nhexl-mode}.
14117
14118 This minor mode implements similar functionality to @command{hexl-mode},
14119 but using a different implementation technique, which makes it
14120 usable as a \"plain\" minor mode. It works on any buffer, and does
14121 not mess with the undo log or with the major mode.
14122
14123 It also comes with:
14124
14125 @itemize
14126 @item @command{nhexl-nibble-edit-mode}: a \"nibble editor\" minor mode, where
14127 the cursor pretends to advance by nibbles (4-bit) and the self-insertion keys
14128 (which only work for hex-digits) will only modify the nibble under point.
14129 @item @command{nhexl-overwrite-only-mode}: a minor mode to try and avoid
14130 moving text. In this minor mode, not only self-inserting keys overwrite
14131 existing text, but commands like `yank' and @command{kill-region} as well.
14132 @item It overrides @code{C-u} to use hexadecimal, so you can do @code{C-u a 4
14133 C-f} to advance by #xa4 characters.
14134 @end itemize\n")
14135 (license license:gpl3+)))
14136
14137 (define-public emacs-helm-wikipedia
14138 (let ((commit "126f044e0a0e1432e0791c33ce2a41875d704a9b"))
14139 (package
14140 (name "emacs-helm-wikipedia")
14141 (version (git-version "0.0.0" "1" commit))
14142 (home-page "https://github.com/emacs-helm/helm-wikipedia/")
14143 (source
14144 (origin
14145 (method git-fetch)
14146 (uri (git-reference
14147 (url home-page)
14148 (commit commit)))
14149 (file-name (git-file-name name version))
14150 (sha256
14151 (base32
14152 "148a5xsnbsiddhf9cl7yxdk41lrv38h0pip91kcflw9d7l0dp7pr"))))
14153 (build-system emacs-build-system)
14154 (inputs
14155 `(("helm" ,emacs-helm)))
14156 (synopsis "Search suggestions and article extracts from Wikipedia for Emacs")
14157 (description
14158 "This package provides an Emacs Helm interface for search suggestions
14159 and article extracts for Wikipedia.")
14160 (license license:gpl3+))))
14161
14162 (define-public emacs-webfeeder
14163 (package
14164 (name "emacs-webfeeder")
14165 (version "1.0.0")
14166 (source
14167 (origin
14168 (method url-fetch)
14169 (uri (string-append
14170 "https://elpa.gnu.org/packages/webfeeder-"
14171 version
14172 ".tar"))
14173 (sha256
14174 (base32
14175 "06y5vxw9m6pmbrzb8v2i3w9dnhgqxz06vyx1knmgi9cczlrj4a64"))))
14176 (build-system emacs-build-system)
14177 (home-page "https://gitlab.com/Ambrevar/emacs-webfeeder")
14178 (synopsis "Build RSS and Atom webfeeds from HTML files")
14179 (description
14180 "Webfeeder is an Emacs library to generate RSS and Atom feeds from HTML
14181 files. The various elements of the HTML input are parsed with customizable
14182 functions (e.g. @code{webfeeder-title-function}).")
14183 (license license:gpl3+)))
14184
14185 (define-public emacs-evil-numbers
14186 (let ((commit "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e"))
14187 (package
14188 (name "emacs-evil-numbers")
14189 (version (git-version "0.4" "1" commit))
14190 (source (origin
14191 (method git-fetch)
14192 (uri (git-reference
14193 (url "https://github.com/dieggsy/evil-numbers")
14194 (commit commit)))
14195 (file-name (git-file-name name version))
14196 (sha256
14197 (base32
14198 "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np"))))
14199 (build-system emacs-build-system)
14200 (home-page "https://github.com/dieggsy/evil-numbers")
14201 (synopsis "Increment and decrement numbers in Emacs")
14202 (description "This package increments and decrements binary, octal,
14203 decimal and hex literals. It works like C-a/C-x in Vim, i.e. searches for
14204 number up to EOL and then increments or decrements and keeps zero padding up
14205 (unlike in Vim). When a region is active, as in Evil's visual mode, all the
14206 numbers within that region will be incremented/decremented (unlike in Vim).
14207
14208 It is a fork of https://github.com/cofi/evil-numbers, which is unmaintained.")
14209 (license license:gpl3+))))