gnu: nnn: Don't use NAME in source URI.
[jackhill/guix/guix.git] / gnu / packages / emacs-xyz.scm
CommitLineData
eeb883cb
RW
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>
db2badeb 7;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
eeb883cb
RW
8;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
9;;; Copyright © 2015, 2016, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
10;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
11;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
12;;; Copyright © 2016 David Thompson <davet@gnu.org>
13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
14;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
15;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
17;;; Copyright © 2016, 2017, 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
18;;; Copyright © 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com>
43af5f9d 19;;; Copyright © 2016, 2017, 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
eeb883cb 20;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
71066710 21;;; Copyright © 2017, 2018, 2019 Mathieu Othacehe <m.othacehe@gmail.com>
eeb883cb
RW
22;;; Copyright © 2017, 2018, 2019 Clément Lassieur <clement@lassieur.org>
23;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
24;;; Copyright © 2017, 2018 Kyle Meyer <kyle@kyleam.com>
25;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
26;;; Copyright © 2017 George Clemmer <myglc2@gmail.com>
27;;; Copyright © 2017, 2018 Feng Shu <tumashu@163.com>
28;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
29;;; Copyright © 2017, 2018 Oleg Pykhalov <go.wigust@gmail.com>
30;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
31;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
32;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
33;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
82328c01 34;;; Copyright © 2017, 2018, 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
eeb883cb
RW
35;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com>
36;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
9830f1a2 37;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
eeb883cb
RW
38;;; Copyright © 2018, 2019 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
39;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
40;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
41;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
42;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
43;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
44;;;
45;;; This file is part of GNU Guix.
46;;;
47;;; GNU Guix is free software; you can redistribute it and/or modify it
48;;; under the terms of the GNU General Public License as published by
49;;; the Free Software Foundation; either version 3 of the License, or (at
50;;; your option) any later version.
51;;;
52;;; GNU Guix is distributed in the hope that it will be useful, but
53;;; WITHOUT ANY WARRANTY; without even the implied warranty of
54;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
55;;; GNU General Public License for more details.
56;;;
57;;; You should have received a copy of the GNU General Public License
58;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
59
60(define-module (gnu packages emacs-xyz)
61 #:use-module ((guix licenses) #:prefix license:)
62 #:use-module (guix packages)
63 #:use-module (guix cvs-download)
64 #:use-module (guix download)
65 #:use-module (guix git-download)
66 #:use-module (guix build-system gnu)
67 #:use-module (guix build-system cmake)
68 #:use-module (guix build-system emacs)
69 #:use-module (guix build-system glib-or-gtk)
c010ec65 70 #:use-module (guix build-system perl)
eeb883cb
RW
71 #:use-module (guix build-system trivial)
72 #:use-module (gnu packages)
73 #:use-module (gnu packages admin)
74 #:use-module (gnu packages audio)
75 #:use-module (gnu packages bash)
76 #:use-module (gnu packages cmake)
77 #:use-module (gnu packages code)
78 #:use-module (gnu packages databases)
79 #:use-module (gnu packages emacs)
80 #:use-module (gnu packages guile)
81 #:use-module (gnu packages gtk)
82 #:use-module (gnu packages gnome)
83 #:use-module (gnu packages ncurses)
84 #:use-module (gnu packages python)
85 #:use-module (gnu packages python-xyz)
86 #:use-module (gnu packages tex)
87 #:use-module (gnu packages texinfo)
88 #:use-module (gnu packages tcl)
89 #:use-module (gnu packages tls)
90 #:use-module (gnu packages pkg-config)
91 #:use-module (gnu packages xorg)
92 #:use-module (gnu packages lesstif)
93 #:use-module (gnu packages llvm)
94 #:use-module (gnu packages image)
95 #:use-module (gnu packages linux)
c010ec65 96 #:use-module (gnu packages libevent)
eeb883cb
RW
97 #:use-module (gnu packages version-control)
98 #:use-module (gnu packages imagemagick)
99 #:use-module (gnu packages w3m)
100 #:use-module (gnu packages wget)
101 #:use-module (gnu packages autotools)
102 #:use-module (gnu packages base)
103 #:use-module (gnu packages compression)
104 #:use-module (gnu packages xml)
105 #:use-module (gnu packages glib)
106 #:use-module (gnu packages acl)
107 #:use-module (gnu packages mail)
108 #:use-module (gnu packages package-management)
109 #:use-module (gnu packages perl)
110 #:use-module (gnu packages pdf)
111 #:use-module (gnu packages scheme)
112 #:use-module (gnu packages xiph)
113 #:use-module (gnu packages mp3)
114 #:use-module (gnu packages gettext)
115 #:use-module (gnu packages fribidi)
116 #:use-module (gnu packages gd)
117 #:use-module (gnu packages fontutils)
118 #:use-module (gnu packages password-utils)
119 #:use-module (gnu packages pulseaudio)
120 #:use-module (gnu packages xdisorg)
121 #:use-module (gnu packages shells)
122 #:use-module (gnu packages sqlite)
123 #:use-module (gnu packages gnupg)
124 #:use-module (gnu packages video)
125 #:use-module (gnu packages haskell)
126 #:use-module (gnu packages wordnet)
127 #:use-module (guix utils)
128 #:use-module (srfi srfi-1)
129 #:use-module (ice-9 match))
130
131;;;
132;;; Emacs hacking.
133;;;
134
135(define-public emacs-geiser
136 (package
137 (name "emacs-geiser")
138 (version "0.10")
139 (source (origin
140 (method url-fetch)
141 (uri (string-append "mirror://savannah/geiser/" version
142 "/geiser-" version ".tar.gz"))
143 (sha256
144 (base32
145 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
146 (build-system gnu-build-system)
147 (arguments
148 '(#:phases
149 (modify-phases %standard-phases
150 (add-after 'install 'post-install
151 (lambda* (#:key outputs #:allow-other-keys)
152 (symlink "geiser-install.el"
153 (string-append (assoc-ref outputs "out")
154 "/share/emacs/site-lisp/"
155 "geiser-autoloads.el"))
156 #t)))))
157 (inputs `(("guile" ,guile-2.2)))
158 (native-inputs `(("emacs" ,emacs-minimal)))
159 (home-page "https://nongnu.org/geiser/")
160 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
161 (description
162 "Geiser is a collection of Emacs major and minor modes that conspire with
163one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
164continuously running Scheme interpreter takes the center of the stage in
165Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
166implementation, Emacs and, ultimately, the schemer, giving them access to live
167metadata.")
168 (license license:bsd-3)))
169
170(define-public geiser
171 (deprecated-package "geiser" emacs-geiser))
172
173(define-public emacs-paredit
174 (package
175 (name "emacs-paredit")
176 (version "24")
177 (source (origin
178 (method url-fetch)
179 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
180 version ".el"))
181 (sha256
182 (base32
183 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
184 (build-system emacs-build-system)
185 (home-page "http://mumble.net/~campbell/emacs/paredit/")
186 (synopsis "Emacs minor mode for editing parentheses")
187 (description
188 "ParEdit (paredit.el) is a minor mode for performing structured editing
189of S-expression data. The typical example of this would be Lisp or Scheme
190source code.
191
192ParEdit helps **keep parentheses balanced** and adds many keys for moving
193S-expressions and moving around in S-expressions. Its behavior can be jarring
194for those who may want transient periods of unbalanced parentheses, such as
195when typing parentheses directly or commenting out code line by line.")
196 (license license:gpl3+)))
197
198(define-public paredit
199 (deprecated-package "paredit" emacs-paredit))
200
201(define-public git-modes
202 (package
203 (name "emacs-git-modes")
204 (version "1.2.8")
205 (source (origin
8b9fab8f
EF
206 (method git-fetch)
207 (uri (git-reference
208 (url "https://github.com/magit/git-modes")
209 (commit version)))
210 (file-name (git-file-name name version))
eeb883cb
RW
211 (sha256
212 (base32
8b9fab8f 213 "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72"))))
eeb883cb
RW
214 (build-system emacs-build-system)
215 (home-page "https://github.com/magit/git-modes")
216 (synopsis "Emacs major modes for Git configuration files")
217 (description
218 "This package provides Emacs major modes for editing various Git
219configuration files, such as .gitattributes, .gitignore, and .git/config.")
220 (license license:gpl3+)))
221
222(define-public git-modes/old-name
223 (deprecated-package "git-modes" git-modes))
224
225(define-public emacs-with-editor
226 (package
227 (name "emacs-with-editor")
228 (version "2.8.0")
229 (source (origin
230 (method git-fetch)
231 (uri (git-reference
232 (url "https://github.com/magit/with-editor.git")
233 (commit (string-append "v" version))))
234 (file-name (git-file-name name version))
235 (sha256
236 (base32
237 "1bbzvxnjpxqyvi808isld025b3pcidn4r2xf8hnk9bmzcfdvdr6q"))))
238 (build-system emacs-build-system)
239 (propagated-inputs
240 `(("emacs-dash" ,emacs-dash)))
241 (home-page "https://github.com/magit/with-editor")
242 (synopsis "Emacs library for using Emacsclient as EDITOR")
243 (description
244 "This package provides an Emacs library to use the Emacsclient as
245@code{$EDITOR} of child processes, making sure they know how to call home.
246For remote processes a substitute is provided, which communicates with Emacs
247on stdout instead of using a socket as the Emacsclient does.")
248 (license license:gpl3+)))
249
250(define-public emacs-magit
251 (package
252 (name "emacs-magit")
d49d0534 253 (version "2.13.1")
eeb883cb 254 (source (origin
d49d0534
EF
255 (method git-fetch)
256 (uri (git-reference
257 (url "https://github.com/magit/magit")
258 (commit version)))
259 (file-name (git-file-name name version))
eeb883cb
RW
260 (sha256
261 (base32
d49d0534 262 "1kmjjcvhcb21qi6kmrlhf92ync8va5l41n9ban8kj25h7dbqyiym"))))
eeb883cb
RW
263 (build-system gnu-build-system)
264 (native-inputs `(("texinfo" ,texinfo)
265 ("emacs" ,emacs-minimal)))
266 (inputs
267 `(("git" ,git)
268 ("perl" ,perl)))
269 (propagated-inputs
270 `(("dash" ,emacs-dash)
271 ("ghub" ,emacs-ghub)
ae848798
EF
272 ("graphql" ,emacs-graphql)
273 ("treepy" ,emacs-treepy)
eeb883cb
RW
274 ("magit-popup" ,emacs-magit-popup)
275 ("with-editor" ,emacs-with-editor)))
276 (arguments
277 `(#:test-target "test"
278 #:tests? #f ; tests are not included in the release
279
280 #:make-flags
281 (list (string-append "PREFIX=" %output)
282 ;; Don't put .el files in a sub-directory.
283 (string-append "lispdir=" %output "/share/emacs/site-lisp")
284 (string-append "DASH_DIR="
285 (assoc-ref %build-inputs "dash")
286 "/share/emacs/site-lisp/guix.d/dash-"
287 ,(package-version emacs-dash))
288 (string-append "GHUB_DIR="
289 (assoc-ref %build-inputs "ghub")
290 "/share/emacs/site-lisp/guix.d/ghub-"
291 ,(package-version emacs-ghub))
ae848798
EF
292 (string-append "GRAPHQL_DIR="
293 (assoc-ref %build-inputs "graphql")
294 "/share/emacs/site-lisp/guix.d/graphql-"
295 ,(package-version emacs-graphql))
296 (string-append "TREEPY_DIR="
297 (assoc-ref %build-inputs "treepy")
298 "/share/emacs/site-lisp/guix.d/treepy-"
299 ,(package-version emacs-treepy))
eeb883cb
RW
300 (string-append "MAGIT_POPUP_DIR="
301 (assoc-ref %build-inputs "magit-popup")
302 "/share/emacs/site-lisp/guix.d/magit-popup-"
303 ,(package-version emacs-magit-popup))
304 (string-append "WITH_EDITOR_DIR="
305 (assoc-ref %build-inputs "with-editor")
306 "/share/emacs/site-lisp/guix.d/with-editor-"
307 ,(package-version emacs-with-editor)))
308
309 #:phases
310 (modify-phases %standard-phases
311 (delete 'configure)
312 (add-before
313 'build 'patch-exec-paths
314 (lambda* (#:key inputs #:allow-other-keys)
315 (let ((perl (assoc-ref inputs "perl")))
316 (substitute* "lisp/magit-sequence.el"
317 (("perl") (string-append perl "/bin/perl")))
318 #t))))))
319 (home-page "https://magit.vc/")
320 (synopsis "Emacs interface for the Git version control system")
321 (description
322 "With Magit, you can inspect and modify your Git repositories with Emacs.
323You can review and commit the changes you have made to the tracked files, for
324example, and you can browse the history of past changes. There is support for
325cherry picking, reverting, merging, rebasing, and other common Git
326operations.")
327 (license license:gpl3+)))
328
329(define-public magit
330 (deprecated-package "magit" emacs-magit))
331
332(define-public emacs-magit-svn
333 (package
334 (name "emacs-magit-svn")
427530b9 335 (version "2.2.1")
eeb883cb 336 (source (origin
daa82371
EF
337 (method git-fetch)
338 (uri (git-reference
339 (url "https://github.com/magit/magit-svn")
340 (commit version)))
341 (file-name (git-file-name name version))
eeb883cb
RW
342 (sha256
343 (base32
427530b9 344 "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"))))
eeb883cb 345 (build-system trivial-build-system)
daa82371 346 (native-inputs `(("emacs" ,emacs-minimal)))
eeb883cb 347 (propagated-inputs `(("dash" ,emacs-dash)
ff1d5478 348 ("ghub" ,emacs-ghub)
ae848798
EF
349 ("graphql" ,emacs-graphql)
350 ("treepy" ,emacs-treepy)
eeb883cb 351 ("with-editor" ,emacs-with-editor)
ff1d5478
EF
352 ("magit" ,emacs-magit)
353 ("magit-popup" ,emacs-magit-popup)))
eeb883cb
RW
354 (arguments
355 `(#:modules ((guix build utils)
356 (guix build emacs-utils))
357
358 #:builder
359 (begin
360 (use-modules (guix build utils)
361 (guix build emacs-utils))
362
daa82371
EF
363 (let ((emacs (string-append (assoc-ref %build-inputs "emacs")
364 "/bin/emacs"))
365 (magit (string-append (assoc-ref %build-inputs "magit")
366 "/share/emacs/site-lisp"))
ff1d5478
EF
367 (magit-popup (string-append (assoc-ref %build-inputs "magit-popup")
368 "/share/emacs/site-lisp/guix.d/magit-popup-"
369 ,(package-version emacs-magit-popup)))
370 (ghub (string-append (assoc-ref %build-inputs "ghub")
371 "/share/emacs/site-lisp/guix.d/ghub-"
372 ,(package-version emacs-ghub)))
ae848798
EF
373 (graphql (string-append (assoc-ref %build-inputs "graphql")
374 "/share/emacs/site-lisp/guix.d/graphql-"
375 ,(package-version emacs-graphql)))
376 (treepy (string-append (assoc-ref %build-inputs "treepy")
377 "/share/emacs/site-lisp/guix.d/treepy-"
378 ,(package-version emacs-treepy)))
daa82371
EF
379 (dash (string-append (assoc-ref %build-inputs "dash")
380 "/share/emacs/site-lisp/guix.d/dash-"
381 ,(package-version emacs-dash)))
382 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
383 "/share/emacs/site-lisp/guix.d/with-editor-"
384 ,(package-version emacs-with-editor)))
385 (source (assoc-ref %build-inputs "source"))
386 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
eeb883cb 387
daa82371 388 (install-file (string-append source "/magit-svn.el")
eeb883cb
RW
389 lisp-dir)
390
391 (with-directory-excursion lisp-dir
392 (parameterize ((%emacs emacs))
393 (emacs-generate-autoloads ,name lisp-dir)
394 (setenv "EMACSLOADPATH"
ff1d5478 395 (string-append ":" magit ":" magit-popup ":" ghub ":"
ae848798 396 ":" graphql ":" treepy ":" dash ":" with-editor))
eeb883cb
RW
397 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
398 #t))))
399 (home-page "https://github.com/magit/magit-svn")
400 (synopsis "Git-SVN extension to Magit")
401 (description
402 "This package is an extension to Magit, the Git Emacs mode, providing
403support for Git-SVN.")
404 (license license:gpl3+)))
405
406(define-public magit-svn
407 (deprecated-package "magit-svn" emacs-magit-svn))
408
409(define-public emacs-magit-popup
410 (package
411 (name "emacs-magit-popup")
412 (version "2.12.5")
413 (source (origin
414 (method git-fetch)
415 (uri (git-reference
416 (url "https://github.com/magit/magit-popup.git")
417 (commit (string-append "v" version))))
418 (file-name (git-file-name name version))
419 (sha256
420 (base32
421 "13riknyqr6vxqll80sfhvz165flvdz367rbd0pr5slb01bnfsi2i"))))
422 (build-system emacs-build-system)
423 (arguments
424 `(#:phases
425 (modify-phases %standard-phases
426 (add-before 'install 'make-info
427 (lambda _
428 (invoke "make" "info"))))))
429 (native-inputs
430 `(("texinfo" ,texinfo)))
431 (propagated-inputs
432 `(("emacs-dash" ,emacs-dash)))
433 (home-page "https://github.com/magit/magit-popup")
434 (synopsis "Define prefix-infix-suffix command combos")
435 (description
436 "This library implements a generic interface for toggling switches and
437setting options and then invoking an Emacs command which does something with
438these arguments. The prototypical use is for the command to call an external
439process, passing on the arguments as command line arguments.")
440 (license license:gpl3+)))
441
442(define-public emacs-treepy
443 (package
444 (name "emacs-treepy")
445 (version "0.1.1")
446 (source (origin
447 (method git-fetch)
448 (uri (git-reference
449 (url "https://github.com/volrath/treepy.el.git")
450 (commit version)))
451 (file-name (git-file-name name version))
452 (sha256
453 (base32
454 "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"))))
455 (build-system emacs-build-system)
456 (home-page
457 "https://github.com/volrath/treepy.el")
458 (synopsis "Tree traversal tools")
459 (description
460 "Generic tools for recursive and iterative tree traversal based on
461clojure.walk and clojure.zip respectively.")
462 (license license:gpl3+)))
463
464(define-public emacs-graphql
465 (package
466 (name "emacs-graphql")
467 (version "0.1.1")
468 (source (origin
469 (modules '((guix build utils)))
470 ;; Remove examples file with references to external packages as
471 ;; they do not exist at compilation time.
472 (snippet
473 '(begin (delete-file "examples.el")
474 #t))
475 (method git-fetch)
476 (uri (git-reference
477 (url "https://github.com/vermiculus/graphql.el.git")
478 (commit version)))
479 (file-name (git-file-name name version))
480 (sha256
481 (base32
482 "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"))))
483 (build-system emacs-build-system)
484 (home-page
485 "https://github.com/vermiculus/graphql.el")
486 (synopsis "GraphQL utilities")
487 (description
488 "GraphQL.el provides a generally-applicable domain-specific language for
489creating and executing GraphQL queries against your favorite web services.
490GraphQL is a data query language and runtime designed and used to request and
491deliver data to mobile and web apps.")
492 (license license:gpl3+)))
493
494(define-public emacs-ghub
495 (package
496 (name "emacs-ghub")
ae848798 497 (version "3.2.0")
eeb883cb 498 (source (origin
0c662875
EF
499 (method git-fetch)
500 (uri (git-reference
501 (url "https://github.com/magit/ghub")
502 (commit (string-append "v" version))))
503 (file-name (git-file-name name version))
eeb883cb
RW
504 (sha256
505 (base32
ae848798 506 "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl"))))
eeb883cb
RW
507 (build-system emacs-build-system)
508 (arguments
509 `(#:phases
510 (modify-phases %standard-phases
511 (add-before 'install 'make-info
512 (lambda _
513 (invoke "make" "info"))))))
514 (native-inputs
515 `(("texinfo" ,texinfo)))
ae848798
EF
516 (propagated-inputs
517 `(("dash" ,emacs-dash)
518 ("graphql" ,emacs-graphql)
519 ("treepy" ,emacs-treepy)))
eeb883cb 520 (home-page "https://github.com/magit/ghub")
ae848798 521 (synopsis "Emacs client libraries for the APIs of various Git forges")
eeb883cb 522 (description
ae848798
EF
523 "Ghub provides basic support for using the APIs of various Git forges from
524Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
525Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
526handful of functions that are not resource-specific.")
eeb883cb
RW
527 (license license:gpl3+)))
528
529(define-public emacs-scribble-mode
530 (let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
531 (version "0.0")
532 (revision 0))
533 (package
534 (name "emacs-scribble-mode")
535 (version (if (zero? revision)
536 version
537 (string-append version "-"
538 (number->string revision)
539 "." (string-take commit 7))))
540 (source (origin
541 (method git-fetch)
542 (uri (git-reference
543 (url "https://github.com/emacs-pe/scribble-mode.git")
544 (commit commit)))
545 (sha256
546 (base32
547 "0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
548 (build-system emacs-build-system)
549 (home-page "https://github.com/emacs-pe/scribble-mode")
550 (synopsis "Emacs mode for editing the Scribble documentation syntax.")
551 (description
552 "This package provides basic syntax highlighting and editing support
553for editing Racket's Scribble documentation syntax in Emacs.")
554 (license license:gpl3+))))
555
556(define-public emacs-haskell-mode
557 (package
558 (name "emacs-haskell-mode")
559 (version "16.1")
560 (source (origin
f5350a07
EF
561 (method git-fetch)
562 (uri (git-reference
563 (url "https://github.com/haskell/haskell-mode")
564 (commit (string-append "v" version))))
565 (file-name (git-file-name name version))
eeb883cb 566 (sha256
f5350a07 567 (base32 "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"))
eeb883cb
RW
568 (patches
569 (search-patches ; backport test failure fixes
570 "haskell-mode-unused-variables.patch"
571 "haskell-mode-make-check.patch"))))
572 (inputs
573 `(("emacs-el-search" ,emacs-el-search) ; for tests
574 ("emacs-stream" ,emacs-stream))) ; for tests
575 (propagated-inputs
576 `(("emacs-dash" ,emacs-dash)))
577 (native-inputs
578 `(("emacs" ,emacs-minimal)
579 ("texinfo" ,texinfo)))
580 (build-system gnu-build-system)
581 (arguments
582 `(#:make-flags (list (string-append "EMACS="
583 (assoc-ref %build-inputs "emacs")
584 "/bin/emacs"))
585 #:modules ((ice-9 match)
586 (srfi srfi-26)
587 ,@%gnu-build-system-modules)
588 #:phases
589 (modify-phases %standard-phases
590 (delete 'configure)
591 (add-before
592 'build 'pre-build
593 (lambda* (#:key inputs #:allow-other-keys)
594 (define (el-dir store-dir)
595 (match (find-files store-dir "\\.el$")
596 ((f1 f2 ...) (dirname f1))
597 (_ "")))
598
599 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
600 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
601
602 (setenv "SHELL" "sh")
603 (setenv "EMACSLOADPATH"
604 (string-concatenate
605 (map (match-lambda
606 (((? emacs-prefix? name) . dir)
607 (string-append (el-dir dir) ":"))
608 (_ ""))
609 inputs)))
610 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
611 ;; embed filename to fix test failure
612 (let ((file "tests/haskell-cabal-tests.el"))
613 (substitute* file
614 (("\\(buffer-file-name\\)")
615 (format #f "(or (buffer-file-name) ~s)" file))))
616 #t)))
617 (replace
618 'install
619 (lambda* (#:key outputs #:allow-other-keys)
620 (let* ((out (assoc-ref outputs "out"))
621 (el-dir (string-append out "/share/emacs/site-lisp"))
622 (doc (string-append
623 out "/share/doc/haskell-mode-" ,version))
624 (info (string-append out "/share/info")))
625 (define (copy-to-dir dir files)
626 (for-each (lambda (f)
627 (install-file f dir))
628 files))
629
630 (with-directory-excursion "doc"
631 (invoke "makeinfo" "haskell-mode.texi")
632 (install-file "haskell-mode.info" info))
633 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
634 (copy-to-dir el-dir (find-files "." "\\.elc?"))
635 ;; These are part of other packages.
636 (with-directory-excursion el-dir
637 (for-each delete-file '("dash.el" "ert.el")))
638 #t))))))
639 (home-page "https://github.com/haskell/haskell-mode")
640 (synopsis "Haskell mode for Emacs")
641 (description
642 "This is an Emacs mode for editing, debugging and developing Haskell
643programs.")
644 (license license:gpl3+)))
645
646(define-public haskell-mode
647 (deprecated-package "haskell-mode" emacs-haskell-mode))
648
649(define-public emacs-flycheck
650 (package
651 (name "emacs-flycheck")
652 (version "31")
653 (source (origin
654 (method url-fetch)
655 (uri (string-append
656 "https://github.com/flycheck/flycheck/releases/download/"
657 version "/flycheck-" version ".tar"))
658 (sha256
659 (base32
660 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
661 (modules '((guix build utils)))
662 (snippet `(begin
663 ;; Change 'flycheck-version' so that it does not
664 ;; attempt to get its version from pkg-info.el.
665 (substitute* "flycheck.el"
666 (("\\(pkg-info-version-info 'flycheck\\)")
667 (string-append "\"" ,version "\"")))
668 #t))))
669 (build-system emacs-build-system)
670 (propagated-inputs
671 `(("emacs-dash" ,emacs-dash)))
672 (home-page "https://www.flycheck.org")
673 (synopsis "On-the-fly syntax checking")
674 (description
675 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
676replacement for the older Flymake extension which is part of GNU Emacs, with
677many improvements and additional features.
678
679Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
680checking for over 30 programming and markup languages with more than 70
681different tools. It highlights errors and warnings inline in the buffer, and
682provides an optional IDE-like error list.")
683 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
684
685(define-public emacs-a
686 (package
687 (name "emacs-a")
688 (version "0.1.1")
689 (source (origin
690 (method git-fetch)
691 (uri (git-reference
692 (url "https://github.com/plexus/a.el.git")
693 (commit (string-append "v" version))))
694 (file-name (git-file-name name version))
695 (sha256
696 (base32
697 "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
698 (build-system emacs-build-system)
699 (home-page "https://github.com/plexus/a.el/")
700 (synopsis
701 "Emacs library for dealing with association lists and hash tables")
702 (description "@code{emacs-a} provides Emacs Lisp functions for dealing
703with associative structures in a uniform and functional way. These functions
704can take association lists, hash tables, and in some cases vectors (where the
705index is considered the key).")
706 (license license:gpl3+)))
707
60ceff7e
NG
708(define-public emacs-anaphora
709 (package
710 (name "emacs-anaphora")
711 (version "1.0.4")
712 (source
713 (origin
714 (method git-fetch)
715 (uri (git-reference
716 (url "https://github.com/rolandwalker/anaphora.git")
717 (commit (string-append "v" version))))
718 (file-name (git-file-name name version))
719 (sha256
720 (base32
721 "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"))))
722 (build-system emacs-build-system)
723 (home-page "https://github.com/rolandwalker/anaphora/")
724 (synopsis "Anaphoric expressions for Emacs Lisp")
725 (description "@code{emacs-anaphora} implements anaphoric expressions for
726Emacs Lisp.
727
728Anaphoric expressions implicitly create one or more temporary variables which
729can be referred to during the expression. This technique can improve clarity
730in certain cases. It also enables recursion for anonymous functions.")
731 (license license:public-domain)))
732
eeb883cb
RW
733\f
734;;;
735;;; Web browsing.
736;;;
737
738(define-public emacs-w3m
739 ;; Emacs-w3m follows a "rolling release" model.
740 (package
741 (name "emacs-w3m")
742 (version "2018-11-11")
743 (source (origin
744 (method cvs-fetch)
745 (uri (cvs-reference
746 (root-directory
747 ":pserver:anonymous@cvs.namazu.org:/storage/cvsroot")
748 (module "emacs-w3m")
749 (revision version)))
750 (file-name (string-append name "-" version "-checkout"))
751 (sha256
752 (base32
753 "0nvahdbjs12zg7zsk4gql02mvnv56cf1rwj2f5p42lwp3xvswiwp"))))
754 (build-system gnu-build-system)
755 (native-inputs `(("autoconf" ,autoconf)
756 ("texinfo" ,texinfo)
757 ("emacs" ,emacs-minimal)))
758 (inputs `(("w3m" ,w3m)
759 ("imagemagick" ,imagemagick)))
760 (arguments
761 `(#:modules ((guix build gnu-build-system)
762 (guix build utils)
763 (guix build emacs-utils))
764 #:imported-modules (,@%gnu-build-system-modules
765 (guix build emacs-utils))
766 #:configure-flags
767 (let ((out (assoc-ref %outputs "out")))
768 (list (string-append "--with-lispdir="
769 out "/share/emacs/site-lisp")
770 (string-append "--with-icondir="
771 out "/share/images/emacs-w3m")
772 ;; Leave .el files uncompressed, otherwise GC can't
773 ;; identify run-time dependencies. See
774 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
775 "--without-compress-install"))
776 #:tests? #f ; no check target
777 #:phases
778 (modify-phases %standard-phases
779 (add-after 'unpack 'autoconf
780 (lambda _
781 (invoke "autoconf")))
782 (add-before 'configure 'support-emacs!
783 (lambda _
784 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
785 ;; unsupported.
786 (substitute* "configure"
787 (("EMACS_FLAVOR=unsupported")
788 "EMACS_FLAVOR=emacs"))
789 #t))
790 (add-before 'build 'patch-exec-paths
791 (lambda* (#:key inputs outputs #:allow-other-keys)
792 (let ((out (assoc-ref outputs "out"))
793 (w3m (assoc-ref inputs "w3m"))
794 (imagemagick (assoc-ref inputs "imagemagick"))
795 (coreutils (assoc-ref inputs "coreutils")))
796 (make-file-writable "w3m.el")
797 (emacs-substitute-variables "w3m.el"
798 ("w3m-command" (string-append w3m "/bin/w3m"))
799 ("w3m-touch-command"
800 (string-append coreutils "/bin/touch"))
801 ("w3m-icon-directory"
802 (string-append out "/share/images/emacs-w3m")))
803 (make-file-writable "w3m-image.el")
804 (emacs-substitute-variables "w3m-image.el"
805 ("w3m-imagick-convert-program"
806 (string-append imagemagick "/bin/convert"))
807 ("w3m-imagick-identify-program"
808 (string-append imagemagick "/bin/identify")))
809 #t)))
810 (replace 'install
811 (lambda* (#:key outputs #:allow-other-keys)
812 (invoke "make" "install" "install-icons")
813 (with-directory-excursion
814 (string-append (assoc-ref outputs "out")
815 "/share/emacs/site-lisp")
816 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
817 (symlink "w3m-load.el" "w3m-autoloads.el")
818 #t))))))
819 (home-page "http://emacs-w3m.namazu.org/")
820 (synopsis "Simple Web browser for Emacs based on w3m")
821 (description
822 "Emacs-w3m is an emacs interface for the w3m web browser.")
823 (license license:gpl2+)))
824
825(define-public emacs-wget
826 (package
827 (name "emacs-wget")
828 (version "0.5.0")
829 (source (origin
830 (method url-fetch)
831 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
832 version ".orig.tar.gz"))
833 (sha256
834 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
835 (build-system gnu-build-system)
836 (inputs `(("wget" ,wget)))
837 (native-inputs `(("emacs" ,emacs-minimal)))
838 (arguments
839 `(#:modules ((guix build gnu-build-system)
840 (guix build utils)
841 (guix build emacs-utils))
842 #:imported-modules (,@%gnu-build-system-modules
843 (guix build emacs-utils))
844 #:tests? #f ; no check target
845 #:phases
846 (modify-phases %standard-phases
847 (replace 'configure
848 (lambda* (#:key outputs #:allow-other-keys)
849 (substitute* "Makefile"
850 (("/usr/local") (assoc-ref outputs "out"))
851 (("/site-lisp/emacs-wget") "/site-lisp"))
852 #t))
853 (add-before 'build 'patch-exec-paths
854 (lambda* (#:key inputs outputs #:allow-other-keys)
855 (let ((wget (assoc-ref inputs "wget")))
856 (emacs-substitute-variables "wget.el"
857 ("wget-command" (string-append wget "/bin/wget"))))
858 #t))
859 (add-after 'install 'post-install
860 (lambda* (#:key outputs #:allow-other-keys)
861 (emacs-generate-autoloads
862 "wget" (string-append (assoc-ref outputs "out")
863 "/share/emacs/site-lisp/"))
864 #t)))))
865 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
866 (synopsis "Simple file downloader for Emacs based on wget")
867 (description
868 "Emacs-wget is an emacs interface for the wget file downloader.")
869 (license license:gpl2+)))
870
871\f
872;;;
873;;; Multimedia.
874;;;
875
876(define-public emacs-emms
877 (package
878 (name "emacs-emms")
879 (version "5.1")
880 (source (origin
881 (method url-fetch)
882 (uri (string-append "mirror://gnu/emms/emms-"
883 version ".tar.gz"))
884 (sha256
885 (base32
886 "149ddczyx6x10zn4mn8g0rll1rwf4yciv8x6j0qdnlbwszblx2x6"))
887 (modules '((guix build utils)))
888 (snippet
889 '(begin
890 (substitute* "Makefile"
891 (("/usr/bin/install-info")
892 ;; No need to use 'install-info' since it would create a
893 ;; useless 'dir' file.
894 "true")
895 (("^INFODIR=.*")
896 ;; Install Info files to $out/share/info, not $out/info.
897 "INFODIR := $(PREFIX)/share/info\n")
898 (("/site-lisp/emms")
899 ;; Install directly in share/emacs/site-lisp, not in a
900 ;; sub-directory.
901 "/site-lisp")
902 (("^all: (.*)\n" _ rest)
903 ;; Build 'emms-print-metadata'.
904 (string-append "all: " rest " emms-print-metadata\n")))
905 #t))))
906 (build-system gnu-build-system)
907 (arguments
908 `(#:modules ((guix build gnu-build-system)
909 (guix build utils)
910 (guix build emacs-utils)
911 (ice-9 ftw))
912 #:imported-modules (,@%gnu-build-system-modules
913 (guix build emacs-utils))
914
915 #:phases
916 (modify-phases %standard-phases
917 (replace 'configure
918 (lambda* (#:key inputs outputs #:allow-other-keys)
919 (let ((out (assoc-ref outputs "out"))
920 (flac (assoc-ref inputs "flac"))
921 (vorbis (assoc-ref inputs "vorbis-tools"))
922 (alsa (assoc-ref inputs "alsa-utils"))
923 (mpg321 (assoc-ref inputs "mpg321"))
924 (mp3info (assoc-ref inputs "mp3info"))
925 (opus (assoc-ref inputs "opus-tools")))
926 ;; Specify the installation directory.
927 (substitute* "Makefile"
928 (("PREFIX=.*$")
929 (string-append "PREFIX := " out "\n")))
930
931 (setenv "SHELL" (which "sh"))
932 (setenv "CC" "gcc")
933
934 ;; Specify the absolute file names of the various
935 ;; programs so that everything works out-of-the-box.
936 (with-directory-excursion "lisp"
937 (emacs-substitute-variables
938 "emms-player-mpg321-remote.el"
939 ("emms-player-mpg321-remote-command"
940 (string-append mpg321 "/bin/mpg321")))
941 (substitute* "emms-player-simple.el"
942 (("\"ogg123\"")
943 (string-append "\"" vorbis "/bin/ogg123\"")))
944 (substitute* "emms-player-simple.el"
945 (("\"mpg321\"")
946 (string-append "\"" mpg321 "/bin/mpg321\"")))
947 (emacs-substitute-variables "emms-info-ogginfo.el"
948 ("emms-info-ogginfo-program-name"
949 (string-append vorbis "/bin/ogginfo")))
950 (emacs-substitute-variables "emms-info-opusinfo.el"
951 ("emms-info-opusinfo-program-name"
952 (string-append opus "/bin/opusinfo")))
953 (emacs-substitute-variables "emms-info-libtag.el"
954 ("emms-info-libtag-program-name"
955 (string-append out "/bin/emms-print-metadata")))
956 (emacs-substitute-variables "emms-info-mp3info.el"
957 ("emms-info-mp3info-program-name"
958 (string-append mp3info "/bin/mp3info")))
959 (emacs-substitute-variables "emms-info-metaflac.el"
960 ("emms-info-metaflac-program-name"
961 (string-append flac "/bin/metaflac")))
962 (emacs-substitute-variables "emms-source-file.el"
963 ("emms-source-file-gnu-find" (which "find")))
964 (substitute* "emms-volume-amixer.el"
965 (("\"amixer\"")
966 (string-append "\"" alsa "/bin/amixer\"")))
967 (substitute* "emms-tag-editor.el"
968 (("\"mp3info\"")
969 (string-append "\"" mp3info "/bin/mp3info\"")))))))
970 (add-before 'install 'pre-install
971 (lambda* (#:key outputs #:allow-other-keys)
972 ;; The 'install' rule expects the target directories to exist.
973 (let* ((out (assoc-ref outputs "out"))
974 (bin (string-append out "/bin"))
975 (man1 (string-append out "/share/man/man1")))
976 (mkdir-p bin)
977 (mkdir-p man1)
978
979 ;; Ensure that files are not rejected by gzip
980 (let ((early-1980 315619200)) ; 1980-01-02 UTC
981 (ftw "." (lambda (file stat flag)
982 (unless (<= early-1980 (stat:mtime stat))
983 (utime file early-1980 early-1980))
984 #t)))
985 #t)))
986 (add-after 'install 'post-install
987 (lambda* (#:key outputs #:allow-other-keys)
988 (let ((out (assoc-ref outputs "out")))
989 (symlink "emms-auto.el"
990 (string-append out "/share/emacs/site-lisp/"
991 "emms-autoloads.el")))
992 #t)))
993 #:tests? #f))
994 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
995 ("texinfo" ,texinfo)))
996 (inputs `(("alsa-utils" ,alsa-utils)
997 ("flac" ,flac) ;for metaflac
998 ("vorbis-tools" ,vorbis-tools)
999 ("mpg321" ,mpg321)
1000 ("taglib" ,taglib)
1001 ("mp3info" ,mp3info)
1002 ("opus-tools" ,opus-tools)))
1003 (properties '((upstream-name . "emms")))
1004 (synopsis "Emacs Multimedia System")
1005 (description
1006 "EMMS is the Emacs Multimedia System. It is a small front-end which
1007can control one of the supported external players. Thus, it supports
1008whatever formats are supported by your music player. It also
1009supports tagging and playlist management, all behind a clean and
1010light user interface.")
1011 (home-page "https://www.gnu.org/software/emms/")
1012 (license license:gpl3+)))
1013
1014(define-public emacs-emms-player-mpv
1015 ;; A new mpv backend is included in Emms from 5.0.
1016 (deprecated-package "emacs-emms-player-mpv" emacs-emms))
1017
1018(define-public emacs-emms-mode-line-cycle
1019 (package
1020 (name "emacs-emms-mode-line-cycle")
1021 (version "0.2.5")
1022 (source
1023 (origin
b2c08402
EF
1024 (method git-fetch)
1025 (uri (git-reference
1026 (url "https://github.com/momomo5717/emms-mode-line-cycle")
1027 (commit version)))
1028 (file-name (git-file-name name version))
eeb883cb
RW
1029 (sha256
1030 (base32
b2c08402 1031 "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"))))
eeb883cb
RW
1032 (build-system emacs-build-system)
1033 (propagated-inputs
1034 `(("emms" ,emacs-emms)))
1035 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1036 (synopsis "Display the EMMS mode line as a ticker")
1037 (description
1038 "This is a minor mode for updating the EMMS mode-line string cyclically
1039within a specified width. It is useful for displaying long track titles.")
1040 (license license:gpl3+)))
1041
1042\f
1043;;;
1044;;; Miscellaneous.
1045;;;
1046
1047(define-public emacs-bbdb
1048 (package
1049 (name "emacs-bbdb")
1050 (version "3.1.2")
1051 (source (origin
1052 (method url-fetch)
1053 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1054 version ".tar.gz"))
1055 (sha256
1056 (base32
1057 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1058 (modules '((guix build utils)))
1059 (snippet
1060 ;; We don't want to build and install the PDF.
1061 '(begin
1062 (substitute* "doc/Makefile.in"
1063 (("^doc_DATA = .*$")
1064 "doc_DATA =\n"))
1065 #t))))
1066 (build-system gnu-build-system)
1067 (arguments
1068 '(#:phases
1069 (modify-phases %standard-phases
1070 (add-after 'install 'post-install
1071 (lambda* (#:key outputs #:allow-other-keys)
1072 ;; Add an autoloads file with the right name for guix.el.
1073 (let* ((out (assoc-ref outputs "out"))
1074 (site (string-append out "/share/emacs/site-lisp")))
1075 (with-directory-excursion site
1076 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1077 #t)))))
1078 (native-inputs `(("emacs" ,emacs-minimal)))
1079 (home-page "https://savannah.nongnu.org/projects/bbdb/")
1080 (synopsis "Contact management utility for Emacs")
1081 (description
1082 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1083an address book for email and snail mail addresses, phone numbers and the
1084like. It can be linked with various Emacs mail clients (Message and Mail
1085mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
1086 (license license:gpl3+)))
1087
1088(define-public bbdb
1089 (deprecated-package "bbdb" emacs-bbdb))
1090
1091(define-public emacs-aggressive-indent
1092 (package
1093 (name "emacs-aggressive-indent")
1094 (version "1.8.3")
1095 (source (origin
1096 (method url-fetch)
1097 (uri (string-append "https://elpa.gnu.org/packages/"
1098 "aggressive-indent-" version ".el"))
1099 (sha256
1100 (base32
1101 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1102 (build-system emacs-build-system)
1103 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1104 (synopsis "Minor mode to aggressively keep your code always indented")
1105 (description
1106 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1107always indented. It reindents after every change, making it more reliable
1108than @code{electric-indent-mode}.")
1109 (license license:gpl2+)))
1110
1111(define-public emacs-ag
1112 (package
1113 (name "emacs-ag")
1114 (version "0.47")
1115 (source (origin
1116 (method url-fetch)
1117 (uri (string-append
1118 "https://github.com/Wilfred/ag.el/archive/"
1119 version ".tar.gz"))
1120 (file-name (string-append name "-" version ".tar.gz"))
1121 (sha256
1122 (base32
1123 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1124 (build-system emacs-build-system)
1125 (arguments
1126 `(#:phases
1127 (modify-phases %standard-phases
1128 (add-before 'install 'make-info
1129 (lambda _
1130 (with-directory-excursion "docs"
1131 (invoke "make" "info"))))
1132 (add-after 'install 'install-info
1133 (lambda* (#:key outputs #:allow-other-keys)
1134 (let* ((out (assoc-ref outputs "out"))
1135 (info (string-append out "/share/info")))
1136 (install-file "docs/_build/texinfo/agel.info" info)
1137 #t))))))
1138 (native-inputs
1139 `(("python-sphinx" ,python-sphinx)
1140 ("texinfo" ,texinfo)))
1141 (propagated-inputs
1142 `(("dash" ,emacs-dash)
1143 ("s" ,emacs-s)
1144 ;; We need to use 'ag' as the executable on remote systems.
1145 ("the-silver-searcher" ,the-silver-searcher)))
1146 (home-page "https://github.com/Wilfred/ag.el")
1147 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1148 (description "This package provides the ability to use the silver
1149searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1150include version control system awareness, use of Perl compatible regular
1151expressions, editing the search results directly and searching file names
1152rather than the contents of files.")
1153 (license license:gpl3+)))
1154
1155(define-public emacs-async
1156 (package
1157 (name "emacs-async")
1158 (home-page "https://github.com/jwiegley/emacs-async")
1159 (version "1.9.3")
1160 (source (origin
1161 (method git-fetch)
1162 (uri (git-reference
1163 (url home-page)
1164 (commit (string-append "v" version))))
1165 (file-name (git-file-name name version))
1166 (sha256
1167 (base32
1168 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
1169 (build-system emacs-build-system)
1170 (synopsis "Asynchronous processing in Emacs")
1171 (description
1172 "This package provides the ability to call asynchronous functions and
1173processes. For example, it can be used to run dired commands (for copying,
1174moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1175as a library for other Emacs packages.")
1176 (license license:gpl3+)))
1177
1178(define-public emacs-auctex
1179 (package
1180 (name "emacs-auctex")
1181 (version "12.1.0")
1182 (source
1183 (origin
1184 (method url-fetch)
1185 (uri (string-append
1186 "https://elpa.gnu.org/packages/auctex-"
1187 version
1188 ".tar"))
1189 (sha256
1190 (base32
1191 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
1192 (build-system emacs-build-system)
1193 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1194 ;; ('emacs-minimal' does not provide dbus).
1195 (arguments
1196 `(#:emacs ,emacs
1197 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1198 #:exclude '("^tests/" "^latex/README")))
1199 (native-inputs
1200 `(("perl" ,perl)))
1201 (home-page "https://www.gnu.org/software/auctex/")
1202 (synopsis "Integrated environment for TeX")
1203 (description
1204 "AUCTeX is a comprehensive customizable integrated environment for
1205writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1206or XEmacs.")
1207 (license license:gpl3+)))
1208
1209(define-public emacs-autothemer
1210 (package
1211 (name "emacs-autothemer")
1212 (version "0.2.2")
1213 (source
1214 (origin
1215 (method url-fetch)
1216 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1217 version ".tar.gz"))
1218 (file-name (string-append name "-" version ".tar.gz"))
1219 (sha256
1220 (base32
1221 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1222 (build-system emacs-build-system)
1223 (propagated-inputs
1224 `(("emacs-dash" ,emacs-dash)))
1225 (home-page "https://github.com/sebastiansturm/autothemer")
1226 (synopsis "Conveniently create Emacs themes")
1227 (description
1228 "Autothemer provides a thin layer on top of @code{deftheme} and
1229@code{custom-theme-set-faces} that creates a new custom color theme, based on
1230a set of simplified face specifications and a user-supplied color palette")
1231 (license license:gpl3+)))
1232
1233(define-public emacs-howm
1234 (package
1235 (name "emacs-howm")
1236 (version "1.4.4")
1237 (source
1238 (origin
1239 (method url-fetch)
1240 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1241 version ".tar.gz"))
1242 (sha256
1243 (base32
1244 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1245 (build-system gnu-build-system)
1246 (native-inputs
1247 `(("emacs" ,emacs-minimal)))
1248 (arguments
1249 `(#:configure-flags
1250 (list (string-append "--with-howmdir=" %output
1251 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1252 #:modules ((guix build gnu-build-system)
1253 ((guix build emacs-build-system) #:prefix emacs:)
1254 (guix build utils))
1255 #:imported-modules (,@%gnu-build-system-modules
1256 (guix build emacs-build-system)
1257 (guix build emacs-utils))
1258 #:phases
1259 (modify-phases %standard-phases
1260 (add-after 'install 'make-autoloads
1261 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1262 (home-page "http://howm.osdn.jp/")
1263 (synopsis "Note-taking tool for Emacs")
1264 (description "Howm is a note-taking tool for Emacs. Like
1265code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1266searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1267 (license license:gpl1+)))
1268
1269(define-public emacs-calfw
1270 (package
1271 (name "emacs-calfw")
1272 (version "1.6")
1273 (source
1274 (origin
1275 (method url-fetch)
1276 (uri (string-append
1277 "https://github.com/kiwanami/emacs-calfw/archive/v"
1278 version ".tar.gz"))
1279 (file-name (string-append name "-" version ".tar.gz"))
1280 (sha256
1281 (base32
1282 "1zr91xr0f1xfcv78yxka8vs5ximmq2ixmqf2pkb57kwwnxlypq4i"))))
1283 (build-system emacs-build-system)
1284 (propagated-inputs
1285 `(("emacs-howm" ,emacs-howm)))
1286 (home-page "https://github.com/kiwanami/emacs-calfw/")
1287 (synopsis "Calendar framework for Emacs")
1288 (description
1289 "This package displays a calendar view with various schedule data in the
1290Emacs buffer.")
1291 (license license:gpl3+)))
1292
1293(define-public emacs-direnv
1294 (package
1295 (name "emacs-direnv")
1296 (version "1.2.0")
1297 (source
1298 (origin
1299 (method url-fetch)
1300 (uri (string-append
1301 "https://github.com/wbolster/emacs-direnv/archive/"
1302 version ".tar.gz"))
1303 (file-name (string-append name "-" version ".tar.gz"))
1304 (sha256
1305 (base32
1306 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1307 (build-system emacs-build-system)
1308 (propagated-inputs
1309 `(("dash" ,emacs-dash)
1310 ("with-editor" ,emacs-with-editor)))
1311 (home-page "https://github.com/wbolster/emacs-direnv")
1312 (synopsis "Direnv integration for Emacs")
1313 (description
1314 "This package provides support for invoking direnv to get the environment
1315for the current file and updating the environment within Emacs to match.
1316
1317Direnv can be invoked manually, and a global minor mode is included that will
1318update the environment when the active buffer changes.
1319
1320Using emacs-direnv means that programs started from Emacs will use the
1321environment set through Direnv.")
1322 (license license:gpl3+)))
1323
1324(define-public emacs-ggtags
1325 (package
1326 (name "emacs-ggtags")
1327 (version "0.8.13")
1328 (source
1329 (origin
1330 (method url-fetch)
1331 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1332 version ".el"))
1333 (sha256
1334 (base32
1335 "1qa7lcrcmf76sf6dy8sxbg4adq7rg59fm0n5848w3qxgsr0h45fg"))))
1336 (build-system emacs-build-system)
1337 (inputs
1338 `(("global" ,global)))
1339 (arguments
1340 `(#:phases
1341 (modify-phases %standard-phases
1342 (add-after 'unpack 'configure
1343 (lambda* (#:key inputs #:allow-other-keys)
1344 (chmod "ggtags.el" #o644)
1345 (emacs-substitute-variables "ggtags.el"
1346 ("ggtags-executable-directory"
1347 (string-append (assoc-ref inputs "global") "/bin")))
1348 #t)))))
1349 (home-page "https://github.com/leoliu/ggtags")
1350 (synopsis "Frontend to the GNU Global source code tagging system")
1351 (description "@code{ggtags} provides a frontend to the GNU Global source
1352code tagging system.
1353
1354Features:
1355
1356@itemize
1357@item Build on @code{compile.el} for asynchronicity and its large feature-set.
1358@item Automatically update Global's tag files when needed with tuning for
1359large source trees.
1360@item Intuitive navigation among multiple matches with mode-line display of
1361current match, total matches and exit status.
1362@item Read tag with completion.
1363@item Show definition at point.
1364@item Jump to #include files.
1365@item Support search history and saving a search to register/bookmark.
1366@item Query replace.
1367@item Manage Global's environment variables on a per-project basis.
1368@item Highlight (definition) tag at point.
1369@item Abbreviated display of file names.
1370@item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1371@item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1372@code{pygments} backend.
1373@item Support all Global's output formats: @code{grep}, @code{ctags-x},
1374@code{cscope} etc.
1375@item Support projects on remote hosts (e.g. via @code{tramp}).
1376@item Support eldoc.
1377@item Search @code{GTAGSLIBPATH} for references and symbols.
1378@end itemize\n")
1379 (license license:gpl3+)))
1380
1381(define-public emacs-go-mode
1382 (package
1383 (name "emacs-go-mode")
1384 (version "1.5.0")
1385 (source (origin
1386 (method git-fetch)
1387 (uri (git-reference
1388 (url "https://github.com/dominikh/go-mode.el.git")
1389 (commit (string-append "v" version))))
1390 (file-name (git-file-name name version))
1391 (sha256
1392 (base32
1393 "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"))))
1394 (build-system emacs-build-system)
1395 (arguments
1396 `(#:phases
1397 (modify-phases %standard-phases
1398 (add-after 'unpack 'make-writable
1399 (lambda _
1400 (for-each make-file-writable (find-files "." "\\.el$"))
1401 #t)))))
1402 (home-page "https://github.com/dominikh/go-mode.el")
1403 (synopsis "Go mode for Emacs")
1404 (description
1405 "This package provides go-mode, an Emacs mode for working with software
1406written in the Go programming language.")
1407 (license license:bsd-3)))
1408
1409(define-public emacs-google-maps
1410 (package
1411 (name "emacs-google-maps")
1412 (version "1.0.0")
1413 (source (origin
1414 (method url-fetch)
1415 (uri (string-append "https://github.com/jd/google-maps.el/"
1416 "archive/" version ".tar.gz"))
1417 (file-name (string-append name "-" version ".tar.gz"))
1418 (sha256
1419 (base32
1420 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1421 (build-system emacs-build-system)
1422 (home-page "https://github.com/jd/google-maps.el")
1423 (synopsis "Access Google Maps from Emacs")
1424 (description "The @code{google-maps} package allows to display Google
1425Maps directly inside Emacs.")
1426 (license license:gpl3+)))
1427
1428(define-public emacs-graphviz-dot-mode
1429 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1430 (revision "1"))
1431 (package
1432 (name "emacs-graphviz-dot-mode")
1433 (version (string-append "0.3.11-" revision "."
1434 (string-take commit 7)))
1435 (source (origin
1436 (method git-fetch)
1437 (uri (git-reference
1438 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1439 (commit commit)))
1440 (file-name (string-append name "-" version "-checkout"))
1441 (sha256
1442 (base32
1443 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1444 (build-system emacs-build-system)
1445 (arguments
1446 `(#:phases
1447 (modify-phases %standard-phases
1448 (add-before 'install 'make-info
1449 (lambda* (#:key inputs #:allow-other-keys)
1450 (with-directory-excursion "texinfo"
1451 (substitute* "Makefile"
1452 (("\\/usr\\/bin\\/gzip")
1453 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
1454 (invoke "make"
1455 "clean"
1456 "info"
1457 (string-append "TEXINFODIR="
1458 (assoc-ref inputs "texinfo")
1459 "/bin")))))
1460 (add-after 'install 'install-info
1461 (lambda* (#:key outputs #:allow-other-keys)
1462 (let* ((out (assoc-ref outputs "out"))
1463 (info (string-append out "/share/info")))
1464 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1465 #t))))))
1466 (native-inputs
1467 `(("texinfo" ,texinfo)
1468 ("gzip" ,gzip)))
1469 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1470 (synopsis "Major mode for editing Graphviz Dot files")
1471 (description
1472 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1473files using the dot syntax, and use Graphviz to convert these files to
1474diagrams.")
1475 (license license:gpl2+))))
1476
1477(define-public emacs-mmm-mode
1478 (package
1479 (name "emacs-mmm-mode")
1480 (version "0.5.5")
1481 (source
1482 (origin
1483 (method url-fetch)
1484 (uri (string-append
1485 "https://github.com/purcell/mmm-mode/archive/"
1486 version ".tar.gz"))
1487 (file-name (string-append name "-" version ".tar.gz"))
1488 (sha256
1489 (base32
1490 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
1491 (build-system gnu-build-system)
1492 (arguments
1493 '(#:phases
1494 (modify-phases %standard-phases
1495 (add-after 'unpack 'autogen
1496 (lambda _
1497 (invoke "sh" "autogen.sh"))))))
1498 (native-inputs
1499 `(("autoconf" ,autoconf)
1500 ("automake" ,automake)
1501 ("emacs" ,emacs-minimal)
1502 ("texinfo" ,texinfo)))
1503 (home-page "https://github.com/purcell/mmm-mode")
1504 (synopsis "Allow multiple major modes in an Emacs buffer")
1505 (description
1506 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
1507single buffer.")
1508 (license license:gpl3+)))
1509
1510(define-public emacs-tablist
1511 (package
1512 (name "emacs-tablist")
1513 (version "0.70")
1514 (source (origin
1515 (method url-fetch)
1516 (uri (string-append
1517 "https://github.com/politza/tablist/archive/v"
1518 version ".tar.gz"))
1519 (file-name (string-append name "-" version ".tar.gz"))
1520 (sha256
1521 (base32
1522 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1523 (build-system emacs-build-system)
1524 (home-page "https://github.com/politza/tablist")
1525 (synopsis "Extension for @code{tabulated-list-mode}")
1526 (description "Tablist is the Emacs package that provides several
1527additional features to @code{tabulated-list-mode}: it adds marks,
1528filters, new key bindings and faces. It can be enabled by
1529@code{tablist-mode} or @code{tablist-minor-mode} commands.")
1530 (license license:gpl3+)))
1531
1532(define-public emacs-pdf-tools
1533 (package
1534 (name "emacs-pdf-tools")
1535 (version "0.80")
1536 (home-page "https://github.com/politza/pdf-tools")
1537 (source (origin
1538 (method git-fetch)
1539 (uri (git-reference (url home-page)
1540 (commit (string-append "v" version))))
1541 (file-name (git-file-name name version))
1542 (sha256
1543 (base32
1544 "1i4647vax5na73basc5dz4lh9kprir00fh8ps4i0l1y3ippnjs2s"))
1545 (patches (search-patches "emacs-pdf-tools-poppler.patch"))))
1546 (build-system gnu-build-system)
1547 (arguments
1548 `(#:tests? #f ; there are no tests
1549 #:modules ((guix build gnu-build-system)
1550 ((guix build emacs-build-system) #:prefix emacs:)
1551 (guix build utils)
1552 (guix build emacs-utils))
1553 #:imported-modules (,@%gnu-build-system-modules
1554 (guix build emacs-build-system)
1555 (guix build emacs-utils))
1556 #:phases
1557 (modify-phases %standard-phases
1558 ;; Build server side using 'gnu-build-system'.
1559 (add-after 'unpack 'enter-server-dir
1560 (lambda _ (chdir "server") #t))
1561 (add-after 'enter-server-dir 'autogen
1562 (lambda _
1563 (invoke "bash" "autogen.sh")))
1564
1565 ;; Build emacs side using 'emacs-build-system'.
1566 (add-after 'compress-documentation 'enter-lisp-dir
1567 (lambda _ (chdir "../lisp") #t))
1568 (add-after 'enter-lisp-dir 'emacs-patch-variables
1569 (lambda* (#:key outputs #:allow-other-keys)
1570 (for-each make-file-writable (find-files "."))
1571
1572 ;; Set path to epdfinfo program.
1573 (emacs-substitute-variables "pdf-info.el"
1574 ("pdf-info-epdfinfo-program"
1575 (string-append (assoc-ref outputs "out")
1576 "/bin/epdfinfo")))
1577 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1578 ;; upgrading" that pdf-tools tries to perform.
1579 (emacs-substitute-variables "pdf-tools.el"
1580 ("pdf-tools-handle-upgrades" '()))))
1581 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1582 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1583 (add-after 'emacs-set-emacs-load-path 'emacs-install
1584 (assoc-ref emacs:%standard-phases 'install))
1585 (add-after 'emacs-install 'emacs-build
1586 (assoc-ref emacs:%standard-phases 'build))
1587 (add-after 'emacs-install 'emacs-make-autoloads
1588 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1589 (native-inputs `(("autoconf" ,autoconf)
1590 ("automake" ,automake)
1591 ("pkg-config" ,pkg-config)
1592 ("emacs" ,emacs-minimal)))
1593 (inputs `(("poppler" ,poppler)
1594 ("cairo" ,cairo)
1595 ("glib" ,glib)
1596 ("libpng" ,libpng)
1597 ("zlib" ,zlib)))
1598 (propagated-inputs `(("tablist" ,emacs-tablist)))
1599 (synopsis "Emacs support library for PDF files")
1600 (description
1601 "PDF Tools is, among other things, a replacement of DocView for PDF
1602files. The key difference is that pages are not pre-rendered by
1603e.g. ghostscript and stored in the file-system, but rather created on-demand
1604and stored in memory.")
1605 (license license:gpl3+)))
1606
1607(define-public emacs-dash
1608 (package
1609 (name "emacs-dash")
1610 (version "2.14.1")
1611 (source (origin
1612 (method git-fetch)
1613 (uri (git-reference
1614 (url "https://github.com/magnars/dash.el.git")
1615 (commit version)))
1616 (file-name (git-file-name name version))
1617 (sha256
1618 (base32
1619 "1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
1620 (build-system emacs-build-system)
1621 (arguments
1622 `(#:tests? #t
1623 #:test-command '("./run-tests.sh")))
1624 (home-page "https://github.com/magnars/dash.el")
1625 (synopsis "Modern list library for Emacs")
1626 (description "This package provides a modern list API library for Emacs.")
1627 (license license:gpl3+)))
1628
1629(define-public emacs-bui
1630 (package
1631 (name "emacs-bui")
1632 (version "1.2.1")
1633 (source (origin
1634 (method git-fetch)
1635 (uri (git-reference
1636 (url "https://notabug.org/alezost/emacs-bui.git")
1637 (commit (string-append "v" version))))
1638 (file-name (string-append name "-" version "-checkout"))
1639 (sha256
1640 (base32
1641 "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"))))
1642 (build-system emacs-build-system)
1643 (propagated-inputs
1644 `(("dash" ,emacs-dash)))
1645 (home-page "https://notabug.org/alezost/emacs-bui")
1646 (synopsis "Buffer interface library for Emacs")
1647 (description
1648 "BUI (Buffer User Interface) is a library for making @code{list} and
1649@code{info} interfaces to display an arbitrary data of the same
1650type, for example: packages, buffers, files, etc.")
1651 (license license:gpl3+)))
1652
1653(define-public emacs-guix
1654 (package
1655 (name "emacs-guix")
1656 (version "0.5.1.1")
1657 (source (origin
1658 (method url-fetch)
1659 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1660 "releases/emacs-guix-" version ".tar.gz"))
1661 (sha256
1662 (base32
1663 "1gxg7lan3njc2yg2d02b2zij0d2cm2pv2q08nqz86s85jk3b6m03"))))
1664 (build-system gnu-build-system)
1665 (arguments
1666 `(#:configure-flags
1667 (let ((guix (assoc-ref %build-inputs "guix"))
1668 (gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
1669 (geiser (assoc-ref %build-inputs "geiser"))
1670 (dash (assoc-ref %build-inputs "dash"))
1671 (bui (assoc-ref %build-inputs "bui"))
1672 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1673 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
1674 (site-lisp "/share/emacs/site-lisp")
1675 (site-scm "/share/guile/site")
1676 (site-go "/lib/guile")
1677 (guile-dir (lambda (dir)
1678 (car (find-files dir
1679 (lambda (file stat)
1680 (string-prefix?
1681 "2." (basename file)))
1682 #:directories? #t)))))
1683 (list (string-append "--with-guix-site-dir="
1684 (guile-dir (string-append guix site-scm)))
1685 (string-append "--with-guix-site-ccache-dir="
1686 (guile-dir (string-append guix site-go))
1687 "/site-ccache")
1688 (string-append "--with-guile-gcrypt-site-dir="
1689 (guile-dir (string-append gcrypt site-scm)))
1690 (string-append "--with-guile-gcrypt-site-ccache-dir="
1691 (guile-dir (string-append gcrypt site-go))
1692 "/site-ccache")
1693 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1694 (string-append "--with-dash-lispdir="
1695 dash site-lisp "/guix.d/dash-"
1696 ,(package-version emacs-dash))
1697 (string-append "--with-bui-lispdir="
1698 bui site-lisp "/guix.d/bui-"
1699 ,(package-version emacs-bui))
1700 (string-append "--with-editindirect-lispdir="
1701 edit-indirect site-lisp "/guix.d/edit-indirect-"
1702 ,(package-version emacs-edit-indirect))
1703 (string-append "--with-popup-lispdir="
1704 magit-popup site-lisp "/guix.d/magit-popup-"
1705 ,(package-version emacs-magit-popup))))))
1706 (native-inputs
1707 `(("pkg-config" ,pkg-config)
1708 ("emacs" ,emacs-minimal)))
1709 (inputs
1710 `(("guile" ,guile-2.2)
1711 ("guix" ,guix)))
1712 (propagated-inputs
1713 `(("geiser" ,emacs-geiser)
1714 ("guile-gcrypt" ,guile-gcrypt)
1715 ("dash" ,emacs-dash)
1716 ("bui" ,emacs-bui)
1717 ("edit-indirect" ,emacs-edit-indirect)
1718 ("magit-popup" ,emacs-magit-popup)))
1719 (home-page "https://emacs-guix.gitlab.io/website/")
1720 (synopsis "Emacs interface for GNU Guix")
1721 (description
1722 "Emacs-Guix provides a visual interface, tools and features for the GNU
1723Guix package manager. Particularly, it allows you to do various package
1724management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1725@code{M-x guix-help} command.")
1726 (license license:gpl3+)))
1727
1728(define-public emacs-build-farm
1729 (package
1730 (name "emacs-build-farm")
1731 (version "0.2.2")
1732 (source (origin
1733 (method git-fetch)
1734 (uri (git-reference
1735 (url "https://notabug.org/alezost/emacs-build-farm.git")
1736 (commit (string-append "v" version))))
1737 (file-name (string-append name "-" version "-checkout"))
1738 (sha256
1739 (base32
1740 "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"))))
1741 (build-system emacs-build-system)
1742 (propagated-inputs
1743 `(("bui" ,emacs-bui)
1744 ("magit-popup" ,emacs-magit-popup)))
1745 (home-page "https://notabug.org/alezost/emacs-build-farm")
1746 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1747 (description
1748 "This Emacs package provides an interface for Hydra and
1749Cuirass (build farms used by Nix and Guix). It allows you to look at
1750various data related to the build farm projects, jobsets, builds and
1751evaluations. The entry point is @code{M-x build-farm} command.")
1752 (license license:gpl3+)))
1753
1754(define-public emacs-d-mode
1755 (package
1756 (name "emacs-d-mode")
1757 (version "2.0.9")
1758 (source (origin
1759 (method url-fetch)
1760 (uri (string-append
1761 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1762 "archive/" version ".tar.gz"))
1763 (file-name (string-append name "-" version ".tar.gz"))
1764 (sha256
1765 (base32
1766 "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
1767 (build-system emacs-build-system)
1768 (propagated-inputs
1769 `(("emacs-undercover" ,emacs-undercover)))
1770 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1771 (synopsis "Emacs major mode for editing D code")
1772 (description "This package provides an Emacs major mode for highlighting
1773code written in the D programming language. This mode is currently known to
1774work with Emacs 24 and 25.")
1775 (license license:gpl2+)))
1776
1777(define-public emacs-keyfreq
1778 (package
1779 (name "emacs-keyfreq")
1780 (version "20160516.716")
1781 (source
1782 (origin
1783 (method url-fetch)
1784 (uri (string-append "http://melpa.org/packages/keyfreq-"
1785 version ".el"))
1786 (sha256
1787 (base32
1788 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1789 (build-system emacs-build-system)
1790 (home-page "https://github.com/dacap/keyfreq")
1791 (synopsis "Track Emacs command frequencies")
1792 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1793a command.")
1794 (license license:gpl3+)))
1795
1796(define-public emacs-olivetti
1797 (package
1798 (name "emacs-olivetti")
1799 (version "1.5.7")
1800 (source (origin
1801 (method url-fetch)
1802 (uri (string-append
1803 "https://stable.melpa.org/packages/olivetti-"
1804 version ".el"))
1805 (sha256
1806 (base32
1807 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1808 (build-system emacs-build-system)
1809 (home-page "https://github.com/rnkn/olivetti")
1810 (synopsis "Emacs minor mode for a nice writing environment")
1811 (description "This package provides an Emacs minor mode that puts writing
1812in the center.")
1813 (license license:gpl3+)))
1814
1815(define-public emacs-undo-tree
1816 (package
1817 (name "emacs-undo-tree")
1818 (version "0.6.6")
1819 (source (origin
1820 (method git-fetch)
1821 (uri (git-reference
1822 (url "http://dr-qubit.org/git/undo-tree.git")
1823 (commit (string-append "release/" version))))
1824 (file-name (string-append name "-" version "-checkout"))
1825 (sha256
1826 (base32
1827 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1828 (build-system emacs-build-system)
1829 (home-page "http://www.dr-qubit.org/emacs.php")
1830 (synopsis "Treat undo history as a tree")
1831 (description "Tree-like interface to Emacs undo system, providing
1832graphical tree presentation of all previous states of buffer that
1833allows easily move between them.")
1834 (license license:gpl3+)))
1835
1836(define-public emacs-s
1837 (package
1838 (name "emacs-s")
1839 (version "1.12.0")
1840 (source (origin
1841 (method url-fetch)
1842 (uri (string-append
1843 "https://github.com/magnars/s.el/archive/"
1844 version ".tar.gz"))
1845 (file-name (string-append name "-" version ".tar.gz"))
1846 (sha256
1847 (base32
1848 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
1849 (build-system emacs-build-system)
1850 (arguments
1851 `(#:tests? #t
1852 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
1853 #:test-command '("./run-tests.sh")))
1854 (home-page "https://github.com/magnars/s.el")
1855 (synopsis "Emacs string manipulation library")
1856 (description "This package provides an Emacs library for manipulating
1857strings.")
1858 (license license:gpl3+)))
1859
1860(define-public emacs-symon
1861 (package
1862 (name "emacs-symon")
1863 (version "20160630")
1864 (source
1865 (origin
1866 (method url-fetch)
1867 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1868 version ".tar.gz"))
1869 (file-name (string-append name "-" version ".tar.gz"))
1870 (sha256
1871 (base32
1872 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
1873 (build-system emacs-build-system)
1874 (home-page "https://github.com/zk-phi/symon")
1875 (synopsis "Tiny graphical system monitor")
1876 (description
1877 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1878 (license license:gpl2+)))
1879
1880(define-public emacs-sx
1881 (let ((version "20180212")
1882 (revision "1")
1883 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1884 (package
1885 (name "emacs-sx")
1886 (version (git-version version revision commit))
1887 (source
1888 (origin
1889 (method git-fetch)
1890 (uri (git-reference
1891 (url "https://github.com/vermiculus/sx.el")
1892 (commit commit)))
1893 (file-name (git-file-name name version))
1894 (sha256
1895 (base32
1896 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1897 (build-system emacs-build-system)
1898 (propagated-inputs
1899 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1900 (home-page "https://github.com/vermiculus/sx.el")
1901 (synopsis "Emacs StackExchange client")
1902 (description
1903 "Emacs StackExchange client. Ask and answer questions on
1904Stack Overflow, Super User, and other StackExchange sites.")
1905 (license license:gpl3+))))
1906
1907(define-public emacs-f
1908 (package
1909 (name "emacs-f")
1910 (version "0.20.0")
1911 (source (origin
1912 (method git-fetch)
1913 (uri (git-reference
1914 (url "https://github.com/rejeep/f.el.git")
1915 (commit (string-append "v" version))))
1916 (file-name (git-file-name name version))
1917 (sha256
1918 (base32
1919 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
1920 (build-system emacs-build-system)
1921 (propagated-inputs
1922 `(("emacs-s" ,emacs-s)
1923 ("emacs-dash" ,emacs-dash)))
1924 (home-page "https://github.com/rejeep/f.el")
1925 (synopsis "Emacs API for working with files and directories")
1926 (description "This package provides an Emacs library for working with
1927files and directories.")
1928 (license license:gpl3+)))
1929
1930(define-public emacs-git-gutter
1931 (package
1932 (name "emacs-git-gutter")
1933 (version "0.90")
1934 (source (origin
1935 (method url-fetch)
1936 (uri (string-append
1937 "https://github.com/syohex/" name "/archive/"
1938 version ".tar.gz"))
1939 (file-name (string-append name "-" version ".tar.gz"))
1940 (sha256
1941 (base32
1942 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1943 (build-system emacs-build-system)
1944 (home-page "https://github.com/syohex/emacs-git-gutter")
1945 (synopsis "See and manage hunks of text in a version control system")
1946 (description
1947 "This package is an Emacs minor mode for displaying and interacting with
1948hunks of text managed in a version control system. Added modified and deleted
1949areas can be indicated with symbols on the edge of the buffer, and commands
1950can be used to move between and perform actions on these hunks.
1951
1952Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1953display and behaviour is easily customisable.")
1954 (license license:gpl3+)))
1955
1956(define-public emacs-git-timemachine
1957 (package
1958 (name "emacs-git-timemachine")
1959 (version "4.5")
1960 (source
1961 (origin
1962 (method url-fetch)
1963 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
1964 "/-/archive/" version
1965 "/git-timemachine-" version ".tar.gz"))
1966 (file-name (string-append name "-" version ".tar.gz"))
1967 (sha256
1968 (base32
1969 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
1970 (build-system emacs-build-system)
1971 (home-page "https://gitlab.com/pidu/git-timemachine")
1972 (synopsis "Step through historic versions of Git-controlled files")
1973 (description "This package enables you to step through historic versions
1974of files under Git version control from within Emacs.")
1975 (license license:gpl3+)))
1976
1977(define-public emacs-minitest
1978 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
1979 (revision "1"))
1980 (package
1981 (name "emacs-minitest")
1982 (version (git-version "0.8.0" revision commit))
1983 (source (origin
1984 (method git-fetch)
1985 (uri (git-reference
1986 (url "https://github.com/arthurnn/minitest-emacs")
1987 (commit commit)))
1988 (file-name (git-file-name name commit))
1989 (sha256
1990 (base32
1991 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
1992 (build-system emacs-build-system)
1993 (arguments
1994 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
1995 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
1996 (propagated-inputs
1997 `(("emacs-dash" ,emacs-dash)
1998 ("emacs-f" ,emacs-f)))
1999 (home-page "https://github.com/arthurnn/minitest-emacs")
2000 (synopsis "Emacs minitest mode")
2001 (description
2002 "The minitest mode provides commands to run the tests for the current
2003file or line, as well as rerunning the previous tests, or all the tests for a
2004project.
2005
2006This package also includes relevant snippets for yasnippet.")
2007 (license license:expat))))
2008
2009(define-public emacs-el-mock
2010 (package
2011 (name "emacs-el-mock")
2012 (version "1.25.1")
2013 (source
2014 (origin
2015 (method url-fetch)
2016 (uri (string-append "https://github.com/rejeep/el-mock.el/"
2017 "archive/v" version ".tar.gz"))
2018 (file-name (string-append name "-" version ".tar.gz"))
2019 (sha256
2020 (base32
2021 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
2022 (build-system emacs-build-system)
2023 (home-page "https://github.com/rejeep/el-mock.el")
2024 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2025 (description
2026 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2027syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2028Expectations, but it can be used in other contexts.")
2029 (license license:gpl3+)))
2030
2031(define-public emacs-espuds
2032 (package
2033 (name "emacs-espuds")
2034 (version "0.3.3")
2035 (source
2036 (origin
2037 (method url-fetch)
2038 (uri (string-append "https://github.com/ecukes/espuds/"
2039 "archive/v" version ".tar.gz"))
2040 (file-name (string-append name "-" version ".tar.gz"))
2041 (sha256
2042 (base32
2043 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
2044 (build-system emacs-build-system)
2045 (propagated-inputs
2046 `(("emacs-s" ,emacs-s)
2047 ("emacs-dash" ,emacs-dash)
2048 ("emacs-f" ,emacs-f)))
2049 (home-page "https://github.com/ecukes/espuds")
2050 (synopsis "Common step definitions for Ecukes")
2051 (description "Espuds is a collection of the most commonly used step
2052definitions for testing with the Ecukes framework.")
2053 (license license:gpl3+)))
2054
2055(define-public emacs-spark
2056 (let ((version "20160503") ; no proper tag, use date of commit
2057 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2058 (revision "1"))
2059 (package
2060 (name "emacs-spark")
2061 (version (git-version version revision commit))
2062 (source
2063 (origin
2064 (method git-fetch)
2065 (uri (git-reference
2066 (url "https://github.com/alvinfrancis/spark.git")
2067 (commit commit)))
2068 (file-name (git-file-name name version))
2069 (sha256
2070 (base32
2071 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2072 (build-system emacs-build-system)
2073 (home-page "https://github.com/alvinfrancis/spark")
2074 (synopsis "Sparkline generation library for Emacs Lisp")
2075 (description "@code{emacs-spark} is a sparkline generation library for
2076Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2077port of @code{cl-spark} to Emacs Lisp.")
2078 (license license:expat))))
2079
2080(define-public emacs-es-mode
2081 (package
2082 (name "emacs-es-mode")
2083 (version "4.3.0")
2084 (source (origin
2085 (method url-fetch)
2086 (uri (string-append
2087 "https://github.com/dakrone/es-mode/archive/"
2088 version ".tar.gz"))
2089 (file-name (string-append name "-" version ".tar.gz"))
2090 (sha256
2091 (base32
2092 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
2093 (build-system emacs-build-system)
2094 (propagated-inputs
2095 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2096 ;; to be rendered incorrectly
2097 `(("emacs-dash" ,emacs-dash)
2098 ("emacs-org" ,emacs-org)
2099 ("emacs-spark" ,emacs-spark)))
2100 (home-page "https://github.com/dakrone/es-mode")
2101 (synopsis "Major mode for editing Elasticsearch queries")
2102 (description "@code{es-mode} includes highlighting, completion and
2103indentation support for Elasticsearch queries. Also supported are
2104@code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2105be processed through @code{jq}, or in the case of aggregations, can be
2106rendered in to a table. In addition, there is an @code{es-command-center}
2107mode, which displays information about Elasticsearch clusters.")
2108 (license license:gpl3+)))
2109
2110(define-public emacs-expand-region
2111 (package
2112 (name "emacs-expand-region")
2113 (version "0.11.0")
2114 (source
2115 (origin
2116 (method url-fetch)
2117 (uri (string-append "https://github.com/magnars/expand-region.el"
2118 "/archive/" version ".tar.gz"))
2119 (file-name (string-append name "-" version ".tar.gz"))
2120 (sha256
2121 (base32
2122 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
2123 (build-system emacs-build-system)
2124 (home-page "https://github.com/magnars/expand-region.el")
2125 (synopsis "Increase selected region by semantic units")
2126 (description
2127 "Expand region increases the selected region by semantic units. Just
2128keep pressing the key until it selects what you want. There's also
2129@code{er/contract-region} if you expand too far.")
2130 (license license:gpl3+)))
2131
2132(define-public emacs-fill-column-indicator
2133 (package
2134 (name "emacs-fill-column-indicator")
2135 (version "1.89")
2136 (source
2137 (origin
2138 (method url-fetch)
2139 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2140 "/archive/v" version ".tar.gz"))
2141 (file-name (string-append name "-" version ".tar.gz"))
2142 (sha256
2143 (base32
2144 "09ab01np14bdcsr38xf95kpnvxzqr46mdjmphg3pigwnx39a3jvg"))))
2145 (build-system emacs-build-system)
2146 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2147 (synopsis "Graphically indicate the fill column")
2148 (description
2149 "Fill-column-indicator graphically indicates the location of the fill
2150column by drawing a thin line down the length of the editing window.")
2151 (license license:gpl3+)))
2152
2153(define-public emacs-grep-a-lot
2154 (package
2155 (name "emacs-grep-a-lot")
2156 (version "1.0.7")
2157 (source (origin
2158 (method git-fetch)
2159 (uri (git-reference
2160 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2161 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2162 (file-name (string-append name "-" version "-checkout"))
2163 (sha256
2164 (base32
2165 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2166 (build-system emacs-build-system)
2167 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2168 (synopsis "Enables multiple grep buffers in Emacs")
2169 (description
2170 "This Emacs package allows managing multiple grep buffers.")
2171 (license license:gpl3+)))
2172
2173(define-public emacs-inf-ruby
2174 (package
2175 (name "emacs-inf-ruby")
2176 (version "2.5.1")
2177 (source
2178 (origin
2179 (method url-fetch)
2180 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2181 "archive/" version ".tar.gz"))
2182 (file-name (string-append name "-" version ".tar.gz"))
2183 (sha256
2184 (base32
2185 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2186 (build-system emacs-build-system)
2187 (home-page "https://github.com/nonsequitur/inf-ruby")
2188 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2189 (description
2190 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2191for easy interaction with a ruby subprocess. Features include support for
2192detecting specific uses of Ruby, e.g. when using rails, and using a
2193appropriate console.")
2194 (license license:gpl3+)))
2195
2196(define-public emacs-znc
2197 (package
2198 (name "emacs-znc")
2199 (version "0.0.2")
2200 (source
2201 (origin
2202 (method url-fetch)
2203 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2204 version ".el"))
2205 (sha256
2206 (base32
2207 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2208 (build-system emacs-build-system)
2209 (home-page "https://github.com/sshirokov/ZNC.el")
2210 (synopsis "Make ERC and ZNC get along better")
2211 (description
2212 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2213IRC bouncer with ERC.")
2214 (license license:expat)))
2215
2216(define-public emacs-shut-up
2217 (package
2218 (name "emacs-shut-up")
2219 (version "0.3.2")
2220 (source
2221 (origin
2222 (method url-fetch)
2223 (uri (string-append "https://github.com/cask/shut-up/"
2224 "archive/v" version ".tar.gz"))
2225 (file-name (string-append name "-" version ".tar.gz"))
2226 (sha256
2227 (base32
2228 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2229 (build-system emacs-build-system)
2230 (home-page "https://github.com/cask/shut-up")
2231 (synopsis "Silence Emacs")
2232 (description "This package silences most output of Emacs when running an
2233Emacs shell script.")
2234 (license license:expat)))
2235
2236(define-public emacs-undercover
2237 (package
2238 (name "emacs-undercover")
2239 (version "0.6.0")
2240 (source
2241 (origin
2242 (method url-fetch)
2243 (uri (string-append "https://github.com/sviridov/undercover.el/"
2244 "archive/v" version ".tar.gz"))
2245 (file-name (string-append name "-" version ".tar.gz"))
2246 (sha256
2247 (base32
2248 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2249 (build-system emacs-build-system)
2250 (propagated-inputs
2251 `(("emacs-dash" ,emacs-dash)
2252 ("emacs-shut-up" ,emacs-shut-up)))
2253 (home-page "https://github.com/sviridov/undercover.el")
2254 (synopsis "Test coverage library for Emacs Lisp")
2255 (description
2256 "Undercover is a test coverage library for software written in Emacs
2257Lisp.")
2258 (license license:expat)))
2259
2260(define-public emacs-paren-face
2261 (package
2262 (name "emacs-paren-face")
2263 (version "1.0.0")
2264 (source
2265 (origin
2266 (method url-fetch)
2267 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2268 version ".tar.gz"))
2269 (file-name (string-append name "-" version ".tar.gz"))
2270 (sha256
2271 (base32
2272 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2273 (build-system emacs-build-system)
2274 (home-page "https://github.com/tarsius/paren-face")
2275 (synopsis "Face for parentheses in lisp modes")
2276 (description
2277 "This library defines a face named @code{parenthesis} used just for
2278parentheses. The intended purpose of this face is to make parentheses less
2279visible in Lisp code by dimming them. Lispers probably don't need to be
2280constantly made aware of the existence of the parentheses. Dimming them might
2281be even more useful for people new to lisp who have not yet learned to
2282subconsciously blend out the parentheses.")
2283 (license license:gpl3+)))
2284
2285(define-public emacs-page-break-lines
2286 (package
2287 (name "emacs-page-break-lines")
2288 (version "0.11")
2289 (source
2290 (origin
2291 (method url-fetch)
2292 (uri (string-append "https://github.com/purcell/page-break-lines/"
2293 "archive/" version ".tar.gz"))
2294 (file-name (string-append name "-" version ".tar.gz"))
2295 (sha256
2296 (base32
2297 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2298 (build-system emacs-build-system)
2299 (home-page "https://github.com/purcell/page-break-lines")
2300 (synopsis "Display page breaks as tidy horizontal lines")
2301 (description
2302 "This library provides a global mode which displays form feed characters
2303as horizontal rules.")
2304 (license license:gpl3+)))
2305
2306(define-public emacs-simple-httpd
2307 (package
2308 (name "emacs-simple-httpd")
2309 (version "1.4.6")
2310 (source
2311 (origin
2312 (method url-fetch)
2313 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2314 "archive/" version ".tar.gz"))
2315 (file-name (string-append name "-" version ".tar.gz"))
2316 (sha256
2317 (base32
2318 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2319 (build-system emacs-build-system)
2320 (home-page "https://github.com/skeeto/emacs-http-server")
2321 (synopsis "HTTP server in pure Emacs Lisp")
2322 (description
2323 "This package provides a simple HTTP server written in Emacs Lisp to
2324serve files and directory listings.")
2325 (license license:unlicense)))
2326
2327(define-public emacs-skewer-mode
2328 (package
2329 (name "emacs-skewer-mode")
2330 (version "1.6.2")
2331 (source
2332 (origin
2333 (method url-fetch)
2334 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2335 version ".tar.gz"))
2336 (file-name (string-append name "-" version ".tar.gz"))
2337 (sha256
2338 (base32
2339 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2340 (build-system emacs-build-system)
2341 (propagated-inputs
2342 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2343 ("emacs-js2-mode" ,emacs-js2-mode)))
2344 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
2345 (home-page "https://github.com/skeeto/skewer-mode")
2346 (synopsis "Live web development in Emacs")
2347 (description
2348 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2349a web browser. Expressions are sent on-the-fly from an editing buffer to be
2350evaluated in the browser, just like Emacs does with an inferior Lisp process
2351in Lisp modes.")
2352 (license license:unlicense)))
2353
2354(define-public emacs-string-inflection
2355 (package
2356 (name "emacs-string-inflection")
2357 (version "1.0.6")
2358 (source (origin
2359 (method git-fetch)
2360 (uri (git-reference
2361 (url "https://github.com/akicho8/string-inflection")
2362 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2363 (file-name (string-append name "-" version "-checkout"))
2364 (sha256
2365 (base32
2366 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2367 (build-system emacs-build-system)
2368 (native-inputs
2369 `(("ert-runner" ,emacs-ert-runner)))
2370 (arguments
2371 `(#:tests? #t
2372 #:test-command '("ert-runner")))
2373 (home-page "https://github.com/akicho8/string-inflection")
2374 (synopsis "Convert symbol names between different naming conventions")
2375 (description
2376 "This Emacs package provides convenient methods for manipulating the
2377naming style of a symbol. It supports different naming conventions such as:
2378
2379@enumerate
2380@item camel case
2381@item Pascal case
2382@item all upper case
2383@item lower case separated by underscore
2384@item etc...
2385@end enumerate\n")
2386 (license license:gpl2+)))
2387
2388(define-public emacs-stripe-buffer
2389 (package
2390 (name "emacs-stripe-buffer")
2391 (version "0.2.5")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2396 "archive/" version ".tar.gz"))
2397 (file-name (string-append name "-" version ".tar.gz"))
2398 (sha256
2399 (base32
2400 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2401 (build-system emacs-build-system)
2402 (home-page "https://github.com/sabof/stripe-buffer/")
2403 (synopsis "Add stripes to list buffers")
2404 (description
2405 "This Emacs package adds faces to add stripes to list buffers and org
2406tables.")
2407 (license license:gpl2+)))
2408
2409(define-public emacs-rich-minority
2410 (package
2411 (name "emacs-rich-minority")
2412 (version "1.0.1")
2413 (source
2414 (origin
2415 (method url-fetch)
2416 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2417 "archive/" version ".tar.gz"))
2418 (file-name (string-append name "-" version ".tar.gz"))
2419 (sha256
2420 (base32
2421 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2422 (build-system emacs-build-system)
2423 (home-page "https://github.com/Malabarba/rich-minority")
2424 (synopsis "Clean-up and beautify the list of minor modes")
2425 (description
2426 "This Emacs package hides and/or highlights minor modes in the
2427mode-line.")
2428 (license license:gpl2+)))
2429
2430(define-public emacs-robe
2431 (package
2432 (name "emacs-robe")
2433 (version "0.8.1")
2434 (source
2435 (origin
2436 (method url-fetch)
2437 (uri (string-append "https://github.com/dgutov/robe/"
2438 "archive/" version ".tar.gz"))
2439 (file-name (string-append name "-" version ".tar.gz"))
2440 (sha256
2441 (base32
2442 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2443 (build-system emacs-build-system)
2444 (arguments
2445 '(#:include (cons "^lib\\/" %default-include)))
2446 (propagated-inputs
2447 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2448 (home-page "https://github.com/dgutov/robe")
2449 (synopsis "Ruby code assistance tool for Emacs")
2450 (description
2451 "Robe can provide information on loaded classes and modules in Ruby code,
2452as well as where methods are defined. This allows the user to jump to method
2453definitions, modules and classes, display method documentation and provide
2454method and constant name completion.")
2455 (license license:gpl3+)))
2456
2457(define-public emacs-rspec
2458 (package
2459 (name "emacs-rspec")
2460 (version "1.11")
2461 (source
2462 (origin
2463 (method url-fetch)
2464 (uri (string-append "https://github.com/pezra/rspec-mode/"
2465 "archive/v" version ".tar.gz"))
2466 (file-name (string-append name "-" version ".tar.gz"))
2467 (sha256
2468 (base32
2469 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2470 (build-system emacs-build-system)
2471 (home-page "https://github.com/pezra/rspec-mode")
2472 (synopsis "Provides a rspec mode for working with RSpec")
2473 (description
2474 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2475verify the spec associated with the current buffer, or entire project, as well
2476as moving between the spec files, and coresponding code files.
2477
2478Also included are keybindings for spec files and Dired buffers, as well as
2479snippets for yasnippet.")
2480 (license license:gpl3+)))
2481
2482(define-public emacs-smart-mode-line
2483 (package
2484 (name "emacs-smart-mode-line")
2485 (version "2.12.0")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2490 "archive/" version ".tar.gz"))
2491 (file-name (string-append name "-" version ".tar.gz"))
2492 (sha256
2493 (base32
2494 "1hn8s6laijmg7w1bgwdfrki6h9vxkbgr8rmmssvd5yqyad5w2sba"))))
2495 (build-system emacs-build-system)
2496 (propagated-inputs
2497 `(("emacs-rich-minority" ,emacs-rich-minority)))
2498 (home-page "https://github.com/Malabarba/smart-mode-line")
2499 (synopsis "Color-coded smart mode-line")
2500 (description
2501 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2502read from small to large monitors by using colors, a prefix feature, and smart
2503truncation.")
2504 (license license:gpl2+)))
2505
2506(define-public emacs-sr-speedbar
2507 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2508 (revision "0"))
2509 (package
2510 (name "emacs-sr-speedbar")
2511 (version (git-version "20161025" revision commit))
2512 (source
2513 (origin
2514 (method git-fetch)
2515 (uri (git-reference
2516 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2517 (commit commit)))
2518 (file-name (git-file-name name version))
2519 (sha256
2520 (base32
2521 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2522 (build-system emacs-build-system)
2523 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2524 (synopsis "Same frame Emacs @code{speedbar}")
2525 (description
2526 "This Emacs package allows you to show @code{M-x speedbar} in the
2527same frame (in an extra window). You can customize the initial width of
2528the speedbar window.")
2529 (license license:gpl3+))))
2530
2531(define-public emacs-shell-switcher
2532 (package
2533 (name "emacs-shell-switcher")
2534 (version "1.0.1")
2535 (source
2536 (origin
2537 (method url-fetch)
2538 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2539 "/archive/v" version ".tar.gz"))
2540 (file-name (string-append name "-" version ".tar.gz"))
2541 (sha256
2542 (base32
2543 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2544 (build-system emacs-build-system)
2545 (home-page "https://github.com/DamienCassou/shell-switcher")
2546 (synopsis "Provide fast switching between shell buffers")
2547 (description
2548 "This package provides commands to quickly switch between shell buffers.")
2549 (license license:gpl3+)))
2550
2551(define-public emacs-ob-ipython
2552 (package
2553 (name "emacs-ob-ipython")
2554 (version "20150704.8807064693")
2555 (source (origin
2556 (method git-fetch)
2557 (uri (git-reference
2558 (commit "880706469338ab59b5bb7dbe8460016f89755364")
2559 (url "https://github.com/gregsexton/ob-ipython.git")))
2560 (file-name (string-append name "-" version "-checkout"))
2561 (sha256
2562 (base32
2563 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2564 (build-system emacs-build-system)
2565 (propagated-inputs
2566 `(("emacs-f" ,emacs-f)))
2567 (home-page "http://www.gregsexton.org")
2568 (synopsis "Org-Babel functions for IPython evaluation")
2569 (description "This package adds support to Org-Babel for evaluating Python
2570source code using IPython.")
2571 (license license:gpl3+)))
2572
2573(define-public emacs-debbugs
2574 (package
2575 (name "emacs-debbugs")
2576 (version "0.16")
2577 (source (origin
2578 (method url-fetch)
2579 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
2580 version ".tar"))
2581 (sha256
2582 (base32
2583 "0y3bq803c7820h15g66d1648skxfhlfa2v6vincj6xk5ssp44s9p"))))
2584 (build-system emacs-build-system)
2585 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
2586 (propagated-inputs
2587 `(("emacs-async" ,emacs-async)))
2588 (home-page "https://elpa.gnu.org/packages/debbugs.html")
2589 (synopsis "Access the Debbugs bug tracker in Emacs")
2590 (description
2591 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2592Tracker} from within Emacs.
2593
2594For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2595and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2596prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2597@code{M-x debbugs-org} and related commands.
2598
2599A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2600Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2601 (license license:gpl3+)))
2602
2603(define-public emacs-ert-expectations
2604 (package
2605 (name "emacs-ert-expectations")
2606 (version "0.2")
2607 (source
2608 (origin
2609 (method url-fetch)
2610 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2611 (sha256
2612 (base32
2613 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2614 (build-system emacs-build-system)
2615 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2616 (synopsis "Simple unit test framework for Emacs Lisp")
2617 (description "@code{emacs-ert-expectations} is a simple unit test
2618framework for Emacs Lisp to be used with @code{ert}.")
2619 (license license:gpl3+)))
2620
2621(define-public emacs-deferred
2622 (package
2623 (name "emacs-deferred")
2624 (version "0.5.1")
2625 (home-page "https://github.com/kiwanami/emacs-deferred")
2626 (source (origin
2627 (method git-fetch)
2628 (uri (git-reference
2629 (url home-page)
2630 (commit (string-append "v" version))))
2631 (sha256
2632 (base32
2633 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
2634 (file-name (string-append name "-" version))))
2635 (build-system emacs-build-system)
2636 (arguments
2637 `(#:phases
2638 (modify-phases %standard-phases
2639 (add-after 'unpack 'set-shell
2640 ;; Setting the SHELL environment variable is required for the tests
2641 ;; to find sh.
2642 (lambda _
2643 (setenv "SHELL" (which "sh"))
2644 #t))
2645 (add-before 'check 'fix-makefile
2646 (lambda _
2647 (substitute* "Makefile"
2648 (("\\$\\(CASK\\) exec ") ""))
2649 #t)))
2650 #:tests? #t
2651 #:test-command '("make" "test")))
2652 (native-inputs
2653 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2654 ("emacs-undercover" ,emacs-undercover)
2655 ("ert-runner" ,emacs-ert-runner)))
2656 (synopsis "Simple asynchronous functions for Emacs Lisp")
2657 (description
2658 "The @code{deferred.el} library provides support for asynchronous tasks.
2659The API is almost the same as that of
2660@uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2661for asynchronous tasks.")
2662 (license license:gpl3+)))
2663
2664(define-public emacs-butler
2665 (package
2666 (name "emacs-butler")
2667 (version "0.2.4")
2668 (home-page "https://github.com/AshtonKem/Butler")
2669 (source (origin
2670 (method git-fetch)
2671 (uri (git-reference
2672 (url home-page)
2673 (commit version)))
2674 (sha256
2675 (base32
2676 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2677 (file-name (string-append name "-" version))))
2678 (build-system emacs-build-system)
2679 (propagated-inputs
2680 `(("emacs-deferred" ,emacs-deferred)))
2681 (synopsis "Emacs client for Jenkins")
2682 (description
2683 "Butler provides an interface to connect to Jenkins continuous
2684integration servers. Users can specify a list of server in the
2685@code{butler-server-list} variable and then use @code{M-x butler-status} to
2686view the build status of those servers' build jobs, and possibly to trigger
2687build jobs.")
2688 (license license:gpl3+)))
2689
2690(define-public emacs-company
2691 (package
2692 (name "emacs-company")
2693 (version "0.9.7")
2694 (source
2695 (origin
2696 (method url-fetch)
2697 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2698 version ".tar.gz"))
2699 (file-name (string-append name "-" version ".tar.gz"))
2700 (sha256
2701 (base32
2702 "19flv38f2qhxda8lbk2ckywvibd72vbzmn4hchqz6d8acsknh4sb"))))
2703 (build-system emacs-build-system)
2704 (arguments
2705 `(#:phases
2706 (modify-phases %standard-phases
2707 (add-before 'check 'fix-bin-dir
2708 (lambda _
2709 ;; The company-files-candidates-normal-root test looks
2710 ;; for the /bin directory, but the build environment has
2711 ;; no /bin directory. Modify the test to look for the
2712 ;; /tmp directory.
2713 (substitute* "test/files-tests.el"
2714 (("/bin/") "/tmp/"))
2715 #t)))
2716 #:tests? #t
2717 #:test-command '("make" "test-batch")))
2718 (home-page "http://company-mode.github.io/")
2719 (synopsis "Modular text completion framework")
2720 (description
2721 "Company is a modular completion mechanism. Modules for retrieving
2722completion candidates are called back-ends, modules for displaying them are
2723front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2724These are distributed in separate files and can be used individually.")
2725 (license license:gpl3+)))
2726
2727(define-public emacs-irony-mode
2728 (package
2729 (name "emacs-irony-mode")
2730 (version "1.2.0")
2731 (home-page "https://github.com/Sarcasm/irony-mode")
2732 (source (origin
2733 (method git-fetch)
2734 (uri (git-reference
2735 (url (string-append home-page ".git"))
2736 (commit (string-append "v" version))))
2737 (sha256
2738 (base32
2739 "0nhjrnlmss535jbshjjd30vydbr8py21vkx4p294w6d8vg2rssf8"))
2740 (file-name (string-append name "-" version ".tar.gz"))))
2741 (build-system emacs-build-system)
2742 (inputs `(("server" ,emacs-irony-mode-server)))
2743 (arguments `(#:phases
2744 (modify-phases %standard-phases
2745 (add-after 'unpack 'configure
2746 (lambda* (#:key inputs #:allow-other-keys)
2747 (chmod "irony.el" #o644)
2748 (emacs-substitute-variables "irony.el"
2749 ("irony-server-install-prefix"
2750 (assoc-ref inputs "server")))
2751 #t)))))
2752 (synopsis "C/C++/ObjC Code completion and syntax checks for Emacs")
2753 (description "Irony-mode provides Clang-assisted syntax checking and
2754completion for C, C++, and ObjC in GNU Emacs. Using @code{libclang} it can
2755provide syntax checking and autocompletion on compiler level which is very
2756resistent against false positives. It also integrates well with other
2757packages like @code{eldoc-mode} and especially @code{company-mode} as
2758described on the homepage.")
2759 (license license:gpl3+)))
2760
2761(define-public emacs-irony-mode-server
2762 (package (inherit emacs-irony-mode)
2763 (name "emacs-irony-mode-server")
2764 (inputs
2765 `(("clang" ,clang)))
2766 (arguments
2767 `(#:phases
2768 (modify-phases %standard-phases
2769 (replace 'configure
2770 (lambda* (#:key outputs #:allow-other-keys)
2771 (let ((out (assoc-ref outputs "out")))
2772 (invoke "cmake"
2773 "server"
2774 (string-append "-DCMAKE_INSTALL_PREFIX=" out)) #t))))))
2775 (build-system cmake-build-system)
2776 (synopsis "Server for the Emacs @dfn{irony mode}")))
2777
2778(define-public emacs-company-irony
2779 (package
2780 (name "emacs-company-irony")
2781 (version "1.1.0")
2782 (source (origin
2783 (method git-fetch)
2784 (uri (git-reference
2785 (url "https://github.com/Sarcasm/company-irony.git")
2786 (commit (string-append "v" version))))
2787 (sha256 (base32
2788 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
2789 (file-name (git-file-name name version))))
2790 (build-system emacs-build-system)
2791 (inputs
2792 `(("emacs-irony-mode" ,emacs-irony-mode)
2793 ("emacs-company" ,emacs-company)))
2794 (synopsis "C++ completion backend for Company using irony-mode")
2795 (description "This backend for company-mode allows for C++ code completion
2796with irony-mode using clang-tooling.")
2797 (home-page "https://github.com/Sarcasm/company-irony")
2798 (license license:gpl3+)))
2799
2800(define-public emacs-flycheck-irony
2801 (package
2802 (name "emacs-flycheck-irony")
2803 (version "0.1.0")
2804 (source (origin
2805 (method git-fetch)
2806 (uri (git-reference
2807 (url "https://github.com/Sarcasm/flycheck-irony.git")
2808 (commit (string-append "v" version))))
2809 (sha256
2810 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))
2811 (file-name (string-append name "-" version))))
2812 (build-system emacs-build-system)
2813 (inputs
2814 `(("irony-mode" ,emacs-irony-mode)
2815 ("flycheck-mode" ,emacs-flycheck)
2816 ("emacs-company" ,emacs-company)))
2817 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2818 (description "This package provides a frontend for Flycheck that lets
2819irony-mode do the syntax checking.")
2820 (home-page "https://github.com/Sarcasm/flycheck-irony")
2821 (license license:gpl3+)))
2822
2823(define-public emacs-irony-eldoc
2824 (package
2825 (name "emacs-irony-eldoc")
2826 (version (package-version emacs-irony-mode))
2827 (source
2828 (origin
2829 (method git-fetch)
2830 (uri (git-reference
2831 (url "https://github.com/ikirill/irony-eldoc.git")
2832 (commit "0df5831eaae264a25422b061eb2792aadde8b3f2")))
2833 (sha256 (base32 "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"))
2834 (file-name (string-append name "-" version))))
2835 (build-system emacs-build-system)
2836 (inputs
2837 `(("irony-mode" ,emacs-irony-mode)))
2838 (synopsis "Eldoc integration for irony-mode")
2839 (description "Irony-eldoc is an eldoc extension that shows documentation
2840for the current function or variable in the minibuffer.")
2841 (home-page "https://github.com/ikirill/irony-eldoc")
2842 (license license:gpl3+)))
2843
2844(define-public emacs-company-quickhelp
2845 (package
2846 (name "emacs-company-quickhelp")
2847 (version "2.3.0")
2848 (source
2849 (origin
2850 (method url-fetch)
2851 (uri (string-append
2852 "https://github.com/expez/company-quickhelp/archive/"
2853 version ".tar.gz"))
2854 (file-name (string-append name "-" version ".tar.gz"))
2855 (sha256
2856 (base32
2857 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2858 (build-system emacs-build-system)
2859 (propagated-inputs
2860 `(("emacs-pos-tip" ,emacs-pos-tip)
2861 ("emacs-company" ,emacs-company)))
2862 (home-page "https://github.com/expez/company-quickhelp")
2863 (synopsis "Popup documentation for completion candidates")
2864 (description "@code{company-quickhelp} shows documentation for the
2865completion candidate when using the Company text completion framework.")
2866 (license license:gpl3+)))
2867
2868(define-public emacs-multiple-cursors
2869 (package
2870 (name "emacs-multiple-cursors")
2871 (version "1.4.0")
2872 (source
2873 (origin
2874 (method url-fetch)
2875 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2876 "archive/" version ".tar.gz"))
2877 (file-name (string-append name "-" version ".tar.gz"))
2878 (sha256
2879 (base32
2880 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2881 (build-system emacs-build-system)
2882 (home-page "https://github.com/magnars/multiple-cursors.el")
2883 (synopsis "Multiple cursors for Emacs")
2884 (description
2885 "This package adds support to Emacs for editing text with multiple
2886simultaneous cursors.")
2887 (license license:gpl3+)))
2888
2889(define-public emacs-typo
2890 (package
2891 (name "emacs-typo")
2892 (version "1.1")
2893 (home-page "https://github.com/jorgenschaefer/typoel")
2894 (source (origin
2895 (method git-fetch)
2896 (uri (git-reference
2897 (url home-page)
2898 (commit (string-append "v" version))))
2899 (sha256
2900 (base32
2901 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2902 (file-name (string-append name "-" version))))
2903 (build-system emacs-build-system)
2904 (synopsis "Minor mode for typographic editing")
2905 (description
2906 "This package provides two Emacs modes, @code{typo-mode} and
2907@code{typo-global-mode}. These modes automatically insert Unicode characters
2908for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2909automatically inserts a Unicode opening or closing quotation mark, depending
2910on context.")
2911 (license license:gpl3+)))
2912
2913(define-public emacs-scheme-complete
2914 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2915 (package
2916 (name "emacs-scheme-complete")
2917 (version (string-append "20151223." (string-take commit 8)))
2918 (source
2919 (origin
2920 (file-name (string-append name "-" version))
2921 (method git-fetch)
2922 (uri (git-reference
2923 (url "https://github.com/ashinn/scheme-complete.git")
2924 (commit commit)))
2925 (sha256
2926 (base32
2927 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2928 (patches
2929 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
2930 (build-system emacs-build-system)
2931 (home-page "https://github.com/ashinn/scheme-complete")
2932 (synopsis "Smart tab completion for Scheme in Emacs")
2933 (description
2934 "This file provides a single function, @code{scheme-smart-complete},
2935which you can use for intelligent, context-sensitive completion for any Scheme
2936implementation in Emacs. To use it just load this file and bind that function
2937to a key in your preferred mode.")
2938 (license license:public-domain))))
2939
2940(define-public emacs-scel
2941 (let ((version "20170629")
2942 (revision "1")
2943 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
2944 (package
2945 (name "emacs-scel")
2946 (version (git-version version revision commit))
2947 (source
2948 (origin
2949 (method git-fetch)
2950 (uri (git-reference
2951 (url "https://github.com/supercollider/scel.git")
2952 (commit commit)))
2953 (file-name (string-append name "-" version "-checkout"))
2954 (sha256
2955 (base32
2956 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
2957 (build-system emacs-build-system)
2958 (arguments
2959 `(#:modules ((guix build emacs-build-system)
2960 ((guix build cmake-build-system) #:prefix cmake:)
2961 (guix build utils))
2962 #:imported-modules (,@%emacs-build-system-modules
2963 (guix build cmake-build-system))
2964 #:phases
2965 (modify-phases %standard-phases
2966 (add-after 'unpack 'configure
2967 (lambda* (#:key outputs #:allow-other-keys)
2968 (substitute* "el/CMakeLists.txt"
2969 (("share/emacs/site-lisp/SuperCollider")
2970 (string-append
2971 "share/emacs/site-lisp/guix.d/scel-" ,version)))
2972 ((assoc-ref cmake:%standard-phases 'configure)
2973 #:outputs outputs
2974 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
2975 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
2976 (lambda _
2977 (setenv "EMACSLOADPATH"
2978 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
2979 #t))
2980 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
2981 (inputs
2982 `(("supercollider" ,supercollider)))
2983 (native-inputs
2984 `(("cmake" ,cmake)))
2985 (home-page "https://github.com/supercollider/scel")
2986 (synopsis "SuperCollider Emacs interface")
2987 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
2988SuperCollider is a platform for audio synthesis and algorithmic composition.")
2989 (license license:gpl2+))))
2990
2991(define-public emacs-mit-scheme-doc
2992 (package
2993 (name "emacs-mit-scheme-doc")
2994 (version "20140203")
2995 (source
2996 (origin
2997 (modules '((guix build utils)))
2998 (snippet
2999 ;; keep only file of interest
3000 '(begin
3001 (for-each delete-file '("dot-emacs.el" "Makefile"))
3002 (install-file "6.945-config/mit-scheme-doc.el" ".")
3003 (delete-file-recursively "6.945-config")
3004 #t))
3005 (file-name (string-append name "-" version ".tar.bz2"))
3006 (method url-fetch)
3007 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
3008 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
3009 (sha256
3010 (base32
3011 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
3012 (build-system emacs-build-system)
3013 (inputs `(("mit-scheme" ,mit-scheme)))
3014 (arguments
3015 `(#:phases
3016 (modify-phases %standard-phases
3017 (add-after 'unpack 'configure-doc
3018 (lambda* (#:key inputs #:allow-other-keys)
3019 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
3020 (doc-dir (string-append mit-scheme-dir "/share/doc/"
3021 "mit-scheme-"
3022 ,(package-version mit-scheme))))
3023 (substitute* "mit-scheme-doc.el"
3024 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
3025 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
3026 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
3027 (synopsis "MIT-Scheme documentation lookup for Emacs")
3028 (description
3029 "This package provides a set of Emacs functions to search definitions of
3030identifiers in the MIT-Scheme documentation.")
3031 (license license:gpl2+)))
3032
3033(define-public emacs-constants
3034 (package
3035 (name "emacs-constants")
3036 (version "2.6")
3037 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
3038 (source
3039 (origin
3040 (file-name (string-append name "-" version ".tar.gz"))
3041 (method url-fetch)
3042 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
3043 "/archive/v" version ".tar.gz"))
3044 (sha256
3045 (base32
3046 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
3047 (build-system emacs-build-system)
3048 (synopsis "Enter definition of constants into an Emacs buffer")
3049 (description
3050 "This package provides functions for inserting the definition of natural
3051constants and units into an Emacs buffer.")
3052 (license license:gpl2+)))
3053
3054(define-public emacs-tagedit
3055 (package
3056 (name "emacs-tagedit")
3057 (version "1.4.0")
3058 (source
3059 (origin
3060 (method url-fetch)
3061 (uri (string-append "https://github.com/magnars/tagedit/"
3062 "archive/" version ".tar.gz"))
3063 (file-name (string-append name "-" version ".tar.gz"))
3064 (sha256
3065 (base32
3066 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
3067 (build-system emacs-build-system)
3068 (propagated-inputs
3069 `(("emacs-s" ,emacs-s)
3070 ("emacs-dash" ,emacs-dash)))
3071 (home-page "https://github.com/magnars/tagedit")
3072 (synopsis "Some paredit-like features for html-mode")
3073 (description
3074 "This package provides a collection of paredit-like functions for editing
3075in @code{html-mode}.")
3076 (license license:gpl3+)))
3077
3078(define-public emacs-slime
3079 (package
3080 (name "emacs-slime")
c4e4b853 3081 (version "2.23")
eeb883cb
RW
3082 (source
3083 (origin
3084 (file-name (string-append name "-" version ".tar.gz"))
3085 (method url-fetch)
3086 (uri (string-append
3087 "https://github.com/slime/slime/archive/v"
3088 version ".tar.gz"))
3089 (sha256
3090 (base32
c4e4b853 3091 "01gkrqfpifcx1vipwrbhns2r4s8izp3z1w4p41azc943s1a2d5nc"))))
eeb883cb
RW
3092 (build-system emacs-build-system)
3093 (native-inputs
3094 `(("texinfo" ,texinfo)))
3095 (arguments
3096 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
3097 #:exclude '("^slime-tests.el" "^contrib/test/"
3098 "^contrib/Makefile$" "^contrib/README.md$")
3099 #:phases
3100 (modify-phases %standard-phases
3101 (add-before 'install 'configure
3102 (lambda* _
3103 (emacs-substitute-variables "slime.el"
3104 ("inferior-lisp-program" "sbcl"))
3105 #t))
3106 (add-before 'install 'install-doc
3107 (lambda* (#:key outputs #:allow-other-keys)
3108 (let* ((out (assoc-ref outputs "out"))
3109 (info-dir (string-append out "/share/info"))
3110 (doc-dir (string-append out "/share/doc/"
3111 ,name "-" ,version))
3112 (doc-files '("doc/slime-refcard.pdf"
3113 "README.md" "NEWS" "PROBLEMS"
3114 "CONTRIBUTING.md")))
3115 (with-directory-excursion "doc"
3116 (substitute* "Makefile"
3117 (("infodir=/usr/local/info")
3118 (string-append "infodir=" info-dir)))
3119 (invoke "make" "html/index.html")
3120 (invoke "make" "slime.info")
3121 (install-file "slime.info" info-dir)
3122 (copy-recursively "html" (string-append doc-dir "/html")))
3123 (for-each (lambda (f)
3124 (install-file f doc-dir)
3125 (delete-file f))
3126 doc-files)
3127 (delete-file-recursively "doc")
3128 #t))))))
3129 (home-page "https://github.com/slime/slime")
3130 (synopsis "Superior Lisp Interaction Mode for Emacs")
3131 (description
3132 "SLIME extends Emacs with support for interactive programming in
3133Common Lisp. The features are centered around @command{slime-mode},
3134an Emacs minor mode that complements the standard @command{lisp-mode}.
3135While lisp-mode supports editing Lisp source files, @command{slime-mode}
3136adds support for interacting with a running Common Lisp process
3137for compilation, debugging, documentation lookup, and so on.")
3138 (license (list license:gpl2+ license:public-domain))))
3139
3140(define-public emacs-popup
3141 (package
3142 (name "emacs-popup")
3143 (version "0.5.3")
3144 (source (origin
3145 (method url-fetch)
3146 (uri (string-append
3147 "https://github.com/auto-complete/popup-el/archive/v"
3148 version ".tar.gz"))
3149 (file-name (string-append name "-" version ".tar.gz"))
3150 (sha256
3151 (base32
3152 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
3153 (build-system emacs-build-system)
3154 (home-page "https://github.com/auto-complete/popup-el")
3155 (synopsis "Visual Popup User Interface for Emacs")
3156 (description
3157 "Popup.el is a visual popup user interface library for Emacs.
3158This provides a basic API and common UI widgets such as popup tooltips
3159and popup menus.")
3160 (license license:gpl3+)))
3161
3162(define-public emacs-puppet-mode
3163 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3164 (revision "1"))
3165 (package
3166 (name "emacs-puppet-mode")
3167 ;; The last release, 0.3 was several years ago, and there have been many
3168 ;; commits since
3169 (version (git-version "0.3" revision commit))
3170 (source
3171 (origin
3172 (method url-fetch)
3173 (uri (string-append
3174 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3175 commit "/puppet-mode.el"))
3176 (sha256
3177 (base32
3178 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3179 (build-system emacs-build-system)
3180 (home-page "https://github.com/voxpupuli/puppet-mode")
3181 (synopsis "Emacs major mode for the Puppet configuration language")
3182 (description
3183 "This package provides support for the Puppet configuration language,
3184including syntax highlighting, indentation of expressions and statements,
3185linting of manifests and integration with Puppet Debugger.")
3186 ;; Also incorporates work covered by the Apache License, Version 2.0
3187 (license license:gpl3+))))
3188
3189(define-public emacs-god-mode
3190 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3191 (revision "1"))
3192 (package
3193 (name "emacs-god-mode")
3194 (version (string-append "20151005.925."
3195 revision "-" (string-take commit 9)))
3196 (source
3197 (origin
3198 (method git-fetch)
3199 (uri (git-reference
3200 (url "https://github.com/chrisdone/god-mode.git")
3201 (commit commit)))
3202 (file-name (string-append name "-" version "-checkout"))
3203 (sha256
3204 (base32
3205 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3206 (build-system emacs-build-system)
3207 (home-page "https://github.com/chrisdone/god-mode")
3208 (synopsis "Minor mode for entering commands without modifier keys")
3209 (description
3210 "This package provides a global minor mode for entering Emacs commands
3211without modifier keys. It's similar to Vim's separation of commands and
3212insertion mode. When enabled all keys are implicitly prefixed with
3213@samp{C-} (among other helpful shortcuts).")
3214 (license license:gpl3+))))
3215
3216(define-public emacs-jinja2-mode
3217 (package
3218 (name "emacs-jinja2-mode")
3219 (version "0.2")
3220 (source
3221 (origin
3222 (method url-fetch)
3223 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
3224 "archive/v" version ".tar.gz"))
3225 (file-name (string-append name "-" version ".tar.gz"))
3226 (sha256
3227 (base32
3228 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
3229 (build-system emacs-build-system)
3230 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3231 (synopsis "Major mode for jinja2")
3232 (description
3233 "Emacs major mode for jinja2 with: syntax highlighting,
3234sgml/html integration, and indentation (working with sgml).")
3235 (license license:gpl3+)))
3236
3237(define-public emacs-rfcview
3238 (package
3239 (name "emacs-rfcview")
3240 (version "0.13")
3241 (home-page "http://www.loveshack.ukfsn.org/emacs")
3242 (source (origin
3243 (method url-fetch)
3244 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3245 (sha256
3246 (base32
3247 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3248 (build-system emacs-build-system)
3249 (synopsis "Prettify Request for Comments (RFC) documents")
3250 (description "The Internet Engineering Task Force (IETF) and the Internet
3251Society (ISOC) publish various Internet-related protocols and specifications
3252as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3253documents. RFCs and STDs are published in a simple text form. This package
3254provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3255read these documents in Emacs. It prettifies the text and adds
3256hyperlinks/menus for easier navigation. It also provides functions for
3257browsing the index of RFC documents and fetching them from remote servers or
3258local directories.")
3259 (license license:gpl3+)))
3260
3261(define-public emacs-ffap-rfc-space
3262 (package
3263 (name "emacs-ffap-rfc-space")
3264 (version "12")
3265 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3266 (source (origin
3267 (method url-fetch)
3268 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3269 (sha256
3270 (base32
3271 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3272 (build-system emacs-build-system)
3273 (synopsis "Make ffap recognize an RFC with a space before its number")
3274 (description "The Internet Engineering Task Force (IETF) and the
3275Internet Society (ISOC) publish various Internet-related protocols and
3276specifications as \"Request for Comments\" (RFC) documents. The
3277built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3278recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3279and load the appropriate RFC from a remote server. However, it fails
3280to recognize a name like \"RFC 1234\". This package enhances ffap so
3281that it correctly finds RFCs even when a space appears before the
3282number.")
3283 (license license:gpl3+)))
3284
3285(define-public emacs-org-bullets
3286 (package
3287 (name "emacs-org-bullets")
3288 (version "0.2.4")
3289 (source
3290 (origin
3291 (method url-fetch)
3292 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
3293 version ".tar.gz"))
3294 (file-name (string-append name "-" version ".tar.gz"))
3295 (sha256
3296 (base32
3297 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
3298 (build-system emacs-build-system)
3299 (home-page "https://github.com/sabof/org-bullets")
3300 (synopsis "Show bullets in org-mode as UTF-8 characters")
3301 (description
3302 "This package provides an Emacs minor mode causing bullets in
3303@code{org-mode} to be rendered as UTF-8 characters.")
3304 (license license:gpl3+)))
3305
3306(define-public emacs-org-pomodoro
3307 (package
3308 (name "emacs-org-pomodoro")
3309 (version "2.1.0")
3310 (source
3311 (origin
3312 (method url-fetch)
3313 (uri (string-append
3314 "https://github.com/lolownia/org-pomodoro/archive/"
3315 version ".tar.gz"))
3316 (file-name (string-append name "-" version ".tar.gz"))
3317 (sha256
3318 (base32
3319 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3320 (build-system emacs-build-system)
3321 (propagated-inputs
3322 `(("emacs-alert" ,emacs-alert)))
3323 (home-page "https://github.com/lolownia/org-pomodoro")
3324 (synopsis "Pomodoro technique for org-mode")
3325 (description "@code{emacs-org-pomodoro} adds very basic support for
3326Pomodoro technique in Emacs org-mode.
3327
3328Run @code{M-x org-pomodoro} for the task at point or select one of the
3329last tasks that you clocked time for. Each clocked-in pomodoro starts
3330a timer of 25 minutes and after each pomodoro a break timer of 5
3331minutes is started automatically. Every 4 breaks a long break is
3332started with 20 minutes. All values are customizable.")
3333 (license license:gpl3+)))
3334
3335(define-public emacs-org-trello
3336 (package
3337 (name "emacs-org-trello")
3338 (version "0.8.0")
3339 (source (origin
3340 (method url-fetch)
3341 (uri (string-append
3342 "https://github.com/org-trello/org-trello/archive/"
3343 version ".tar.gz"))
3344 (file-name (string-append name "-" version ".tar.gz"))
3345 (sha256
3346 (base32
3347 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
3348 (build-system emacs-build-system)
3349 (propagated-inputs
3350 `(("emacs-dash" ,emacs-dash)
3351 ("emacs-deferred" ,emacs-deferred)
3352 ("emacs-f" ,emacs-f)
3353 ("emacs-helm" ,emacs-helm)
3354 ("emacs-request" ,emacs-request)
3355 ("emacs-s" ,emacs-s)))
3356 (home-page "https://org-trello.github.io")
3357 (synopsis "Emacs minor mode for interacting with Trello")
3358 (description "This package provides an Emacs minor mode to extend
3359@code{org-mode} with Trello abilities. Trello is an online project
3360organizer.")
3361 (license license:gpl3+)))
3362
3363(define-public emacs-atom-one-dark-theme
3364 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3365 (revision "0"))
3366 (package
3367 (name "emacs-atom-one-dark-theme")
3368 (version (git-version "0.4.0" revision commit))
3369 (source (origin
3370 (method git-fetch)
3371 (uri (git-reference
3372 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3373 (commit commit)))
3374 (sha256
3375 (base32
3376 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3377 (file-name (git-file-name name version))))
3378 (build-system emacs-build-system)
3379 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3380 (synopsis "Atom One Dark color theme for Emacs")
3381 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3382 (license license:gpl3+))))
3383
3384(define-public emacs-zenburn-theme
3385 (package
3386 (name "emacs-zenburn-theme")
3387 (version "2.6")
3388 (source (origin
3389 (method url-fetch)
3390 (uri (string-append
3391 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3392 version ".tar.gz"))
3393 (file-name (string-append name "-" version ".tar.gz"))
3394 (sha256
3395 (base32
3396 "0qc9d1rwq55yzh8shbppyd6izy1grpyr8kqh5zdgm7c5jccngpr4"))))
3397 (build-system emacs-build-system)
3398 (home-page "https://github.com/bbatsov/zenburn-emacs")
3399 (synopsis "Low contrast color theme for Emacs")
3400 (description
3401 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3402It is built on top of the custom theme support in Emacs 24 or later.")
3403 (license license:gpl3+)))
3404
3405(define-public emacs-solarized-theme
3406 (package
3407 (name "emacs-solarized-theme")
3408 (version "1.2.2")
3409 (source (origin
3410 (method url-fetch)
3411 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3412 "archive/v" version ".tar.gz"))
3413 (file-name (string-append name "-" version ".tar.gz"))
3414 (sha256
3415 (base32
3416 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3417 (build-system emacs-build-system)
3418 (propagated-inputs
3419 `(("emacs-dash" ,emacs-dash)))
3420 (home-page "https://github.com/bbatsov/solarized-emacs")
3421 (synopsis "Port of the Solarized theme for Emacs")
3422 (description
3423 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3424package provides a light and a dark variant.")
3425 (license license:gpl3+)))
3426
3427(define-public emacs-ahungry-theme
3428 (package
3429 (name "emacs-ahungry-theme")
3430 (version "1.10.0")
3431 (source
3432 (origin (method url-fetch)
3433 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
3434 version ".tar"))
3435 (sha256
3436 (base32
3437 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
3438 (build-system emacs-build-system)
3439 (home-page "https://github.com/ahungry/color-theme-ahungry")
3440 (synopsis "Ahungry color theme for Emacs")
3441 (description "Ahungry theme for Emacs provides bright and bold colors.
3442If you load it from a terminal, you will be able to make use of the
3443transparent background. If you load it from a GUI, it will default to a
3444dark background.")
3445 (license license:gpl3+)))
3446
3447(define-public emacs-2048-game
3448 (package
3449 (name "emacs-2048-game")
3450 (version "20151026.1233")
3451 (source
3452 (origin
3453 (method url-fetch)
3454 (uri (string-append "https://melpa.org/packages/2048-game-"
3455 version ".el"))
3456 (sha256
3457 (base32
3458 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3459 (build-system emacs-build-system)
3460 (home-page "https://bitbucket.org/zck/2048.el")
3461 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3462 (description
3463 "This program is an implementation of 2048 for Emacs.
3464The goal of this game is to create a tile with value 2048. The size of the
3465board and goal value can be customized.")
3466 (license license:gpl3+)))
3467
3468(define-public emacs-base16-theme
3469 (package
3470 (name "emacs-base16-theme")
3471 (version "2.1")
3472 (source
3473 (origin
3474 (method url-fetch)
3475 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3476 version ".tar"))
3477 (sha256
3478 (base32
3479 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3480 (build-system emacs-build-system)
3481 (home-page "https://github.com/belak/base16-emacs")
3482 (synopsis "Base16 color themes for Emacs")
3483 (description
3484 "Base16 provides carefully chosen syntax highlighting and a default set
3485of sixteen colors suitable for a wide range of applications. Base16 is not a
3486single theme but a set of guidelines with numerous implementations.")
3487 (license license:expat)))
3488
3489(define-public emacs-smartparens
3490 (package
3491 (name "emacs-smartparens")
3492 (version "1.11.0")
3493 (source (origin
3494 (method url-fetch)
3495 (uri (string-append
3496 "https://github.com/Fuco1/smartparens/archive/"
3497 version ".tar.gz"))
3498 (file-name (string-append name "-" version ".tar.gz"))
3499 (sha256
3500 (base32
3501 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
3502 (build-system emacs-build-system)
3503 (propagated-inputs
3504 `(("emacs-dash" ,emacs-dash)
3505 ("emacs-markdown-mode" ,emacs-markdown-mode)))
3506 (home-page "https://github.com/Fuco1/smartparens")
3507 (synopsis "Paredit-like insertion, wrapping and navigation with user
3508defined pairs")
3509 (description
3510 "Smartparens is a minor mode for Emacs that deals with parens pairs
3511and tries to be smart about it. It started as a unification effort to
3512combine functionality of several existing packages in a single,
3513compatible and extensible way to deal with parentheses, delimiters, tags
3514and the like. Some of these packages include autopair, textmate,
3515wrap-region, electric-pair-mode, paredit and others. With the basic
3516features found in other packages it also brings many improvements as
3517well as completely new features.")
3518 (license license:gpl3+)))
3519
3520(define-public emacs-highlight-symbol
3521 (package
3522 (name "emacs-highlight-symbol")
3523 (version "1.3")
3524 (source (origin
3525 (method url-fetch)
3526 (uri (string-append
3527 "https://github.com/nschum/highlight-symbol.el/archive/"
3528 version ".tar.gz"))
3529 (file-name (string-append name "-" version ".tar.gz"))
3530 (sha256
3531 (base32
3532 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3533 (build-system emacs-build-system)
3534 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3535 (synopsis "Automatic and manual symbol highlighting for Emacs")
3536 (description
3537 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3538point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3539the symbol at point highlighted.
3540
3541The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3542@code{highlight-symbol-next-in-defun} and
3543@code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3544of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3545bindings @code{M-p} and @code{M-p} for navigation. When
3546@code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3547regardless of @code{highlight-symbol-idle-delay}.
3548
3549@code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3550 (license license:gpl2+)))
3551
3552(define-public emacs-hl-todo
3553 (package
3554 (name "emacs-hl-todo")
3555 (version "1.9.0")
3556 (source (origin
3557 (method url-fetch)
3558 (uri (string-append
3559 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3560 version "/hl-todo.el"))
3561 (file-name (string-append "hl-todo-" version ".el"))
3562 (sha256
3563 (base32
3564 "0728givzh7xv5i88ac9if8byj1p8bilrj1fnizca10s0rv100hdr"))))
3565 (build-system emacs-build-system)
3566 (home-page "https://github.com/tarsius/hl-todo")
3567 (synopsis "Emacs mode to highlight TODO and similar keywords")
3568 (description
3569 "This package provides an Emacs mode to highlight TODO and similar
3570keywords in comments and strings. This package also provides commands for
3571moving to the next or previous keyword and to invoke @code{occur} with a
3572regexp that matches all known keywords.")
3573 (license license:gpl3+)))
3574
3575(define-public emacs-perspective
3576 (package
3577 (name "emacs-perspective")
3578 (version "1.12")
3579 (source
3580 (origin
3581 (method url-fetch)
3582 (uri (string-append "https://github.com/nex3/perspective-el/"
3583 "archive/" version ".tar.gz"))
3584 (file-name (string-append name "-" version ".tar.gz"))
3585 (sha256
3586 (base32
3587 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3588 (build-system emacs-build-system)
3589 (home-page "https://github.com/nex3/perspective-el")
3590 (synopsis "Switch between named \"perspectives\"")
3591 (description
3592 "This package provides tagged workspaces in Emacs, similar to workspaces in
3593windows managers such as Awesome and XMonad. @code{perspective.el} provides
3594multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3595perspective is composed of a window configuration and a set of buffers.
3596Switching to a perspective activates its window configuration, and when in a
3597perspective only its buffers are available by default.")
3598 ;; This package is released under the same license as Emacs (GPLv3+) or
3599 ;; the Expat license.
3600 (license license:gpl3+)))
3601
3602(define-public emacs-test-simple
3603 (package
3604 (name "emacs-test-simple")
3605 (version "1.3.0")
3606 (source
3607 (origin
3608 (method url-fetch)
3609 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3610 version ".el"))
3611 (sha256
3612 (base32
3613 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3614 (build-system emacs-build-system)
3615 (home-page "https://github.com/rocky/emacs-test-simple")
3616 (synopsis "Simple unit test framework for Emacs Lisp")
3617 (description
3618 "Test Simple is a simple unit test framework for Emacs Lisp. It
3619alleviates the need for context macros, enclosing specifications or required
3620test tags. It supports both interactive and non-interactive use.")
3621 (license license:gpl3+)))
3622
3623(define-public emacs-load-relative
3624 (package
3625 (name "emacs-load-relative")
3626 (version "1.3")
3627 (source
3628 (origin
3629 (method url-fetch)
3630 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3631 version ".el"))
3632 (sha256
3633 (base32
3634 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3635 (build-system emacs-build-system)
3636 (home-page "http://github.com/rocky/emacs-load-relative")
3637 (synopsis "Emacs Lisp relative file loading related functions")
3638 (description
3639 "Provides functions which facilitate writing multi-file Emacs packages
3640and running from the source tree without having to \"install\" code or fiddle
3641with @{load-path}.
3642
3643The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3644another (presumably currently running) Emacs Lisp file.")
3645 (license license:gpl3+)))
3646
3647(define-public emacs-loc-changes
3648 (package
3649 (name "emacs-loc-changes")
3650 (version "1.2")
3651 (source
3652 (origin
3653 (method url-fetch)
3654 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3655 version ".el"))
3656 (sha256
3657 (base32
3658 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3659 (build-system emacs-build-system)
3660 (home-page "https://github.com/rocky/emacs-loc-changes")
3661 (synopsis "Keeps track of positions even after buffer changes")
3662 (description
3663 "This Emacs package provides a mean to track important buffer positions
3664after buffer changes.")
3665 (license license:gpl3+)))
3666
3667(define-public emacs-realgud
3668 (package
3669 (name "emacs-realgud")
3670 (version "1.4.5")
3671 (source
3672 (origin
3673 (method url-fetch)
3674 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3675 version ".tar"))
3676 (sha256
3677 (base32
3678 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))
3679 (patches
3680 ;; Patch awaiting inclusion upstream (see:
3681 ;; https://github.com/realgud/realgud/pull/226).
3682 (search-patches "emacs-realgud-fix-configure-ac.patch"))))
3683 (build-system emacs-build-system)
3684 (arguments
3685 `(#:tests? #t
3686 #:phases
3687 (modify-phases %standard-phases
3688 (add-after 'set-emacs-load-path 'fix-autogen-script
3689 (lambda _
3690 (substitute* "autogen.sh"
3691 (("./configure") "sh configure"))))
3692 (add-after 'fix-autogen-script 'autogen
3693 (lambda _
3694 (setenv "CONFIG_SHELL" "sh")
3695 (invoke "sh" "autogen.sh")))
3696 (add-after 'fix-autogen-script 'set-home
3697 (lambda _
3698 (setenv "HOME" (getenv "TMPDIR"))))
3699 (add-before 'patch-el-files 'remove-realgud-pkg.el
3700 (lambda _
3701 ;; XXX: This file is auto-generated at some point and causes
3702 ;; substitute* to crash during the `patch-el-files' phase with:
3703 ;; ERROR: In procedure stat: No such file or directory:
3704 ;; "./realgud-pkg.el"
3705 (delete-file "./realgud-pkg.el")
3706 ;; FIXME: `patch-el-files' crashes on this file with error:
3707 ;; unable to locate "bashdb".
3708 (delete-file "./test/test-regexp-bashdb.el"))))
3709 #:include (cons* ".*\\.el$" %default-include)))
3710 (native-inputs
3711 `(("autoconf" ,autoconf)
3712 ("automake" ,automake)
3713 ("emacs-test-simple" ,emacs-test-simple)))
3714 (propagated-inputs
3715 `(("emacs-load-relative" ,emacs-load-relative)
3716 ("emacs-loc-changes" ,emacs-loc-changes)))
3717 (home-page "https://github.com/realgud/realgud/")
3718 (synopsis
3719 "Modular front-end for interacting with external debuggers")
3720 (description
3721 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3722with external debuggers. It integrates various debuggers such as gdb, pdb,
3723ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3724sources. Unlike GUD, it also supports running multiple debug sessions in
3725parallel.")
3726 (license license:gpl3+)))
3727
3728(define-public emacs-request
3729 (package
3730 (name "emacs-request")
3731 (version "0.3.0")
3732 (source (origin
3733 (method git-fetch)
3734 (uri (git-reference
3735 (url "https://github.com/tkf/emacs-request.git")
3736 (commit (string-append "v" version))))
3737 (file-name (string-append name "-" version "-checkout"))
3738 (sha256
3739 (base32
3740 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
3741 (build-system emacs-build-system)
3742 (propagated-inputs
3743 `(("emacs-deferred" ,emacs-deferred)))
3744 (home-page "https://github.com/tkf/emacs-request")
3745 (synopsis "Package for speaking HTTP in Emacs Lisp")
3746 (description "This package provides a HTTP request library with multiple
3747backends. It supports url.el which is shipped with Emacs and the curl command
3748line program.")
3749 (license license:gpl3+)))
3750
3751(define-public emacs-rudel
3752 (package
3753 (name "emacs-rudel")
3754 (version "0.3.1")
3755 (source
3756 (origin
3757 (method url-fetch)
3758 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3759 version ".tar"))
3760 (sha256
3761 (base32
3762 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3763 (build-system emacs-build-system)
3764 (home-page "http://rudel.sourceforge.net/")
3765 (synopsis "Collaborative editing framework")
3766 (description
3767 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3768is to share buffers with other users in order to edit the contents of those
3769buffers collaboratively. Rudel supports multiple backends to enable
3770communication with other collaborative editors using different protocols,
3771though currently Obby (for use with the Gobby editor) is the only
3772fully-functional one.")
3773 (license license:gpl3+)))
3774
3775(define-public emacs-hydra
3776 (package
3777 (name "emacs-hydra")
3778 (version "0.14.0")
3779 (source
3780 (origin
3781 (method git-fetch)
3782 (uri (git-reference
3783 (url "https://github.com/abo-abo/hydra")
3784 (commit version)))
3785 (file-name (git-file-name name version))
3786 (sha256
3787 (base32
3788 "0ln4z2796ycy33g5jcxkqvm7638qxy4sipsab7d2864hh700cikg"))))
3789 (build-system emacs-build-system)
3790 (home-page "https://github.com/abo-abo/hydra")
3791 (synopsis "Make Emacs bindings that stick around")
3792 (description
3793 "This package can be used to tie related commands into a family of short
3794bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3795the prefixed binding), all the heads can be called in succession with only a
3796short extension. Any binding that isn't the Hydra's head vanquishes the
3797Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3798serve its original purpose, calling the command assigned to it. This makes
3799the Hydra very seamless; it's like a minor mode that disables itself
3800automatically.")
3801 (license license:gpl3+)))
3802
3803(define-public emacs-ivy
3804 (package
3805 (name "emacs-ivy")
db2badeb 3806 (version "0.11.0")
eeb883cb
RW
3807 (source
3808 (origin
3809 (method git-fetch)
3810 (uri (git-reference
3811 (url "https://github.com/abo-abo/swiper.git")
3812 (commit version)))
3813 (file-name (string-append name "-" version "-checkout"))
3814 (sha256
3815 (base32
db2badeb 3816 "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"))))
eeb883cb
RW
3817 (build-system emacs-build-system)
3818 (arguments
3819 `(#:phases
3820 (modify-phases %standard-phases
3821 (add-after 'install 'install-doc
3822 (lambda* (#:key outputs #:allow-other-keys)
3823 (let* ((out (assoc-ref outputs "out"))
3824 (info (string-append out "/share/info")))
3825 (with-directory-excursion "doc"
3826 (invoke "makeinfo" "ivy.texi")
3827 (install-file "ivy.info" info)
3828 #t)))))))
3829 (propagated-inputs
3830 `(("emacs-hydra" ,emacs-hydra)))
3831 (native-inputs
3832 `(("texinfo" ,texinfo)))
3833 (home-page "http://oremacs.com/swiper/")
3834 (synopsis "Incremental vertical completion for Emacs")
3835 (description
3836 "This package provides @code{ivy-read} as an alternative to
3837@code{completing-read} and similar functions. No attempt is made to determine
3838the best candidate. Instead, the user can navigate candidates with
3839@code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3840splitting the input text by spaces and re-building it into a regular
3841expression.")
3842 (license license:gpl3+)))
3843
3844(define-public emacs-ivy-yasnippet
3845 (let ((commit "32580b4fd23ebf9ca7dde96704f7d53df6e253cd")
3846 (revision "2"))
3847 (package
3848 (name "emacs-ivy-yasnippet")
3849 (version (git-version "0.1" revision commit))
3850 (source
3851 (origin
3852 (method git-fetch)
3853 (uri (git-reference
3854 (url "https://github.com/mkcms/ivy-yasnippet.git")
3855 (commit commit)))
3856 (file-name (git-file-name name version))
3857 (sha256
3858 (base32
3859 "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"))))
3860 (build-system emacs-build-system)
3861 (propagated-inputs
3862 `(("emacs-ivy" ,emacs-ivy)
3863 ("emacs-yasnippet" ,emacs-yasnippet)
3864 ("emacs-dash" ,emacs-dash)))
3865 (home-page "https://github.com/mkcms/ivy-yasnippet")
3866 (synopsis "Preview @code{yasnippets} with @code{ivy}")
3867 (description "This package allows you to select @code{yasnippet}
3868snippets using @code{ivy} completion. When current selection changes in the
3869minibuffer, the snippet contents are temporarily expanded in the buffer. To
3870use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
3871@code{yas-minor-mode} first).")
3872 (license license:gpl3+))))
3873
3874(define-public emacs-ivy-rich
3875 (package
3876 (name "emacs-ivy-rich")
3877 (version "0.1.0")
3878 (source
3879 (origin
3880 (method url-fetch)
3881 (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
3882 version ".tar.gz"))
3883 (file-name (string-append name "-" version ".tar.gz"))
3884 (sha256
3885 (base32
3886 "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
3887 (build-system emacs-build-system)
3888 (propagated-inputs
3889 `(("emacs-ivy" ,emacs-ivy)))
3890 (home-page "https://github.com/Yevgnen/ivy-rich")
3891 (synopsis "More friendly interface for @code{ivy}")
3892 (description
3893 "This package extends @code{ivy} by showing more information in the
3894minibuffer for each candidate. It adds columns showing buffer modes, file
3895sizes, docstrings, etc. If @code{emacs-all-the-icons} is installed, it can
3896show icons as well.")
3897 (license license:gpl3+)))
3898
3899(define-public emacs-avy
3900 (package
3901 (name "emacs-avy")
3902 (version "0.4.0")
3903 (source
3904 (origin
3905 (method url-fetch)
3906 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3907 version ".tar.gz"))
3908 (file-name (string-append name "-" version ".tar.gz"))
3909 (sha256
3910 (base32
3911 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3912 (build-system emacs-build-system)
3913 (home-page "https://github.com/abo-abo/avy")
3914 (synopsis "Tree-based completion for Emacs")
3915 (description
3916 "This package provides a generic completion method based on building a
3917balanced decision tree with each candidate being a leaf. To traverse the tree
3918from the root to a desired leaf, typically a sequence of @code{read-key} can
3919be used.
3920
3921In order for @code{read-key} to make sense, the tree needs to be visualized
3922appropriately, with a character at each branch node. So this completion
3923method works only for things that you can see on your screen, all at once,
3924such as the positions of characters, words, line beginnings, links, or
3925windows.")
3926 (license license:gpl3+)))
3927
3928(define-public emacs-ace-window
3929 (package
3930 (name "emacs-ace-window")
3931 (version "0.9.0")
3932 (source
3933 (origin
3934 (method url-fetch)
3935 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
3936 version ".tar.gz"))
3937 (file-name (string-append name "-" version ".tar.gz"))
3938 (sha256
3939 (base32
3940 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
3941 (build-system emacs-build-system)
3942 (propagated-inputs
3943 `(("emacs-avy" ,emacs-avy)))
3944 (home-page "https://github.com/abo-abo/ace-window")
3945 (synopsis "Quickly switch windows in Emacs")
3946 (description
3947 "@code{ace-window} is meant to replace @code{other-window}.
3948In fact, when there are only two windows present, @code{other-window} is
3949called. If there are more, each window will have its first character
3950highlighted. Pressing that character will switch to that window.")
3951 (license license:gpl3+)))
3952
3953(define-public emacs-iedit
3954 (package
3955 (name "emacs-iedit")
3956 (version "0.9.9.9")
3957 (source
3958 (origin
3959 (method url-fetch)
3960 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
3961 version ".tar.gz"))
3962 (file-name (string-append name "-" version ".tar.gz"))
3963 (sha256
3964 (base32
3965 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
3966 (build-system emacs-build-system)
3967 (home-page "http://www.emacswiki.org/emacs/Iedit")
3968 (synopsis "Edit multiple regions in the same way simultaneously")
3969 (description
3970 "This package is an Emacs minor mode and allows you to edit one
3971occurrence of some text in a buffer (possibly narrowed) or region, and
3972simultaneously have other occurrences edited in the same way.
3973
3974You can also use Iedit mode as a quick way to temporarily show only the buffer
3975lines that match the current text being edited. This gives you the effect of
3976a temporary @code{keep-lines} or @code{occur}.")
3977 (license license:gpl3+)))
3978
3979(define-public emacs-zoutline
3980 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
3981 (revision "0"))
3982 (package
3983 (name "emacs-zoutline")
3984 (version (git-version "0.1" revision commit))
3985 (home-page "https://github.com/abo-abo/zoutline")
3986 (source (origin
3987 (method git-fetch)
3988 (uri (git-reference (url home-page) (commit commit)))
3989 (sha256
3990 (base32
3991 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
3992 (file-name (git-file-name name version))))
3993 (build-system emacs-build-system)
3994 (synopsis "Simple outline library")
3995 (description
3996 "This library provides helpers for outlines. Outlines allow users to
3997navigate code in a tree-like fashion.")
3998 (license license:gpl3+))))
3999
4000(define-public emacs-lispy
4001 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
4002 ;; since.
caf810d3
PN
4003 (let ((commit "f94cfc6b8f9c3afe7d028c366928049c011023de")
4004 (revision "1"))
eeb883cb
RW
4005 (package
4006 (name "emacs-lispy")
4007 (version (git-version "0.26.0" revision commit))
4008 (home-page "https://github.com/abo-abo/lispy")
4009 (source (origin
4010 (method git-fetch)
4011 (uri (git-reference (url home-page) (commit commit)))
4012 (sha256
4013 (base32
caf810d3 4014 "1bm2cpwizg1qfpm377gpx1af1hm5maw69if1csnk5vwaphmv8c4g"))
eeb883cb
RW
4015 (file-name (git-file-name name version))))
4016 (build-system emacs-build-system)
4017 (propagated-inputs
4018 `(("emacs-ace-window" ,emacs-ace-window)
4019 ("emacs-iedit" ,emacs-iedit)
4020 ("emacs-ivy" ,emacs-ivy)
4021 ("emacs-hydra" ,emacs-hydra)
4022 ("emacs-zoutline" ,emacs-zoutline)))
4023 (synopsis "Modal S-expression editing")
4024 (description
4025 "Due to the structure of Lisp syntax it's very rare for the programmer
4026to want to insert characters right before \"(\" or right after \")\". Thus
4027unprefixed printable characters can be used to call commands when the point is
4028at one of these special locations. Lispy provides unprefixed keybindings for
4029S-expression editing when point is at the beginning or end of an
4030S-expression.")
4031 (license license:gpl3+))))
4032
4033(define-public emacs-lispyville
808136bd
PN
4034 (let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
4035 (revision "1"))
eeb883cb
RW
4036 (package
4037 (name "emacs-lispyville")
4038 (version (git-version "0.1" revision commit))
4039 (home-page "https://github.com/noctuid/lispyville")
4040 (source (origin
4041 (method git-fetch)
4042 (uri (git-reference (url home-page) (commit commit)))
4043 (sha256
4044 (base32
808136bd 4045 "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx"))
eeb883cb
RW
4046 (file-name (git-file-name name version))))
4047 (propagated-inputs
4048 `(("emacs-evil" ,emacs-evil)
4049 ("emacs-lispy" ,emacs-lispy)))
4050 (build-system emacs-build-system)
4051 (synopsis "Minor mode for integrating Evil with lispy")
4052 (description
4053 "LispyVille's main purpose is to provide a Lisp editing environment
4054suited towards Evil users. It can serve as a minimal layer on top of lispy
4055for better integration with Evil, but it does not require the use of lispy’s
4056keybinding style. The provided commands allow for editing Lisp in normal
4057state and will work even without lispy being enabled.")
4058 (license license:gpl3+))))
4059
4060(define-public emacs-clojure-mode
4061 (package
4062 (name "emacs-clojure-mode")
4063 (version "5.6.1")
4064 (source (origin
4065 (method url-fetch)
4066 (uri (string-append
4067 "https://github.com/clojure-emacs/clojure-mode/archive/"
4068 version ".tar.gz"))
4069 (file-name (string-append name "-" version ".tar.gz"))
4070 (sha256
4071 (base32
4072 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
4073 (build-system emacs-build-system)
4074 (native-inputs
4075 `(("emacs-dash" ,emacs-dash)
4076 ("emacs-s" ,emacs-s)
4077 ("ert-runner" ,emacs-ert-runner)))
4078 (arguments
4079 `(#:tests? #t
4080 #:test-command '("ert-runner")))
4081 (home-page "https://github.com/clojure-emacs/clojure-mode")
4082 (synopsis "Major mode for Clojure code")
4083 (description
4084 "This Emacs package provides font-lock, indentation, navigation and basic
4085refactoring for the @uref{http://clojure.org, Clojure programming language}.
4086It is recommended to use @code{clojure-mode} with paredit or smartparens.")
4087 (license license:gpl3+)))
4088
4089(define-public emacs-epl
4090 (package
4091 (name "emacs-epl")
4092 (version "0.8")
4093 (source (origin
4094 (method url-fetch)
4095 (uri (string-append
4096 "https://github.com/cask/epl/archive/"
4097 version ".tar.gz"))
4098 (file-name (string-append name "-" version ".tar.gz"))
4099 (sha256
4100 (base32
4101 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
4102 (build-system emacs-build-system)
4103 (home-page "https://github.com/cask/epl")
4104 (synopsis "Emacs Package Library")
4105 (description
4106 "A package management library for Emacs, based on @code{package.el}.
4107
4108The purpose of this library is to wrap all the quirks and hassle of
4109@code{package.el} into a sane API.")
4110 (license license:gpl3+)))
4111
4112(define-public emacs-queue
4113 (package
4114 (name "emacs-queue")
4115 (version "0.2")
4116 (source (origin
4117 (method url-fetch)
4118 (uri (string-append "https://elpa.gnu.org/packages/queue-"
4119 version ".el"))
4120 (sha256
4121 (base32
4122 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
4123 (build-system emacs-build-system)
4124 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
4125 (synopsis "Queue data structure for Emacs")
4126 (description
4127 "This Emacs library provides queue data structure. These queues can be
4128used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
4129stack, i.e. elements can be added to the front or back of the queue, and can
4130be removed from the front. This type of data structure is sometimes called an
4131\"output-restricted deque\".")
4132 (license license:gpl3+)))
4133
4134(define-public emacs-pkg-info
4135 (package
4136 (name "emacs-pkg-info")
4137 (version "0.6")
4138 (source (origin
4139 (method url-fetch)
4140 (uri (string-append
4141 "https://github.com/lunaryorn/pkg-info.el/archive/"
4142 version ".tar.gz"))
4143 (file-name (string-append name "-" version ".tar.gz"))
4144 (sha256
4145 (base32
4146 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
4147 (build-system emacs-build-system)
4148 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4149 (home-page "https://github.com/lunaryorn/pkg-info.el")
4150 (synopsis "Information about Emacs packages")
4151 (description
4152 "This library extracts information from the installed Emacs packages.")
4153 (license license:gpl3+)))
4154
4155(define-public emacs-spinner
4156 (package
4157 (name "emacs-spinner")
4158 (version "1.7.3")
4159 (source (origin
4160 (method url-fetch)
4161 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
4162 version ".el"))
4163 (sha256
4164 (base32
4165 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
4166 (build-system emacs-build-system)
4167 (home-page "https://github.com/Malabarba/spinner.el")
4168 (synopsis "Emacs mode-line spinner for operations in progress")
4169 (description
4170 "This Emacs package adds spinners and progress-bars to the mode-line for
4171ongoing operations.")
4172 (license license:gpl3+)))
4173
4174(define-public emacs-sparql-mode
4175 (package
4176 (name "emacs-sparql-mode")
4177 (version "2.0.1")
4178 (source (origin
4179 (method url-fetch)
4180 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
4181 "v" version ".tar.gz"))
4182 (file-name (string-append name "-" version ".tar.gz"))
4183 (sha256
4184 (base32
4185 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
4186 (build-system emacs-build-system)
4187 (home-page "https://github.com/ljos/sparql-mode")
4188 (synopsis "SPARQL mode for Emacs")
4189 (description "This package provides a major mode for Emacs that provides
4190syntax highlighting for SPARQL. It also provides a way to execute queries
4191against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4192possible to query other endpoints like DBPedia.")
4193 (license license:gpl3+)))
4194
4195(define-public emacs-better-defaults
4196 (package
4197 (name "emacs-better-defaults")
4198 (version "0.1.3")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (string-append "https://github.com/technomancy/better-defaults"
4203 "/archive/" version ".tar.gz"))
4204 (file-name (string-append name "-" version ".tar.gz"))
4205 (sha256
4206 (base32
4207 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4208 (build-system emacs-build-system)
4209 (home-page "https://github.com/technomancy/better-defaults")
4210 (synopsis "Better defaults for Emacs")
4211 (description
4212 "Better defaults attempts to address the most obvious deficiencies of the
4213Emacs default configuration in uncontroversial ways that nearly everyone can
4214agree upon.")
4215 (license license:gpl3+)))
4216
4217(define-public emacs-eprime
4218 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4219 (package
4220 (name "emacs-eprime")
4221 (version (string-append "20140513-" (string-take commit 7)))
4222 (source (origin
4223 (method url-fetch)
4224 (uri (string-append "https://raw.githubusercontent.com"
4225 "/AndrewHynes/eprime-mode/"
4226 commit "/eprime-mode.el"))
4227 (file-name (string-append "eprime-" version ".el"))
4228 (sha256
4229 (base32
4230 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4231 (build-system emacs-build-system)
4232 (home-page "https://github.com/AndrewHynes/eprime-mode")
4233 (synopsis "E-prime checking mode for Emacs")
4234 (description "This package provides an E-prime checking mode for Emacs
4235that highlights non-conforming text. The subset of the English language called
4236E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4237 (license license:gpl3+))))
4238
4239(define-public emacs-julia-mode
4240 ;; XXX: Upstream version remained stuck at 0.3. See
4241 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4242 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4243 (revision "1"))
4244 (package
4245 (name "emacs-julia-mode")
4246 (version (string-append "0.3-" revision "." (string-take commit 8)))
4247 (source
4248 (origin
4249 (method git-fetch)
4250 (uri (git-reference
4251 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4252 (commit commit)))
4253 (file-name (string-append name "-" version "-checkout"))
4254 (sha256
4255 (base32
4256 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4257 (build-system emacs-build-system)
4258 (arguments
4259 `(#:tests? #t
4260 #:test-command '("emacs" "--batch"
4261 "-l" "julia-mode-tests.el"
4262 "-f" "ert-run-tests-batch-and-exit")))
4263 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4264 (synopsis "Major mode for Julia")
4265 (description "This Emacs package provides a mode for the Julia
4266programming language.")
4267 (license license:expat))))
4268
4269(define-public emacs-smex
4270 (package
4271 (name "emacs-smex")
4272 (version "3.0")
4273 (source (origin
4274 (method url-fetch)
4275 (uri (string-append "https://raw.githubusercontent.com"
4276 "/nonsequitur/smex/" version "/smex.el"))
4277 (file-name (string-append "smex-" version ".el"))
4278 (sha256
4279 (base32
4280 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4281 (build-system emacs-build-system)
4282 (home-page "https://github.com/nonsequitur/smex/")
4283 (synopsis "M-x interface with Ido-style fuzzy matching")
4284 (description
4285 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4286convenient interface to your recently and most frequently used commands. And
4287to all the other commands, too.")
4288 (license license:gpl3+)))
4289
4290(define-public emacs-js2-mode
4291 (package
4292 (name "emacs-js2-mode")
4293 (version "20180301")
4294 (source (origin
4295 (method url-fetch)
4296 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
4297 version ".tar.gz"))
4298 (file-name (string-append name "-" version ".tar.gz"))
4299 (sha256
4300 (base32
4301 "13aghgwaqrmbf3pbifcry52kya454wnh1gbdh5805n1n6xgjm5w3"))))
4302 (build-system emacs-build-system)
4303 (home-page "https://github.com/mooz/js2-mode/")
4304 (synopsis "Improved JavaScript editing mode for Emacs")
4305 (description
4306 "Js2-mode provides a JavaScript major mode for Emacs that is more
4307advanced than the built-in javascript-mode. Features include accurate syntax
4308highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4309errors and strict-mode warnings, smart line-wrapping within comments and
4310strings, and code folding.")
4311 (license license:gpl3+)))
4312
4313(define-public emacs-nodejs-repl
4314 (package
4315 (name "emacs-nodejs-repl")
4316 (version "0.2.0")
4317 (source (origin
4318 (method url-fetch)
4319 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4320 "/archive/" version ".tar.gz"))
4321 (sha256
4322 (base32
4323 "0hq2cqdq2668yf48g7qnkci90nhih1gnhacsgz355jnib56lhmkz"))
4324 (file-name (string-append name "-" version ".tar.gz"))))
4325 (build-system emacs-build-system)
4326 (home-page "https://github.com/abicky/nodejs-repl.el")
4327 (synopsis "Node.js REPL inside Emacs")
4328 (description
4329 "This program is derived from comint-mode and provides the following
4330features:
4331
4332@itemize
4333@item TAB completion same as Node.js REPL
4334@item file name completion in string
4335@item incremental history search
4336@end itemize")
4337 (license license:gpl3+)))
4338
4339(define-public emacs-typescript-mode
4340 (package
4341 (name "emacs-typescript-mode")
4342 (version "0.3")
4343 (source (origin
4344 (method url-fetch)
4345 (uri (string-append
4346 "https://github.com/ananthakumaran/typescript.el"
4347 "/archive/v" version ".tar.gz"))
4348 (sha256
4349 (base32
4350 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4351 (file-name (string-append name "-" version ".tar.gz"))))
4352 (build-system emacs-build-system)
4353 (home-page "https://github.com/ananthakumaran/typescript.el")
4354 (synopsis "Emacs major mode for editing Typescript code")
4355 (description
4356 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4357This is much more robust and works with @code{cc-mode}'s comment
4358filling (mostly). The modifications to the original @code{javascript.el} mode
4359mainly consisted in replacing \"javascript\" with \"typescript\"
4360
4361The main features of this Typescript mode are syntactic highlighting (enabled
4362with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4363indentation and filling of comments and C preprocessor fontification.")
4364 (license license:gpl3+)))
4365
4366(define-public emacs-tide
4367 (package
4368 (name "emacs-tide")
4369 (version "2.8.3.1")
4370 (source (origin
4371 (method url-fetch)
4372 (uri (string-append "https://github.com/ananthakumaran/tide"
4373 "/archive/v" version ".tar.gz"))
4374 (sha256
4375 (base32
4376 "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
4377 (file-name (string-append name "-" version ".tar.gz"))))
4378 (build-system emacs-build-system)
4379 (propagated-inputs
4380 `(("emacs-dash" ,emacs-dash)
4381 ("emacs-s" ,emacs-s)
4382 ("emacs-flycheck" ,emacs-flycheck)
4383 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4384 (home-page "https://github.com/ananthakumaran/tide")
4385 (synopsis "Typescript IDE for Emacs")
4386 (description
4387 "Tide is an Interactive Development Environment (IDE) for Emacs which
4388provides the following features:
4389
4390@itemize
4391@item ElDoc
4392@item Auto complete
4393@item Flycheck
4394@item Jump to definition, Jump to type definition
4395@item Find occurrences
4396@item Rename symbol
4397@item Imenu
4398@item Compile On Save
4399@item Highlight Identifiers
4400@item Code Fixes
4401@item Code Refactor
4402@item Organize Imports
4403@end itemize")
4404 (license license:gpl3+)))
4405
4406(define-public emacs-markdown-mode
4407 (package
4408 (name "emacs-markdown-mode")
4409 (version "2.3")
4410 (source (origin
4411 (method url-fetch)
4412 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4413 "/markdown-mode/v" version
4414 "/markdown-mode.el"))
4415 (file-name (string-append "markdown-mode-" version ".el"))
4416 (sha256
4417 (base32
4418 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
4419 (build-system emacs-build-system)
4420 (home-page "http://jblevins.org/projects/markdown-mode/")
4421 (synopsis "Emacs Major mode for Markdown files")
4422 (description
4423 "Markdown-mode is a major mode for editing Markdown-formatted text files
4424in Emacs.")
4425 (license license:gpl3+)))
4426
4427(define-public emacs-edit-indirect
4428 (package
4429 (name "emacs-edit-indirect")
4430 (version "0.1.5")
4431 (source
4432 (origin
4433 (method git-fetch)
4434 (uri (git-reference
4435 (url "https://github.com/Fanael/edit-indirect")
4436 (commit version)))
4437 (file-name (git-file-name name version))
4438 (sha256
4439 (base32
4440 "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r"))))
4441 (build-system emacs-build-system)
4442 (home-page "https://github.com/Fanael/edit-indirect")
4443 (synopsis "Edit regions in separate buffers")
4444 (description "This package allows you to edit regions in separate buffers,
4445like @code{org-edit-src-code} but for arbitrary regions.")
4446 (license license:gpl3+)))
4447
4448(define-public emacs-projectile
4449 (package
4450 (name "emacs-projectile")
4451 (version "0.14.0")
4452 (source (origin
4453 (method url-fetch)
4454 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4455 "/projectile/v" version "/projectile.el"))
4456 (file-name (string-append "projectile-" version ".el"))
4457 (sha256
4458 (base32
4459 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
4460 (build-system emacs-build-system)
4461 (propagated-inputs
4462 `(("emacs-dash" ,emacs-dash)
4463 ("emacs-pkg-info" ,emacs-pkg-info)))
4464 (home-page "https://github.com/bbatsov/projectile")
4465 (synopsis "Manage and navigate projects in Emacs easily")
4466 (description
4467 "This library provides easy project management and navigation. The
4468concept of a project is pretty basic - just a folder containing special file.
4469Currently git, mercurial and bazaar repos are considered projects by default.
4470If you want to mark a folder manually as a project just create an empty
4471.projectile file in it.")
4472 (license license:gpl3+)))
4473
4474(define-public emacs-elfeed
4475 (package
4476 (name "emacs-elfeed")
4477 (version "3.0.0")
4478 (source (origin
4479 (method url-fetch)
4480 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4481 version ".tar.gz"))
4482 (file-name (string-append name "-" version ".tar.gz"))
4483 (sha256
4484 (base32
4485 "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
4486 (build-system emacs-build-system)
4487 (arguments
4488 `(#:tests? #t
4489 #:test-command '("make" "test")))
4490 (home-page "https://github.com/skeeto/elfeed")
4491 (synopsis "Atom/RSS feed reader for Emacs")
4492 (description
4493 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4494and RSS, with a user interface inspired by notmuch.")
4495 (license license:gpl3+)))
4496
4497(define-public emacs-el-x
4498 (package
4499 (name "emacs-el-x")
4500 (version "0.3.1")
4501 (source (origin
4502 (method git-fetch)
4503 (uri (git-reference
4504 (url "https://github.com/sigma/el-x.git")
4505 (commit (string-append "v" version))))
4506 (file-name (string-append name "-" version "-checkout"))
4507 (sha256
4508 (base32
4509 "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"))))
4510 (build-system emacs-build-system)
4511 (arguments
4512 `(#:phases
4513 (modify-phases %standard-phases
4514 ;; Move the source files to the top level, which is included in
4515 ;; the EMACSLOADPATH.
4516 (add-after 'unpack 'move-source-files
4517 (lambda _
4518 (let ((el-files (find-files "./lisp" ".*\\.el$")))
4519 (for-each (lambda (f)
4520 (rename-file f (basename f)))
4521 el-files))
4522 #t)))))
4523 (home-page "https://github.com/sigma/el-x")
4524 (synopsis "Emacs Lisp extensions")
4525 (description "command@{emacs-el-x} defines the @code{dflet} macro to
4526provide the historic behavior of @code{flet}, as well as
4527@code{declare-function} stub for older Emacs.")
4528 (license license:gpl2+)))
4529
4530(define-public emacs-mocker
4531 (package
4532 (name "emacs-mocker")
4533 (version "0.3.1")
4534 (source (origin
4535 (method git-fetch)
4536 (uri (git-reference
4537 (url "https://github.com/sigma/mocker.el.git")
4538 (commit (string-append "v" version))))
4539 (file-name (string-append name "-" version "-checkout"))
4540 (sha256
4541 (base32
4542 "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"))))
4543 (build-system emacs-build-system)
4544 (arguments
4545 `(#:tests? #t
4546 #:test-command '("ert-runner")))
4547 (native-inputs
4548 `(("ert-runner" ,emacs-ert-runner)))
4549 (propagated-inputs
4550 `(("emacs-el-x" ,emacs-el-x)))
4551 (home-page "https://github.com/sigma/mocker.el")
4552 (synopsis "Mocking framework for Emacs Lisp")
4553 (description "Mocker.el is a framework for writing tests in Emacs Lisp.
4554It uses regular Lisp rather than a domain specific language (DSL), which
4555maximizes flexibility (at the expense of conciseness).")
4556 (license license:gpl2+)))
4557
4558(define-public emacs-find-file-in-project
4559 (package
4560 (name "emacs-find-file-in-project")
4561 (version "5.4.7")
4562 (source (origin
4563 (method git-fetch)
4564 (uri (git-reference
4565 (url "https://github.com/technomancy/find-file-in-project.git")
4566 (commit version)))
4567 (file-name (string-append name "-" version "-checkout"))
4568 (sha256
4569 (base32
4570 "1sdnyqv69mipbgs9yax88m9b6crsa59rjhwrih197pifl4089awr"))))
4571 (build-system emacs-build-system)
4572 (arguments
4573 `(#:phases
4574 (modify-phases %standard-phases
4575 (add-before 'check 'set-shell
4576 ;; Otherwise Emacs shell-file-name is set to "/bin/sh", which doesn't
4577 ;; work.
4578 (lambda _
4579 (setenv "SHELL" (which "sh"))
4580 #t)))
4581 #:tests? #t
4582 #:test-command '("./tests/test.sh")))
4583 (home-page "https://github.com/technomancy/find-file-in-project")
4584 (synopsis "File/directory finder for Emacs")
4585 (description "@code{find-file-in-project} allows to find files or
4586directories quickly in the current project. The project root is detected
4587automatically when Git, Subversion or Mercurial are used. It also provides
4588functions to assist in reviewing changes on files.")
4589 (license license:gpl3+)))
4590
4591(define-public emacs-pyvenv
4592 (package
4593 (name "emacs-pyvenv")
4594 (version "1.11")
4595 (source (origin
4596 (method git-fetch)
4597 (uri (git-reference
4598 (url "https://github.com/jorgenschaefer/pyvenv.git")
4599 (commit (string-append "v" version))))
4600 (file-name (string-append name "-" version "-checkout"))
4601 (sha256
4602 (base32
4603 "1a346qdimr1dvj53q033aqnahwd2dhyn9jadrs019nm0bzgw7g63"))))
4604 (build-system emacs-build-system)
4605 (arguments
4606 `(#:phases
4607 (modify-phases %standard-phases
4608 ;; This phase incorrectly attempts to substitute "activate" and fails
4609 ;; doing so.
4610 (delete 'patch-el-files))
4611 #:tests? #t
4612 #:test-command '("ert-runner")))
4613 (native-inputs
4614 `(("ert-runner" ,emacs-ert-runner)
4615 ("emacs-mocker" ,emacs-mocker)))
4616 (home-page "https://github.com/jorgenschaefer/pyvenv")
4617 (synopsis "Virtualenv minor mode for Emacs")
4618 (description "pyvenv.el is a minor mode to support using Python virtual
4619environments (virtualenv) inside Emacs.")
4620 (license license:gpl3+)))
4621
4622(define-public emacs-highlight-indentation
4623 (package
4624 (name "emacs-highlight-indentation")
4625 (version "0.7.0")
4626 (source (origin
4627 (method git-fetch)
4628 (uri (git-reference
4629 (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
4630 (commit (string-append "v" version))))
4631 (file-name (string-append name "-" version "-checkout"))
4632 (sha256
4633 (base32
4634 "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
4635 (build-system emacs-build-system)
4636 (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
4637 (synopsis "Highlighting indentation for Emacs")
4638 (description "Provides two minor modes to highlight indentation guides in Emacs:
4639@enumerate
4640@item @code{highlight-indentation-mode}, which displays guidelines
4641indentation (space indentation only).
4642@item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
4643@end enumerate")
4644 (license license:gpl2+)))
4645
4646(define-public emacs-elpy
4647 (package
4648 (name "emacs-elpy")
d79e0b3a 4649 (version "1.28.0")
eeb883cb
RW
4650 (source (origin
4651 (method git-fetch)
4652 (uri (git-reference
4653 (url "https://github.com/jorgenschaefer/elpy.git")
4654 (commit version)))
4655 (file-name (string-append name "-" version "-checkout"))
4656 (sha256
4657 (base32
d79e0b3a 4658 "073bwxwjzcbmvpcz9q2xjwzx9x7hkvjni6fwvikh6yawzjp56jis"))))
eeb883cb
RW
4659 (build-system emacs-build-system)
4660 (arguments
4661 `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
4662 #:phases
4663 ;; TODO: Make `elpy-config' display Guix commands :)
4664 (modify-phases %standard-phases
4665 ;; One elpy test depends on being run inside a Python virtual
4666 ;; environment to pass. We have nothing to gain from doing so here,
4667 ;; so we just trick Elpy into thinking we are (see:
4668 ;; https://github.com/jorgenschaefer/elpy/pull/1293).
4669 (add-before 'check 'fake-virtualenv
4670 (lambda _
4671 (setenv "VIRTUAL_ENV" "/tmp")
4672 #t))
4673 (add-before 'check 'build-doc
4674 (lambda _
4675 (with-directory-excursion "docs"
4676 (invoke "make" "info" "man"))
4677 ;; Move .info file at the root so that it can installed by the
4678 ;; 'move-doc phase.
4679 (rename-file "docs/_build/texinfo/Elpy.info" "Elpy.info")
4680 #t))
4681 (add-after 'build-doc 'install-manpage
4682 (lambda* (#:key outputs #:allow-other-keys)
4683 (let* ((out (assoc-ref outputs "out"))
4684 (man1 (string-append out "/share/man/man1")))
4685 (mkdir-p man1)
4686 (copy-file "docs/_build/man/elpy.1"
4687 (string-append man1 "/elpy.1")))
4688 #t)))
4689 #:tests? #t
4690 #:test-command '("ert-runner")))
4691 (propagated-inputs
4692 `(("emacs-company" ,emacs-company)
4693 ("emacs-find-file-in-project" ,emacs-find-file-in-project)
4694 ("emacs-highlight-indentation" ,emacs-highlight-indentation)
4695 ("emacs-yasnippet" ,emacs-yasnippet)
4696 ("pyvenv" ,emacs-pyvenv)
4697 ("s" ,emacs-s)))
4698 (native-inputs
4699 `(("ert-runner" ,emacs-ert-runner)
4700 ("emacs-f" ,emacs-f)
4701 ("python" ,python-wrapper)
4702 ("python-autopep8" ,python-autopep8)
4703 ("python-black" ,python-black)
4704 ("python-flake8" ,python-flake8)
4705 ("python-jedi" ,python-jedi)
4706 ("python-yapf" ,python-yapf)
4707 ;; For documentation.
4708 ("python-sphinx" ,python-sphinx)
4709 ("texinfo" ,texinfo)))
4710 (home-page "https://github.com/jorgenschaefer/elpy")
4711 (synopsis "Python development environment for Emacs")
4712 (description "Elpy brings powerful Python editing to Emacs. It combines
4713and configures a number of other packages written in Emacs Lisp as well as
4714Python, together offering features such as navigation, documentation,
4715completion, interactive development and more.")
4716 (license license:gpl3+)))
4717
4718(define-public emacs-rainbow-delimiters
4719 (package
4720 (name "emacs-rainbow-delimiters")
4721 (version "2.1.3")
4722 (source (origin
4723 (method url-fetch)
4724 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4725 "/rainbow-delimiters/" version
4726 "/rainbow-delimiters.el"))
4727 (file-name (string-append "rainbow-delimiters-" version ".el"))
4728 (sha256
4729 (base32
4730 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4731 (build-system emacs-build-system)
4732 (home-page "https://github.com/Fanael/rainbow-delimiters")
4733 (synopsis "Highlight brackets according to their depth")
4734 (description
4735 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4736highlights parentheses, brackets, and braces according to their depth. Each
4737successive level is highlighted in a different color, making it easy to spot
4738matching delimiters, orient yourself in the code, and tell which statements
4739are at a given level.")
4740 (license license:gpl3+)))
4741
4742(define-public emacs-rainbow-identifiers
4743 (package
4744 (name "emacs-rainbow-identifiers")
4745 (version "0.2.2")
4746 (source (origin
4747 (method url-fetch)
4748 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4749 "/rainbow-identifiers/" version
4750 "/rainbow-identifiers.el"))
4751 (file-name (string-append "rainbow-identifiers-" version ".el"))
4752 (sha256
4753 (base32
4754 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4755 (build-system emacs-build-system)
4756 (home-page "https://github.com/Fanael/rainbow-identifiers")
4757 (synopsis "Highlight identifiers in source code")
4758 (description
4759 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4760identifiers based on their names. Each identifier gets a color based on a hash
4761of its name.")
4762 (license license:bsd-2)))
4763
4764(define-public emacs-rainbow-mode
4765 (package
4766 (name "emacs-rainbow-mode")
4767 (version "1.0.1")
4768 (source (origin
4769 (method url-fetch)
4770 (uri (string-append
4771 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4772 (sha256
4773 (base32
4774 "0cpga4ax635rfpj7y2vmh7ank0yw00dcy20gjg1mj74r97by8csf"))))
4775 (build-system emacs-build-system)
4776 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4777 (synopsis "Colorize color names in buffers")
4778 (description
4779 "This minor mode sets background color to strings that match color
4780names, e.g. #0000ff is displayed in white with a blue background.")
4781 (license license:gpl3+)))
4782
4783(define-public emacs-visual-fill-column
4784 (package
4785 (name "emacs-visual-fill-column")
4786 (version "1.11")
4787 (source (origin
4788 (method url-fetch)
4789 (uri (string-append "https://codeload.github.com/joostkremers/"
4790 "visual-fill-column/tar.gz/" version))
4791 (file-name (string-append name "-" version ".tar.gz"))
4792 (sha256
4793 (base32
4794 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
4795 (build-system emacs-build-system)
4796 (home-page "https://github.com/joostkremers/visual-fill-column")
4797 (synopsis "Fill-column for visual-line-mode")
4798 (description
4799 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4800the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4801wrapping lines at the window edge, which is the standard behaviour of
4802@code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4803@code{fill-column} is too large for the window, the text is wrapped at the
4804window edge.")
4805 (license license:gpl3+)))
4806
4807(define-public emacs-writeroom
4808 (package
4809 (name "emacs-writeroom")
4810 (version "3.7")
4811 (source (origin
4812 (method url-fetch)
4813 (uri (string-append
4814 "https://github.com/joostkremers/writeroom-mode/archive/"
4815 version ".tar.gz"))
4816 (file-name (string-append name "-" version ".tar.gz"))
4817 (sha256
4818 (base32
4819 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4820 (build-system emacs-build-system)
4821 (propagated-inputs
4822 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4823 (home-page "https://github.com/joostkremers/writeroom-mode")
4824 (synopsis "Distraction-free writing for Emacs")
4825 (description
4826 "This package defines a minor mode for distraction-free writing. Some of
4827the default effects include entering fullscreen, deleting other windows of the
4828current frame, disabling the mode line, and adding margins to the buffer that
4829restrict the text width to 80 characters.")
4830 (license license:bsd-3)))
4831
4832(define-public emacs-ido-completing-read+
4833 (package
4834 (name "emacs-ido-completing-read+")
4835 (version "3.12")
4836 (source (origin
4837 (method url-fetch)
4838 (uri (string-append "https://raw.githubusercontent.com"
4839 "/DarwinAwardWinner/ido-ubiquitous/v"
4840 version "/ido-completing-read+.el"))
4841 (file-name (string-append "ido-completing-read+-" version ".el"))
4842 (sha256
4843 (base32
4844 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4845 (build-system emacs-build-system)
4846 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4847 (synopsis "Replacement for completing-read using ido")
4848 (description
4849 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4850Importantly, it detects edge cases that ordinary ido cannot handle and either
4851adjusts them so ido can handle them, or else simply falls back to the standard
4852Emacs completion function instead.")
4853 (license license:gpl3+)))
4854
4855(define-public emacs-ido-ubiquitous
4856 (package
4857 (name "emacs-ido-ubiquitous")
4858 (version "3.12")
4859 (source (origin
4860 (method url-fetch)
4861 (uri (string-append "https://raw.githubusercontent.com"
4862 "/DarwinAwardWinner/ido-ubiquitous/v"
4863 version "/ido-ubiquitous.el"))
4864 (file-name (string-append "ido-ubiquitous-" version ".el"))
4865 (sha256
4866 (base32
4867 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
4868 (build-system emacs-build-system)
4869 (propagated-inputs
4870 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
4871 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4872 (synopsis "Use ido (nearly) everywhere")
4873 (description
4874 "Ido-ubiquitous enables ido-style completion for almost every function
4875that uses the standard completion function completing-read.")
4876 (license license:gpl3+)))
4877
4878(define-public emacs-yaml-mode
4879 (package
4880 (name "emacs-yaml-mode")
4881 (version "0.0.13")
4882 (source (origin
4883 (method url-fetch)
4884 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
4885 "/yaml-mode/v" version "/yaml-mode.el"))
4886 (file-name (string-append "yaml-mode-" version ".el"))
4887 (sha256
4888 (base32
4889 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
4890 (build-system emacs-build-system)
4891 (home-page "https://github.com/yoshiki/yaml-mode")
4892 (synopsis "Major mode for editing YAML files")
4893 (description
4894 "Yaml-mode is an Emacs major mode for editing files in the YAML data
4895serialization format. It was initially developed by Yoshiki Kurihara and many
4896features were added by Marshall Vandegrift. As YAML and Python share the fact
4897that indentation determines structure, this mode provides indentation and
4898indentation command behavior very similar to that of python-mode.")
4899 (license license:gpl3+)))
4900
4901(define-public emacs-web-mode
4902 (package
4903 (name "emacs-web-mode")
4904 (version "16")
4905 (source (origin
4906 (method url-fetch)
4907 (uri (string-append "https://raw.githubusercontent.com/fxbois"
4908 "/web-mode/v" version "/web-mode.el"))
4909 (file-name (string-append "web-mode-" version ".el"))
4910 (sha256
4911 (base32
4912 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
4913 (build-system emacs-build-system)
4914 (synopsis "Major mode for editing web templates")
4915 (description "Web-mode is an Emacs major mode for editing web templates
4916aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
4917client/server side engines). Web-mode is compatible with many template
4918engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
4919Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
4920Dust.js, React/JSX, Angularjs, ejs, etc.")
4921 (home-page "http://web-mode.org/")
4922 (license license:gpl3+)))
4923
4924(define-public emacs-wgrep
4925 (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
4926 ;; Late commit fixes compatibility issue with Emacs 26+.
4927 (package
4928 (name "emacs-wgrep")
4929 (version (git-version "2.1.10" "1" commit))
4930 (source (origin
4931 (method git-fetch)
4932 (uri (git-reference
4933 (url "https://github.com/mhayashi1120/Emacs-wgrep")
4934 (commit commit)))
4935 (file-name (git-file-name name version))
4936 (sha256
4937 (base32
4938 "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
4939 (build-system emacs-build-system)
4940 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
4941 (synopsis "Edit a grep buffer and apply those changes to the files")
4942 (description
4943 "Emacs wgrep allows you to edit a grep buffer and apply those changes
4944to the file buffer. Several backends are supported beside the classic grep:
4945ack, ag, helm and pt.")
4946 (license license:gpl3+))))
4947
4948(define-public emacs-helm
4949 (package
4950 (name "emacs-helm")
4951 (version "3.0")
4952 (source (origin
4953 (method url-fetch)
4954 (uri (string-append
4955 "https://github.com/" name "/helm/archive/v"
4956 version ".tar.gz"))
4957 (file-name (string-append name "-" version ".tar.gz"))
4958 (sha256
4959 (base32
4960 "0k2r0ccppaqfjvyszaxa16vf7g2qzj1clhfr6v646ncsy17laciw"))))
4961 (build-system emacs-build-system)
4962 (propagated-inputs
4963 `(("emacs-async" ,emacs-async)
4964 ("emacs-popup" ,emacs-popup)))
4965 (home-page "https://emacs-helm.github.io/helm/")
4966 (synopsis "Incremental completion and selection narrowing
4967framework for Emacs")
4968 (description "Helm is incremental completion and selection narrowing
4969framework for Emacs. It will help steer you in the right direction when
4970you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
4971of @code{anything.el} originally written by Tamas Patrovic and can be
4972considered to be its successor. Helm sets out to clean up the legacy code in
4973@code{anything.el} and provide a cleaner, leaner and more modular tool, that's
4974not tied in the trap of backward compatibility.")
4975 (license license:gpl3+)))
4976
4977(define-public emacs-helm-swoop
4978 (package
4979 (name "emacs-helm-swoop")
4980 (version "1.7.4")
4981 (source (origin
4982 (method url-fetch)
4983 (uri (string-append
4984 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
4985 version
4986 ".tar.gz"))
4987 (file-name (string-append name "-" version ".tar.gz"))
4988 (sha256
4989 (base32
4990 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
4991 (build-system emacs-build-system)
4992 (propagated-inputs
4993 `(("emacs-helm" ,emacs-helm)))
4994 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
4995 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
4996 (description
4997 "This package builds on the Helm interface to provide several commands
4998for search-based navigation of buffers.")
4999 (license license:gpl2+)))
5000
5001(define-public emacs-helm-projectile
5002 (package
5003 (name "emacs-helm-projectile")
5004 (version "0.14.0")
5005 (source (origin
5006 (method url-fetch)
5007 (uri (string-append
5008 "https://github.com/bbatsov/helm-projectile/archive/v"
5009 version
5010 ".tar.gz"))
5011 (file-name (string-append name "-" version ".tar.gz"))
5012 (sha256
5013 (base32
5014 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
5015 (build-system emacs-build-system)
5016 (propagated-inputs
5017 `(("emacs-dash" ,emacs-dash)
5018 ("emacs-helm" ,emacs-helm)
5019 ("emacs-projectile" ,emacs-projectile)))
5020 (home-page "https://github.com/bbatsov/helm-projectile")
5021 (synopsis "Helm integration for Projectile")
5022 (description
5023 "This Emacs library provides a Helm interface for Projectile.")
5024 (license license:gpl3+)))
5025
5026(define-public emacs-helm-make
5027 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
5028 (revision "1"))
5029 (package
5030 (name "emacs-helm-make")
5031 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
5032 (source
5033 (origin
5034 (method git-fetch)
5035 (uri (git-reference
5036 (url "https://github.com/abo-abo/helm-make.git")
5037 (commit commit)))
5038 (file-name (string-append name "-" version "-checkout"))
5039 (sha256
5040 (base32
5041 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
5042 (build-system emacs-build-system)
5043 (propagated-inputs
5044 `(("emacs-helm" ,emacs-helm)
5045 ("emacs-projectile" ,emacs-projectile)))
5046 (home-page "https://github.com/abo-abo/helm-make")
5047 (synopsis "Select a Makefile target with helm")
5048 (description "@code{helm-make} or @code{helm-make-projectile} will give
5049you a @code{helm} selection of directory Makefile's targets. Selecting a
5050target will call @code{compile} on it.")
5051 (license license:gpl3+))))
5052
5053(define-public emacs-cider
5054 (package
5055 (name "emacs-cider")
5056 (version "0.18.0")
5057 (source
5058 (origin
5059 (method git-fetch)
5060 (uri (git-reference
5061 (url "https://github.com/clojure-emacs/cider.git")
5062 (commit (string-append "v" version))))
5063 (file-name (git-file-name name version))
5064 (sha256
5065 (base32
5066 "1m9kc88vga3q5d731qnpngnsa0n57pf21k3hll20rw8rggrx4vdn"))))
5067 (build-system emacs-build-system)
5068 (arguments
5069 '(#:exclude ; Don't exclude 'cider-test.el'.
5070 '("^\\.dir-locals\\.el$" "^test/")))
5071 (propagated-inputs
5072 `(("emacs-clojure-mode" ,emacs-clojure-mode)
5073 ("emacs-sesman" ,emacs-sesman)
5074 ("emacs-spinner" ,emacs-spinner)
5075 ("emacs-pkg-info" ,emacs-pkg-info)
5076 ("emacs-queue" ,emacs-queue)))
5077 (home-page "https://cider.readthedocs.io/")
5078 (synopsis "Clojure development environment for Emacs")
5079 (description
5080 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
5081provide an interactive development experience similar to the one you'd get
5082when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
5083Geiser) and Smalltalk.
5084
5085CIDER is the successor to the now deprecated combination of using SLIME +
5086swank-clojure for Clojure development.
5087
5088There are plenty of differences between CIDER and SLIME, but the core ideas
5089are pretty much the same (and SLIME served as the principle inspiration for
5090CIDER).")
5091 (license license:gpl3+)))
5092
5093;; There hasn't been a tag or release since 2015, so we take the latest
5094;; commit.
5095(define-public emacs-sly
5096 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
5097 (revision "1"))
5098 (package
5099 (name "emacs-sly")
5100 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
5101 (source
5102 (origin
5103 (method git-fetch)
5104 (uri (git-reference
5105 (url "https://github.com/joaotavora/sly.git")
5106 (commit commit)))
5107 (file-name (git-file-name name version))
5108 (sha256
5109 (base32
5110 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
5111 (build-system emacs-build-system)
5112 (arguments
5113 `(#:include (cons "^lib\\/" %default-include)
5114 #:phases
5115 ;; The package provides autoloads.
5116 (modify-phases %standard-phases
5117 (delete 'make-autoloads))))
5118 (home-page "https://github.com/joaotavora/sly")
5119 (synopsis "Sylvester the Cat's Common Lisp IDE")
5120 (description
5121 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
5122contains the following improvements over it:
5123
5124@enumerate
5125@item Completely redesigned REPL based on Emacs's own full-featured
5126 @code{comint.el}
5127@item Live code annotations via a new @code{sly-stickers} contrib
5128@item Consistent interactive button interface. Everything can be copied to
5129 the REPL.
5130@item Multiple inspectors with independent history
5131@item Regexp-capable @code{M-x sly-apropos}
5132@item Contribs are first class SLY citizens and enabled by default
5133@item Use ASDF to loads contribs on demand.
5134@end enumerate
5135
5136SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
5137xref, etc...) are still available, but with better integration.")
5138 (license license:gpl3+))))
5139
5140(define-public emacs-lua-mode
5141 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
5142 (revision "1"))
5143 (package
5144 (name "emacs-lua-mode")
5145 (version (string-append "20151025." revision "-" (string-take commit 9)))
5146 (home-page "https://github.com/immerrr/lua-mode/")
5147 (source (origin
5148 (method git-fetch)
5149 (uri (git-reference
5150 (url home-page)
5151 (commit commit)))
5152 (file-name (string-append name "-" version ".checkout"))
5153 (sha256
5154 (base32
5155 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
5156 (build-system emacs-build-system)
5157 (synopsis "Major mode for lua")
5158 (description
5159 "This Emacs package provides a mode for @uref{https://www.lua.org/,
5160Lua programing language}.")
5161 (license license:gpl2+))))
5162
5163(define-public emacs-ebuild-mode
5164 (package
5165 (name "emacs-ebuild-mode")
5166 (version "1.37")
5167 (source (origin
5168 (method url-fetch)
5169 (uri (string-append
5170 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
5171 "-" version ".tar.xz"))
5172 (file-name (string-append name "-" version ".tar.xz"))
5173 (sha256
5174 (base32
5175 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
5176 (build-system emacs-build-system)
5177 (home-page "https://devmanual.gentoo.org")
5178 (synopsis "Major modes for Gentoo package files")
5179 (description
5180 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
5181news items, openrc and runscripts.")
5182 (license license:gpl2+)))
5183
5184(define-public emacs-evil
b6a76979
PN
5185 (package
5186 (name "emacs-evil")
5187 (version "1.2.14")
5188 (source
5189 (origin
5190 (method git-fetch)
5191 (uri (git-reference
5192 (url "https://github.com/emacs-evil/evil")
5193 (commit version)))
5194 (file-name (string-append name "-" version "-checkout"))
5195 (sha256
5196 (base32
5197 "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"))))
5198 (build-system emacs-build-system)
5199 (propagated-inputs
5200 `(("emacs-undo-tree" ,emacs-undo-tree)
5201 ("emacs-goto-chg" ,emacs-goto-chg)))
5202 (home-page "https://github.com/emacs-evil/evil")
5203 (synopsis "Extensible Vi layer for Emacs")
5204 (description
5205 "Evil is an extensible vi layer for Emacs. It emulates the
eeb883cb
RW
5206main features of Vim, and provides facilities for writing custom
5207extensions.")
b6a76979 5208 (license license:gpl3+)))
eeb883cb
RW
5209
5210(define-public emacs-evil-collection
de87d70e
PN
5211 (let ((commit "0cfdf4ecf0420aac2a9dd29ff7b54067c3433d71")
5212 (revision "6"))
eeb883cb
RW
5213 (package
5214 (name "emacs-evil-collection")
5215 (version (git-version "0.0.1" revision commit))
5216 (source (origin
5217 (method git-fetch)
5218 (uri (git-reference
5219 (url "https://github.com/emacs-evil/evil-collection")
5220 (commit commit)))
5221 (file-name (string-append name "-" version "-checkout"))
5222 (sha256
5223 (base32
de87d70e 5224 "1igsvgxvij918myc397cjhfybmm11znc7961vnbcd5xlviq2p01y"))))
eeb883cb
RW
5225 (build-system emacs-build-system)
5226 (propagated-inputs
5227 `(("emacs-evil" ,emacs-evil)))
5228 (home-page "https://github.com/emacs-evil/evil-collection")
5229 (synopsis "Collection of Evil bindings for many major and minor modes")
5230 (description "This is a collection of Evil bindings for the parts of
5231Emacs that Evil does not cover properly by default, such as @code{help-mode},
5232@code{M-x calendar}, Eshell and more.")
5233 (license license:gpl3+))))
5234
5235(define-public emacs-goto-chg
5236 (package
5237 (name "emacs-goto-chg")
5238 (version "1.6")
5239 (source
5240 (origin
5241 (method url-fetch)
5242 ;; There is no versioned source.
5243 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
5244 (file-name (string-append "goto-chg-" version ".el"))
5245 (sha256
5246 (base32
5247 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
5248 (build-system emacs-build-system)
5249 ;; There is no other home page.
5250 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
5251 (synopsis "Go to the last change in the Emacs buffer")
5252 (description
5253 "This package provides @code{M-x goto-last-change} command that goes to
5254the point of the most recent edit in the current Emacs buffer. When repeated,
5255go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
5256used for reverse direction.")
5257 (license license:gpl2+)))
5258
5259(define-public emacs-monroe
5260 (package
5261 (name "emacs-monroe")
5262 (version "0.3.1")
5263 (source
5264 (origin
5265 (method url-fetch)
5266 (uri (string-append "https://github.com/sanel/monroe/archive/"
5267 version ".tar.gz"))
5268 (file-name (string-append name "-" version ".tar.gz"))
5269 (sha256
5270 (base32
5271 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
5272 (build-system emacs-build-system)
5273 (home-page "https://github.com/sanel/monroe")
5274 (synopsis "Clojure nREPL client for Emacs")
5275 (description
5276 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
5277distribution, primarily targeting Clojure users")
5278 (license license:gpl3+)))
5279
5280(define-public emacs-orgalist
5281 (package
5282 (name "emacs-orgalist")
5283 (version "1.9")
5284 (source
5285 (origin
5286 (method url-fetch)
5287 (uri (string-append "https://elpa.gnu.org/packages/"
5288 "orgalist-" version ".el"))
5289 (sha256
5290 (base32
5291 "1rmmcyiiqkq54hn74nhzxzl4nvd902hv6gq341jwhrm7yiagffi6"))))
5292 (build-system emacs-build-system)
5293 (home-page "http://elpa.gnu.org/packages/orgalist.html")
5294 (synopsis "Manage Org-like lists in non-Org buffers")
5295 (description "Write Org mode's plain lists in non-Org buffers. More
5296specifically, Orgalist supports the syntax of Org mode for numbered,
5297unnumbered, description items, checkboxes, and counter cookies.
5298
5299The library also implements radio lists, i.e., lists written in Org
5300syntax later translated into the host format, e.g., LaTeX or HTML.")
5301 (license license:gpl3+)))
5302
5303(define-public emacs-writegood-mode
5304 (package
5305 (name "emacs-writegood-mode")
5306 (version "2.0.2")
5307 (home-page "https://github.com/bnbeckwith/writegood-mode")
5308 (source (origin
5309 (method git-fetch)
5310 (uri (git-reference
5311 (url home-page)
5312 (commit (string-append "v" version))))
5313 (sha256
5314 (base32
5315 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5316 (file-name (string-append name "-checkout"))))
5317 (build-system emacs-build-system)
5318 (synopsis "Polish up poor writing on the fly")
5319 (description
5320 "This minor mode tries to find and highlight problems with your writing
5321in English as you type. It primarily detects \"weasel words\" and abuse of
5322passive voice.")
5323 (license license:gpl3+)))
5324
5325(define-public emacs-neotree
5326 (package
5327 (name "emacs-neotree")
5328 (version "0.5.2")
5329 (home-page "https://github.com/jaypei/emacs-neotree")
5330 (source (origin
5331 (method url-fetch)
5332 (uri (string-append
5333 "https://github.com/jaypei/" name
5334 "/archive/" version ".tar.gz"))
5335 (sha256
5336 (base32
5337 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
5338 (file-name (string-append name "-" version ".tar.gz"))))
5339 (build-system emacs-build-system)
5340 (synopsis "Folder tree view for Emacs")
5341 (description "This Emacs package provides a folder tree view.")
5342 (license license:gpl3+)))
5343
5344(define-public emacs-org
5345 (package
5346 (name "emacs-org")
5347 ;; emacs-org-contrib inherits from this package. Please update its sha256
5348 ;; checksum as well.
2dd662f4 5349 (version "9.2.1")
eeb883cb
RW
5350 (source (origin
5351 (method url-fetch)
5352 (uri (string-append "http://elpa.gnu.org/packages/org-"
5353 version ".tar"))
5354 (sha256
5355 (base32
2dd662f4 5356 "0ggca29pyksvfblyd2ciqhgi392wlqx0nmph7ck4m5wbzmk2qnry"))))
eeb883cb
RW
5357 (build-system emacs-build-system)
5358 (home-page "https://orgmode.org/")
5359 (synopsis "Outline-based notes management and organizer")
5360 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5361lists, and project planning with a fast and effective lightweight markup
5362language. It also is an authoring system with unique support for literate
5363programming and reproducible research.")
5364 (license license:gpl3+)))
5365
5366(define-public emacs-org-contrib
5367 (package
5368 (inherit emacs-org)
5369 (name "emacs-org-contrib")
2dd662f4 5370 (version "20190203")
eeb883cb
RW
5371 (source (origin
5372 (method url-fetch)
5373 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5374 version ".tar"))
5375 (sha256
5376 (base32
2dd662f4 5377 "060rm62p1660n9f6i5w8l932w7gn5ign93q92gva4jy4bkmvczyb"))))
eeb883cb
RW
5378 (arguments
5379 `(#:modules ((guix build emacs-build-system)
5380 (guix build utils)
5381 (guix build emacs-utils)
5382 (ice-9 ftw)
5383 (srfi srfi-1))
5384 #:phases
5385 (modify-phases %standard-phases
5386 (add-after 'install 'delete-org-files
5387 (lambda* (#:key inputs outputs #:allow-other-keys)
5388 (let* ((out (assoc-ref outputs "out"))
5389 (org (assoc-ref inputs "org"))
5390 (contrib-files
5391 (map basename (find-files out)))
5392 (org+contrib-files
5393 (map basename (find-files org)))
5394 (duplicates (lset-intersection
5395 string=? contrib-files org+contrib-files)))
5396 (with-directory-excursion
5397 (string-append
5398 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
5399 (for-each delete-file duplicates))
5400 #t))))))
5401 (propagated-inputs
5402 `(("arduino-mode" ,emacs-arduino-mode)
5403 ("cider" ,emacs-cider)
5404 ("org" ,emacs-org)
5405 ("scel" ,emacs-scel)))
5406 (synopsis "Contributed packages to Org mode")
5407 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5408lists, and project planning with a fast and effective plain-text system.
5409
5410This package is equivalent to org-plus-contrib, but only includes additional
5411files that you would find in @file{contrib/} from the git repository.")))
5412
5413(define-public emacs-flx
5414 (package
5415 (name "emacs-flx")
5416 (version "0.6.1")
5417 (source
5418 (origin
5419 (method url-fetch)
5420 (uri (string-append "https://github.com/lewang/"
5421 "flx/archive/v" version ".tar.gz"))
5422 (sha256
5423 (base32
5424 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5425 (file-name (string-append name "-" version ".tar.gz"))))
5426 (build-system emacs-build-system)
5427 (home-page "https://github.com/lewang/flx")
5428 (synopsis "Fuzzy matching for Emacs")
5429 (description
5430 "Flx provides fuzzy matching for emacs a la sublime text.
5431The sorting algorithm is a balance between word beginnings (abbreviation)
5432and contiguous matches (substring). The longer the substring match,
5433the higher it scores. This maps well to how we think about matching.
5434Flx has support for ido (interactively do things) through flx-ido.")
5435 (license license:gpl3+)))
5436
5437(define-public emacs-cyberpunk-theme
5438 (package
5439 (name "emacs-cyberpunk-theme")
5440 (version "1.19")
5441 (source
5442 (origin
5443 (method url-fetch)
5444 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5445 "archive/" version ".tar.gz"))
5446 (sha256
5447 (base32
5448 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
5449 (file-name (string-append name "-" version ".tar.gz"))))
5450 (build-system emacs-build-system)
5451 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5452 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5453 (description
5454 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5455known loosely as deftheme. Many mode-specific customizations are included.")
5456 (license license:gpl3+)))
5457
5458(define-public emacs-danneskjold-theme
5459 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5460 (revision "1"))
5461 (package
5462 (name "emacs-danneskjold-theme")
5463 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5464 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5465 (source
5466 (origin
5467 (method git-fetch)
5468 (uri (git-reference
5469 (url home-page)
5470 (commit commit)))
5471 (file-name (string-append name "-" version "-checkout"))
5472 (sha256
5473 (base32
5474 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5475 (build-system emacs-build-system)
5476 (arguments
5477 `(#:phases
5478 (modify-phases %standard-phases
5479 (add-after 'unpack 'delete-screenshots
5480 (lambda _
5481 (delete-file-recursively "screenshots") #t)))))
5482 (synopsis "High-contrast Emacs theme")
5483 (description
5484 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5485 (license license:gpl3+))))
5486
5487(define-public emacs-dream-theme
5488 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5489 (revision "1"))
5490 (package
5491 (name "emacs-dream-theme")
5492 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5493 (source
5494 (origin
5495 (method git-fetch)
5496 (uri (git-reference
5497 (url "https://github.com/djcb/dream-theme")
5498 (commit commit)))
5499 (file-name (string-append name "-" version "-checkout"))
5500 (sha256
5501 (base32
5502 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5503 (build-system emacs-build-system)
5504 (home-page "https://github.com/djcb/dream-theme")
5505 (synopsis "High-contrast Emacs theme")
5506 (description
5507 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5508by zenburn, sinburn and similar themes, but slowly diverging from them.")
5509 (license license:gpl3+))))
5510
5511(define-public emacs-auto-complete
5512 (package
5513 (name "emacs-auto-complete")
5514 (version "1.5.1")
5515 (source
5516 (origin
5517 (method url-fetch)
5518 (uri (string-append "https://github.com/auto-complete/"
5519 "auto-complete/archive/v" version ".tar.gz"))
5520 (sha256
5521 (base32
5522 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5523 (file-name (string-append name "-" version ".tar.gz"))))
5524 (build-system emacs-build-system)
5525 (propagated-inputs
5526 `(("emacs-popup" ,emacs-popup)))
5527 (home-page "https://github.com/auto-complete/auto-complete")
5528 (synopsis "Intelligent auto-completion extension for Emacs")
5529 (description
5530 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5531It extends the standard Emacs completion interface and provides an environment
5532that allows users to concentrate more on their own work. Its features are:
5533a visual interface, reduce overhead of completion by using statistic method,
5534extensibility.")
5535 (license license:gpl3+)))
5536
5537(define-public emacs-nginx-mode
5538 (package
5539 (name "emacs-nginx-mode")
5540 (version "1.1.9")
5541 (source
5542 (origin
5543 (method url-fetch)
5544 (uri (string-append
5545 "https://github.com/ajc/nginx-mode/archive/v"
5546 version ".tar.gz"))
5547 (file-name (string-append name "-" version ".tar.gz"))
5548 (sha256
5549 (base32
5550 "0bzyrj6zz1hm67bkhw23bam7qc869s3zg7m1rb1c3aa4n0aw90cq"))))
5551 (build-system emacs-build-system)
5552 (home-page "https://github.com/ajc/nginx-mode")
5553 (synopsis "Emacs major mode for editing nginx config files")
5554 (description "This package provides an Emacs major mode for
5555editing nginx config files.")
5556 (license license:gpl2+)))
5557
5558(define-public emacs-stream
5559 (package
5560 (name "emacs-stream")
5561 (version "2.2.0")
5562 (home-page "https://github.com/NicolasPetton/stream")
5563 (source
5564 (origin
5565 (method url-fetch)
5566 (file-name (string-append name "-" version ".tar.gz"))
5567 (uri (string-append home-page "/archive/"version ".tar.gz"))
5568 (sha256
5569 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5570 (build-system emacs-build-system)
5571 (synopsis "Implementation of streams for Emacs")
5572 (description "This library provides an implementation of streams for Emacs.
5573Streams are implemented as delayed evaluation of cons cells.")
5574 (license license:gpl3+)))
5575
5576(define-public emacs-el-search
5577 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5578 (revision "1"))
5579 (package
5580 (name "emacs-el-search")
5581 ;; No ufficial release.
5582 (version (string-append "0.0-" revision "." (string-take commit 7)))
5583 (home-page "https://github.com/emacsmirror/el-search")
5584 (source
5585 (origin
5586 (method git-fetch)
5587 (file-name (string-append name "-" version ".tar.gz"))
5588 (uri (git-reference
5589 (commit commit)
5590 (url (string-append home-page ".git"))))
5591 (sha256
5592 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5593 (build-system emacs-build-system)
5594 (inputs `(("emacs-stream" ,emacs-stream)))
5595 (synopsis "Expression based interactive search for emacs-lisp-mode")
5596 (description "This package provides expression based interactive search
5597procedures for emacs-lisp-mode.")
5598 (license license:gpl3+))))
5599
5600(define-public emacs-ht
5601 (package
5602 (name "emacs-ht")
5603 (version "2.1")
5604 (source
5605 (origin
5606 (method url-fetch)
5607 (uri (string-append
5608 "https://github.com/Wilfred/ht.el/archive/"
5609 version ".tar.gz"))
5610 (file-name (string-append name "-" version ".tar.gz"))
5611 (sha256
5612 (base32
5613 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5614 (build-system emacs-build-system)
5615 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5616 (home-page "https://github.com/Wilfred/ht.el")
5617 (synopsis "Hash table library for Emacs")
5618 (description
5619 "This package simplifies the use of hash tables in elisp. It also
5620provides functions to convert hash tables from and to alists and plists.")
5621 (license license:gpl3+)))
5622
5623(define-public emacs-log4e
5624 (package
5625 (name "emacs-log4e")
5626 (version "0.3.0")
5627 (source
5628 (origin
5629 (method url-fetch)
5630 (uri (string-append
5631 "https://github.com/aki2o/log4e/archive/v"
5632 version ".tar.gz"))
5633 (file-name (string-append name "-" version ".tar.gz"))
5634 (sha256
5635 (base32
5636 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5637 (build-system emacs-build-system)
5638 (arguments
5639 `(#:phases
5640 (modify-phases %standard-phases
5641 (add-after 'unpack 'remove-tests
5642 ;; Guile builder complains about null characters in some
5643 ;; strings of test files. Remove "test" directory (it is not
5644 ;; needed anyway).
5645 (lambda _
5646 (delete-file-recursively "test"))))))
5647 (home-page "https://github.com/aki2o/log4e")
5648 (synopsis "Logging framework for elisp")
5649 (description
5650 "This package provides a logging framework for elisp. It allows
5651you to deal with multiple log levels.")
5652 (license license:gpl3+)))
5653
5654(define-public emacs-gntp
5655 (package
5656 (name "emacs-gntp")
5657 (version "0.1")
5658 (source
5659 (origin
5660 (method url-fetch)
5661 (uri (string-append
5662 "https://github.com/tekai/gntp.el/archive/v"
5663 version ".tar.gz"))
5664 (file-name (string-append name "-" version ".tar.gz"))
5665 (sha256
5666 (base32
5667 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5668 (build-system emacs-build-system)
5669 (home-page "https://github.com/tekai/gntp.el")
5670 (synopsis "Growl Notification Protocol for Emacs")
5671 (description
5672 "This package implements the Growl Notification Protocol GNTP
5673described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5674It is incomplete as it only lets you send but not receive
5675notifications.")
5676 (license license:bsd-3)))
5677
5678(define-public emacs-alert
5679 (package
5680 (name "emacs-alert")
5681 (version "1.2")
5682 (source
5683 (origin
5684 (method url-fetch)
5685 (uri (string-append
5686 "https://github.com/jwiegley/alert/archive/v"
5687 version ".tar.gz"))
5688 (file-name (string-append name "-" version ".tar.gz"))
5689 (sha256
5690 (base32
5691 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5692 (build-system emacs-build-system)
5693 (propagated-inputs
5694 `(("emacs-gntp" ,emacs-gntp)
5695 ("emacs-log4e" ,emacs-log4e)))
5696 (home-page "https://github.com/jwiegley/alert")
5697 (synopsis "Growl-style notification system for Emacs")
5698 (description
5699 "Alert is a Growl-workalike for Emacs which uses a common notification
5700interface and multiple, selectable \"styles\", whose use is fully
5701customizable by the user.")
5702 (license license:gpl2+)))
5703
5704(define-public emacs-mu4e-alert
5705 (package
5706 (name "emacs-mu4e-alert")
5707 (version "1.0")
5708 (source
5709 (origin
5710 (method url-fetch)
5711 (uri (string-append
5712 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5713 version ".tar.gz"))
5714 (file-name (string-append name "-" version ".tar.gz"))
5715 (sha256
5716 (base32
5717 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
5718 (build-system emacs-build-system)
5719 (propagated-inputs
5720 `(("emacs-alert" ,emacs-alert)
5721 ("emacs-s" ,emacs-s)
5722 ("emacs-ht" ,emacs-ht)
5723 ("mu" ,mu)))
5724 (home-page "https://github.com/iqbalansari/mu4e-alert")
5725 (synopsis "Desktop notification for mu4e")
5726 (description
5727 "This package provides desktop notifications for mu4e.
5728Additionally it can display the number of unread emails in the
5729mode-line.")
5730 (license license:gpl3+)))
5731
5732(define-public emacs-pretty-mode
5733 (package
5734 (name "emacs-pretty-mode")
5735 (version "2.0.3")
5736 (source
5737 (origin
5738 (method url-fetch)
5739 (uri (string-append "https://github.com/akatov/pretty-mode/"
5740 "archive/" version ".tar.gz"))
5741 (file-name (string-append name "-" version ".tar.gz"))
5742 (sha256
5743 (base32
5744 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5745 (build-system emacs-build-system)
5746 (home-page "https://github.com/akatov/pretty-mode")
5747 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5748 (description
5749 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5750 (license license:gpl3+)))
5751
5752(define-public emacs-yasnippet
5753 (package
5754 (name "emacs-yasnippet")
5755 (version "0.13.0")
5756 (source (origin
5757 (method url-fetch)
5758 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5759 "archive/" version ".tar.gz"))
5760 (file-name (string-append name "-" version ".tar.gz"))
5761 (sha256
5762 (base32
5763 "12ls2x17agzbrj1xynjbmfa11igqxia4hj4fv6fpr66yci2r1plc"))
5764 (modules '((guix build utils)))
5765 (snippet
5766 '(begin
5767 ;; YASnippet expects a "snippets" subdirectory in the same
5768 ;; directory as yasnippet.el, but we don't install it
5769 ;; because it's a git submodule pointing to an external
5770 ;; repository. Adjust `yas-snippet-dirs' to prevent
5771 ;; warnings about a missing directory.
5772 (substitute* "yasnippet.el"
5773 (("^ +'yas-installed-snippets-dir\\)\\)\n")
5774 "))\n"))
5775 #t))))
5776 (build-system emacs-build-system)
5777 (home-page "https://github.com/joaotavora/yasnippet")
5778 (synopsis "Yet another snippet extension for Emacs")
5779 (description
5780 "YASnippet is a template system for Emacs. It allows you to type an
5781abbreviation and automatically expand it into function templates.")
5782 (license license:gpl3+)))
5783
5784(define-public emacs-yasnippet-snippets
5785 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
5786 (revision "1"))
5787 (package
5788 (name "emacs-yasnippet-snippets")
5789 (version (string-append "1-" revision "." (string-take commit 8)))
5790 (source
5791 (origin
5792 (method git-fetch)
5793 (uri (git-reference
5794 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
5795 (commit commit)))
5796 (file-name (string-append name "-" version "-checkout"))
5797 (sha256
5798 (base32
5799 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
5800 (build-system trivial-build-system)
5801 (arguments
5802 `(#:modules ((ice-9 ftw)
5803 (ice-9 regex)
5804 (guix build utils))
5805 #:builder
5806 (begin
5807 (use-modules (ice-9 ftw)
5808 (ice-9 regex)
5809 (guix build utils))
5810 (with-directory-excursion (assoc-ref %build-inputs "source")
5811 (for-each (lambda (dir)
5812 (copy-recursively
5813 dir
5814 (string-append %output
5815 "/share/emacs/yasnippet-snippets/"
5816 dir)))
5817 (scandir "." (lambda (fname)
5818 (and (string-match "-mode$" fname)
5819 (directory-exists? fname))))))
5820 #t)))
5821 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
5822 (synopsis "Collection of YASnippet snippets for many languages")
5823 (description
5824 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
5825the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
5826To make YASnippet aware of these snippets, add the above directory to
5827@code{yas-snippet-dirs}.")
5828 (license license:expat))))
5829
5830(define-public emacs-helm-c-yasnippet
5831 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
5832 (revision "1"))
5833 (package
5834 (name "emacs-helm-c-yasnippet")
5835 (version (string-append "0.6.7" "-" revision "."
5836 (string-take commit 7)))
5837 (source (origin
5838 (method git-fetch)
5839 (uri (git-reference
5840 (url "https://github.com/emacs-jp/helm-c-yasnippet")
5841 (commit commit)))
5842 (file-name (string-append name "-" version "-checkout"))
5843 (sha256
5844 (base32
5845 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
5846 (build-system emacs-build-system)
5847 (propagated-inputs
5848 `(("emacs-helm" ,emacs-helm)
5849 ("emacs-yasnippet" ,emacs-yasnippet)))
5850 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
5851 (synopsis "Helm integration for Yasnippet")
5852 (description "This Emacs library provides Helm interface for
5853Yasnippet.")
5854 (license license:gpl2+))))
5855
5856(define-public emacs-helm-system-packages
5857 (package
5858 (name "emacs-helm-system-packages")
5859 (version "1.10.1")
5860 (source (origin
5861 (method git-fetch)
5862 (uri (git-reference
5863 (url "https://github.com/emacs-helm/helm-system-packages")
5864 (commit (string-append "v" version))))
5865 (file-name (string-append name "-" version "-checkout"))
5866 (sha256
5867 (base32
5868 "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f"))))
5869 (build-system emacs-build-system)
5870 (inputs
5871 `(("recutils" ,recutils)))
5872 (propagated-inputs
5873 `(("emacs-helm" ,emacs-helm)))
5874 (arguments
5875 `(#:phases
5876 (modify-phases %standard-phases
5877 (add-after 'unpack 'configure
5878 (lambda* (#:key inputs outputs #:allow-other-keys)
5879 (let ((recutils (assoc-ref inputs "recutils")))
5880 ;; Specify the absolute file names of the various
5881 ;; programs so that everything works out-of-the-box.
5882 (substitute* "helm-system-packages-guix.el"
5883 (("recsel") (string-append recutils "/bin/recsel")))))))))
5884 (home-page "https://github.com/emacs-helm/helm-system-packages")
5885 (synopsis "Helm System Packages is an interface to your package manager")
5886 (description "List all available packages in Helm (with installed
5887packages displayed in their own respective face). Fuzzy-search, mark and
5888execute the desired action over any selections of packages: Install,
5889uninstall, display packages details (in Org Mode) or insert details at point,
5890find files owned by packages... And much more, including performing all the
5891above over the network.")
5892 (license license:gpl3+)))
5893
5894(define-public emacs-memoize
5895 (package
5896 (name "emacs-memoize")
5897 (version "1.1")
5898 (source
5899 (origin
5900 (method url-fetch)
5901 (uri (string-append
5902 "https://github.com/skeeto/emacs-memoize/archive/"
5903 version ".tar.gz"))
5904 (file-name (string-append name "-" version ".tar.gz"))
5905 (sha256
5906 (base32
5907 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
5908 (build-system emacs-build-system)
5909 (arguments
5910 `(#:tests? #t
5911 #:test-command '("emacs" "--batch"
5912 "-l" "memoize-test.el"
5913 "-f" "ert-run-tests-batch-and-exit")))
5914 (home-page "https://github.com/skeeto/emacs-memoize")
5915 (synopsis "Emacs lisp memoization library")
5916 (description "@code{emacs-memoize} is an Emacs library for
5917memoizing functions.")
5918 (license license:unlicense)))
5919
5920(define-public emacs-linum-relative
5921 (package
5922 (name "emacs-linum-relative")
5923 (version "0.5")
5924 (source
5925 (origin
5926 (method url-fetch)
5927 (uri (string-append
5928 "https://github.com/coldnew/linum-relative/archive/"
5929 version ".tar.gz"))
5930 (file-name (string-append name "-" version ".tar.gz"))
5931 (sha256
5932 (base32
5933 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
5934 (build-system emacs-build-system)
5935 (home-page "https://github.com/coldnew/linum-relative")
5936 (synopsis "Relative line numbering for Emacs")
5937 (description "@code{emacs-linum-relative} displays the relative line
5938number on the left margin in Emacs.")
5939 (license license:gpl2+)))
5940
5941(define-public emacs-idle-highlight
5942 (package
5943 (name "emacs-idle-highlight")
5944 (version "1.1.3")
5945 (source
5946 (origin
5947 (method url-fetch)
5948 (uri (string-append
5949 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
5950 version ".tar.gz"))
5951 (file-name (string-append name "-" version ".tar.gz"))
5952 (sha256
5953 (base32
5954 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
5955 (build-system emacs-build-system)
5956 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
5957 (synopsis "Highlights all occurrences of the word the point is on")
5958 (description
5959 "This Emacs package provides @code{idle-highlight-mode} that sets
5960 an idle timer to highlight all occurrences in the buffer of the word under
5961 the point.")
5962 (license license:gpl3+)))
5963
5964(define-public emacs-ox-twbs
5965 (package
5966 (name "emacs-ox-twbs")
5967 (version "1.1.1")
5968 (source
5969 (origin
5970 (method url-fetch)
5971 (uri (string-append
5972 "https://github.com/marsmining/ox-twbs/archive/v"
5973 version ".tar.gz"))
5974 (file-name (string-append name "-" version ".tar.gz"))
5975 (sha256
5976 (base32
5977 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
5978 (build-system emacs-build-system)
5979 (home-page "https://github.com/marsmining/ox-twbs")
5980 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
5981 (description
5982 "This Emacs package outputs your org-mode docs with a simple, clean and
5983modern look. It implements a new HTML back-end for exporting org-mode docs as
5984HTML compatible with Twitter Bootstrap. By default, HTML is exported with
5985jQuery and Bootstrap resources included via osscdn.")
5986 (license license:gpl3+)))
5987
5988(define-public emacs-highlight-sexp
5989 (package
5990 (name "emacs-highlight-sexp")
5991 (version "1.0")
5992 (source
5993 (origin
5994 (method url-fetch)
5995 (uri (string-append
5996 "https://github.com/daimrod/highlight-sexp/archive/v"
5997 version ".tar.gz"))
5998 (file-name (string-append name "-" version ".tar.gz"))
5999 (sha256
6000 (base32
6001 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
6002 (build-system emacs-build-system)
6003 (home-page "https://github.com/daimrod/highlight-sexp")
6004 (synopsis "Minor mode that highlights the s-exp at the current position")
6005 (description
6006 "This Emacs package highlights the s-exp at the current position.")
6007 (license license:gpl3+)))
6008
6009(define-public emacs-highlight-stages
6010 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
6011 (revision "1"))
6012 (package
6013 (name "emacs-highlight-stages")
6014 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
6015 (source
6016 (origin
6017 (method git-fetch)
6018 (uri (git-reference
6019 (url "https://github.com/zk-phi/highlight-stages.git")
6020 (commit commit)))
6021 (file-name (string-append name "-" version "-checkout"))
6022 (sha256
6023 (base32
6024 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
6025 (patches
6026 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
6027 (build-system emacs-build-system)
6028 (home-page "https://github.com/wigust/highlight-stages")
6029 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
6030 (description "@code{highlight-stages} provides an Emacs minor mode that
6031highlights quasi-quoted expressions.")
6032 (license license:gpl3+))))
6033
6034(define-public emacspeak
6035 (package
6036 (name "emacspeak")
ea32c946 6037 (version "49.0")
eeb883cb
RW
6038 (source
6039 (origin
6040 (method url-fetch)
6041 (uri (string-append
6042 "https://github.com/tvraman/emacspeak/releases/download/"
6043 version "/emacspeak-" version ".tar.bz2"))
6044 (sha256
6045 (base32
ea32c946 6046 "1smf26m7201z0bk49lzbw9zhbjfi6wylidfjixb8ylp6g0wnh8dx"))))
eeb883cb
RW
6047 (build-system gnu-build-system)
6048 (arguments
6049 '(#:make-flags (list (string-append "prefix="
6050 (assoc-ref %outputs "out")))
6051 #:phases
6052 (modify-phases %standard-phases
6053 (replace 'configure
6054 (lambda* (#:key outputs #:allow-other-keys)
6055 (let* ((out (assoc-ref outputs "out"))
6056 (lisp (string-append out
6057 "/share/emacs/site-lisp/emacspeak")))
6058 (setenv "SHELL" (which "sh"))
6059 ;; Configure Emacspeak according to etc/install.org.
6060 (invoke "make" "config"))))
6061 (add-after 'build 'build-espeak
6062 (lambda _
6063 (invoke "make" "espeak")))
6064 (replace 'install
6065 (lambda* (#:key inputs outputs #:allow-other-keys)
6066 (let* ((out (assoc-ref outputs "out"))
6067 (bin (string-append out "/bin"))
6068 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
6069 (info (string-append out "/share/info"))
6070 (emacs (string-append (assoc-ref inputs "emacs")
6071 "/bin/emacs")))
6072 ;; According to etc/install.org, the Emacspeak directory should
6073 ;; be copied to its installation destination.
6074 (for-each
6075 (lambda (file)
6076 (copy-recursively file (string-append lisp "/" file)))
6077 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
6078 "stumpwm" "xsl"))
6079 ;; Make sure emacspeak is loaded from the correct directory.
6080 (substitute* "etc/emacspeak.sh"
ea32c946
KK
6081 (("/lisp/emacspeak-setup.el")
6082 (string-append lisp "/lisp/emacspeak-setup.el")))
eeb883cb
RW
6083 ;; Install the convenient startup script.
6084 (mkdir-p bin)
6085 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
6086 #t))
6087 (add-after 'install 'wrap-program
6088 (lambda* (#:key inputs outputs #:allow-other-keys)
6089 (let* ((out (assoc-ref outputs "out"))
6090 (emacspeak (string-append out "/bin/emacspeak"))
6091 (espeak (string-append (assoc-ref inputs "espeak")
6092 "/bin/espeak")))
6093 ;; The environment variable DTK_PROGRAM tells emacspeak what
6094 ;; program to use for speech.
6095 (wrap-program emacspeak
6096 `("DTK_PROGRAM" ":" prefix (,espeak)))
6097 #t))))
6098 #:tests? #f)) ; no check target
6099 (inputs
6100 `(("emacs" ,emacs)
6101 ("espeak" ,espeak)
6102 ("perl" ,perl)
6103 ("tcl" ,tcl)
6104 ("tclx" ,tclx)))
6105 (home-page "http://emacspeak.sourceforge.net")
6106 (synopsis "Audio desktop interface for Emacs")
6107 (description
6108 "Emacspeak is a speech interface that allows visually impaired users to
6109interact independently and efficiently with the computer. Audio formatting
6110--a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
6111allows Emacspeak to produce rich aural presentations of electronic information.
6112By seamlessly blending all aspects of the Internet such as Web-surfing and
6113messaging, Emacspeak speech-enables local and remote information via a
6114consistent and well-integrated user interface.")
6115 (license license:gpl2+)))
6116
6117(define-public emacs-adaptive-wrap
6118 (package
6119 (name "emacs-adaptive-wrap")
6120 (version "0.5.1")
6121 (source (origin
6122 (method url-fetch)
6123 (uri (string-append
6124 "http://elpa.gnu.org/packages/adaptive-wrap-"
6125 version ".el"))
6126 (sha256
6127 (base32
6128 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
6129 (build-system emacs-build-system)
6130 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
6131 (synopsis "Smart line-wrapping with wrap-prefix")
6132 (description
6133 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
6134minor mode which sets the wrap-prefix property on the fly so that
6135single-long-line paragraphs get word-wrapped in a way similar to what
6136you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
6137actually changing the buffer's text.")
6138 (license license:gpl3+)))
6139
6140(define-public emacs-diff-hl
6141 (package
6142 (name "emacs-diff-hl")
6143 (version "1.8.5")
6144 (source
6145 (origin
6146 (method url-fetch)
6147 (uri (string-append "https://elpa.gnu.org/packages/diff-hl-"
6148 version ".tar"))
6149 (sha256
6150 (base32
6151 "1vxc7z7c2qs0mx7l5sa4sybi5qbzv0s79flj74p1ynw8dl3qxg3d"))))
6152 (build-system emacs-build-system)
6153 (home-page "https://github.com/dgutov/diff-hl")
6154 (synopsis
6155 "Highlight uncommitted changes using VC")
6156 (description
6157 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
6158window (using the fringe, by default), allows you to jump between
6159the hunks and revert them selectively.")
6160 (license license:gpl3+)))
6161
6162(define-public emacs-diminish
6163 (package
6164 (name "emacs-diminish")
6165 (version "0.45")
6166 (source
6167 (origin
6168 (method url-fetch)
6169 (uri (string-append
6170 "https://github.com/myrjola/diminish.el/archive/v"
6171 version ".tar.gz"))
6172 (file-name (string-append name "-" version ".tar.gz"))
6173 (sha256
6174 (base32
6175 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
6176 (build-system emacs-build-system)
6177 (home-page "https://github.com/myrjola/diminish.el")
6178 (synopsis "Diminish minor modes with no modeline display")
6179 (description "@code{emacs-diminish} implements hiding or
6180abbreviation of the mode line displays (lighters) of minor modes.")
6181 (license license:gpl2+)))
6182
6183(define-public emacs-use-package
6184 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
6185 (revision "1"))
6186 (package
6187 (name "emacs-use-package")
6188 (version (git-version "2.3" revision commit))
6189 (source (origin
6190 (method git-fetch)
6191 (uri (git-reference
6192 (url "https://github.com/jwiegley/use-package")
6193 (commit commit)))
6194 (file-name (git-file-name name version))
6195 (sha256
6196 (base32
6197 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
6198 (build-system emacs-build-system)
6199 (propagated-inputs
6200 `(("emacs-diminish" ,emacs-diminish)))
6201 (arguments
6202 `(#:tests? #t
6203 #:test-command '("emacs" "--batch"
6204 "-l" "use-package-tests.el"
6205 "-f" "ert-run-tests-batch-and-exit")))
6206 (home-page "https://github.com/jwiegley/use-package")
6207 (synopsis "Declaration for simplifying your .emacs")
6208 (description "The use-package macro allows you to isolate package
6209configuration in your @file{.emacs} file in a way that is both
6210performance-oriented and tidy.")
6211 (license license:gpl2+))))
6212
6213(define-public emacs-strace-mode
6214 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
6215 (revision "1"))
6216 (package
6217 (name "emacs-strace-mode")
6218 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
6219 (source (origin
6220 (method git-fetch)
6221 (uri (git-reference
6222 (url "https://github.com/pkmoore/strace-mode")
6223 (commit commit)))
6224 (file-name (string-append name "-" version "-checkout"))
6225 (sha256
6226 (base32
6227 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
6228 (build-system emacs-build-system)
6229 (home-page "https://github.com/pkmoore/strace-mode")
6230 (synopsis "Emacs major mode to highlight strace outputs")
6231 (description "@code{emacs-strace-mode} provides an Emacs major mode
6232 highlighting strace outputs.")
6233 (license license:gpl3+))))
6234
6235(define-public emacs-default-encrypt
6236 (package
6237 (name "emacs-default-encrypt")
6238 (version "4.3")
6239 (source
6240 (origin
6241 (method url-fetch)
6242 (uri (string-append
6243 "https://www.informationelle-selbstbestimmung-im-internet.de"
6244 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
6245 (file-name (string-append "jl-encrypt-" version ".el"))
6246 (sha256
6247 (base32
6248 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6249 (build-system emacs-build-system)
6250 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6251 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6252 (description
6253 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6254automatically encrypts messages that you send (e.g., email) when public keys
6255for all recipients are available, and it protects you from accidentally
6256sending un-encrypted messages. It can also be configured to automatically
6257sign messages that you send. For details and instructions on how to use
6258DefaultEncrypt, please refer to the home page or read the comments in the
6259source file, @file{jl-encrypt.el}.")
6260 (license license:gpl3+)))
6261
6262(define-public emacs-htmlize
6263 (package
6264 (name "emacs-htmlize")
6265 (version "1.53")
6266 (source
6267 (origin
6268 (method url-fetch)
6269 (uri (string-append
6270 "https://github.com/hniksic/emacs-htmlize/archive/release/"
6271 version ".tar.gz"))
6272 (file-name (string-append name "-" version ".tar.gz"))
6273 (sha256
6274 (base32
6275 "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
6276 (build-system emacs-build-system)
6277 (home-page "https://github.com/hniksic/emacs-htmlize")
6278 (synopsis "Convert buffer text and decorations to HTML")
6279 (description "@code{emacs-htmlize} converts the buffer text and
6280the associated decorations to HTML. Output to CSS, inline CSS and
6281fonts is supported.")
6282 (license license:gpl2+)))
6283
6284(define-public emacs-xmlgen
6285 (package
6286 (name "emacs-xmlgen")
6287 (version "0.5")
6288 (source
6289 (origin
6290 (method url-fetch)
6291 (uri (string-append
6292 "https://github.com/philjackson/xmlgen/archive/"
6293 version ".tar.gz"))
6294 (file-name (string-append name "-" version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
6298 (build-system emacs-build-system)
6299 (arguments
6300 `(#:tests? #t
6301 #:test-command '("emacs" "--batch"
6302 "-l" "xmlgen-test.el"
6303 "-f" "ert-run-tests-batch-and-exit")))
6304 (home-page "https://github.com/philjackson/xmlgen")
6305 (synopsis "S-expression to XML domain specific language (DSL) in
6306Emacs Lisp")
6307 (description "@code{emacs-xmlgen} provides S-expression to XML
6308conversion for Emacs Lisp.")
6309 (license license:gpl2+)))
6310
6311(define-public emacs-cdlatex
6312 (package
6313 (name "emacs-cdlatex")
6314 (version "4.7")
6315 (source
6316 (origin
6317 (method url-fetch)
6318 (uri (string-append
6319 "https://github.com/cdominik/cdlatex/archive/"
6320 version ".tar.gz"))
6321 (file-name (string-append name "-" version ".tar.gz"))
6322 (sha256
6323 (base32
6324 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
6325 (build-system emacs-build-system)
6326 (propagated-inputs
6327 `(("emacs-auctex" ,emacs-auctex)))
6328 (home-page "https://github.com/cdominik/cdlatex")
6329 (synopsis "Fast Emacs input methods for LaTeX environments and
6330math")
6331 (description "CDLaTeX is an Emacs minor mode supporting fast
6332insertion of environment templates and math in LaTeX. Similar
6333commands are also offered as part of the AUCTeX package, but it is not
6334the same - CDLaTeX focuses on speediness for inserting LaTeX
6335constructs.")
6336 (license license:gpl3+)))
6337
6338(define-public emacs-cnfonts
6339 (package
6340 (name "emacs-cnfonts")
6341 (version "0.9.1")
6342 (source (origin
6343 (method url-fetch)
6344 (uri (string-append
6345 "https://github.com/tumashu/cnfonts/archive/v"
6346 version ".tar.gz"))
6347 (file-name (string-append name "-" version ".tar.gz"))
6348 (sha256
6349 (base32
6350 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
6351 (build-system emacs-build-system)
6352 (home-page "https://github.com/tumashu/cnfonts")
6353 (synopsis "Emacs Chinese fonts setup tool")
6354 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6355configuration of Chinese fonts.")
6356 (license license:gpl2+)))
6357
6358(define-public emacs-php-mode
6359 (package
6360 (name "emacs-php-mode")
6361 (version "20171225.342")
6362 (source (origin
6363 (method url-fetch)
6364 (uri (string-append
6365 "https://melpa.org/packages/php-mode-"
6366 version ".tar"))
6367 (sha256
6368 (base32
6369 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6370 (build-system emacs-build-system)
6371 (home-page "https://github.com/ejmr/php-mode")
6372 (synopsis "Major mode for editing PHP code")
6373 (description "@code{php-mode} is a major mode for editing PHP source
6374code. It's an extension of C mode; thus it inherits all C mode's navigation
6375functionality. But it colors according to the PHP grammar and indents
6376according to the PEAR coding guidelines. It also includes a couple handy
6377IDE-type features such as documentation search and a source and class
6378browser.")
6379 (license license:gpl3+)))
6380
6381(define-public emacs-pos-tip
6382 (package
6383 (name "emacs-pos-tip")
6384 (version "0.4.6")
6385 (source (origin
6386 (method url-fetch)
6387 (uri (string-append
6388 "https://github.com/pitkali/pos-tip/archive/"
6389 version ".tar.gz"))
6390 (file-name (string-append name "-" version ".tar.gz"))
6391 (sha256
6392 (base32
6393 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
6394 (build-system emacs-build-system)
6395 ;; The following functions and variables needed by emacs-pos-tip are
6396 ;; not included in emacs-minimal:
6397 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6398 (arguments `(#:emacs ,emacs))
6399 (home-page "https://github.com/pitkali/pos-tip")
6400 (synopsis "Show tooltip at point")
6401 (description "The standard library tooltip.el provides a function for
6402displaying a tooltip at the mouse position. However, locating a tooltip at an
6403arbitrary buffer position in a window is not easy. Pos-tip provides such a
6404function to be used by other frontend programs.")
6405 (license license:gpl2+)))
6406
6407(define-public emacs-pyim-basedict
6408 (package
6409 (name "emacs-pyim-basedict")
6410 (version "0.3.1")
6411 (source (origin
6412 (method url-fetch)
6413 (uri (string-append
6414 "https://github.com/tumashu/pyim-basedict/archive/v"
6415 version ".tar.gz"))
6416 (file-name (string-append name "-" version ".tar.gz"))
6417 (sha256
6418 (base32
6419 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
6420 (build-system emacs-build-system)
6421 (home-page "https://github.com/tumashu/pyim-basedict")
6422 (synopsis "Input method dictionary of pyim")
6423 (description "Pyim-basedict is the default pinyin input method dictionary,
6424containing words from the rime project.")
6425 (license license:gpl2+)))
6426
6427(define-public emacs-pyim
6428 (package
6429 (name "emacs-pyim")
6430 (version "1.8")
6431 (source
6432 (origin
6433 (method git-fetch)
6434 (uri (git-reference
6435 (url "https://github.com/tumashu/pyim")
6436 (commit (string-append "v" version))))
6437 (file-name (git-file-name name version))
6438 (sha256
6439 (base32
6440 "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9"))))
6441 (build-system emacs-build-system)
6442 (propagated-inputs
6443 `(("emacs-async" ,emacs-async)
6444 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
6445 ("emacs-popup" ,emacs-popup)
6446 ("emacs-posframe" ,emacs-posframe)))
6447 (home-page "https://github.com/tumashu/pyim")
6448 (synopsis "Chinese input method")
6449 (description "Chinese input method which supports quanpin, shuangpin, wubi
6450and cangjie.")
6451 (license license:gpl2+)))
6452
6453(define-public emacs-posframe
6454 (package
6455 (name "emacs-posframe")
6456 (version "0.4.2")
6457 (source
6458 (origin
6459 (method url-fetch)
6460 (uri (string-append
6461 "https://elpa.gnu.org/packages/posframe-" version ".el"))
6462 (sha256
6463 (base32
6464 "1h8vvxvsg41vc1nnglqjs2q0k1yzfsn72skga9s76qa3zxmx6kds"))))
6465 (build-system emacs-build-system)
6466 ;; emacs-minimal does not include the function font-info
6467 (arguments `(#:emacs ,emacs))
6468 (home-page "https://github.com/tumashu/posframe")
6469 (synopsis "Pop a posframe (a child frame) at point")
6470 (description "@code{emacs-posframe} can pop a posframe at point. A
6471posframe is a child frame displayed within its root window's buffer.
6472@code{emacs-posframe} is fast and works well with CJK languages.")
6473 (license license:gpl3+)))
6474
6475(define-public emacs-el2org
6476 (package
6477 (name "emacs-el2org")
6478 (version "0.6.0")
6479 (source (origin
6480 (method url-fetch)
6481 (uri (string-append
6482 "https://github.com/tumashu/el2org/archive/v"
6483 version ".tar.gz"))
6484 (file-name (string-append name "-" version ".tar.gz"))
6485 (sha256
6486 (base32
6487 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
6488 (build-system emacs-build-system)
6489 (home-page "https://github.com/tumashu/el2org")
6490 (synopsis "Convert Emacs-lisp file to org file")
6491 (description "El2org is a simple tool, which can convert Emacs-lisp file
6492to org file, you can use this tool to write orgify commentary.")
6493 (license license:gpl2+)))
6494
6495(define-public emacs-mustache
6496 (package
6497 (name "emacs-mustache")
6498 (version "0.23")
6499 (source (origin
6500 (method url-fetch)
6501 (uri (string-append
6502 "https://github.com/Wilfred/mustache.el/archive/"
6503 version ".tar.gz"))
6504 (file-name (string-append name "-" version ".tar.gz"))
6505 (sha256
6506 (base32
6507 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
6508 (build-system emacs-build-system)
6509 (propagated-inputs
6510 `(("emacs-dash" ,emacs-dash)
6511 ("emacs-ht" ,emacs-ht)
6512 ("emacs-s" ,emacs-s)))
6513 (home-page "https://github.com/Wilfred/mustache.el")
6514 (synopsis "Mustache templating library for Emacs")
6515 (description "Mustache templating library for Emacs, mustache is
6516a simple web template system, which is described as a logic-less system
6517because it lacks any explicit control flow statements, both looping and
6518conditional evaluation can be achieved using section tags processing lists
6519and lambdas.")
6520 (license license:gpl3+)))
6521
6522(define-public emacs-org2web
6523 (package
6524 (name "emacs-org2web")
6525 (version "0.9.1")
6526 (source (origin
6527 (method url-fetch)
6528 (uri (string-append
6529 "https://github.com/tumashu/org2web/archive/v"
6530 version ".tar.gz"))
6531 (file-name (string-append name "-" version ".tar.gz"))
6532 (sha256
6533 (base32
6534 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
6535 (build-system emacs-build-system)
6536 (propagated-inputs
6537 `(("emacs-dash" ,emacs-dash)
6538 ("emacs-el2org" ,emacs-el2org)
6539 ("emacs-ht" ,emacs-ht)
6540 ("emacs-mustache" ,emacs-mustache)
6541 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6542 (home-page "https://github.com/tumashu/org2web")
6543 (synopsis "Static site generator based on org-mode ")
6544 (description "Org2web is a static site generator based on org-mode,
6545which code derived from Kelvin H's org-page.")
6546 (license license:gpl2+)))
6547
6548(define-public emacs-xelb
6549 (package
6550 (name "emacs-xelb")
6551 (version "0.16")
6552 (source (origin
6553 (method url-fetch)
6554 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6555 version ".tar"))
6556 (sha256
6557 (base32
6558 "03wsr1jr7f7zfd80h864rd4makwh4widdnj1kjv2xyjwdgap9rl8"))))
6559 (build-system emacs-build-system)
6560 ;; The following functions and variables needed by emacs-xelb are
6561 ;; not included in emacs-minimal:
6562 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6563 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6564 ;; x-display-pixel-width, x-display-pixel-height
6565 (arguments
6566 `(#:emacs ,emacs
6567 #:phases
6568 (modify-phases %standard-phases
6569 (add-after 'unpack 'regenerate-el-files
6570 (lambda* (#:key inputs #:allow-other-keys)
6571 (invoke "make"
6572 (string-append "PROTO_PATH="
6573 (assoc-ref inputs "xcb-proto")
6574 "/share/xcb")
6575 (string-append "EMACS_BIN="
6576 (assoc-ref inputs "emacs")
6577 "/bin/emacs -Q")))))))
6578 (native-inputs `(("xcb-proto" ,xcb-proto)))
6579 (home-page "https://github.com/ch11ng/xelb")
6580 (synopsis "X protocol Emacs Lisp binding")
6581 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6582X11 protocol based on the XML description files from the XCB project. It
6583features an object-oriented API and permits a certain degree of concurrency.
6584It should enable you to implement low-level X11 applications.")
6585 (license license:gpl3+)))
6586
6587(define-public emacs-exwm
6588 (package
6589 (name "emacs-exwm")
6590 (version "0.21")
6591 (synopsis "Emacs X window manager")
6592 (source (origin
6593 (method url-fetch)
6594 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6595 version ".tar"))
6596 (sha256
6597 (base32
6598 "07ng1pgsnc3isfsyzh2gfc7391p9il8lb5xqf1z6yqn20w7k6xzj"))))
6599 (build-system emacs-build-system)
6600 (propagated-inputs
6601 `(("emacs-xelb" ,emacs-xelb)))
6602 (inputs
6603 `(("xhost" ,xhost)
6604 ("dbus" ,dbus)))
6605 ;; The following functions and variables needed by emacs-exwm are
6606 ;; not included in emacs-minimal:
6607 ;; scroll-bar-mode, fringe-mode
6608 ;; x-display-pixel-width, x-display-pixel-height
6609 (arguments
6610 `(#:emacs ,emacs
6611 #:phases
6612 (modify-phases %standard-phases
6613 (add-after 'build 'install-xsession
6614 (lambda* (#:key inputs outputs #:allow-other-keys)
6615 (let* ((out (assoc-ref outputs "out"))
6616 (xsessions (string-append out "/share/xsessions"))
6617 (bin (string-append out "/bin"))
6618 (exwm-executable (string-append bin "/exwm")))
6619 ;; Add a .desktop file to xsessions
6620 (mkdir-p xsessions)
6621 (mkdir-p bin)
6622 (with-output-to-file
6623 (string-append xsessions "/exwm.desktop")
6624 (lambda _
6625 (format #t "[Desktop Entry]~@
6626 Name=~a~@
6627 Comment=~a~@
6628 Exec=~a~@
6629 TryExec=~@*~a~@
6630 Type=Application~%" ,name ,synopsis exwm-executable)))
6631 ;; Add a shell wrapper to bin
6632 (with-output-to-file exwm-executable
6633 (lambda _
6634 (format #t "#!~a ~@
6635 ~a +SI:localuser:$USER ~@
6636 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6637 (string-append (assoc-ref inputs "bash") "/bin/sh")
6638 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6639 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6640 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6641 '(cond
6642 ((file-exists-p "~/.exwm")
6643 (load-file "~/.exwm"))
6644 ((not (featurep 'exwm))
6645 (require 'exwm)
6646 (require 'exwm-config)
6647 (exwm-config-default)
6648 (message (concat "exwm configuration not found. "
6649 "Falling back to default configuration...")))))))
6650 (chmod exwm-executable #o555)
6651 #t))))))
6652 (home-page "https://github.com/ch11ng/exwm")
6653 (description "EXWM is a full-featured tiling X window manager for Emacs
6654built on top of XELB.")
6655 (license license:gpl3+)))
6656
6657(define-public emacs-switch-window
6658 (package
6659 (name "emacs-switch-window")
6660 (version "1.6.2")
6661 (source
6662 (origin
6663 (method git-fetch)
6664 (uri (git-reference
6665 (url "https://github.com/dimitri/switch-window")
6666 (commit (string-append "v" version))))
6667 (file-name (git-file-name name version))
6668 (sha256
6669 (base32
6670 "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"))))
6671 (build-system emacs-build-system)
6672 (home-page "https://github.com/dimitri/switch-window")
6673 (synopsis "Emacs window switch tool")
6674 (description "Switch-window is an emacs window switch tool, which
6675offer a visual way to choose a window to switch to, delete, split or
6676other operations.")
6677 (license license:wtfpl2)))
6678
6679(define-public emacs-exwm-x
6680 (package
6681 (name "emacs-exwm-x")
6682 (version "1.9.0")
6683 (synopsis "Derivative window manager based on EXWM")
6684 (source
6685 (origin
6686 (method git-fetch)
6687 (uri (git-reference
6688 (url "https://github.com/tumashu/exwm-x")
6689 (commit (string-append "v" version))))
6690 (file-name (git-file-name name version))
6691 (sha256
6692 (base32
6693 "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4"))))
6694 (build-system emacs-build-system)
6695 (propagated-inputs
6696 `(("emacs-exwm" ,emacs-exwm)
6697 ("emacs-switch-window" ,emacs-switch-window)
6698 ("emacs-ivy" ,emacs-ivy)
6699 ("emacs-use-package" ,emacs-use-package)))
6700 (inputs
6701 `(("xhost" ,xhost)
6702 ("dbus" ,dbus)))
6703 ;; Need emacs instead of emacs-minimal,
6704 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6705 (arguments
6706 `(#:emacs ,emacs
6707 #:phases
6708 (modify-phases %standard-phases
6709 (add-after 'build 'install-xsession
6710 (lambda* (#:key inputs outputs #:allow-other-keys)
6711 (let* ((out (assoc-ref outputs "out"))
6712 (xsessions (string-append out "/share/xsessions"))
6713 (bin (string-append out "/bin"))
6714 (exwm-executable (string-append bin "/exwm-x")))
6715 ;; Add a .desktop file to xsessions
6716 (mkdir-p xsessions)
6717 (mkdir-p bin)
6718 (with-output-to-file
6719 (string-append xsessions "/exwm-x.desktop")
6720 (lambda _
6721 (format #t "[Desktop Entry]~@
6722 Name=~a~@
6723 Comment=~a~@
6724 Exec=~a~@
6725 TryExec=~@*~a~@
6726 Type=Application~%" ,name ,synopsis exwm-executable)))
6727 ;; Add a shell wrapper to bin
6728 (with-output-to-file exwm-executable
6729 (lambda _
6730 (format #t "#!~a ~@
6731 ~a +SI:localuser:$USER ~@
6732 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6733 (string-append (assoc-ref inputs "bash") "/bin/sh")
6734 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6735 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6736 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6737 '(require 'exwmx-loader))))
6738 (chmod exwm-executable #o555)
6739 #t))))))
6740 (home-page "https://github.com/tumashu/exwm-x")
6741 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6742on mouse-control.")
6743 (license license:gpl3+)))
6744
6745(define-public emacs-gnuplot
6746 (package
6747 (name "emacs-gnuplot")
6748 (version "0.7.0")
6749 (source
6750 (origin
6751 (method url-fetch)
6752 (uri (string-append
6753 "https://github.com/bruceravel/gnuplot-mode/archive/"
6754 version ".tar.gz"))
6755 (file-name (string-append name "-" version ".tar.gz"))
6756 (sha256
6757 (base32
6758 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6759 (build-system gnu-build-system)
6760 (native-inputs `(("emacs" ,emacs-minimal)))
6761 (arguments
6762 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6763 "/gnuplot-" version)))
6764 `(#:modules ((guix build gnu-build-system)
6765 (guix build utils)
6766 (guix build emacs-utils))
6767 #:imported-modules (,@%gnu-build-system-modules
6768 (guix build emacs-utils))
6769 #:configure-flags
6770 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6771 "/bin/emacs")
6772 (string-append "--with-lispdir=" %output ,elisp-dir))
6773 #:phases
6774 (modify-phases %standard-phases
6775 (add-after 'install 'generate-autoloads
6776 (lambda* (#:key outputs #:allow-other-keys)
6777 (emacs-generate-autoloads
6778 "gnuplot"
6779 (string-append (assoc-ref outputs "out") ,elisp-dir))
6780 #t))))))
6781 (home-page "https://github.com/bruceravel/gnuplot-mode")
6782 (synopsis "Emacs major mode for interacting with gnuplot")
6783 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6784with gnuplot.")
6785 (license license:gpl2+)))
6786
6787(define-public emacs-transpose-frame
6788 (package
6789 (name "emacs-transpose-frame")
6790 (version "0.1.0")
6791 (source
6792 (origin
6793 (method url-fetch)
6794 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
6795 (file-name (string-append "transpose-frame-" version ".el"))
6796 (sha256
6797 (base32
6798 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6799 (build-system emacs-build-system)
6800 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6801 (synopsis "Transpose window arrangement in current frame")
6802 (description "@code{emacs-transpose-frame} provides some interactive
6803functions which allows users to transpose windows arrangement in currently
6804selected frame.")
6805 (license license:bsd-2)))
6806
6807(define-public emacs-key-chord
6808 (package
6809 (name "emacs-key-chord")
6810 (version "0.6")
6811 (source
6812 (origin
6813 (method url-fetch)
6814 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
6815 (file-name (string-append "key-chord-" version ".el"))
6816 (sha256
6817 (base32
6818 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
6819 (build-system emacs-build-system)
6820 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
6821 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
6822 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
6823mode for binding key chords to commands. A key chord is defined as two keys
6824pressed simultaneously or a single key quickly pressed twice.")
6825 (license license:gpl2+)))
6826
6827(define-public emacs-evil-surround
6828 (package
6829 (name "emacs-evil-surround")
6830 (version "1.0.0")
6831 (source
6832 (origin
6833 (method url-fetch)
6834 (uri (string-append
6835 "https://github.com/timcharper/evil-surround/archive/v"
6836 version ".tar.gz"))
6837 (file-name (string-append name "-" version ".tar.gz"))
6838 (sha256
6839 (base32
6840 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
6841 (build-system emacs-build-system)
6842 (propagated-inputs
6843 `(("emacs-evil" ,emacs-evil)))
6844 (home-page "https://github.com/timcharper/evil-surround")
6845 (synopsis "Easily modify surrounding parantheses and quotes")
6846 (description "@code{emacs-evil-surround} allows easy deletion, change and
6847addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
6848 (license license:gpl3+)))
6849
6850(define-public emacs-evil-commentary
6851 (package
6852 (name "emacs-evil-commentary")
6853 (version "2.1.1")
6854 (source
6855 (origin
6856 (method url-fetch)
6857 (uri (string-append
6858 "https://github.com/linktohack/evil-commentary/archive/v"
6859 version ".tar.gz"))
6860 (file-name (string-append name "-" version ".tar.gz"))
6861 (sha256
6862 (base32
6863 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
6864 (build-system emacs-build-system)
6865 (propagated-inputs
6866 `(("emacs-evil" ,emacs-evil)))
6867 (home-page "https://github.com/linktohack/evil-commentary")
6868 (synopsis "Comment out code in evil mode")
6869 (description "@code{emacs-evil-commentary} adds keybindings to easily
6870comment out lines of code in evil mode. It provides @code{gcc} to comment out
6871lines, and @code{gc} to comment out the target of a motion.")
6872 (license license:gpl3+)))
6873
6874;; Tests for emacs-ansi have a circular dependency with ert-runner, and
6875;; therefore cannot be run
6876(define-public emacs-ansi
6877 (package
6878 (name "emacs-ansi")
6879 (version "0.4.1")
6880 (source
6881 (origin
6882 (method url-fetch)
6883 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
6884 version ".tar.gz"))
6885 (file-name (string-append name "-" version ".tar.gz"))
6886 (sha256
6887 (base32
6888 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
6889 (build-system emacs-build-system)
6890 (propagated-inputs
6891 `(("emacs-dash" ,emacs-dash)
6892 ("emacs-s" ,emacs-s)))
6893 (home-page "https://github.com/rejeep/ansi.el")
6894 (synopsis "Convert strings to ANSI")
6895 (description "@code{emacs-ansi} defines functions that turns simple
6896strings to ANSI strings. Turning a string into an ANSI string can be to add
6897color to a text, add color in the background of a text or adding a style, such
6898as bold, underscore or italic.")
6899 (license license:gpl3+)))
6900
6901;; Tests for emacs-commander have a circular dependency with ert-runner, and
6902;; therefore cannot be run
6903(define-public emacs-commander
6904 (package
6905 (name "emacs-commander")
6906 (version "0.7.0")
6907 (source
6908 (origin
6909 (method url-fetch)
6910 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
6911 version ".tar.gz"))
6912 (file-name (string-append name "-" version ".tar.gz"))
6913 (sha256
6914 (base32
6915 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
6916 (build-system emacs-build-system)
6917 (propagated-inputs
6918 `(("emacs-dash" ,emacs-dash)
6919 ("emacs-f" ,emacs-f)
6920 ("emacs-s" ,emacs-s)))
6921 (home-page "https://github.com/rejeep/commander.el")
6922 (synopsis "Emacs command line parser")
6923 (description "@code{emacs-commander} provides command line parsing for
6924Emacs.")
6925 (license license:gpl3+)))
6926
6927;; Tests for ert-runner have a circular dependency with ecukes, and therefore
6928;; cannot be run
6929(define-public emacs-ert-runner
82328c01
MC
6930 (let ((version "0.7.0")
6931 (revision "1")
6932 (commit "90b8fdd5970ef76a4649be60003b37f82cdc1a65"))
6933 (package
6934 (name "emacs-ert-runner")
6935 (version (git-version "0.7.0" revision commit))
6936 (source
6937 (origin
6938 (method git-fetch)
6939 (uri (git-reference
6940 (url "https://github.com/rejeep/ert-runner.el.git")
6941 (commit commit)))
6942 (file-name (git-file-name name version))
6943 (sha256
6944 (base32
6945 "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz"))))
6946 (build-system emacs-build-system)
6947 (inputs
6948 `(("emacs-ansi" ,emacs-ansi)
6949 ("emacs-commander" ,emacs-commander)
6950 ("emacs-dash" ,emacs-dash)
6951 ("emacs-f" ,emacs-f)
6952 ("emacs-s" ,emacs-s)
6953 ("emacs-shut-up" ,emacs-shut-up)))
6954 (arguments
6955 `(#:phases
6956 (modify-phases %standard-phases
6957 (add-after 'install 'install-executable
6958 (lambda* (#:key inputs outputs #:allow-other-keys)
f9dff4f7
MC
6959 (let ((out (assoc-ref outputs "out"))
6960 (source-directory (string-append
6961 (getenv "TMPDIR") "/source")))
82328c01
MC
6962 (substitute* "bin/ert-runner"
6963 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
6964 (string-append "ERT_RUNNER=\"" out
6965 "/share/emacs/site-lisp/guix.d/ert-runner-"
6966 ,version)))
6967 (install-file "bin/ert-runner" (string-append out "/bin"))
6968 (wrap-program (string-append out "/bin/ert-runner")
6969 (list "EMACSLOADPATH" ":" 'prefix
f9dff4f7
MC
6970 ;; Do not capture the transient source directory in
6971 ;; the wrapper.
6972 (delete source-directory
6973 (string-split (getenv "EMACSLOADPATH") #\:))))
82328c01
MC
6974 #t))))
6975 #:include (cons* "^reporters/.*\\.el$" %default-include)))
6976 (home-page "https://github.com/rejeep/ert-runner.el")
6977 (synopsis "Opinionated Ert testing workflow")
6978 (description "@code{ert-runner} is a tool for Emacs projects tested
eeb883cb
RW
6979using ERT. It assumes a certain test structure setup and can therefore make
6980running tests easier.")
82328c01 6981 (license license:gpl3+))))
eeb883cb
RW
6982
6983(define-public ert-runner
6984 (deprecated-package "ert-runner" emacs-ert-runner))
6985
6986(define-public emacs-disable-mouse
6987 (package
6988 (name "emacs-disable-mouse")
6989 (version "0.2")
6990 (source
6991 (origin
6992 (method url-fetch)
6993 (uri (string-append
6994 "https://github.com/purcell/disable-mouse/archive/"
6995 version ".tar.gz"))
6996 (file-name (string-append name "-" version ".tar.gz"))
6997 (sha256
6998 (base32
6999 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
7000 (build-system emacs-build-system)
7001 (home-page "https://github.com/purcell/disable-mouse")
7002 (synopsis "Disable mouse commands globally")
7003 (description
7004 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
7005pair of minor modes which suppress all mouse events by intercepting them and
7006running a customisable handler command (@code{ignore} by default). ")
7007 (license license:gpl3+)))
7008
7009(define-public emacs-json-reformat
7010 (package
7011 (name "emacs-json-reformat")
7012 (version "0.0.6")
7013 (source
7014 (origin
7015 (method url-fetch)
7016 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
7017 version ".tar.gz"))
7018 (file-name (string-append name "-" version ".tar.gz"))
7019 (sha256
7020 (base32
7021 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
7022 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
7023 (build-system emacs-build-system)
7024 (propagated-inputs
7025 `(("emacs-undercover" ,emacs-undercover)))
7026 (native-inputs
7027 `(("emacs-dash" ,emacs-dash)
7028 ("emacs-shut-up" ,emacs-shut-up)
7029 ("ert-runner" ,emacs-ert-runner)))
7030 (arguments
7031 `(#:tests? #t
7032 #:test-command '("ert-runner")))
7033 (home-page "https://github.com/gongo/json-reformat")
7034 (synopsis "Reformatting tool for JSON")
7035 (description "@code{json-reformat} provides a reformatting tool for
7036@url{http://json.org/, JSON}.")
7037 (license license:gpl3+)))
7038
7039(define-public emacs-json-snatcher
7040 (package
7041 (name "emacs-json-snatcher")
7042 (version "1.0.0")
7043 (source
7044 (origin
7045 (method url-fetch)
7046 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
7047 version ".tar.gz"))
7048 (file-name (string-append name "-" version ".tar.gz"))
7049 (sha256
7050 (base32
7051 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
7052 (build-system emacs-build-system)
7053 (home-page "https://github.com/sterlingg/json-snatcher")
7054 (synopsis "Grabs the path to JSON values in a JSON file")
7055 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
7056a @url{http://json.org/, JSON} file.")
7057 (license license:gpl3+)))
7058
7059(define-public emacs-json-mode
7060 (package
7061 (name "emacs-json-mode")
7062 (version "1.7.0")
7063 (source
7064 (origin
7065 (method url-fetch)
7066 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
7067 "v" version ".tar.gz"))
7068 (file-name (string-append name "-" version ".tar.gz"))
7069 (sha256
7070 (base32
7071 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
7072 (build-system emacs-build-system)
7073 (propagated-inputs
7074 `(("emacs-json-reformat" ,emacs-json-reformat)
7075 ("emacs-json-snatcher" ,emacs-json-snatcher)))
7076 (home-page "https://github.com/joshwnj/json-mode")
7077 (synopsis "Major mode for editing JSON files")
7078 (description "@code{json-mode} extends the builtin js-mode syntax
7079highlighting.")
7080 (license license:gpl3+)))
7081
7082(define-public emacs-restclient
7083 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
7084 (revision "1")) ;Guix package revision,
7085 ;upstream doesn't have official releases
7086 (package
7087 (name "emacs-restclient")
7088 (version (string-append revision "."
7089 (string-take commit 7)))
7090 (source (origin
7091 (method git-fetch)
7092 (uri (git-reference
7093 (url "https://github.com/pashky/restclient.el.git")
7094 (commit commit)))
7095 (sha256
7096 (base32
7097 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
7098 (file-name (git-file-name name version))))
7099 (build-system emacs-build-system)
7100 (propagated-inputs
7101 `(("emacs-helm" ,emacs-helm)))
7102 (home-page "https://github.com/pashky/restclient.el")
7103 (synopsis "Explore and test HTTP REST webservices")
7104 (description
7105 "This tool allows for testing and exploration of HTTP REST Web services
7106from within Emacs. Restclient runs queries from a plan-text query sheet,
7107displays results pretty-printed in XML or JSON with @code{restclient-mode}")
7108 (license license:public-domain))))
7109
7110(define-public emacs-eimp
7111 (let ((version "1.4.0")
7112 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
7113 (revision "1"))
7114 (package
7115 (name "emacs-eimp")
7116 (version (git-version version revision commit))
7117 (source
7118 (origin
7119 (method git-fetch)
7120 (uri (git-reference
7121 (url "https://github.com/nicferrier/eimp.git")
7122 (commit commit)))
7123 (file-name (git-file-name name version))
7124 (sha256
7125 (base32
7126 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
7127 (build-system emacs-build-system)
7128 (arguments
7129 `(#:phases
7130 (modify-phases %standard-phases
7131 (add-after 'unpack 'configure
7132 (lambda* (#:key inputs #:allow-other-keys)
7133 (let ((imagemagick (assoc-ref inputs "imagemagick")))
7134 ;; eimp.el is read-only in git.
7135 (chmod "eimp.el" #o644)
7136 (emacs-substitute-variables "eimp.el"
7137 ("eimp-mogrify-program"
7138 (string-append imagemagick "/bin/mogrify"))))
7139 #t)))))
7140 (inputs
7141 `(("imagemagick" ,imagemagick)))
7142 (home-page "https://github.com/nicferrier/eimp")
7143 (synopsis "Interactive image manipulation utility for Emacs")
7144 (description "@code{emacs-eimp} allows interactive image manipulation
7145from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
7146the actual transformations.")
7147 (license license:gpl2+))))
7148
7149(define-public emacs-dired-hacks
7150 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
7151 (revision "1"))
7152 (package
7153 (name "emacs-dired-hacks")
7154 (version (string-append "0.0.1-" revision "."
7155 (string-take commit 7)))
7156 (source (origin
7157 (method git-fetch)
7158 (uri (git-reference
7159 (url "https://github.com/Fuco1/dired-hacks.git")
7160 (commit commit)))
7161 (file-name (string-append name "-" version "-checkout"))
7162 (sha256
7163 (base32
7164 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
7165 (build-system emacs-build-system)
7166 (propagated-inputs
7167 `(("emacs-dash" ,emacs-dash)
7168 ("emacs-eimp" ,emacs-eimp)
7169 ("emacs-f" ,emacs-f)
7170 ("emacs-s" ,emacs-s)))
7171 (home-page "https://github.com/Fuco1/dired-hacks")
7172 (synopsis
7173 "Collection of useful dired additions")
7174 (description
7175 "Collection of Emacs dired mode additions:
7176@itemize
7177@item dired-avfs
7178@item dired-columns
7179@item dired-filter
7180@item dired-hacks-utils
7181@item dired-images
7182@item dired-list
7183@item dired-narrow
7184@item dired-open
7185@item dired-rainbow
7186@item dired-ranger
7187@item dired-subtree
7188@item dired-tagsistant
7189@end itemize\n")
7190 (license license:gpl3+))))
7191
7192(define-public emacs-dired-sidebar
7193 (let ((commit "06bd0d40bab812c61a668129daf29ba359424454")
7194 (revision "0"))
7195 (package
7196 (name "emacs-dired-sidebar")
7197 (home-page "https://github.com/jojojames/dired-sidebar")
7198 (version (git-version "0.0.1" revision commit))
7199 (source (origin
7200 (method git-fetch)
7201 (uri (git-reference (url home-page) (commit commit)))
7202 (sha256
7203 (base32
7204 "0lvwvq6sl80sha9fq5m4568sg534dhmifyjqw75bqddcbf3by84x"))))
7205 (build-system emacs-build-system)
7206 (propagated-inputs
7207 `(("emacs-dired-subtree" ,emacs-dired-hacks)))
7208 (synopsis "Sidebar for Emacs using Dired")
7209 (description
7210 "This package provides a sidebar for Emacs similar to @code{NeoTree}
7211or @code{treemacs}, but leveraging @code{Dired} to do the job of display.")
7212 (license license:gpl3+))))
7213
7214(define-public emacs-which-key
7215 (package
7216 (name "emacs-which-key")
7217 (version "3.3.0")
7218 (source
7219 (origin
7220 (method url-fetch)
7221 (uri (string-append
7222 "https://github.com/justbur/emacs-which-key/archive/v"
7223 version ".tar.gz"))
7224 (sha256
7225 (base32
7226 "1lsj314111cp2hjjwnv3f46ws1za6bm39rgy3l19044xf6a68j5w"))
7227 (file-name (string-append name "-" version ".tar.gz"))))
7228 (build-system emacs-build-system)
7229 (arguments
7230 `(#:tests? #t
7231 #:test-command '("emacs" "--batch"
7232 "-l" "which-key-tests.el"
7233 "-f" "ert-run-tests-batch-and-exit")))
7234 (home-page "https://github.com/justbur/emacs-which-key")
7235 (synopsis "Display available key bindings in popup")
7236 (description
7237 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
7238bindings following your currently entered incomplete command (a prefix) in a
7239popup. For example, after enabling the minor mode if you enter C-x and wait
7240for the default of 1 second, the minibuffer will expand with all of the
7241available key bindings that follow C-x (or as many as space allows given your
7242settings).")
7243 (license license:gpl3+)))
7244
7245(define-public emacs-ws-butler
7246 (package
7247 (name "emacs-ws-butler")
7248 (version "0.6")
7249 (source (origin
7250 (method git-fetch)
7251 (uri (git-reference
7252 (url "https://github.com/lewang/ws-butler.git")
7253 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
7254 (file-name (string-append name "-" version "-checkout"))
7255 (sha256
7256 (base32
7257 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
7258 (build-system emacs-build-system)
7259 (native-inputs
7260 `(("ert-runner" ,emacs-ert-runner)))
7261 (arguments
7262 `(#:tests? #t
7263 #:test-command '("ert-runner" "tests")))
7264 (home-page "https://github.com/lewang/ws-butler")
7265 (synopsis "Trim spaces from end of lines")
7266 (description
7267 "This Emacs package automatically and unobtrusively trims whitespace
7268characters from end of lines.")
7269 (license license:gpl3+)))
7270
7271(define-public emacs-org-edit-latex
7272 (package
7273 (name "emacs-org-edit-latex")
7274 (version "0.8.0")
7275 (source
7276 (origin
7277 (method url-fetch)
7278 (uri (string-append
7279 "https://github.com/et2010/org-edit-latex/archive/v"
7280 version ".tar.gz"))
7281 (file-name (string-append name "-" version ".tar.gz"))
7282 (sha256
7283 (base32
7284 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
7285 (build-system emacs-build-system)
7286 (propagated-inputs
7287 `(("emacs-auctex" ,emacs-auctex)
7288 ;; The version of org in Emacs 25.2 is not sufficient, because the
7289 ;; `org-latex-make-preamble' function is required.
7290 ("emacs-org" ,emacs-org)))
7291 (home-page "https://github.com/et2010/org-edit-latex")
7292 (synopsis "Edit a latex fragment just like editing a src block")
7293 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
7294It lets you edit a latex fragment in a dedicated buffer just like editing a
7295src block.")
7296 (license license:gpl3+)))
7297
7298(define-public emacs-emamux
7299 (package
7300 (name "emacs-emamux")
7301 (version "0.14")
7302 (source (origin
7303 (method url-fetch)
7304 (uri (string-append
7305 "https://github.com/syohex/emacs-emamux/archive/"
7306 version ".tar.gz"))
7307 (file-name (string-append name "-" version ".tar.gz"))
7308 (sha256
7309 (base32
7310 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
7311 (build-system emacs-build-system)
7312 (home-page "https://github.com/syohex/emacs-emamux")
7313 (synopsis "Manipulate Tmux from Emacs")
7314 (description
7315 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7316multiplexer.")
7317 (license license:gpl3+)))
7318
7319(define-public emacs-rpm-spec-mode
7320 (package
7321 (name "emacs-rpm-spec-mode")
7322 (version "0.16")
7323 (source
7324 (origin
7325 (method url-fetch)
7326 ;; URI has the Fedora release number instead of the version
7327 ;; number. This will have to updated manually every new release.
7328 (uri (string-append
7329 "https://src.fedoraproject.org/cgit/rpms"
7330 "/emacs-rpm-spec-mode.git/snapshot"
7331 "/emacs-rpm-spec-mode-f26.tar.gz"))
7332 (sha256
7333 (base32
7334 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7335 (build-system emacs-build-system)
7336 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7337 (synopsis "Emacs major mode for editing RPM spec files")
7338 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7339editing RPM spec files.")
7340 (license license:gpl2+)))
7341
7342(define-public emacs-git-messenger
7343 (package
7344 (name "emacs-git-messenger")
7345 (version "0.18")
7346 (source
7347 (origin
7348 (method url-fetch)
7349 (uri (string-append
7350 "https://github.com/syohex/emacs-git-messenger/archive/"
7351 version ".tar.gz"))
7352 (file-name (string-append name "-" version ".tar.gz"))
7353 (sha256
7354 (base32
7355 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
7356 (build-system emacs-build-system)
7357 (propagated-inputs
7358 `(("emacs-popup" ,emacs-popup)))
7359 (arguments
7360 `(#:tests? #t
7361 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7362 "-f" "ert-run-tests-batch-and-exit")))
7363 (home-page "https://github.com/syohex/emacs-git-messenger")
7364 (synopsis "Popup commit message at current line")
7365 (description "@code{emacs-git-messenger} provides
7366@code{git-messenger:popup-message}, a function that when called, will popup
7367the last git commit message for the current line. This uses git-blame
7368internally.")
7369 (license license:gpl3+)))
7370
7371(define-public emacs-gitpatch
7372 (package
7373 (name "emacs-gitpatch")
7374 (version "0.5.0")
7375 (source
7376 (origin
7377 (method url-fetch)
7378 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
7379 "v" version ".tar.gz"))
7380 (file-name (string-append name "-" version ".tar.gz"))
7381 (sha256
7382 (base32
7383 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
7384 (build-system emacs-build-system)
7385 (home-page "https://github.com/tumashu/gitpatch")
7386 (synopsis "Mail git patch from Emacs")
7387 (description "@code{emacs-gitpatch} lets users easily send git patches,
7388created by @code{git format-patch}, from @code{magit}, @code{dired} and
7389@code{ibuffer} buffers.")
7390 (license license:gpl3+)))
7391
7392(define-public emacs-erc-hl-nicks
7393 (package
7394 (name "emacs-erc-hl-nicks")
7395 (version "1.3.3")
7396 (source
7397 (origin
7398 (method url-fetch)
7399 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7400 "/archive/" version ".tar.gz"))
7401 (file-name (string-append name "-" version ".tar.gz"))
7402 (sha256
7403 (base32
7404 "1a1r2kc3688g8c2ybkpwh88kgmnqhg3h3032g2yn4zr9m0n3vpkr"))))
7405 (build-system emacs-build-system)
7406 (synopsis "Nickname highlighting for Emacs ERC")
7407 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7408client for Emacs. The main features are:
7409@itemize
7410@item Auto-colorizes nicknames without having to specify colors
7411@item Ignores certain characters that IRC clients add to nicknames to avoid
7412duplicates (nickname, nickname’, nickname\", etc.)
7413@item Attempts to produce colors with a sufficient amount of contrast between
7414the nick color and the background color
7415@end itemize\n")
7416 (home-page "https://github.com/leathekd/erc-hl-nicks")
7417 (license license:gpl3+)))
7418
7419(define-public emacs-engine-mode
7420 (package
7421 (name "emacs-engine-mode")
7422 (version "2.0.0")
7423 (source
7424 (origin
7425 (method url-fetch)
7426 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
7427 "v" version ".tar.gz"))
7428 (file-name (string-append name "-" version ".tar.gz"))
7429 (sha256
7430 (base32
7431 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
7432 (build-system emacs-build-system)
7433 (synopsis "Minor mode for defining and querying search engines")
7434 (description "@code{engine-mode} is a global minor mode for Emacs. It
7435enables you to easily define search engines, bind them to keybindings, and
7436query them from the comfort of your editor.")
7437 (home-page "https://github.com/hrs/engine-mode")
7438 (license license:gpl3+)))
7439
7440(define-public emacs-prop-menu
7441 (package
7442 (name "emacs-prop-menu")
7443 (version "0.1.2")
7444 (source
7445 (origin
7446 (method url-fetch)
7447 (uri (string-append
7448 "http://stable.melpa.org/packages/prop-menu-"
7449 version ".el"))
7450 (sha256
7451 (base32
7452 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7453 (build-system emacs-build-system)
7454 (home-page
7455 "https://github.com/david-christiansen/prop-menu-el")
7456 (synopsis
7457 "Create and display a context menu based on text and overlay properties")
7458 (description
7459 "This is a library for computing context menus based on text
7460properties and overlays. The intended use is to have tools that
7461annotate source code and others that use these annotations, without
7462requiring a direct coupling between them, but maintaining
7463discoverability.
7464
7465Major modes that wish to use this library should first define an
7466appropriate value for @code{prop-menu-item-functions}. Then, they should
7467bind @code{prop-menu-by-completing-read} to an appropriate
7468key. Optionally, a mouse pop-up can be added by binding
7469@code{prop-menu-show-menu} to a mouse event.")
7470 (license license:gpl3+)))
7471
7472(define-public emacs-idris-mode
7473 (package
7474 (name "emacs-idris-mode")
7475 (version "0.9.19")
7476 (source
7477 (origin
7478 (method url-fetch)
7479 (uri (string-append
7480 "http://stable.melpa.org/packages/idris-mode-"
7481 version ".tar"))
7482 (sha256
7483 (base32
7484 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
7485 (build-system emacs-build-system)
7486 (propagated-inputs
7487 `(("emacs-prop-menu" ,emacs-prop-menu)))
7488 (home-page
7489 "https://github.com/idris-hackers/idris-mode")
7490 (synopsis "Major mode for editing Idris code")
7491 (description
7492 "This is an Emacs mode for editing Idris code. It requires the latest
7493version of Idris, and some features may rely on the latest Git version of
7494Idris.")
7495 (license license:gpl3+)))
7496
7497(define-public emacs-browse-at-remote
7498 (package
7499 (name "emacs-browse-at-remote")
7500 (version "0.10.0")
7501 (source
7502 (origin
7503 (method url-fetch)
7504 (uri (string-append
7505 "https://github.com/rmuslimov/browse-at-remote/archive/"
7506 version ".tar.gz"))
7507 (file-name (string-append name "-" version ".tar.gz"))
7508 (sha256
7509 (base32
7510 "0ymslsp6i1naw25zckv25bf4aaq6qwkbkn95qyzlwg869l802686"))))
7511 (build-system emacs-build-system)
7512 (propagated-inputs
7513 `(("emacs-f" ,emacs-f)
7514 ("emacs-s" ,emacs-s)))
7515 (native-inputs
7516 `(("ert-runner" ,emacs-ert-runner)))
7517 (arguments
7518 `(#:tests? #t
7519 #:test-command '("ert-runner")))
7520 (home-page "https://github.com/rmuslimov/browse-at-remote")
7521 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7522 (description
7523 "This Emacs package allows you to open a target page on
7524github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7525It supports dired buffers and opens them in tree mode at destination.")
7526 (license license:gpl3+)))
7527
7528(define-public emacs-tiny
7529 (package
7530 (name "emacs-tiny")
7531 (version "0.2.1")
7532 (source
7533 (origin
7534 (method url-fetch)
7535 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7536 (sha256
7537 (base32
7538 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
7539 (build-system emacs-build-system)
7540 (home-page "https://github.com/abo-abo/tiny")
7541 (synopsis "Quickly generate linear ranges in Emacs")
7542 (description
7543 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
7544It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
7545proficiency is an advantage, since you can transform your numeric range with
7546an elisp expression.")
7547 (license license:gpl3+)))
7548
7549(define-public emacs-emojify
7550 (package
7551 (name "emacs-emojify")
7552 (version "0.4")
7553 (source
7554 (origin
7555 (method url-fetch)
7556 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7557 "releases/download/v" version "/emojify-"
7558 version ".tar"))
7559 (sha256
7560 (base32
7561 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7562 (build-system emacs-build-system)
7563 (arguments
7564 `(#:phases
7565 (modify-phases %standard-phases
7566 (add-after 'install 'install-data
7567 (lambda* (#:key outputs #:allow-other-keys)
7568 (copy-recursively "data"
7569 (string-append (assoc-ref outputs "out")
7570 "/share/emacs/site-lisp/guix.d/"
7571 "emojify-" ,version "/data"))
7572 #t)))))
7573 (propagated-inputs
7574 `(("emacs-ht" ,emacs-ht)))
7575 (home-page "https://github.com/iqbalansari/emacs-emojify")
7576 (synopsis "Display emojis in Emacs")
7577 (description "This package displays emojis in Emacs similar to how Github,
7578Slack, and other websites do. It can display plain ASCII like @code{:)} as
7579well as Github-style emojis like @code{:smile:}. It provides a minor mode
7580@code{emojify-mode} to enable the display of emojis in a buffer.")
7581 (license license:gpl3+)))
7582
7583(define-public emacs-websocket
7584 (package
7585 (name "emacs-websocket")
7586 (version "1.10")
7587 (source
7588 (origin
7589 (method git-fetch)
7590 (uri (git-reference
7591 (url "https://github.com/ahyatt/emacs-websocket.git")
7592 (commit version)))
7593 (file-name (string-append name "-" version "-checkout"))
7594 (sha256
7595 (base32
7596 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
7597 (build-system emacs-build-system)
7598 (home-page "http://elpa.gnu.org/packages/websocket.html")
7599 (synopsis "Emacs WebSocket client and server")
7600 (description "This is an Elisp library for WebSocket clients to talk to
7601WebSocket servers, and for WebSocket servers to accept connections from
7602WebSocket clients. This library is designed to be used by other library
7603writers, to write applications that use WebSockets, and is not useful by
7604itself.")
7605 (license license:gpl3+)))
7606
7607(define-public emacs-oauth2
7608 (package
7609 (name "emacs-oauth2")
7610 (version "0.11")
7611 (source
7612 (origin
7613 (method url-fetch)
7614 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7615 version ".el"))
7616 (sha256
7617 (base32
7618 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7619 (build-system emacs-build-system)
7620 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7621 (synopsis "OAuth 2.0 authorization protocol implementation")
7622 (description
7623 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7624The main entry point is @code{oauth2-auth-and-store} which will return a token
7625structure. This token structure can be then used with
7626@code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
7627retrieve any data that need OAuth authentication to be accessed. If the token
7628needs to be refreshed, the code handles it automatically and stores the new
7629value of the access token.")
7630 (license license:gpl3+)))
7631
7632(define-public emacs-circe
7633 (package
7634 (name "emacs-circe")
7635 (version "2.10")
7636 (source
7637 (origin
7638 (method git-fetch)
7639 (uri (git-reference
7640 (url "https://github.com/jorgenschaefer/circe.git")
7641 (commit (string-append "v" version))))
7642 (file-name (git-file-name name version))
7643 (sha256
7644 (base32
7645 "10gi14kwxd81blddpvqh95lgmpbfgp0m955naxix3bs3r6a75n4s"))))
7646 (build-system emacs-build-system)
7647 (arguments
7648 `(#:tests? #t
7649 #:test-command '("buttercup" "-L" ".")
7650 #:phases
7651 (modify-phases %standard-phases
7652 ;; The HOME environment variable should be set to an existing
7653 ;; directory for the tests to succeed.
7654 (add-before 'check 'set-home
7655 (lambda _
7656 (setenv "HOME" "/tmp")
7657 #t)))))
7658 (native-inputs
7659 `(("emacs-buttercup" ,emacs-buttercup)))
7660 ;; In order to securely connect to an IRC server using TLS, Circe requires
7661 ;; the GnuTLS binary.
7662 (propagated-inputs
7663 `(("gnutls" ,gnutls)))
7664 (home-page "https://github.com/jorgenschaefer/circe")
7665 (synopsis "Client for IRC in Emacs")
7666 (description "Circe is a Client for IRC in Emacs. It integrates well with
7667the rest of the editor, using standard Emacs key bindings and indicating
7668activity in channels in the status bar so it stays out of your way unless you
7669want to use it.")
7670 (license license:gpl3+)))
7671
7672(define-public emacs-tracking
7673 (package
7674 (inherit emacs-circe)
7675 (name "emacs-tracking")
7676 (arguments
7677 ;; "tracking.el" is a library extracted from Circe package. It requires
7678 ;; "shorten.el".
7679 `(#:include '("^shorten.el$" "^tracking.el$")
7680 ,@(package-arguments emacs-circe)))
7681 (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking")
7682 (synopsis "Buffer tracking library")
7683 (description "@code{tracking.el} provides a way for different modes to
7684notify the user that a buffer needs attention. The user then can cycle
7685through them using @key{C-c C-SPC}.")
7686 (license license:gpl3+)))
7687
7688(define-public emacs-slack
7689 (let ((commit "99a57501629a0329a9ca090c1ea1296462eda02d")
7690 (revision "5"))
7691 (package
7692 (name "emacs-slack")
7693 (version (git-version "0.0.2" revision commit))
7694 (source (origin
7695 (method git-fetch)
7696 (uri (git-reference
7697 (url "https://github.com/yuya373/emacs-slack.git")
7698 (commit commit)))
7699 (file-name (git-file-name name commit))
7700 (sha256
7701 (base32
7702 "0jw1diypfw8pmzkq0napgxmfc0gqka7zcccgnw359604lr30k2z2"))))
7703 (build-system emacs-build-system)
7704 (propagated-inputs
7705 `(("emacs-alert" ,emacs-alert)
7706 ("emacs-emojify" ,emacs-emojify)
7707 ("emacs-helm" ,emacs-helm)
7708 ("emacs-request" ,emacs-request)
7709 ("emacs-websocket" ,emacs-websocket)
7710 ("emacs-oauth2" ,emacs-oauth2)
7711 ("emacs-circe" ,emacs-circe)))
7712 (home-page "https://github.com/yuya373/emacs-slack")
7713 (synopsis "Slack client for Emacs")
7714 (description "This package provides an Emacs client for the Slack
7715messaging service.")
7716 (license license:gpl3+))))
7717
7718(define-public emacs-bash-completion
7719 (package
7720 (name "emacs-bash-completion")
7721 (version "2.1.0")
7722 (source
7723 (origin
7724 (method url-fetch)
7725 (uri (string-append
7726 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7727 version ".tar.gz"))
7728 (file-name (string-append name "-" version ".tar.gz"))
7729 (sha256
7730 (base32
7731 "1z0qck3v3ra6ivacn8n04w1v33a4xn01xx860761q31qzsv3sksq"))))
7732 (inputs `(("bash" ,bash)))
7733 (build-system emacs-build-system)
7734 (arguments
7735 `(#:phases
7736 (modify-phases %standard-phases
7737 (add-before 'install 'configure
7738 (lambda* (#:key inputs #:allow-other-keys)
7739 (let ((bash (assoc-ref inputs "bash")))
7740 (emacs-substitute-variables "bash-completion.el"
7741 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7742 #t)))))
7743 (home-page "https://github.com/szermatt/emacs-bash-completion")
7744 (synopsis "Bash completion for the shell buffer")
7745 (description
7746 "@code{bash-completion} defines dynamic completion hooks for shell-mode
7747and shell-command prompts that are based on Bash completion.")
7748 (license license:gpl2+)))
7749
7750(define-public emacs-easy-kill
7751 (package
7752 (name "emacs-easy-kill")
7753 (version "0.9.3")
7754 (source (origin
7755 (method url-fetch)
7756 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7757 version ".tar"))
7758 (sha256
7759 (base32
7760 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7761 (build-system emacs-build-system)
7762 (home-page "https://github.com/leoliu/easy-kill")
7763 (synopsis "Kill and mark things easily in Emacs")
7764 (description
7765 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7766let users kill or mark things easily.")
7767 (license license:gpl3+)))
7768
7769(define-public emacs-csv-mode
7770 (package
7771 (name "emacs-csv-mode")
7772 (version "1.7")
7773 (source
7774 (origin
7775 (method url-fetch)
7776 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7777 version ".el"))
7778 (sha256
7779 (base32
7780 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7781 (build-system emacs-build-system)
7782 (home-page
7783 "http://elpa.gnu.org/packages/csv-mode.html")
7784 (synopsis
7785 "Major mode for editing comma/char separated values")
7786 (description
7787 "This Emacs package implements CSV mode, a major mode for editing records
7788in a generalized CSV (character-separated values) format.")
7789 (license license:gpl3+)))
7790
7791(define-public emacs-transmission
7792 (package
7793 (name "emacs-transmission")
7794 (version "0.12.1")
7795 (source (origin
7796 (method url-fetch)
7797 (uri (string-append
7798 "https://github.com/holomorph/transmission/archive/"
7799 version ".tar.gz"))
7800 (file-name (string-append name "-" version ".tar.gz"))
7801 (sha256
7802 (base32
7803 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
7804 (build-system emacs-build-system)
7805 (home-page "https://github.com/holomorph/transmission")
7806 (synopsis "Emacs interface to a Transmission session")
7807 (description "This package provides an Emacs interface to interact with a
7808running session of the Transmission Bittorrent client.
7809
7810Features:
7811
7812@itemize
7813@item List, add, start/stop, verify, remove torrents.
7814@item Set speed limits, ratio limits, bandwidth priorities, trackers.
7815@item Navigate to the corresponding file list, torrent info, peer info
7816contexts.
7817@item Toggle downloading and set priorities for individual files.
7818@end itemize\n")
7819 (license license:gpl3+)))
7820
7821(define-public emacs-polymode
7822 (package
7823 (name "emacs-polymode")
7824 (version "0.1.5")
7825 (source (origin
7826 (method git-fetch)
7827 (uri (git-reference
7828 (url "https://github.com/vspinu/polymode.git")
7829 (commit (string-append "v" version))))
7830 (file-name (git-file-name name version))
7831 (sha256
7832 (base32
7833 "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
7834 (build-system emacs-build-system)
7835 (arguments
7836 `(#:include (cons* "^modes/.*\\.el$" %default-include)
7837 #:phases
7838 (modify-phases %standard-phases
7839 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
7840 (lambda _
7841 (setenv "EMACSLOADPATH"
7842 (string-append (getenv "EMACSLOADPATH")
7843 ":" (getcwd) "/modes" ":")))))))
7844 (home-page "https://github.com/vspinu/polymode")
7845 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
7846 (description "Polymode is an Emacs package that offers generic support
7847for multiple major modes inside a single Emacs buffer. It is lightweight,
7848object oriented and highly extensible. Creating a new polymode typically
7849takes only a few lines of code. Polymode also provides extensible facilities
7850for external literate programming tools for exporting, weaving and tangling.")
7851 (license license:gpl3+)))
7852
7853(define-public emacs-polymode-ansible
7854 (let ((commit "b26094d029e25dc797b94254f797e7807a57e4c8"))
7855 (package
7856 (name "emacs-polymode-ansible")
7857 ;; No upstream version release yet.
7858 (version (git-version "0.1" "1" commit))
7859 (source
7860 (origin
7861 (method git-fetch)
7862 (uri (git-reference
7863 (url "https://gitlab.com/mavit/poly-ansible")
7864 (commit commit)))
7865 (file-name (git-file-name name version))
7866 (sha256
7867 (base32
7868 "055shddqibib3hx2ykwdz910nrqws40cd407mq946l2bf6v87gj6"))))
7869 (build-system emacs-build-system)
7870 (propagated-inputs
7871 `(("emacs-ansible-doc" ,emacs-ansible-doc)
7872 ("emacs-jinja2-mode" ,emacs-jinja2-mode)
7873 ("emacs-polymode" ,emacs-polymode)
7874 ("emacs-yaml-mode" ,emacs-yaml-mode)))
7875 (properties '((upstream-name . "poly-ansible")))
7876 (home-page "https://gitlab.com/mavit/poly-ansible/")
7877 (synopsis "Polymode for Ansible - Jinja2 in YAML")
7878 (description
7879 "Edit YAML files for Ansible containing embedded Jinja2 templating.")
7880 (license license:gpl3+))))
7881
7882(define-public eless
7883 (package
7884 (name "eless")
7885 (version "0.3")
7886 (source (origin
7887 (method url-fetch)
7888 (uri (string-append
7889 "https://github.com/kaushalmodi/eless/archive/"
7890 "v" version ".tar.gz"))
7891 (file-name (string-append name "-" version ".tar.gz"))
7892 (sha256
7893 (base32
7894 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
7895 (build-system trivial-build-system)
7896 (inputs
7897 `(("bash" ,bash)))
7898 (native-inputs
7899 `(("tar" ,tar)
7900 ("gzip" ,gzip)))
7901 (arguments
7902 `(#:modules ((guix build utils))
7903 #:builder
7904 (begin
7905 (use-modules (guix build utils))
7906 (setenv "PATH" (string-append
7907 (assoc-ref %build-inputs "tar") "/bin" ":"
7908 (assoc-ref %build-inputs "gzip") "/bin"))
7909 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7910 (chdir (string-append "eless" "-" ,version))
7911 (substitute* "eless" (("/usr/bin/env bash")
7912 (string-append (assoc-ref %build-inputs "bash")
7913 "/bin/bash")))
7914 (install-file "eless" (string-append %output "/bin"))
7915 (install-file "doc/eless.info" (string-append %output "/share/info"))
7916 #t)))
7917 (home-page "https://github.com/kaushalmodi/eless")
7918 (synopsis "Use Emacs as a paginator")
7919 (description "@code{eless} provides a combination of Bash script
7920and a minimal Emacs view-mode.
7921
7922Feautures:
7923
7924@itemize
7925@item Independent of a user’s Emacs config.
7926@item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
7927@item Not require an Emacs server to be already running.
7928@item Syntax highlighting.
7929@item Org-mode file rendering.
7930@item @code{man} page viewer.
7931@item Info viewer.
7932@item Dired, wdired, (batch edit symbolic links).
7933@item Colored diffs, git diff, git log, ls with auto ANSI detection.
7934@item Filter log files lines matching a regexp.
7935@item Auto-revert log files similar to @code{tail -f}.
7936@item Quickly change frame and font sizes.
7937@end itemize\n")
7938 (license license:expat)))
7939
7940(define-public emacs-evil-matchit
7941 (package
7942 (name "emacs-evil-matchit")
7943 (version "2.2.6")
7944 (source
7945 (origin
7946 (method url-fetch)
7947 (uri (string-append
7948 "https://github.com/redguardtoo/evil-matchit/archive/"
7949 version ".tar.gz"))
7950 (file-name (string-append name "-" version ".tar.gz"))
7951 (sha256
7952 (base32
7953 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
7954 (build-system emacs-build-system)
7955 (propagated-inputs
7956 `(("emacs-evil" ,emacs-evil)))
7957 (home-page "https://github.com/redguardtoo/evil-matchit")
7958 (synopsis "Vim matchit ported into Emacs")
7959 (description
7960 "@code{evil-matchit} is a minor mode for jumping between matching tags in
7961evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
7962 (license license:gpl3+)))
7963
7964(define-public emacs-evil-smartparens
7965 (package
7966 (name "emacs-evil-smartparens")
7967 (version "0.4.0")
7968 (source
7969 (origin
7970 (method url-fetch)
7971 (uri (string-append
7972 "https://github.com/expez/evil-smartparens/archive/"
7973 version ".tar.gz"))
7974 (file-name (string-append name "-" version ".tar.gz"))
7975 (sha256
7976 (base32
7977 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
7978 (build-system emacs-build-system)
7979 (propagated-inputs
7980 `(("emacs-evil" ,emacs-evil)
7981 ("emacs-smartparens" ,emacs-smartparens)))
7982 (home-page "https://github.com/expez/evil-smartparens")
7983 (synopsis "Emacs Evil integration for Smartparens")
7984 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
7985makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
7986emulates Vim features and provides Vim-like key bindings.")
7987 (license license:gpl3+)))
7988
7989(define-public emacs-evil-quickscope
7990 (package
7991 (name "emacs-evil-quickscope")
7992 (version "0.1.4")
7993 (source
7994 (origin
7995 (method url-fetch)
7996 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
7997 version ".tar.gz"))
7998 (file-name (string-append name "-" version ".tar.gz"))
7999 (sha256
8000 (base32
8001 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
8002 (build-system emacs-build-system)
8003 (propagated-inputs
8004 `(("emacs-evil" ,emacs-evil)))
8005 (arguments
8006 `(#:tests? #t
8007 #:test-command '("emacs" "--batch"
8008 "-l" "evil-quickscope-tests.el"
8009 "-f" "ert-run-tests-batch-and-exit")))
8010 (home-page "https://github.com/blorbx/evil-quickscope")
8011 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
8012 (description "@code{emacs-evil-quickscope} highlights targets for Evil
8013mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
8014port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
8015features and provides Vim-like key bindings.")
8016 (license license:gpl3+)))
8017
8018(define-public emacs-bongo
8019 (package
8020 (name "emacs-bongo")
8021 (version "1.0")
8022 (source
8023 (origin
8024 (method url-fetch)
8025 (uri (string-append
8026 "https://github.com/dbrock/bongo/archive/"
8027 version ".tar.gz"))
8028 (file-name (string-append name "-" version ".tar.gz"))
8029 (sha256
8030 (base32
8031 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
8032 (build-system emacs-build-system)
8033 (home-page "https://github.com/dbrock/bongo")
8034 (synopsis "Media player for Emacs")
8035 (description
8036 "This package provides a flexible media player for Emacs. @code{Bongo}
8037supports multiple backends such as @code{vlc}, @code{mpg123},
8038@code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
8039@code{afplay}.")
8040 (license license:gpl2+)))
8041
8042(define-public emacs-groovy-modes
8043 (package
8044 (name "emacs-groovy-modes")
8045 (version "2.0")
8046 (source (origin
8047 (method url-fetch)
8048 (uri (string-append
8049 "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
8050 "/archive/" version ".tar.gz"))
8051 (file-name (string-append name "-" version ".tar.gz"))
8052 (sha256
8053 (base32
8054 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
8055 (build-system emacs-build-system)
8056 (propagated-inputs
8057 `(("emacs-s" ,emacs-s)))
8058 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
8059 (synopsis "Groovy related modes for Emacs")
8060 (description
8061 "This package provides @code{groovy-mode} for syntax highlighing in
8062Groovy source files, REPL integration with run-groovy and Grails project
8063navigation with the grails mode.")
8064 (license license:gpl3+)))
8065
8066(define-public groovy-emacs-modes
8067 (deprecated-package "groovy-emacs-modes" emacs-groovy-modes))
8068
8069(define-public emacs-org-tree-slide
8070 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
8071 (revision "0"))
8072 (package
8073 (name "emacs-org-tree-slide")
8074 (version (git-version "0.1" revision commit))
8075 (home-page "https://github.com/takaxp/org-tree-slide")
8076 (source (origin
8077 (method git-fetch)
8078 (uri (git-reference (url home-page) (commit commit)))
8079 (sha256
8080 (base32
8081 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
8082 (file-name (git-file-name name version))))
8083 (build-system emacs-build-system)
8084 (synopsis "Presentation tool for org-mode")
8085 (description
8086 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
8087@code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
8088@kbd{C-<} to jump to the next and previous slide.")
8089 (license license:gpl3+))))
8090
8091(define-public emacs-scratch-el
8092 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
8093 (revision "1"))
8094 (package
8095 (name "emacs-scratch-el")
8096 (version (git-version "1.2" revision commit))
8097 (source (origin
8098 (method git-fetch)
8099 (uri (git-reference
8100 (url "https://github.com/ieure/scratch-el.git")
8101 (commit commit)))
8102 (file-name (git-file-name name version))
8103 (sha256
8104 (base32
8105 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
8106 (build-system emacs-build-system)
8107 (native-inputs
8108 `(("texinfo" ,texinfo)))
8109 (arguments
8110 '(#:phases
8111 (modify-phases %standard-phases
8112 (add-after 'install 'install-doc
8113 (lambda* (#:key outputs #:allow-other-keys)
8114 (unless (invoke "makeinfo" "scratch.texi")
8115 (error "makeinfo failed"))
8116 (install-file "scratch.info"
8117 (string-append (assoc-ref outputs "out")
8118 "/share/info"))
8119 #t)))))
8120 (home-page "https://github.com/ieure/scratch-el/")
8121 (synopsis "Create scratch buffers with the same mode as current buffer")
8122 (description "Scratch is an extension to Emacs that enables one to create
8123scratch buffers that are in the same mode as the current buffer. This is
8124notably useful when working on code in some language; you may grab code into a
8125scratch buffer, and, by virtue of this extension, do so using the Emacs
8126formatting rules for that language.")
8127 (license license:bsd-2))))
8128
8129(define-public emacs-kv
8130 (package
8131 (name "emacs-kv")
8132 (version "0.0.19")
8133 (source
8134 (origin
8135 (method git-fetch)
8136 (uri (git-reference
8137 (url "https://github.com/nicferrier/emacs-kv.git")
8138 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
8139 (file-name (string-append name "-" version "-checkout"))
8140 (sha256
8141 (base32
8142 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
8143 (build-system emacs-build-system)
8144 (arguments
8145 `(#:tests? #t
8146 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
8147 "-f" "ert-run-tests-batch-and-exit")))
8148 (home-page "https://github.com/nicferrier/emacs-kv")
8149 (synopsis "Key/Value data structures library for Emacs Lisp")
8150 (description "@code{emacs-kv} is a collection of tools for dealing with
8151key/value data structures such as plists, alists and hash-tables in Emacs
8152Lisp.")
8153 (license license:gpl3+)))
8154
8155(define-public emacs-esxml
8156 (package
8157 (name "emacs-esxml")
8158 (version "0.3.4")
8159 (source (origin
8160 (method git-fetch)
8161 (uri (git-reference
8162 (url "https://github.com/tali713/esxml.git")
8163 (commit version)))
8164 (file-name (git-file-name name version))
8165 (sha256
8166 (base32
8167 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
8168 (build-system emacs-build-system)
8169 (arguments
8170 `(#:phases
8171 (modify-phases %standard-phases
8172 (add-after 'unpack 'fix-sources
8173 (lambda _
8174 ;; See: https://github.com/tali713/esxml/pull/28.
8175 (substitute* "css-lite.el"
8176 ((";;; main interface")
8177 (string-append ";;; main interface\n"
8178 "(require 'cl-lib)"))
8179 (("mapcan")
8180 "cl-mapcan")
8181 (("',\\(cl-mapcan #'process-css-rule rules\\)")
8182 "(cl-mapcan #'process-css-rule ',rules)"))
8183 (substitute* "esxml-form.el"
8184 ((",esxml-form-field-defn")
8185 "#'esxml-form-field-defn"))
8186 ;; See: https://github.com/tali713/esxml/issues/25
8187 (delete-file "esxpath.el")
8188 #t)))))
8189 (propagated-inputs
8190 `(("emacs-kv" ,emacs-kv)))
8191 (home-page "https://github.com/tali713/esxml/")
8192 (synopsis "SXML for EmacsLisp")
8193 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
8194Simply, this is the easiest way to write HTML or XML in Lisp. This library
8195uses the native form of XML representation as used by many libraries already
8196included within Emacs. See @code{esxml-to-xml} for a concise description of
8197the format.")
8198 (license license:gpl3+)))
8199
8200(define-public emacs-nov-el
8201 (package
8202 (name "emacs-nov-el")
8203 (version "0.2.6")
8204 (source (origin
8205 (method git-fetch)
8206 (uri (git-reference
8207 (url "https://github.com/wasamasa/nov.el.git")
8208 (commit version)))
8209 (file-name (git-file-name name version))
8210 (sha256
8211 (base32
8212 "188h5gzn1zf443g0b7q5bpmvvpr6ds5h8aci8vxc92py56rhyrvc"))))
8213 (build-system emacs-build-system)
8214 (arguments
8215 `(#:phases
8216 (modify-phases %standard-phases
8217 (add-after 'unpack 'embed-path-to-unzip
8218 (lambda _
8219 (substitute* "nov.el"
8220 (("\\(executable-find \"unzip\"\\)")
8221 (string-append "\"" (which "unzip") "\"")))
8222 #t)))))
8223 (propagated-inputs
8224 `(("emacs-dash" ,emacs-dash)
8225 ("emacs-esxml" ,emacs-esxml)))
8226 (inputs
8227 `(("unzip" ,unzip)))
8228 (home-page "https://github.com/wasamasa/nov.el/")
8229 (synopsis "Major mode for reading EPUBs in Emacs")
8230 (description "@code{nov.el} provides a major mode for reading EPUB
8231documents.
8232
8233Features:
8234
8235@itemize
8236@item Basic navigation (jump to TOC, previous/next chapter)
8237@item Remembering and restoring the last read position
8238@item Jump to next chapter when scrolling beyond end
8239@item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
8240@item Hyperlinks to internal and external targets
8241@item Supports textual and image documents
8242@item View source of document files
8243@item Metadata display
8244@item Image rescaling
8245@end itemize
8246")
8247 (license license:gpl3+)))
8248
8249(define-public epipe
8250 (package
8251 (name "epipe")
8252 (version "0.1.0")
8253 (source
8254 (origin
8255 (method url-fetch)
8256 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
8257 version ".tar.gz"))
8258 (file-name (string-append name "-" version ".tar.gz"))
8259 (sha256
8260 (base32
8261 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
8262 (build-system trivial-build-system)
8263 (inputs
8264 `(("bash" ,bash)
8265 ("perl" ,perl)))
8266 (native-inputs
8267 `(("tar" ,tar)
8268 ("gzip" ,gzip)))
8269 (arguments
8270 `(#:modules
8271 ((guix build utils))
8272 #:builder
8273 (begin
8274 (use-modules (guix build utils))
8275 ;; Extract source
8276 (setenv "PATH" (string-append
8277 (assoc-ref %build-inputs "tar") "/bin" ":"
8278 (assoc-ref %build-inputs "gzip") "/bin"))
8279 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
8280 (chdir (string-append ,name "-" ,version))
8281 ;; Patch shebangs
8282 (substitute* "epipe"
8283 (("/usr/bin/env bash")
8284 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
8285 (patch-shebang "epipe.pl"
8286 (list (string-append (assoc-ref %build-inputs "perl")
8287 "/bin")))
8288 ;; Installation
8289 (for-each (lambda (file)
8290 (install-file file (string-append %output "/bin")))
8291 '("epipe" "epipe.pl"))
8292 #t)))
8293 (home-page "https://github.com/cute-jumper/epipe")
8294 (synopsis "Pipe to the @code{emacsclient}")
8295 (description "@code{epipe} provides an utility to use your editor in
8296the pipeline, featuring the support for running @code{emacsclient}.")
8297 (license license:gpl3+)))
8298
8299(define-public emacs-hcl-mode
8300 (package
8301 (name "emacs-hcl-mode")
8302 (version "0.03")
8303 (source
8304 (origin
8305 (method url-fetch)
8306 (uri (string-append
8307 "https://github.com/syohex/emacs-hcl-mode/archive/"
8308 version ".tar.gz"))
8309 (file-name (string-append name "-" version ".tar.gz"))
8310 (sha256
8311 (base32
8312 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
8313 (build-system emacs-build-system)
8314 (home-page "https://github.com/syohex/emacs-hcl-mode")
8315 (synopsis "Major mode for the Hashicorp Configuration Language")
8316 (description
8317 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
8318@acronym{HCL, Hashicorp Configuration Language}. It provides syntax
8319highlighting and indentation support.")
8320 (license license:gpl3+)))
8321
8322(define-public emacs-terraform-mode
8323 (package
8324 (name "emacs-terraform-mode")
8325 (version "0.06")
8326 (source
8327 (origin
8328 (method url-fetch)
8329 (uri (string-append
8330 "https://github.com/syohex/emacs-terraform-mode/archive/"
8331 version ".tar.gz"))
8332 (file-name (string-append name "-" version ".tar.gz"))
8333 (sha256
8334 (base32
8335 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
8336 (build-system emacs-build-system)
8337 (propagated-inputs
8338 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
8339 (home-page "https://github.com/syohex/emacs-terraform-mode")
8340 (synopsis "Major mode for Terraform")
8341 (description
8342 "@code{emacs-terraform-mode} provides a major mode for working with
8343@uref{https://www.terraform.io/, Terraform} configuration files. Most of the
8344functionality is inherited from @code{hcl-mode}.")
8345 (license license:gpl3+)))
8346
8347(define-public emacs-exec-path-from-shell
8348 (package
8349 (name "emacs-exec-path-from-shell")
8350 (version "1.11")
8351 (source
8352 (origin
8353 (method url-fetch)
8354 (uri (string-append
8355 "https://stable.melpa.org/packages/exec-path-from-shell-"
8356 version ".el"))
8357 (sha256
8358 (base32
8359 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
8360 (build-system emacs-build-system)
8361 (home-page "https://github.com/purcell/exec-path-from-shell")
8362 (synopsis "Get environment variables such as @var{PATH} from the shell")
8363 (description
8364 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8365from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8366the like work as expected on systems on which Emacs is not guaranteed to
8367inherit a login shell's environment variables. It also allows other
8368environment variables to be retrieved from the shell, so that Emacs will see
8369the same values you get in a terminal.")
8370 (license license:gpl3+)))
8371
8372(define-public emacs-deft
8373 (package
8374 (name "emacs-deft")
8375 (version "0.8")
8376 (source
8377 (origin
8378 (method url-fetch)
8379 (uri (string-append "https://stable.melpa.org/packages/deft-"
8380 version ".el"))
8381 (sha256
8382 (base32
8383 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8384 (build-system emacs-build-system)
8385 (home-page "https://jblevins.org/projects/deft/")
8386 (synopsis "Quickly browse, filter, and edit plain text notes")
8387 (description
8388 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8389directories of plain text notes, inspired by Notational Velocity.")
8390 (license license:bsd-3)))
8391
8392(define-public emacs-anzu
8393 (package
8394 (name "emacs-anzu")
8395 (version "0.62")
8396 (source
8397 (origin
8398 (method url-fetch)
8399 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
8400 version ".tar.gz"))
8401 (file-name (string-append name "-" version ".tar.gz"))
8402 (sha256
8403 (base32
8404 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
8405 (build-system emacs-build-system)
8406 (home-page "https://github.com/syohex/emacs-anzu")
8407 (synopsis "Show number of matches in mode-line while searching")
8408 (description
8409 "Anzu provides a minor mode which displays \"current match/total
8410matches\" in the mode line in various search modes. This is an Emacs port of
8411Anzu.zim.")
8412 (license license:gpl3+)))
8413
8414(define-public emacs-emmet-mode
8415 (package
8416 (name "emacs-emmet-mode")
8417 (version "1.0.8")
8418 (source (origin
8419 (method url-fetch)
8420 (uri (string-append "https://github.com/smihica/emmet-mode"
8421 "/archive/" version ".tar.gz"))
8422 (file-name (string-append name "-" version ".tar.gz"))
8423 (sha256
8424 (base32
8425 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
8426 (build-system emacs-build-system)
8427 (home-page "https://github.com/smihica/emmet-mode")
8428 (synopsis "Unofficial Emmet's support for Emacs")
8429 (description
8430 "Unfold CSS-selector-like expressions to markup. It is intended to be
8431used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8432 (license license:gpl3+)))
8433
8434(define-public emacs-ergoemacs-mode
8435 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8436 (revision "1"))
8437 (package
8438 (name "emacs-ergoemacs-mode")
8439 (version (git-version "5.16.10.12" revision commit))
8440 (source
8441 (origin
8442 (method git-fetch)
8443 (uri (git-reference
8444 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8445 (commit commit)))
8446 (sha256
8447 (base32
8448 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8449 (build-system emacs-build-system)
8450 (propagated-inputs
8451 `(("emacs-undo-tree" ,emacs-undo-tree)))
8452 (home-page "https://ergoemacs.github.io/")
8453 (synopsis "Emacs mode based on common modern interface and ergonomics")
8454 (description
8455 "This package provides an efficient Emacs keybinding set based on
8456statistics of command frequency, and supports common shortcuts for open,
8457close, copy, cut, paste, undo, redo.")
8458 (license license:gpl3+))))
8459
8460(define-public emacs-password-store
8461 (package
8462 (name "emacs-password-store")
8463 (version "1.7.3")
8464 (source (origin
8465 (method url-fetch)
8466 (uri
8467 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8468 "password-store-" version ".tar.xz"))
8469 (sha256
8470 (base32
8471 "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b"))))
8472 (build-system emacs-build-system)
8473 (arguments
8474 `(#:phases
8475 (modify-phases %standard-phases
8476 (add-after 'unpack 'extract-el-file
8477 (lambda _
8478 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8479 (delete-file-recursively "contrib")
8480 (delete-file-recursively "man")
8481 (delete-file-recursively "src")
8482 (delete-file-recursively "tests"))))))
8483 (propagated-inputs
8484 `(("emacs-f" ,emacs-f)
8485 ("emacs-s" ,emacs-s)
8486 ("emacs-with-editor" ,emacs-with-editor)
8487 ("password-store" ,password-store)))
8488 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8489 (synopsis "Password store (pass) support for Emacs")
8490 (description
8491 "This package provides functions for working with pass (\"the
8492standard Unix password manager\").")
8493 (license license:gpl2+)))
8494
8495(define-public emacs-pass
8496 (package
8497 (name "emacs-pass")
8498 (version "1.8")
8499 (source (origin
8500 (method url-fetch)
8501 (uri (string-append
8502 "https://github.com/NicolasPetton/pass/archive/"
8503 version ".tar.gz"))
8504 (sha256
8505 (base32
8506 "0aiz90gklk0cb8n4v1s3l0mx6pp2b7f4k2c0fjpihwmga13yklwn"))
8507 (file-name (string-append name "-" version ".tar.gz"))))
8508 (build-system emacs-build-system)
8509 (propagated-inputs
8510 `(("emacs-password-store" ,emacs-password-store)
8511 ("emacs-f" ,emacs-f)))
8512 (home-page "https://github.com/NicolasPetton/pass")
8513 (synopsis "Major mode for @file{password-store.el}")
8514 (description "This is a major mode for managing password-store (pass)
8515keychains. The keychain entries are displayed in a directory-like structure
8516and can be consulted and modified.")
8517 (license license:gpl3+)))
8518
8519(define-public emacs-evil-anzu
8520 (package
8521 (name "emacs-evil-anzu")
8522 (version "0.03")
8523 (source
8524 (origin
8525 (method url-fetch)
8526 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8527 "/archive/" version ".tar.gz"))
8528 (file-name (string-append name "-" version ".tar.gz"))
8529 (sha256
8530 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8531 (build-system emacs-build-system)
8532 (propagated-inputs
8533 `(("emacs-evil" ,emacs-evil)
8534 ("emacs-anzu" ,emacs-anzu)))
8535 (home-page "https://github.com/syohex/emacs-evil-anzu")
8536 (synopsis "Anzu for evil-mode")
8537 (description "@code{anzu} provides a minor mode that displays the current
8538match and total match information in the mode-line in various search modes.")
8539 (license license:gpl3+)))
8540
8541(define-public emacs-pg
8542 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8543 (package
8544 (name "emacs-pg")
8545 (version (git-version "0.1" "1" commit))
8546 (source (origin
8547 (method git-fetch)
8548 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8549 (commit commit)))
8550 (file-name (git-file-name name version))
8551 (sha256
8552 (base32
8553 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8554 (build-system emacs-build-system)
8555 (home-page "https://github.com/cbbrowne/pg.el")
8556 (synopsis "Emacs Lisp interface for PostgreSQL")
8557 (description
8558 "This package provides an Emacs Lisp interface for PostgreSQL.")
8559 (license license:gpl3+))))
8560
8561(define-public emacs-cl-generic
8562 (package
8563 (name "emacs-cl-generic")
8564 (version "0.3")
8565 (source
8566 (origin
8567 (method url-fetch)
8568 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8569 version ".el"))
8570 (sha256
8571 (base32
8572 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8573 (build-system emacs-build-system)
8574 (home-page "https://elpa.gnu.org/packages/seq.html")
8575 (synopsis
8576 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8577 (description "This package provides a subset of the features of the
8578@code{cl-generic} package introduced in Emacs-25, for use on previous
8579@code{emacsen}.")
8580 (license license:gpl3+)))
8581
8582(define-public emacs-finalize
8583 (package
8584 (name "emacs-finalize")
8585 (version "2.0.0")
8586 (source
8587 (origin
8588 (method url-fetch)
8589 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
8590 version ".tar.gz"))
8591 (file-name (string-append name "-" version ".tar.gz"))
8592 (sha256
8593 (base32
8594 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
8595 (build-system emacs-build-system)
8596 (propagated-inputs
8597 `(("emacs-cl-generic" ,emacs-cl-generic)))
8598 (home-page "https://github.com/skeeto/elisp-finalize")
8599 (synopsis "Finalizers for Emacs Lisp")
8600 (description
8601 "This package will allows to immediately run a callback (a finalizer)
8602after its registered lisp object has been garbage collected. This allows for
8603extra resources, such as buffers and processes, to be cleaned up after the
8604object has been freed.")
8605 (license license:unlicense)))
8606
8607(define-public emacs-emacsql
8608 (package
8609 (name "emacs-emacsql")
8610 (version "3.0.0")
8611 (source (origin
8612 (method git-fetch)
8613 (uri (git-reference
8614 (url "https://github.com/skeeto/emacsql.git")
8615 (commit (string-append version))))
8616 (file-name (git-file-name name version))
8617 (sha256
8618 (base32
8619 "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"))))
8620 (build-system emacs-build-system)
8621 (arguments
8622 `(#:modules ((guix build emacs-build-system)
8623 (guix build utils)
8624 (guix build emacs-utils)
8625 (srfi srfi-26))
8626 #:phases
8627 (modify-phases %standard-phases
8628 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8629 (add-before 'install 'patch-elisp-shell-shebangs
8630 (lambda _
8631 (substitute* (find-files "." "\\.el")
8632 (("/bin/sh") (which "sh")))
8633 #t))
8634 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8635 (lambda _
8636 (setenv "SHELL" "sh")))
8637 (add-after 'setenv-shell 'build-emacsql-sqlite
8638 (lambda _
8639 (invoke "make" "binary" "CC=gcc")))
8640 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
8641 ;; This build phase installs emacs-emacsql binary.
8642 (lambda* (#:key outputs #:allow-other-keys)
8643 (install-file "sqlite/emacsql-sqlite"
8644 (string-append (assoc-ref outputs "out")
8645 "/bin"))
8646 #t))
8647 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
8648 ;; This build phase removes interactive prompts
8649 ;; and makes sure Emacs look for binaries in the right places.
8650 (lambda* (#:key outputs #:allow-other-keys)
8651 (let ((file "emacsql-sqlite.el"))
8652 (chmod file #o644)
8653 (emacs-substitute-sexps file
8654 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
8655 ("(executable-find" (which "gcc"))
8656 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
8657 ;; in the right place.
8658 ("(defvar emacsql-sqlite-executable"
8659 (string-append (assoc-ref outputs "out")
8660 "/bin/emacsql-sqlite"))))))
8661 (replace 'install
8662 (lambda* (#:key outputs #:allow-other-keys)
8663 (let* ((out (assoc-ref outputs "out")))
8664 (install-file "sqlite/emacsql-sqlite"
8665 (string-append out "/bin"))
8666 (for-each (cut install-file <>
8667 (string-append out "/share/emacs/site-lisp/guix.d/"
8668 "emacsql" "-" ,version))
8669 (find-files "." "\\.elc*$")))
8670 #t)))))
8671 (inputs
8672 `(("emacs-minimal" ,emacs-minimal)
8673 ("mariadb" ,mariadb)
8674 ("postgresql" ,postgresql)))
8675 (propagated-inputs
8676 `(("emacs-finalize" ,emacs-finalize)
8677 ("emacs-pg" ,emacs-pg)))
8678 (home-page "https://github.com/skeeto/emacsql")
8679 (synopsis "Emacs high-level SQL database front-end")
8680 (description "Any readable Lisp value can be stored as a value in EmacSQL,
8681including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
8682has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
8683object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
8684 (license license:gpl3+)))
8685
8686(define-public emacs-closql
8687 (package
8688 (name "emacs-closql")
8689 (version "1.0.0")
8690 (source
8691 (origin
8692 (method git-fetch)
8693 (uri (git-reference
8694 (url "https://github.com/emacscollective/closql.git")
8695 (commit (string-append "v" version))))
8696 (file-name (git-file-name name version))
8697 (sha256
8698 (base32
8699 "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"))))
8700 (build-system emacs-build-system)
8701 (propagated-inputs
8702 `(("emacs-emacsql" ,emacs-emacsql)))
8703 (home-page "https://github.com/emacscollective/closql")
8704 (synopsis "Store EIEIO objects using EmacSQL")
8705 (description
8706 "This package allows to store uniform EIEIO objects in an EmacSQL
8707database. SQLite is used as backend. This library imposes some restrictions
8708on what kind of objects can be stored; it isn't intended to store arbitrary
8709objects. All objects have to share a common superclass and subclasses cannot
8710add any additional instance slots.")
8711 (license license:gpl3)))
8712
8713(define-public emacs-epkg
8714 ;; The release version is to old for the current database scheme.
8715 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
8716 (package
8717 (name "emacs-epkg")
8718 (version (git-version "3.0.0" "1" commit))
8719 (source
8720 (origin
8721 (method git-fetch)
8722 (uri (git-reference
8723 (url "https://github.com/emacscollective/epkg.git")
8724 (commit commit)))
8725 (file-name (git-file-name name version))
8726 (sha256
8727 (base32
8728 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
8729 (build-system emacs-build-system)
8730 (propagated-inputs
8731 `(("emacs-closql" ,emacs-closql)
8732 ("emacs-dash" ,emacs-dash)))
8733 (home-page "https://emacsmirror.net")
8734 (synopsis "Browse the Emacsmirror package database")
8735 (description "This package provides access to a local copy of the
8736Emacsmirror package database. It provides low-level functions for querying
8737the database and a @file{package.el} user interface for browsing the database.
8738Epkg itself is not a package manager.
8739
8740Getting a local copy:
8741
8742@example
8743git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8744cd ~/.emacs.d/epkgs
8745git submodule init
8746git config --global url.https://github.com/.insteadOf git@@github.com:
8747git submodule update
8748@end example
8749
8750Some submodule may be missing. In this case Git will prompt for a GitHub user
8751name and password. To skip it press a @key{Return} key.
8752
8753You could get a Epkg package list by invoking @code{epkg-list-packages} in
8754Emacs.")
8755 (license license:gpl3+))))
8756
8757(define-public emacs-elisp-slime-nav
8758 (package
8759 (name "emacs-elisp-slime-nav")
8760 (version "0.9")
8761 (source
8762 (origin
8763 (method url-fetch)
8764 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8765 version ".tar.gz"))
8766 (file-name (string-append name "-" version ".tar.gz"))
8767 (sha256
8768 (base32
8769 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8770 (build-system emacs-build-system)
8771 (home-page "https://github.com/purcell/elisp-slime-nav")
8772 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8773 (description
8774 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8775in @code{emacs-lisp-mode}, together with an elisp equivalent of
8776@code{slime-describe-symbol}.")
8777 (license license:gpl3+)))
8778
8779(define-public emacs-dedicated
8780 (package
8781 (name "emacs-dedicated")
8782 (version "1.0.0")
8783 (source (origin
8784 (method url-fetch)
8785 (uri (string-append
8786 "https://github.com/emacsorphanage/dedicated/archive/"
8787 version
8788 ".tar.gz"))
8789 (sha256
8790 (base32
8791 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8792 (file-name (string-append name "-" version ".tar.gz"))))
8793 (build-system emacs-build-system)
8794 (home-page "https://github.com/emacsorphanage/dedicated")
8795 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8796 (description
8797 "This simple Emacs minor mode allows you to toggle a window's
8798\"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8799files into that window. This can be quite handy since many commands will use
8800another window to show results (compilation mode, starting info, and so on).
8801A dedicated window won't be used for such a purpose. For details, please read
8802the source file.")
8803 (license license:gpl2+)))
8804
8805(define-public emacs-nnreddit
8806 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8807 (revision "1"))
8808 (package
8809 (name "emacs-nnreddit")
8810 (version (string-append "0.0.1-" revision "."
8811 (string-take commit 7)))
8812 (source (origin
8813 (method git-fetch)
8814 (uri (git-reference
8815 (url "https://github.com/paul-issartel/nnreddit.git")
8816 (commit commit)))
8817 (file-name (string-append name "-" version "-checkout"))
8818 (sha256
8819 (base32
8820 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8821 (build-system emacs-build-system)
8822 (home-page "https://github.com/paul-issartel/nnreddit")
8823 (synopsis "Reddit backend for the Gnus newsreader")
8824 (description "@url{https://www.reddit.com} backend for the Gnus
8825newsreader.")
8826 (license license:gpl3+))))
8827
8828(define-public emacs-makey
8829 (package
8830 (name "emacs-makey")
8831 (version "0.3")
8832 (source
8833 (origin
8834 (method url-fetch)
8835 (uri (string-append "https://github.com/mickeynp/makey/archive/"
8836 version ".tar.gz"))
8837 (file-name (string-append name "-" version ".tar.gz"))
8838 (sha256
8839 (base32
8840 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
8841 (build-system emacs-build-system)
8842 (home-page "https://github.com/mickeynp/makey")
8843 (synopsis "Emacs interactive command-line mode")
8844 (description
8845 "This package provides an Emacs interactive command-line mode.")
8846 (license license:gpl3+)))
8847
8848(define-public emacs-outorg
8849 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
8850 (package
8851 (name "emacs-outorg")
8852 (version (git-version "2.0" "1" commit))
8853 (source
8854 (origin
8855 (method git-fetch)
8856 (uri (git-reference
8857 (url "https://github.com/alphapapa/outorg")
8858 (commit commit)))
8859 (file-name (git-file-name name version))
8860 (sha256
8861 (base32
8862 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
8863 (build-system emacs-build-system)
8864 (home-page "https://github.com/alphapapa/outorg")
8865 (synopsis "Org-style comment editing")
8866 (description "Outorg is for editing comment-sections of source-code
8867files in temporary Org-mode buffers. It turns conventional
8868literate-programming upside-down in that the default mode is the
8869programming-mode, and special action has to be taken to switch to the
8870text-mode (i.e. Org-mode).")
8871 (license license:gpl3+))))
8872
8873(define-public emacs-outshine
8874 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
8875 (package
8876 (name "emacs-outshine")
8877 (version (git-version "2.0" "1" commit))
8878 (source (origin
8879 (method git-fetch)
8880 (uri (git-reference
8881 (url "https://github.com/alphapapa/outshine.git")
8882 (commit commit)))
8883 (file-name (git-file-name name version))
8884 (sha256
8885 (base32
8886 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
8887 (build-system emacs-build-system)
8888 (propagated-inputs
8889 `(("emacs-outorg" ,emacs-outorg)))
8890 (home-page "https://github.com/alphapapa/outshine")
8891 (synopsis "Emacs outline with outshine")
8892 (description "Outshine attempts to bring the look and feel of
8893@code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
8894of @code{outline-minor-mode} (@code{org-mode} itself derives from
8895outline-mode), so there is no such thing like an outshine mode, only
8896@code{outline-minor-mode} with outshine extensions loaded.")
8897 (license license:gpl3+))))
8898
8899(define-public emacs-parsebib
8900 (package
8901 (name "emacs-parsebib")
8902 (version "2.3.1")
8903 (source
8904 (origin
8905 (method url-fetch)
8906 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
8907 version ".tar.gz"))
8908 (file-name (string-append name "-" version ".tar.gz"))
8909 (sha256
8910 (base32
8911 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
8912 (build-system emacs-build-system)
8913 (home-page "https://github.com/joostkremers/parsebib")
8914 (synopsis "Library for parsing bib files")
8915 (description
8916 "This package provides an Emacs library for parsing bib files.")
8917 (license license:gpl3+)))
8918
8919(define-public emacs-biblio
8920 (package
8921 (name "emacs-biblio")
8922 (version "0.1")
8923 (source
8924 (origin
8925 (method url-fetch)
8926 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
8927 version ".tar.gz"))
8928 (file-name (string-append name "-" version ".tar.gz"))
8929 (sha256
8930 (base32
8931 "109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
8932 (build-system emacs-build-system)
8933 (propagated-inputs
8934 `(("emacs-seq" ,emacs-seq)
8935 ("emacs-dash" ,emacs-dash)
8936 ("emacs-let-alist" ,emacs-let-alist)))
8937 (home-page "https://github.com/cpitclaudel/biblio.el")
8938 (synopsis "Browse and import bibliographic references")
8939 (description "This package provides an extensible Emacs package for
8940browsing and fetching references.
8941
8942@file{biblio.el} makes it easy to browse and gather bibliographic references
8943and publications from various sources, by keywords or by DOI. References are
8944automatically fetched from well-curated sources, and formatted as BibTeX.")
8945 (license license:gpl3+)))
8946
8947(define-public emacs-helm-bibtex
8948 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
8949 (revision "1"))
8950 (package
8951 (name "emacs-helm-bibtex")
8952 (version (string-append "2.0.0" "-" revision "."
8953 (string-take commit 7)))
8954 (source
8955 (origin
8956 (method git-fetch)
8957 (uri (git-reference
8958 (url "https://github.com/tmalsburg/helm-bibtex.git")
8959 (commit commit)))
8960 (file-name (string-append name "-" version "-checkout"))
8961 (sha256
8962 (base32
8963 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
8964 (build-system emacs-build-system)
8965 (propagated-inputs
8966 `(("emacs-helm" ,emacs-helm)
8967 ("emacs-parsebib" ,emacs-parsebib)
8968 ("emacs-s" ,emacs-s)
8969 ("emacs-dash" ,emacs-dash)
8970 ("emacs-f" ,emacs-f)
8971 ("emacs-biblio" ,emacs-biblio)
8972 ("emacs-ivy" ,emacs-ivy)))
8973 (home-page "https://github.com/tmalsburg/helm-bibtex")
8974 (synopsis "Bibliography manager based on Helm")
8975 (description "This package provides bibliography manager for Emacs,
8976based on Helm and the bibtex-completion backend.
8977
8978Key features:
8979
8980@itemize
8981@item Quick access to your bibliography from within Emacs
8982@item Powerful search capabilities
8983@item Provides instant search results as you type
8984@item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
8985@item Open the PDFs, URLs, or DOIs associated with an entry
8986@item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
8987BibTeX entries, or plain text references at point, attach PDFs to emails
8988@item Support for note taking
8989@item Quick access to online bibliographic databases such as Pubmed,
8990arXiv, Google Scholar, Library of Congress, etc.
8991@item Imports BibTeX entries from CrossRef and other sources.
8992@end itemize\n")
8993 (license license:gpl3+))))
8994
8995(define-public emacs-ewmctrl
8996 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
8997 (package
8998 (name "emacs-ewmctrl")
8999 (version (git-version "0.0.1" "1" commit))
9000 (source
9001 (origin
9002 (method git-fetch)
9003 (uri (git-reference
9004 (url "https://github.com/flexibeast/ewmctrl.git")
9005 (commit commit)))
9006 (file-name (git-file-name name version))
9007 (sha256
9008 (base32
9009 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
9010 (build-system emacs-build-system)
9011 (arguments
9012 '(#:phases
9013 (modify-phases %standard-phases
9014 (add-after 'unpack 'patch-ewmctrl
9015 ;; This build phase makes sure ‘ewmctrl’ looks
9016 ;; for ‘wmctrl’ in the right place.
9017 (lambda _
9018 (let ((file "ewmctrl.el"))
9019 (chmod file #o644)
9020 (emacs-substitute-sexps file
9021 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
9022 (inputs
9023 `(("wmctrl" ,wmctrl)))
9024 (home-page "https://github.com/flexibeast/ewmctrl")
9025 (synopsis "Emacs interface to @code{wmctrl}")
9026 (description "@code{ewmctrl} provides an Emacs interface to
9027@code{wmctrl} command-line window-management program.")
9028 (license license:gpl3+))))
9029
9030(define-public emacs-helm-gtags
9031 (package
9032 (name "emacs-helm-gtags")
9033 (version "1.5.6")
9034 (source (origin
9035 (method url-fetch)
9036 (uri (string-append
9037 "https://github.com/syohex/emacs-helm-gtags/archive/"
9038 version ".tar.gz"))
9039 (file-name (string-append name "-" version ".tar.gz"))
9040 (sha256
9041 (base32
9042 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
9043 (build-system emacs-build-system)
9044 (propagated-inputs
9045 `(("emacs-helm" ,emacs-helm)))
9046 (home-page "https://github.com/syohex/emacs-helm-gtags")
9047 (synopsis "Emacs Helm interface to GNU Global")
9048 (description
9049 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
9050 (license license:gpl3+)))
9051
9052(define-public emacs-list-utils
9053 (package
9054 (name "emacs-list-utils")
9055 (version "0.4.4")
9056 (source
9057 (origin
9058 (method url-fetch)
9059 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
9060 "v" version ".tar.gz"))
9061 (file-name (string-append name "-" version ".tar.gz"))
9062 (sha256
9063 (base32
9064 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
9065 (build-system emacs-build-system)
9066 (home-page "https://github.com/rolandwalker/list-utils")
9067 (synopsis "List-manipulation utility functions")
9068 (description "This package provides a list manipulation library for Emacs.")
9069 (license license:gpl3+)))
9070
9071(define-public emacs-move-text
9072 (package
9073 (name "emacs-move-text")
9074 (version "2.0.8")
9075 (source
9076 (origin
9077 (method url-fetch)
9078 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
9079 version ".tar.gz"))
9080 (file-name (string-append name "-" version ".tar.gz"))
9081 (sha256
9082 (base32
9083 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
9084 (build-system emacs-build-system)
9085 (home-page "https://github.com/emacsfodder/move-text")
9086 (synopsis "Move current line or region with M-up or M-down")
9087 (description "This package provide functions to move the current line
9088using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
9089region instead.")
9090 (license license:gpl3+)))
9091
9092(define-public emacs-validate
9093 (package
9094 (name "emacs-validate")
9095 (version "1.0.5")
9096 (source (origin
9097 (method url-fetch)
9098 (uri (string-append "https://github.com/Malabarba/validate.el"
9099 "/archive/" version ".tar.gz"))
9100 (file-name (string-append name "-" version ".tar.gz"))
9101 (sha256
9102 (base32
9103 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
9104 (build-system emacs-build-system)
9105 (home-page "https://github.com/Malabarba/validate.el")
9106 (synopsis "Emacs library for scheme validation")
9107 (description "This Emacs library provides two functions that perform
9108schema validation.")
9109 (license license:gpl3+)))
9110
9111(define-public emacs-rainbow-blocks
9112 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
9113 (package
9114 (name "emacs-rainbow-blocks")
9115 (version (git-version "1.0.0" "1" commit))
9116 (source (origin
9117 (method git-fetch)
9118 (uri (git-reference
9119 (url "https://github.com/istib/rainbow-blocks.git")
9120 (commit commit)))
9121 (file-name (git-file-name name version))
9122 (sha256
9123 (base32
9124 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
9125 (build-system emacs-build-system)
9126 (home-page "https://github.com/istib/rainbow-blocks")
9127 (synopsis "Highlight sexp blocks")
9128 (description "Rainbow-blocks is an Emacs mode that highlights blocks
9129made of parentheses, brackets, and braces according to their depth. Each
9130successive level is highlighted in a different color. This makes it easy to
9131orient yourself in the code, and tell which statements are at a given level.")
9132 (license license:gpl3+))))
9133
9134(define-public emacs-hierarchy
9135 (package
9136 (name "emacs-hierarchy")
9137 (version "0.7.0")
9138 (source
9139 (origin
9140 (method url-fetch)
9141 (uri (string-append
9142 "https://github.com/DamienCassou/hierarchy/archive/"
9143 "v" version ".tar.gz"))
9144 (file-name (string-append name "-" version ".tar.gz"))
9145 (sha256
9146 (base32
9147 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
9148 (build-system emacs-build-system)
9149 (home-page "https://github.com/DamienCassou/hierarchy")
9150 (synopsis "Library to create and display hierarchy structures")
9151 (description "This package provides an Emacs library to create, query,
9152navigate and display hierarchy structures.")
9153 (license license:gpl3+)))
9154
9155(define-public emacs-tree-mode
9156 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
9157 (revision "1"))
9158 (package
9159 (name "emacs-tree-mode")
9160 (version (string-append "0.0.1" "-" revision "."
9161 (string-take commit 7)))
9162 (source
9163 (origin
9164 (method git-fetch)
9165 (uri (git-reference
9166 (url "https://github.com/emacsorphanage/tree-mode.git")
9167 (commit commit)))
9168 (file-name (string-append name "-" version "-checkout"))
9169 (sha256
9170 (base32
9171 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
9172 (build-system emacs-build-system)
9173 (home-page "https://github.com/emacsorphanage/tree-mode")
9174 (synopsis "Emacs mode to manage tree widgets")
9175 (description
9176 "This package provides an Emacs library to manage tree widgets.")
9177 (license license:gpl3+))))
9178
9179(define-public emacs-md4rd
9180 (let ((commit "c55512c2f7680db2a1e73db6bdf93adecaf40fec")
9181 (revision "1"))
9182 (package
9183 (name "emacs-md4rd")
9184 (version (string-append "0.0.2" "-" revision "."
9185 (string-take commit 7)))
9186 (source (origin
9187 (method git-fetch)
9188 (uri (git-reference
9189 (url "https://github.com/ahungry/md4rd.git")
9190 (commit commit)))
9191 (file-name (string-append name "-" version "-checkout"))
9192 (sha256
9193 (base32
9194 "0mvv1mvsrpkrmikcpfqf2zbawnzgq33j6zjdrlv48mcw57xb2ak9"))))
9195 (propagated-inputs
9196 `(("emacs-hierarchy" ,emacs-hierarchy)
9197 ("emacs-request" ,emacs-request)
9198 ("emacs-dash" ,emacs-dash)
9199 ("emacs-s" ,emacs-s)
9200 ("emacs-tree-mode" ,emacs-tree-mode)))
9201 (build-system emacs-build-system)
9202 (home-page "https://github.com/ahungry/md4rd")
9203 (synopsis "Emacs Mode for Reddit")
9204 (description
9205 "This package allows to read Reddit from within Emacs interactively.")
9206 (license license:gpl3+))))
9207
9208(define-public emacs-pulseaudio-control
9209 (let ((commit "1da372ec79f5d2fb901d1f9f0679fee8848fd011")
9210 (revision "2"))
9211 (package
9212 (name "emacs-pulseaudio-control")
9213 (version (git-version "0.0.1" revision commit))
9214 (source
9215 (origin
9216 (method git-fetch)
9217 (uri (git-reference
9218 (url "https://github.com/flexibeast/pulseaudio-control.git")
9219 (commit commit)))
9220 (file-name (git-file-name name version))
9221 (sha256
9222 (base32
9223 "02xrsms2pjqdk6327midi61i5vg2h9cq5jwaxv43ldm68wl7hi6k"))))
9224 (build-system emacs-build-system)
9225 (arguments
9226 '(#:phases (modify-phases %standard-phases
9227 (add-after 'unpack 'patch-file-name
9228 (lambda* (#:key inputs #:allow-other-keys)
9229 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
9230 (chmod "pulseaudio-control.el" #o600)
9231 (emacs-substitute-variables "pulseaudio-control.el"
9232 ("pulseaudio-control-pactl-path"
9233 (string-append pulseaudio "/bin/pactl")))
9234 #t))))))
9235 (inputs `(("pulseaudio" ,pulseaudio)))
9236 (home-page "https://github.com/flexibeast/pulseaudio-control")
9237 (synopsis "Control @code{pulseaudio} from Emacs")
9238 (description
9239 "This package allows to control @code{pulseaudio} from Emacs.")
9240 (license license:gpl3+))))
9241
9242(define-public emacs-datetime
9243 (package
9244 (name "emacs-datetime")
9245 (version "0.3")
9246 (source (origin
9247 (method url-fetch)
9248 (uri (string-append
9249 "https://github.com/doublep/datetime/archive/"
9250 version ".tar.gz"))
9251 (file-name (string-append name "-" version ".tar.gz"))
9252 (sha256
9253 (base32
9254 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
9255 (build-system emacs-build-system)
9256 (home-page "https://github.com/doublep/datetime/")
9257 (synopsis "Library to work with dates in Emacs")
9258 (description "Parsing, formatting, matching and recoding
9259timestamps and date-time format strings library for Emacs.")
9260 (license license:gpl3+)))
9261
9262(define-public emacs-org-mind-map
9263 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
9264 (revision "1"))
9265 (package
9266 (name "emacs-org-mind-map")
9267 (version (string-append "0.0.1" "-" revision "."
9268 (string-take commit 7)))
9269 (source
9270 (origin
9271 (method git-fetch)
9272 (uri (git-reference
9273 (url "https://github.com/theodorewiles/org-mind-map.git")
9274 (commit commit)))
9275 (file-name (string-append name "-" version "-checkout"))
9276 (sha256
9277 (base32
9278 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
9279 (propagated-inputs
9280 `(("emacs-dash" ,emacs-dash)))
9281 (build-system emacs-build-system)
9282 (home-page "https://github.com/theodorewiles/org-mind-map")
9283 (synopsis "Create Graphviz directed graphs from Org files")
9284 (description
9285 "This package creates Graphviz directed graphs from Org files.")
9286 (license license:gpl3+))))
9287
9288(define-public emacs-npm-mode
9289 (package
9290 (name "emacs-npm-mode")
9291 (version "0.6.0")
9292 (source
9293 (origin
9294 (method url-fetch)
9295 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
9296 version ".tar.gz"))
9297 (file-name (string-append name "-" version ".tar.gz"))
9298 (sha256
9299 (base32
9300 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
9301 (build-system emacs-build-system)
9302 (home-page "https://github.com/mojochao/npm-mode")
9303 (synopsis "Minor mode for working with @code{npm} projects")
9304 (description
9305 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
9306 (license license:gpl3+)))
9307
9308(define-public emacs-seq
9309 (package
9310 (name "emacs-seq")
9311 (version "2.20")
9312 (source
9313 (origin
9314 (method url-fetch)
9315 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
9316 (sha256
9317 (base32
9318 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
9319 (build-system emacs-build-system)
9320 (home-page "http://elpa.gnu.org/packages/seq.html")
9321 (synopsis "Sequence manipulation functions")
9322 (description "Sequence-manipulation functions that complement basic
9323functions provided by @file{subr.el}.")
9324 (license license:gpl3+)))
9325
9326(define-public emacs-itail
9327 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
9328 (revision "1"))
9329 (package
9330 (name "emacs-itail")
9331 (version (string-append "0.0.1" "-" revision "."
9332 (string-take commit 7)))
9333 (source
9334 (origin
9335 (method git-fetch)
9336 (uri (git-reference
9337 (url "https://github.com/re5et/itail.git")
9338 (commit commit)))
9339 (file-name (string-append name "-" version "-checkout"))
9340 (sha256
9341 (base32
9342 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
9343 (build-system emacs-build-system)
9344 (home-page "https://github.com/re5et/itail")
9345 (synopsis "Interactive @code{tail} Emacs mode")
9346 (description "@code{itail} provides interactive @code{tail} mode
9347that allows you to filter the tail with unix pipes and highlight the
9348contents of the tailed file. Works locally or on remote files using
9349tramp.")
9350 (license license:gpl3+))))
9351
9352(define-public emacs-loop
9353 (package
9354 (name "emacs-loop")
9355 (version "1.3")
9356 (source
9357 (origin
9358 (method url-fetch)
9359 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9360 version ".tar.gz"))
9361 (file-name (string-append name "-" version ".tar.gz"))
9362 (sha256
9363 (base32
9364 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9365 (build-system emacs-build-system)
9366 (home-page "https://github.com/Wilfred/loop.el")
9367 (synopsis "Imperative loop structures for Emacs")
9368 (description "Loop structures familiar to users of other languages. This
9369library adds a selection of popular loop structures as well as break and
9370continue.")
9371 (license license:gpl3+)))
9372
9373(define-public emacs-elisp-refs
9374 (package
9375 (name "emacs-elisp-refs")
9376 (version "1.3")
9377 (source
9378 (origin
9379 (method url-fetch)
9380 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9381 version ".tar.gz"))
9382 (file-name (string-append name "-" version ".tar.gz"))
9383 (sha256
9384 (base32
9385 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
9386 (build-system emacs-build-system)
9387 (propagated-inputs
9388 `(("emacs-dash" ,emacs-dash)
9389 ("emacs-f" ,emacs-f)
9390 ("emacs-list-utils" ,emacs-list-utils)
9391 ("emacs-loop" ,emacs-loop)
9392 ("emacs-s" ,emacs-s)
9393 ("emacs-shut-up" ,emacs-shut-up)))
9394 (home-page "https://github.com/Wilfred/elisp-refs")
9395 (synopsis "Find callers of elisp functions or macros")
9396 (description "Find references to functions, macros or variables. Unlike a
9397dumb text search, @code{elisp-refs} actually parses the code, so it's never
9398confused by comments or @code{foo-bar} matching @code{foo}.")
9399 (license license:gpl3+)))
9400
9401(define-public emacs-crux
9402 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9403 (revision "1"))
9404 (package
9405 (name "emacs-crux")
9406 (version (string-append "0.3.0" "-" revision "."
9407 (string-take commit 7)))
9408 (source
9409 (origin
9410 (method git-fetch)
9411 (uri (git-reference
9412 (url "https://github.com/bbatsov/crux.git")
9413 (commit commit)))
9414 (file-name (string-append name "-" version "-checkout"))
9415 (sha256
9416 (base32
9417 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9418 (build-system emacs-build-system)
9419 (home-page "https://github.com/bbatsov/crux")
9420 (synopsis "Collection of useful functions for Emacs")
9421 (description
9422 "@code{crux} provides a collection of useful functions for Emacs.")
9423 (license license:gpl3+))))
9424
9425(define-public emacs-edit-server
9426 (package
9427 (name "emacs-edit-server")
9428 (version "1.13")
9429 (source
9430 (origin
9431 (method url-fetch)
9432 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9433 "v" version ".tar.gz"))
9434 (file-name (string-append name "-" version ".tar.gz"))
9435 (sha256
9436 (base32
9437 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9438 (build-system emacs-build-system)
9439 (arguments
9440 `(#:phases
9441 (modify-phases %standard-phases
9442 (add-after 'unpack 'chdir-elisp
9443 ;; Elisp directory is not in root of the source.
9444 (lambda _
9445 (chdir "servers"))))))
9446 (home-page "https://github.com/stsquad/emacs_chrome")
9447 (synopsis "Server that responds to edit requests from Chromium")
9448 (description
9449 "This package provides an edit server to respond to requests from Emacs.")
9450 (license license:gpl3+)))
9451
9452(define-public emacs-m-buffer-el
9453 (package
9454 (name "emacs-m-buffer-el")
9455 (version "0.15")
9456 (source
9457 (origin
9458 (method url-fetch)
9459 (uri (string-append "https://github.com/phillord/m-buffer-el"
9460 "/archive/" "v" version ".tar.gz"))
9461 (file-name (string-append name "-" version ".tar.gz"))
9462 (sha256
9463 (base32
9464 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9465 (arguments
9466 `(#:phases
9467 (modify-phases %standard-phases
9468 (add-before 'install 'check
9469 (lambda* (#:key inputs #:allow-other-keys)
9470 (invoke "emacs" "--batch" "-L" "."
9471 "-l" "test/m-buffer-test.el"
9472 "-l" "test/m-buffer-at-test.el"
9473 "-f" "ert-run-tests-batch-and-exit"))))))
9474 (build-system emacs-build-system)
9475 (home-page "https://github.com/phillord/m-buffer-el")
9476 (synopsis "List oriented buffer operations for Emacs")
9477 (description "@code{m-buffer} provides a set of list-orientated functions
9478for operating over the contents of Emacs buffers.")
9479 (license license:gpl3+)))
9480
9481(define-public emacs-let-alist
9482 (package
9483 (name "emacs-let-alist")
9484 (version "1.0.5")
9485 (source
9486 (origin
9487 (method url-fetch)
9488 (uri (string-append
9489 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9490 (sha256
9491 (base32
9492 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9493 (build-system emacs-build-system)
9494 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9495 (synopsis "Easily let-bind values of an assoc-list by their names")
9496 (description "This package offers a single macro, @code{let-alist}. This
9497macro takes a first argument (whose value must be an alist) and a body.")
9498 (license license:gpl3+)))
9499
9500(define-public emacs-esup
9501 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9502 (revision "1"))
9503 (package
9504 (name "emacs-esup")
9505 (version (string-append "0.6" "-" revision "."
9506 (string-take commit 7)))
9507 (source
9508 (origin
9509 (method git-fetch)
9510 (uri (git-reference
9511 (url "https://github.com/jschaf/esup.git")
9512 (commit commit)))
9513 (file-name (string-append name "-" version "-checkout"))
9514 (sha256
9515 (base32
9516 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9517 ;; TODO: Add tests
9518 (build-system emacs-build-system)
9519 (home-page "https://github.com/jschaf/esup")
9520 (synopsis "Emacs start up profiler")
9521 (description "Benchmark Emacs Startup time without ever leaving
9522your Emacs.")
9523 (license license:gpl2+))))
9524
9525(define-public emacs-sourcemap
9526 (package
9527 (name "emacs-sourcemap")
9528 (version "0.03")
9529 (source
9530 (origin
9531 (method url-fetch)
9532 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9533 version ".tar.gz"))
9534 (file-name (string-append name "-" version ".tar.gz"))
9535 (sha256
9536 (base32
9537 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9538 (build-system emacs-build-system)
9539 (home-page "https://github.com/syohex/emacs-sourcemap")
9540 (synopsis "Sourcemap parser")
9541 (description "Sourcemap parser")
9542 (license license:gpl3+)))
9543
9544(define-public emacs-macrostep
9545 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9546 (package
9547 (name "emacs-macrostep")
9548 (version (git-version "0.9" "1" commit))
9549 (source (origin
9550 (method git-fetch)
9551 (uri (git-reference
9552 (url "https://github.com/joddie/macrostep.git")
9553 (commit commit)))
9554 (file-name (string-append name "-" version "-checkout"))
9555 (sha256
9556 (base32
9557 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9558 (build-system emacs-build-system)
9559 (arguments
9560 '(#:phases
9561 (modify-phases %standard-phases
9562 (add-before 'check 'remove-test
9563 ;; Fails because of requirement ‘/bin/sh’.
9564 (lambda _
9565 (let ((file "macrostep-test.el"))
9566 (chmod file #o644)
9567 (emacs-batch-edit-file file
9568 `(progn (progn (goto-char (point-min))
9569 (re-search-forward
9570 "(ert-deftest macrostep-expand-c-macros")
9571 (beginning-of-line)
9572 (kill-sexp))
9573 (basic-save-buffer))))))
9574 (add-before 'install 'check
9575 (lambda _
9576 (invoke "emacs" "--batch" "-L" "."
9577 "-l" "macrostep-test.el"
9578 "-f" "ert-run-tests-batch-and-exit"))))))
9579 (home-page "https://github.com/joddie/macrostep")
9580 (synopsis "Interactive macro-expander for Emacs")
9581 (description "@code{macrostep} is an Emacs minor mode for interactively
9582stepping through the expansion of macros in Emacs Lisp source code. It lets
9583you see exactly what happens at each step of the expansion process by
9584pretty-printing the expanded forms inline in the source buffer, which is
9585temporarily read-only while macro expansions are visible. You can expand and
9586collapse macro forms one step at a time, and evaluate or instrument the
9587expansions for debugging with Edebug as normal (but see “Bugs and known
9588limitations”, below). Single-stepping through the expansion is particularly
9589useful for debugging macros that expand into another macro form. These can be
9590difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9591until the top-level form is no longer a macro call.")
9592 (license license:gpl3+))))
9593
9594(define-public emacs-parent-mode
9595 (package
9596 (name "emacs-parent-mode")
9597 (version "2.3")
9598 (source
9599 (origin
9600 (method url-fetch)
9601 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9602 version ".tar.gz"))
9603 (file-name (string-append name "-" version ".tar.gz"))
9604 (sha256
9605 (base32
9606 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9607 (build-system emacs-build-system)
9608 (home-page "https://github.com/Fanael/parent-mode")
9609 (synopsis "Get major mode's parent modes")
9610 (description "Get major mode's parent modes")
9611 (license license:gpl3+)))
9612
9613(define-public emacs-lacarte
9614 (package
9615 (name "emacs-lacarte")
9616 (version "0.1")
9617 (source (origin
9618 (method url-fetch)
9619 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
9620 (sha256
9621 (base32
9622 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
9623 (build-system emacs-build-system)
9624 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
9625 (synopsis "Execute menu items as commands, with completion")
9626 (description "Execute menu items as commands, with completion.")
9627 (license license:gpl3)))
9628
9629(define-public emacs-company-lua
9630 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
9631 (package
9632 (name "emacs-company-lua")
9633 (version (git-version "0.1" "1" commit))
9634 (source
9635 (origin
9636 (method git-fetch)
9637 (uri (git-reference
9638 (url "https://github.com/ptrv/company-lua.git")
9639 (commit commit)))
9640 (file-name (git-file-name name version))
9641 (sha256
9642 (base32
9643 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
9644 (build-system emacs-build-system)
9645 (propagated-inputs
9646 `(("emacs-company" ,emacs-company)
9647 ("emacs-s" ,emacs-s)
9648 ("emacs-f" ,emacs-f)
9649 ("emacs-lua-mode" ,emacs-lua-mode)))
9650 (home-page "https://github.com/ptrv/company-lua")
9651 (synopsis "Company backend for Lua")
9652 (description
9653 "This package provides Company backend for Lua programming language.")
9654 (license license:gpl3+))))
9655
9656(define-public emacs-beginend
9657 (package
9658 (name "emacs-beginend")
9659 (version "2.0.0")
9660 (source
9661 (origin
9662 (method url-fetch)
9663 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
9664 "v" version ".tar.gz"))
9665 (file-name (string-append name "-" version ".tar.gz"))
9666 (sha256
9667 (base32
9668 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
9669 ;; TODO: Run tests.
9670 (build-system emacs-build-system)
9671 (inputs
9672 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
9673 (home-page "https://github.com/DamienCassou/beginend")
9674 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
9675 (description "@code{beginend} redefines @code{M-<} and @code{M->}
9676keybindings for Emacs modes so that point moves to meaningful
9677locations. Redefined keys are still accessible by pressing the same
9678key again.")
9679 (license license:gpl3+)))
9680
9681(define-public emacs-mbsync
9682 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
9683 (revision "1"))
9684 (package
9685 (name "emacs-mbsync")
9686 (version (string-append "0.0.1" "-" revision "."
9687 (string-take commit 7)))
9688 (source
9689 (origin
9690 (method git-fetch)
9691 (uri (git-reference
9692 (url "https://github.com/dimitri/mbsync-el.git")
9693 (commit commit)))
9694 (file-name (string-append name "-" version "-checkout"))
9695 (sha256
9696 (base32
9697 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
9698 (build-system emacs-build-system)
9699 (home-page "https://github.com/dimitri/mbsync-el")
9700 (synopsis "Interface to mbsync for Emacs")
9701 (description "This package allows to call the @code{mbsync} from
9702within Emacs.")
9703 (license license:gpl3+))))
9704
9705(define-public emacs-ibuffer-projectile
9706 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
9707 (revision "1"))
9708 (package
9709 (name "emacs-ibuffer-projectile")
9710 (version (string-append "0.2" "-" revision "."
9711 (string-take commit 7)))
9712 (source
9713 (origin
9714 (method git-fetch)
9715 (uri (git-reference
9716 (url "https://github.com/purcell/ibuffer-projectile.git")
9717 (commit commit)))
9718 (file-name (string-append name "-" version "-checkout"))
9719 (sha256
9720 (base32
9721 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
9722 (build-system emacs-build-system)
9723 (propagated-inputs
9724 `(("emacs-projectile" ,emacs-projectile)))
9725 (home-page "https://github.com/purcell/ibuffer-projectile")
9726 (synopsis "Group ibuffer's list by projectile root")
9727 (description "Adds functionality to Emacs @code{ibuffer} for
9728grouping buffers by their projectile root directory.")
9729 (license license:gpl3+))))
9730
9731(define-public emacs-helm-mode-manager
9732 (package
9733 (name "emacs-helm-mode-manager")
9734 (version "1.0.0")
9735 (source
9736 (origin
9737 (method url-fetch)
9738 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9739 "archive/" version ".tar.gz"))
9740 (file-name (string-append name "-" version ".tar.gz"))
9741 (sha256
9742 (base32
9743 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9744 (build-system emacs-build-system)
9745 (propagated-inputs
9746 `(("emacs-helm" ,emacs-helm)))
9747 (home-page "https://github.com/istib/helm-mode-manager/")
9748 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9749 (description "This package provides a Helm interface for toggling Emacs
9750major or minor mode.
9751
9752@itemize
9753@item @code{helm-switch-major-mode} list of all major modes
9754@item @code{helm-enable-minor-mode} list of all inactive minor modes
9755@item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9756@end itemize\n
9757
9758Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9759documentation.")
9760 (license license:gpl3+)))
9761
9762(define-public emacs-hy-mode
9763 (package
9764 (name "emacs-hy-mode")
9765 (version "1.0.3")
9766 (source
9767 (origin
9768 (method url-fetch)
9769 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9770 "v" version ".tar.gz"))
9771 (file-name (string-append name "-" version ".tar.gz"))
9772 (sha256
9773 (base32
9774 "0b4pvbr2hf77bq2vsyfsv653q0dab7qzq85wc7kdziw7687jdf2z"))))
9775 (build-system emacs-build-system)
9776 (propagated-inputs
9777 `(("emacs-dash" ,emacs-dash)
9778 ("emacs-s" ,emacs-s)))
9779 (home-page "https://github.com/hylang/hy-mode")
9780 (synopsis "Major mode for Hylang")
9781 (description "This package provides a major mode for Hylang.")
9782 (license license:gpl3+)))
9783
9784(define-public emacs-web-beautify
9785 (package
9786 (name "emacs-web-beautify")
9787 (version "0.3.2")
9788 (source
9789 (origin
9790 (method url-fetch)
9791 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9792 version ".tar.gz"))
9793 (file-name (string-append name "-" version ".tar.gz"))
9794 (sha256
9795 (base32
9796 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9797 (build-system emacs-build-system)
9798 (home-page "https://github.com/yasuyk/web-beautify")
9799 (synopsis "Format HTML, CSS and JavaScript, JSON")
9800 (description "This package provides an Emacs functions to format HTML,
9801CSS, JavaScript, JSON.")
9802 (license license:gpl3+)))
9803
9804(define-public emacs-helm-shell-history
9805 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9806 (package
9807 (name "emacs-helm-shell-history")
9808 (version (git-version "0.1" "1" commit))
9809 (source
9810 (origin
9811 (method git-fetch)
9812 (uri (git-reference
9813 (url "https://github.com/yuutayamada/helm-shell-history.git")
9814 (commit commit)))
9815 (file-name (git-file-name name version))
9816 (sha256
9817 (base32
9818 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9819 (build-system emacs-build-system)
9820 (arguments
9821 '(#:phases
9822 (modify-phases %standard-phases
9823 (add-before 'check 'patch-helm-shell-history-file
9824 (lambda _
9825 (let ((file "helm-shell-history.el"))
9826 (chmod file #o644)
9827 (emacs-substitute-sexps file
9828 ("(defvar helm-shell-history-file"
9829 `(expand-file-name "~/.bash_history"))))
9830 #t)))))
9831 (propagated-inputs
9832 `(("emacs-helm" ,emacs-helm)))
9833 (home-page "https://github.com/yuutayamada/helm-shell-history")
9834 (synopsis "Find shell history with Emacs Helm")
9835 (description "This package provides an Emacs Helm interface to search
9836throw a shell history.")
9837 (license license:gpl3+))))
9838
9839(define-public emacs-discover-my-major
9840 (package
9841 (name "emacs-discover-my-major")
9842 (version "1.0")
9843 (source
9844 (origin
9845 (method url-fetch)
9846 (uri
9847 (string-append "https://github.com/steckerhalter/discover-my-major"
9848 "/archive/" version ".tar.gz"))
9849 (file-name (string-append name "-" version ".tar.gz"))
9850 (sha256
9851 (base32
9852 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
9853 (build-system emacs-build-system)
9854 (propagated-inputs
9855 `(("emacs-makey" ,emacs-makey)))
9856 (home-page "https://github.com/steckerhalter/discover-my-major")
9857 (synopsis "Discover key bindings for the current Emacs major mode")
9858 (description "This package provides allows to discover key bindings and
9859their meaning for the current Emacs major-mode.")
9860 (license license:gpl3+)))
9861
9862(define-public emacs-org-ref
9863 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
9864 (revision "1"))
9865 (package
9866 (name "emacs-org-ref")
9867 (version (string-append "1.1.1" "-" revision "."
9868 (string-take commit 7)))
9869 (source
9870 (origin
9871 (method git-fetch)
9872 (uri (git-reference
9873 (url "https://github.com/jkitchin/org-ref.git")
9874 (commit commit)))
9875 (file-name (string-append name "-" version "-checkout"))
9876 (sha256
9877 (base32
9878 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
9879 (build-system emacs-build-system)
9880 (propagated-inputs
9881 `(("emacs-dash" ,emacs-dash)
9882 ("emacs-helm" ,emacs-helm)
9883 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
9884 ("emacs-ivy" ,emacs-ivy)
9885 ("emacs-hydra" ,emacs-hydra)
9886 ("emacs-key-chord" ,emacs-key-chord)
9887 ("emacs-s" ,emacs-s)
9888 ("emacs-f" ,emacs-f)
9889 ("emacs-pdf-tools" ,emacs-pdf-tools)))
9890 (home-page "https://github.com/jkitchin/org-ref")
9891 (synopsis "Citations, cross-references and bibliographies in org-mode")
9892 (description
9893 "Lisp code to setup bibliography, cite, ref and label org-mode links.
9894Also sets up reftex and helm for org-mode citations. The links are
9895clickable and do things that are useful.
9896
9897The default setup uses helm-bibtex.
9898
9899You should really read org-ref.org in this package for details.")
9900 (license license:gpl3+))))
9901
9902(define-public emacs-org-reveal
9903 (package
9904 (name "emacs-org-reveal")
9905 ;; There are no proper tag, so we use the latest commit of the stable
9906 ;; branch, as does MELPA.
9907 (version "20161027.926")
9908 (source (origin
9909 (method git-fetch)
9910 (uri (git-reference
9911 (url "https://github.com/yjwen/org-reveal.git")
9912 (commit "001567cc12d50ba07612edd1718b86a12e8c2547")))
9913 (file-name (string-append name "-" version "-checkout"))
9914 (sha256
9915 (base32
9916 "18rma8smjrskbjyna076zhvx79zs5r5vinb537h8mw13pfxd6cm8"))))
9917 (build-system emacs-build-system)
9918 (home-page "https://github.com/yjwen/org-reveal")
9919 (synopsis "Org and Reveal.js powered HTML presentation tool")
9920 (description "Org-Reveal is a command@{org-mode} extension that allows to
9921create beautiful presentations (slides) with 3D effects from simple but
9922powerful Org contents.")
9923 (license license:gpl3+)))
9924
9925(define-public emacs-add-hooks
9926 (package
9927 (name "emacs-add-hooks")
9928 (version "3.1.1")
9929 (source (origin
9930 (method url-fetch)
9931 (uri (string-append
9932 "https://github.com/nickmccurdy/add-hooks/archive/"
9933 version ".tar.gz"))
9934 (file-name (string-append name "-" version ".tar.gz"))
9935 (sha256
9936 (base32
9937 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
9938 (build-system emacs-build-system)
9939 (home-page "https://github.com/nickmccurdy/add-hooks/")
9940 (synopsis "Emacs function for setting multiple hooks")
9941 (description "This package provides a @code{add-hooks} function tidies up
9942duplicate hook and function names further into a single declarative call.")
9943 (license license:gpl3+)))
9944
9945(define-public emacs-fancy-narrow
9946 (package
9947 (name "emacs-fancy-narrow")
9948 (version "0.9.5")
9949 (source
9950 (origin
9951 (method url-fetch)
9952 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
9953 version ".tar.gz"))
9954 (file-name (string-append name "-" version ".tar.gz"))
9955 (sha256
9956 (base32
9957 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
9958 (build-system emacs-build-system)
9959 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
9960 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
9961 (description
9962 "Unlike @code{narrow-to-region}, which completely hides text outside
9963the narrowed region, this package simply de-emphasizes the text, makes it
9964read-only, and makes it unreachable. This leads to a much more natural
9965feeling where the region stays static (instead of being brutally moved to a
9966blank slate) and is clearly highlighted with respect to the rest of the
9967buffer.")
9968 (license license:gpl2+)))
9969
9970(define-public emacs-know-your-http-well
9971 (package
9972 (name "emacs-know-your-http-well")
9973 (version "0.5.0")
9974 (source
9975 (origin
9976 (method url-fetch)
9977 (uri (string-append
9978 "https://github.com/for-GET/know-your-http-well/archive/"
9979 "v" version ".tar.gz"))
9980 (file-name (string-append name "-" version ".tar.gz"))
9981 (sha256
9982 (base32
9983 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
9984 (arguments
9985 `(#:phases
9986 (modify-phases %standard-phases
9987 (add-after 'unpack 'install-json-files
9988 (lambda* (#:key outputs #:allow-other-keys)
9989 (for-each (lambda (directory)
9990 (copy-recursively directory
9991 (string-append
9992 (assoc-ref outputs "out")
9993 directory)))
9994 '("js" "json"))))
9995 (add-after 'unpack 'chdir-elisp
9996 ;; Elisp directory is not in root of the source.
9997 (lambda _
9998 (chdir "emacs"))))))
9999 (build-system emacs-build-system)
10000 (home-page "https://github.com/for-GET/know-your-http-well")
10001 (synopsis "Meaning of HTTP headers codes")
10002 (description "Meaning of HTTP headers codes.")
10003 (license license:gpl3+)))
10004
10005(define-public emacs-navi-mode
10006 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
10007 (package
10008 (name "emacs-navi-mode")
10009 (version (git-version "2.0" "1" commit))
10010 (source
10011 (origin
10012 (method git-fetch)
10013 (uri (git-reference
10014 (url "https://github.com/alphapapa/navi.git")
10015 (commit commit)))
10016 (file-name (git-file-name name version))
10017 (sha256
10018 (base32
10019 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
10020 (build-system emacs-build-system)
10021 (propagated-inputs
10022 `(("emacs-outshine" ,emacs-outshine)
10023 ("emacs-outorg" ,emacs-outorg)))
10024 (home-page "https://github.com/alphapapa/navi")
10025 (synopsis "Emacs major-mode for easy buffer-navigation")
10026 (description
10027 "This package provides an Emacs major-mode for easy buffer-navigation")
10028 (license license:gpl3+))))
10029
10030(define-public emacs-download-region
10031 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
10032 (revision "1"))
10033 (package
10034 (name "emacs-download-region")
10035 (version (string-append "0.0.1" "-" revision "."
10036 (string-take commit 7)))
10037 (source
10038 (origin
10039 (method git-fetch)
10040 (uri (git-reference
10041 (url "https://github.com/zk-phi/download-region.git")
10042 (commit commit)))
10043 (file-name (string-append name "-" version "-checkout"))
10044 (sha256
10045 (base32
10046 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
10047 (build-system emacs-build-system)
10048 (home-page "https://github.com/zk-phi/download-region")
10049 (synopsis "In buffer download manager for Emacs")
10050 (description "@code{download-region} provides in buffer
10051downloading manager for Emacs.")
10052 (license license:gpl3+))))
10053
10054(define-public emacs-helpful
10055 (package
10056 (name "emacs-helpful")
10057 (version "0.15")
10058 (source (origin
10059 (method url-fetch)
10060 (uri (string-append
10061 "https://github.com/Wilfred/helpful/archive/"
10062 version ".tar.gz"))
10063 (file-name (string-append name "-" version ".tar.gz"))
10064 (sha256
10065 (base32
10066 "1xmvhphzb4hbg647dz4lafy6hd19b7bk3lxni6irqrzdsrclhzn6"))))
10067 (build-system emacs-build-system)
10068 (propagated-inputs
10069 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
10070 (home-page "https://github.com/Wilfred/helpful")
10071 (synopsis "More contextual information in Emacs help")
10072 (description "@code{helpful} is an alternative to the built-in Emacs help
10073that provides much more contextual information.
10074
10075@itemize
10076@item Show the source code for interactively defined functions (unlike the
10077built-in Help).
10078@item Fall back to the raw sexp if no source is available.
10079@item Show where a function is being called.
10080@item Docstrings will Highlight the summary (the first sentence), include
10081cross-references, hide superfluous puncuation.
10082@item Show you the properties that have been applied to the current
10083symbol. This provides visibility of features like edebug or byte-code
10084optimisation.
10085@item Provide a separate @code{helpful-command} function to view interactive
10086functions.
10087@item Display any keybindings that apply to interactive functions.
10088@item Trace, disassemble functions from inside Helpful. This is discoverable
10089and doesn't require memorisation of commands.
10090@end itemize\n")
10091 (license license:gpl3+)))
10092
10093(define-public emacs-logview
10094 (package
10095 (name "emacs-logview")
10096 (version "0.9")
10097 (source (origin
10098 (method url-fetch)
10099 (uri (string-append
10100 "https://github.com/doublep/logview/archive/"
10101 version ".tar.gz"))
10102 (file-name (string-append name "-" version ".tar.gz"))
10103 (sha256
10104 (base32
10105 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
10106 (propagated-inputs
10107 `(("emacs-datetime" ,emacs-datetime)))
10108 (build-system emacs-build-system)
10109 (home-page "https://github.com/doublep/logview/")
10110 (synopsis "Emacs mode for viewing log files")
10111 (description "@code{logview} provides an Emacs mode to view log files.")
10112 (license license:gpl3+)))
10113
10114(define-public emacs-suggest
10115 (package
10116 (name "emacs-suggest")
10117 (version "0.4")
10118 (source
10119 (origin
10120 (method url-fetch)
10121 (uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
10122 version ".tar.gz"))
10123 (file-name (string-append name "-" version ".tar.gz"))
10124 (sha256
10125 (base32
10126 "1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
10127 (build-system emacs-build-system)
10128 (propagated-inputs
10129 `(("emacs-loop" ,emacs-loop)
10130 ("emacs-dash" ,emacs-dash)
10131 ("emacs-s" ,emacs-s)
10132 ("emacs-f" ,emacs-f)))
10133 (home-page "https://github.com/Wilfred/suggest.el")
10134 (synopsis "Suggest Elisp functions that give the output requested")
10135 (description "Suggest.el will find functions that give the output
10136requested. It's a great way of exploring list, string and arithmetic
10137functions.")
10138 (license license:gpl3+)))
10139
10140(define-public emacs-benchmark-init
10141 (package
10142 (name "emacs-benchmark-init")
10143 (version "1.0")
10144 (source (origin
10145 (method url-fetch)
10146 (uri (string-append
10147 "https://github.com/dholm/benchmark-init-el/archive/"
10148 version ".tar.gz"))
10149 (file-name (string-append name "-" version ".tar.gz"))
10150 (sha256
10151 (base32
10152 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
10153 (build-system emacs-build-system)
10154 (home-page "https://github.com/dholm/benchmark-init-el")
10155 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
10156 (description "@code{benchmark-init} provides a way to keep track of where
10157time is being spent during Emacs startup in order to optimize startup time.")
10158 (license license:gpl3+)))
10159
10160(define-public emacs-emms-player-simple-mpv
10161 ;; A new mpv backend is included in Emms from 5.0.
10162 (deprecated-package "emacs-emms-player-simple-mpv" emacs-emms))
10163
f0caf760
MC
10164(define-public emacs-magit-gerrit
10165 (let ((version "0.3")
10166 (revision "1")
10167 (commit "ece6f369694aca17f3ac166ed2801b432acfe20d"))
10168 (package
10169 (name "emacs-magit-gerrit")
10170 (version (git-version version revision commit))
10171 (source (origin
10172 (method git-fetch)
10173 (uri (git-reference
10174 (url "https://github.com/terranpro/magit-gerrit.git")
10175 (commit commit)))
10176 (file-name (git-file-name name version))
10177 (sha256
10178 (base32
10179 "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"))))
10180 (build-system emacs-build-system)
10181 (propagated-inputs
10182 `(("emacs-magit" ,emacs-magit)))
10183 (home-page "https://github.com/terranpro/magit-gerrit")
10184 (synopsis "Magit extension for Gerrit")
10185 (description "This Magit extension provides integration with Gerrit,
10186which makes it possible to conduct Gerrit code reviews directly from within
10187Emacs.")
10188 (license license:gpl3+))))
10189
eeb883cb
RW
10190(define-public emacs-magit-org-todos-el
10191 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
10192 (package
10193 (name "emacs-magit-org-todos-el")
10194 (version (git-version "0.1.1" "1" commit))
10195 (source
10196 (origin
10197 (method git-fetch)
10198 (uri (git-reference
10199 (url "https://github.com/danielma/magit-org-todos.el.git")
10200 (commit commit)))
10201 (file-name (git-file-name name version))
10202 (sha256
10203 (base32
10204 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
10205 (propagated-inputs
10206 `(("magit" ,emacs-magit)))
10207 (build-system emacs-build-system)
10208 (home-page "https://github.com/danielma/magit-org-todos.el")
10209 (synopsis "Get todo.org into Emacs Magit status")
10210 (description "This package allows you to get @file{todo.org} into your
10211magit status.
10212
10213If you have a @file{todo.org} file with @code{TODO} items in the root of your
10214repository, @code{magit-org-todos} will create a section in your Magit status
10215buffer with each of your todos.")
10216 (license license:gpl3+))))
10217
10218(define-public emacs-f3
10219 (package
10220 (name "emacs-f3")
10221 (version "0.1")
10222 (source
10223 (origin
10224 (method url-fetch)
10225 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
10226 version ".tar.gz"))
10227 (file-name (string-append name "-" version ".tar.gz"))
10228 (sha256
10229 (base32
10230 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
10231 (build-system emacs-build-system)
10232 (propagated-inputs
10233 `(("emacs-helm" ,emacs-helm)))
10234 (home-page "https://github.com/cosmicexplorer/f3")
10235 (synopsis "Fantastic File Finder for Emacs")
10236 (description
10237 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
10238 (license license:gpl3+)))
10239
10240(define-public emacs-lice-el
10241 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
10242 (package
10243 (name "emacs-lice-el")
10244 (version (git-version "0.2" "1" commit))
10245 (source (origin
10246 (method git-fetch)
10247 (uri (git-reference
10248 (url "https://github.com/buzztaiki/lice-el.git")
10249 (commit commit)))
10250 (file-name (git-file-name name version))
10251 (sha256
10252 (base32
10253 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
10254 (build-system emacs-build-system)
10255 (home-page "https://github.com/buzztaiki/lice-el")
10256 (synopsis "License and header template for Emacs")
10257 (description "@code{lice.el} provides following features:
10258
10259@itemize
10260@item License template management.
10261@item File header insertion.
10262@end itemize\n")
10263 (license license:gpl3+))))
10264
10265(define-public emacs-academic-phrases
10266 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
10267 (package
10268 (name "emacs-academic-phrases")
10269 (version (git-version "0.1" "1" commit))
10270 (source
10271 (origin
10272 (method git-fetch)
10273 (uri (git-reference
10274 (url "https://github.com/nashamri/academic-phrases.git")
10275 (commit commit)))
10276 (file-name (string-append name "-" version "-checkout"))
10277 (sha256
10278 (base32
10279 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
10280 (build-system emacs-build-system)
10281 (propagated-inputs
10282 `(("emacs-dash" ,emacs-dash)
10283 ("emacs-s" ,emacs-s)
10284 ("emacs-ht" ,emacs-ht)))
10285 (home-page "https://github.com/nashamri/academic-phrases")
10286 (synopsis "Bypass that mental block when writing your papers")
10287 (description
10288 "When writing your academic paper, you might get stuck trying to find
10289the right phrase that captures your intention. This package tries to
10290alleviate that problem by presenting you with a list of phrases organized by
10291the topic or by the paper section that you are writing. This package has
10292around 600 phrases so far.
10293
10294Using this package is easy, just call @code{academic-phrases} to get a list of
10295phrases organized by topic, or call @code{academic-phrases-by-section} to
10296browse the phrases by the paper section and fill-in the blanks if required.")
10297 (license license:gpl3+))))
10298
10299(define-public emacs-auto-yasnippet
10300 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
10301 (package
10302 (name "emacs-auto-yasnippet")
10303 (version (git-version "0.3.0" "1" commit))
10304 (source (origin
10305 (method git-fetch)
10306 (uri (git-reference
10307 (url "https://github.com/abo-abo/auto-yasnippet.git")
10308 (commit commit)))
10309 (file-name (string-append name "-" version "-checkout"))
10310 (sha256
10311 (base32
10312 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
10313 (build-system emacs-build-system)
10314 (arguments
10315 '(#:phases
10316 (modify-phases %standard-phases
10317 (add-before 'install 'check
10318 (lambda _
10319 (invoke "emacs" "--batch"
10320 "-l" "auto-yasnippet.el"
10321 "-l" "auto-yasnippet-test.el"
10322 "-f" "ert-run-tests-batch-and-exit"))))))
10323 (propagated-inputs
10324 `(("emacs-yasnippet" ,emacs-yasnippet)))
10325 (home-page "https://github.com/abo-abo/auto-yasnippet/")
10326 (synopsis "Quickly create disposable yasnippets")
10327 (description "This package provides a hybrid of keyboard macros and
10328yasnippet. You create the snippet on the go, usually to be used just in the
10329one place. It's fast, because you're not leaving the current buffer, and all
10330you do is enter the code you'd enter anyway, just placing ~ where you'd like
10331yasnippet fields and mirrors to be.")
10332 (license license:gpl3+))))
10333
10334(define-public emacs-highlight-numbers
10335 (package
10336 (name "emacs-highlight-numbers")
10337 (version "0.2.3")
10338 (source
10339 (origin
10340 (method url-fetch)
10341 (uri (string-append
10342 "https://github.com/Fanael/highlight-numbers/archive/"
10343 version ".tar.gz"))
10344 (file-name (string-append name "-" version ".tar.gz"))
10345 (sha256
10346 (base32
10347 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
10348 (build-system emacs-build-system)
10349 (propagated-inputs
10350 `(("emacs-parent-mode" ,emacs-parent-mode)))
10351 (home-page "https://github.com/Fanael/highlight-numbers")
10352 (synopsis "Highlight numbers in source code")
10353 (description "@code{highlight-numbers-mode} provides a minor mode for
10354syntax highlighting of numeric literals in source code.
10355
10356It s customizable: it's easy to add or redefine what exactly consitutes a
10357\"number\" in given major mode. See @code{highlight-numbers-modelist}.")
10358 (license license:gpl3+)))
10359
10360(define-public emacs-darkroom
10361 (package
10362 (name "emacs-darkroom")
10363 (version "0.1")
10364 (source (origin
10365 (method url-fetch)
10366 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
10367 version ".el"))
10368 (sha256
10369 (base32
10370 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
10371 (build-system emacs-build-system)
10372 (home-page "https://elpa.gnu.org/packages/darkroom.html")
10373 (synopsis "Remove visual distractions and focus on writing")
10374 (description "@code{darkroom-mode} makes visual distractions disappear.
10375The mode-line is temporarily elided, text is enlarged and margins are adjusted
10376so that it's centered on the window.
10377
10378@code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
10379@code{darkroom-mode}, unless the current buffer lives in the sole window of
10380the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
10381split to display more windows and more buffers, the buffer exits
10382@code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
10383@code{darkroom-mode}.")
10384 (license license:gpl3+)))
10385
10386(define-public emacs-rsw-elisp
10387 (package
10388 (name "emacs-rsw-elisp")
10389 (version "1.0.5")
10390 (source (origin
10391 (method url-fetch)
10392 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
10393 "/archive/" version ".tar.gz"))
10394 (file-name (string-append name "-" version ".tar.gz"))
10395 (sha256
10396 (base32
10397 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
10398 (build-system emacs-build-system)
10399 (home-page "https://github.com/rswgnu/rsw-elisp")
10400 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
10401 (description "This package improves and replaces the GNU Emacs commands
10402that interactively evaluate Emacs Lisp expressions. The new commands replace
10403standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
10404the same way as the old commands when called non-interactively; only the
10405interactive behavior should be different.")
10406 (license license:gpl3+)))
10407
10408(define-public emacs-default-text-scale
10409 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10410 (revision "1"))
10411 (package
10412 (name "emacs-default-text-scale")
10413 (version (string-append "0.1" "-" revision "."
10414 (string-take commit 7)))
10415 (source (origin
10416 (method git-fetch)
10417 (uri (git-reference
10418 (url "https://github.com/purcell/default-text-scale")
10419 (commit commit)))
10420 (file-name (string-append name "-" version "-checkout"))
10421 (sha256
10422 (base32
10423 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10424 (build-system emacs-build-system)
10425 (home-page "https://github.com/purcell/default-text-scale")
10426 (synopsis "Adjust the font size in all Emacs frames")
10427 (description "This package provides commands for increasing or
10428decreasing the default font size in all GUI Emacs frames.")
10429 (license license:gpl3+))))
10430
10431(define-public emacs-visual-regexp
10432 (package
10433 (name "emacs-visual-regexp")
10434 (version "1.1.1")
10435 (source
10436 (origin
10437 (method url-fetch)
10438 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10439 "v" version ".tar.gz"))
10440 (file-name (string-append name "-" version ".tar.gz"))
10441 (sha256
10442 (base32
10443 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10444 (build-system emacs-build-system)
10445 (home-page "https://github.com/benma/visual-regexp.el/")
10446 (synopsis "Regexp command with interactive visual feedback")
10447 (description "This package provides an Emacs regexp command with
10448interactive visual feedback.")
10449 (license license:gpl3+)))
10450
10451(define-public emacs-faceup
10452 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10453 (revision "1"))
10454 (package
10455 (name "emacs-faceup")
10456 (version (string-append "0.0.1" "-" revision "."
10457 (string-take commit 7)))
10458 (source
10459 (origin
10460 (method git-fetch)
10461 (uri (git-reference
10462 (url "https://github.com/Lindydancer/faceup.git")
10463 (commit commit)))
10464 (file-name (string-append name "-" version "-checkout"))
10465 (sha256
10466 (base32
10467 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10468 (build-system emacs-build-system)
10469 (home-page "https://github.com/Lindydancer/faceup")
10470 (synopsis "Markup language for faces and font-lock regression testing")
10471 (description "Emacs is capable of highlighting buffers based on
10472language-specific @code{font-lock} rules. This package makes it possible to
10473perform regression test for packages that provide font-lock rules.")
10474 (license license:gpl3+))))
10475
10476(define-public emacs-racket-mode
10477 (let ((commit "b977873e6128f8399432dcd60cc39f6a6f803d9c")
10478 (revision "2"))
10479 (package
10480 (name "emacs-racket-mode")
10481 (version (string-append "0.0.2" "-" revision "."
10482 (string-take commit 7)))
10483 (source
10484 (origin
10485 (method git-fetch)
10486 (uri (git-reference
10487 (url "https://github.com/greghendershott/racket-mode")
10488 (commit commit)))
10489 (file-name (string-append name "-" version "-checkout"))
10490 (sha256
10491 (base32
10492 "0vp4bbbplqvmnhjpl6ajrlydmrhqzil56cfbs18m5c5fddx0zlh7"))))
10493 (build-system emacs-build-system)
10494 (arguments
10495 `(#:include '("\\.el$" "\\.rkt$")))
10496 (propagated-inputs
10497 `(("emacs-faceup" ,emacs-faceup)
10498 ("emacs-s" ,emacs-s)))
10499 (home-page "https://github.com/greghendershott/racket-mode")
10500 (synopsis "Major mode for Racket language")
10501 (description "@code{racket-mode} provides:
10502
10503@itemize
10504@item Focus on Racket (not various Schemes).
10505@item Follow DrRacket concepts where applicable.
10506@item Thorough font-lock and indent.
10507@end itemize\n")
10508 (license license:gpl3+))))
10509
10510(define-public emacs-grep-context
10511 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10512 (package
10513 (name "emacs-grep-context")
10514 (version (git-version "0.1" "1" commit))
10515 (source
10516 (origin
10517 (method git-fetch)
10518 (uri (git-reference
10519 (url "https://github.com/mkcms/grep-context.git")
10520 (commit commit)))
10521 (file-name (string-append name "-" version "-checkout"))
10522 (sha256
10523 (base32
10524 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10525 (build-system emacs-build-system)
10526 (propagated-inputs
10527 `(("emacs-dash" ,emacs-dash)))
10528 (home-page "https://github.com/nashamri/academic-phrases")
10529 (synopsis "Increase context in compilation and grep buffers")
10530 (description
10531 "This package provides an Emacs package for more context in
10532compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10533@code{ivy}.")
10534 (license license:gpl3+))))
10535
10536(define-public emacs-helm-firefox
10537 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10538 (revision "1"))
10539 (package
10540 (name "emacs-helm-firefox")
10541 (version (string-append "0.0.1" "-" revision "."
10542 (string-take commit 7)))
10543 (source
10544 (origin
10545 (method git-fetch)
10546 (uri (git-reference
10547 (url "https://github.com/emacs-helm/helm-firefox.git")
10548 (commit commit)))
10549 (file-name (string-append name "-" version "-checkout"))
10550 (sha256
10551 (base32
10552 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
10553 (propagated-inputs
10554 `(("emacs-helm" ,emacs-helm)))
10555 (build-system emacs-build-system)
10556 (home-page "https://github.com/emacs-helm/helm-firefox")
10557 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10558 (description "Display firefox bookmarks with Emacs Helm interface")
10559 (license license:gpl3+))))
10560
10561(define-public emacs-interactive-align
10562 (package
10563 (name "emacs-interactive-align")
10564 (version "0.1.0")
10565 (source
10566 (origin
10567 (method url-fetch)
10568 (uri (string-append "https://github.com/mkcms/interactive-align/"
10569 "archive/" "v" version ".tar.gz"))
10570 (file-name (string-append name "-" version ".tar.gz"))
10571 (sha256
10572 (base32
10573 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
10574 (build-system emacs-build-system)
10575 (home-page "https://github.com/mkcms/interactive-align/")
10576 (synopsis "Interactive align-regexp command in Emacs")
10577 (description "Interactive align-regexp command in Emacs")
10578 (license license:gpl3+)))
10579
10580(define-public emacs-shift-number
10581 (package
10582 (name "emacs-shift-number")
10583 (version "0.1")
10584 (source
10585 (origin
10586 (method url-fetch)
10587 (uri (string-append "https://github.com/alezost/shift-number.el"
10588 "/archive/" "v" version ".tar.gz"))
10589 (file-name (string-append name "-" version ".tar.gz"))
10590 (sha256
10591 (base32
10592 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
10593 (build-system emacs-build-system)
10594 (home-page "https://github.com/alezost/shift-number.el")
10595 (synopsis "Increase or decrease the number at point")
10596 (description "@code{emacs-shift-number} provides commands
10597@code{shift-number-up} to increase and @code{shift-number-down} to
10598decrease the number at point.")
10599 (license license:gpl3+)))
10600
10601(define-public emacs-highlight-defined
10602 (package
10603 (name "emacs-highlight-defined")
10604 (version "0.1.5")
10605 (source
10606 (origin
10607 (method url-fetch)
10608 (uri (string-append
10609 "https://github.com/Fanael/highlight-defined/archive/"
10610 version ".tar.gz"))
10611 (file-name (string-append name "-" version ".tar.gz"))
10612 (sha256
10613 (base32
10614 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
10615 (build-system emacs-build-system)
10616 (home-page "https://github.com/Fanael/highlight-defined")
10617 (synopsis "Syntax highlighting of known Elisp symbols")
10618 (description "Minor mode providing syntax highlighting of known Emacs Lisp
10619symbols. Currently the code distinguishes Lisp functions, built-in functions,
10620macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
10621 (license license:gpl3+)))
10622
10623(define-public emacs-parinfer-mode
10624 (package
10625 (name "emacs-parinfer-mode")
10626 (version "0.4.10")
10627 (source
10628 (origin
10629 (method url-fetch)
10630 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
10631 "v" version ".tar.gz"))
10632 (file-name (string-append name "-" version ".tar.gz"))
10633 (sha256
10634 (base32
10635 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
10636 (propagated-inputs
10637 `(("emacs-dash" ,emacs-dash)
10638 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
10639 ("emacs-company" ,emacs-company)))
10640 (build-system emacs-build-system)
10641 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
10642 (synopsis "Lisp structure editing mode")
10643 (description "@code{parinfer-mode} is a proof-of-concept editor
10644mode for Lisp programming languages. It will infer some changes to
10645keep Parens and Indentation inline with one another.")
10646 (license license:gpl3+)))
10647
10648(define-public emacs-helm-eww
10649 (let ((commit "9d36acc433bcf689598b1b4d7d47c9aeb84d6b44"))
10650 (package
10651 (name "emacs-helm-eww")
10652 (version (git-version "0.1" "3" commit))
10653 (source (origin
10654 (method git-fetch)
10655 (uri (git-reference
10656 (url "https://github.com/emacs-helm/helm-eww.git")
10657 (commit commit)))
10658 (file-name (string-append name "-" version "-checkout"))
10659 (sha256
10660 (base32
10661 "06gnf84gx6qbhcw1h5jhjnvcdxkdpv0npm53x3pgqybbll5rn5dy"))))
10662 (propagated-inputs
10663 `(("emacs-helm" ,emacs-helm)))
10664 (build-system emacs-build-system)
10665 (home-page "https://github.com/emacs-helm/helm-eww/")
10666 (synopsis "Helm interface to EWW")
10667 (description "This package provides a Helm interface for EWW buffers,
10668bookmarks and history.")
10669 (license license:gpl3+))))
10670
10671(define-public emacs-stumpwm-mode
10672 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
10673 (revision "1"))
10674 (package
10675 (name "emacs-stumpwm-mode")
10676 (version (string-append "0.0.1-" revision "."
10677 (string-take commit 7)))
10678 (source (origin
10679 (method git-fetch)
10680 (uri (git-reference
10681 (url "https://github.com/stumpwm/stumpwm-contrib.git")
10682 (commit commit)))
10683 (file-name (string-append name "-" version "-checkout"))
10684 (sha256
10685 (base32
10686 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
10687 (build-system emacs-build-system)
10688 (arguments
10689 `(#:phases
10690 (modify-phases %standard-phases
10691 (add-after 'unpack 'chdir-elisp
10692 ;; Elisp directory is not in root of the source.
10693 (lambda _
10694 (chdir "util/swm-emacs"))))))
10695 (home-page "https://github.com/stumpwm/stumpwm-contrib")
10696 (synopsis "Emacs minor-mode for Stumpwm")
10697 (description "Emacs minor-mode for Stumpwm")
10698 (license license:gpl3+))))
10699
10700(define-public emacs-irfc
10701 (package
10702 (name "emacs-irfc")
10703 (version "20130824.507")
10704 (source
10705 (origin
10706 (method url-fetch)
10707 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
10708 (file-name (string-append "irfc-" version ".el"))
10709 (sha256
10710 (base32
10711 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
10712 (build-system emacs-build-system)
10713 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
10714 (synopsis "Interface for IETF RFC document")
10715 (description
10716 "This package provides an Emacs interface for IETF RFC document.")
10717 (license license:gpl3+)))
10718
10719(define-public emacs-ido-vertical-mode
10720 (package
10721 (name "emacs-ido-vertical-mode")
10722 (version "0.1.6")
10723 (source
10724 (origin
10725 (method url-fetch)
10726 (uri (string-append
10727 "https://github.com/creichert/ido-vertical-mode.el/archive/"
10728 "v" version ".tar.gz"))
10729 (file-name (string-append name "-" version ".tar.gz"))
10730 (sha256
10731 (base32
10732 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
10733 (build-system emacs-build-system)
10734 (home-page "https://github.com/creichert/ido-vertical-mode.el")
10735 (synopsis "Makes ido-mode display vertically")
10736 (description "Makes ido-mode display prospects vertically.")
10737 (license license:gpl3+)))
10738
10739(define-public emacs-wordgen
10740 (package
10741 (name "emacs-wordgen")
10742 (version "0.1.4")
10743 (source
10744 (origin
10745 (method url-fetch)
10746 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
10747 version ".tar.gz"))
10748 (file-name (string-append name "-" version ".tar.gz"))
10749 (sha256
10750 (base32
10751 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
10752 (build-system emacs-build-system)
10753 (home-page "https://github.com/Fanael/wordgen.el")
10754 (synopsis "Random word generator")
10755 (description "This package provides functions to generate random words
10756using user-provided rules.")
10757 (license license:gpl3+)))
10758
10759(define-public emacs-on-screen
10760 (package
10761 (name "emacs-on-screen")
10762 (version "1.3.2")
10763 (source
10764 (origin
10765 (method url-fetch)
10766 (uri (string-append
10767 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
10768 (file-name (string-append name "-" version ".el"))
10769 (sha256
10770 (base32
10771 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
10772 (build-system emacs-build-system)
10773 (home-page
10774 "https://github.com/michael-heerdegen/on-screen.el")
10775 (synopsis "Guide your eyes while scrolling")
10776 (description
10777 "Scrolling can be distracting because your eyes may lose
10778orientation. This library implements a minor mode that highlights
10779the previously visible buffer part after each scroll.")
10780 (license license:gpl3+)))
10781
10782(define-public emacs-highlight-escape-sequences
10783 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
10784 (revision "1"))
10785 (package
10786 (name "emacs-highlight-escape-sequences")
10787 (version (string-append "0.0.1" "-" revision "."
10788 (string-take commit 7)))
10789 (source
10790 (origin
10791 (method git-fetch)
10792 (uri (git-reference
10793 (url "https://github.com/dgutov/highlight-escape-sequences.git")
10794 (commit commit)))
10795 (file-name (string-append name "-" version "-checkout"))
10796 (sha256
10797 (base32
10798 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
10799 (build-system emacs-build-system)
10800 (home-page "https://github.com/dgutov/highlight-escape-sequences")
10801 (synopsis "Highlight escape sequences in Emacs")
10802 (description "@code{highlight-escape-sequences} provides an
10803Emacs minor mode to escape sequences in code.")
10804 (license license:gpl3+))))
10805
10806(define-public emacs-dashboard
10807 (package
10808 (name "emacs-dashboard")
10809 (version "1.2.4")
10810 (source
10811 (origin
10812 (method url-fetch)
10813 (uri (string-append
10814 "https://github.com/rakanalh/emacs-dashboard/archive/"
10815 version ".tar.gz"))
10816 (file-name (string-append name "-" version ".tar.gz"))
10817 (sha256
10818 (base32
10819 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
10820 (build-system emacs-build-system)
10821 (propagated-inputs
10822 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
10823 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
10824 (home-page "https://github.com/rakanalh/emacs-dashboard")
10825 (synopsis "Startup screen extracted from Spacemacs")
10826 (description "This package provides an extensible Emacs dashboard, with
10827sections for bookmarks, projectil projects, org-agenda and more. ")
10828 (license license:gpl3+)))
10829
10830(define-public emacs-slime-company
10831 (package
10832 (name "emacs-slime-company")
10833 (version "1.1")
10834 (source
10835 (origin
10836 (method url-fetch)
10837 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
10838 "v" version ".tar.gz"))
10839 (sha256
10840 (base32
10841 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
10842 (file-name (string-append name "-" version ".tar.gz"))))
10843 (build-system emacs-build-system)
10844 (propagated-inputs
10845 `(("emacs-slime" ,emacs-slime)
10846 ("emacs-company" ,emacs-company)))
10847 (home-page "https://company-mode.github.io")
10848 (synopsis "SLIME completion backend for @code{company-mode}")
10849 (description
10850 "This is a backend implementation for the completion package
10851@code{company-mode} which supports the normal and the fuzzy completion
10852modes of SLIME.")
10853 (license license:gpl3+)))
10854
10855(define-public emacs-sml-mode
10856 (package
10857 (name "emacs-sml-mode")
10858 (version "6.8")
10859 (source
10860 (origin
10861 (method url-fetch)
10862 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
10863 version ".el"))
10864 (sha256
10865 (base32
10866 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
10867 (build-system emacs-build-system)
10868 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
10869 (synopsis "Major mode for editing (Standard) ML")
10870 (description "SML-MODE is a major Emacs mode for editing Standard ML.
10871It provides syntax highlighting and automatic indentation and
10872comes with sml-proc which allows interaction with an inferior SML
10873interactive loop.")
10874 (license license:gpl3+)))
10875
10876(define-public emacs-eros
10877 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
10878 (revision "1"))
10879 (package
10880 (name "emacs-eros")
10881 (version (string-append "0.0.1" "-" revision "."
10882 (string-take commit 7)))
10883 (source
10884 (origin
10885 (method git-fetch)
10886 (uri (git-reference
10887 (url "https://github.com/xiongtx/eros.git")
10888 (commit commit)))
10889 (file-name (string-append name "-" version "-checkout"))
10890 (sha256
10891 (base32
10892 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
10893 (build-system emacs-build-system)
10894 (home-page "https://github.com/xiongtx/eros")
10895 (synopsis "Evaluation result overlays")
10896 (description "@code{eros} provides evaluation result overlays.")
10897 (license license:gpl3+))))
10898
10899(define-public emacs-stickyfunc-enhance
10900 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
10901 (revision "1"))
10902 (package
10903 (name "emacs-stickyfunc-enhance")
10904 (version "0.1")
10905 (source
10906 (origin
10907 (method git-fetch)
10908 (uri (git-reference
10909 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
10910 (commit commit)))
10911 (file-name (string-append name "-" version "-checkout"))
10912 (sha256
10913 (base32
10914 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
10915 (build-system emacs-build-system)
10916 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
10917 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
10918 (description
10919 "@code{semantic-stickyfunc-mode} shows the function point is currently
10920in at the first line of the current buffer. This is useful when you have a
10921very long function that spreads more than a screen, and you don't have to
10922scroll up to read the function name and then scroll down to original position.")
10923 (license license:gpl3+))))
10924
10925(define-public emacs-git-auto-commit-mode
10926 (package
10927 (name "emacs-git-auto-commit-mode")
10928 (version "4.4.0")
10929 (source
10930 (origin
10931 (method url-fetch)
10932 (uri (string-append
10933 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
10934 version ".tar.gz"))
10935 (file-name (string-append name "-" version ".tar.gz"))
10936 (sha256
10937 (base32
10938 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
10939 (build-system emacs-build-system)
10940 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
10941 (synopsis "Emacs Minor mode to automatically commit and push")
10942 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
10943tries to commit changes to a file after every save.
10944
10945When @code{gac-automatically-push-p} is non-nil, it also tries to push to
10946the current upstream.")
10947 (license license:gpl3+)))
10948
10949(define-public emacs-company-restclient
10950 (package
10951 (name "emacs-company-restclient")
10952 (version "0.1.0")
10953 (source
10954 (origin
10955 (method url-fetch)
10956 (uri (string-append
10957 "https://github.com/iquiw/company-restclient/archive/"
10958 "v" version ".tar.gz"))
10959 (file-name (string-append name "-" version ".tar.gz"))
10960 (sha256
10961 (base32
10962 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
10963 (build-system emacs-build-system)
10964 (propagated-inputs
10965 `(("emacs-company" ,emacs-company)
10966 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
10967 ("emacs-restclient" ,emacs-restclient)))
10968 (home-page "https://github.com/iquiw/company-restclient")
10969 (synopsis "Company-mode completion back-end for restclient-mode")
10970 (description "@code{company-mode} back-end for
10971@code{restclient-mode}.
10972
10973It provides auto-completion for HTTP methods and headers in
10974@code{restclient-mode}. Completion source is given by
10975@code{know-your-http-well}.")
10976 (license license:gpl3+)))
10977
10978(define-public emacs-noflet
10979 (let ((version "20170629")
10980 (revision "1")
10981 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
10982 (package
10983 (name "emacs-noflet")
10984 (version (git-version version revision commit))
10985 (source
10986 (origin
10987 (method git-fetch)
10988 (uri (git-reference
10989 (url "https://github.com/nicferrier/emacs-noflet")
10990 (commit commit)))
10991 (file-name (string-append name "-" version "-checkout"))
10992 (sha256
10993 (base32
10994 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
10995 (build-system emacs-build-system)
10996 (arguments
10997 `(#:phases
10998 (modify-phases %standard-phases
10999 (add-after 'unpack 'require-dash
11000 ;; noflet.el uses -map from dash, but (require 'dash) is
11001 ;; missing. So, add it.
11002 (lambda _
11003 (substitute* "noflet.el"
11004 ((";;; Code:") ";;; Code:\n(require 'dash)"))
11005 #t)))))
11006 (propagated-inputs
11007 `(("emacs-dash" ,emacs-dash)))
11008 (home-page "https://github.com/nicferrier/emacs-noflet")
11009 (synopsis "Locally override functions")
11010 (description "@code{emacs-noflet} let's you locally override functions,
11011in the manner of @command{flet}, but with access to the original function
11012through the symbol: @command{this-fn}.")
11013 (license license:gpl3+))))
11014
11015(define-public emacs-dumb-jump
11016 (package
11017 (name "emacs-dumb-jump")
11018 (version "0.5.2")
11019 (source
11020 (origin
11021 (method url-fetch)
11022 (uri (string-append
11023 "https://github.com/jacktasia/dumb-jump/archive/v"
11024 version ".tar.gz"))
11025 (file-name (string-append name "-" version ".tar.gz"))
11026 (sha256
11027 (base32
11028 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
11029 (build-system emacs-build-system)
11030 (arguments
11031 `(#:tests? #f ; FIXME: Tests freeze when run.
11032 #:test-command '("ert-runner")
11033 #:phases
11034 (modify-phases %standard-phases
11035 (add-after 'unpack 'set-shell
11036 (lambda _
11037 ;; Setting the SHELL environment variable is required for the
11038 ;; tests to find sh.
11039 (setenv "SHELL" (which "sh"))
11040 #t)))))
11041 (native-inputs
11042 `(("emacs-el-mock" ,emacs-el-mock)
11043 ("emacs-noflet" ,emacs-noflet)
11044 ("emacs-undercover" ,emacs-undercover)
11045 ("ert-runner" ,emacs-ert-runner)))
11046 (propagated-inputs
11047 `(("emacs-f" ,emacs-f)
11048 ("emacs-popup" ,emacs-popup)))
11049 (home-page "https://github.com/jacktasia/dumb-jump")
11050 (synopsis "Jump to definition for multiple languages without configuration")
11051 (description "Dumb Jump is an Emacs \"jump to definition\" package with
11052support for multiple programming languages that favors \"just working\" over
11053speed or accuracy. This means minimal --- and ideally zero --- configuration
11054with absolutely no stored indexes (tags) or persistent background processes.
11055Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
11056@command{rg} installed.")
11057 (license license:gpl3+)))
11058
11059(define-public emacs-dts-mode
11060 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
11061 (revision "1"))
11062 (package
11063 (name "emacs-dts-mode")
11064 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
11065 (source
11066 (origin
11067 (method git-fetch)
11068 (uri (git-reference
11069 (url "https://github.com/bgamari/dts-mode.git")
11070 (commit commit)))
11071 (file-name (string-append name "-" version "-checkout"))
11072 (sha256
11073 (base32
11074 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
11075 (build-system emacs-build-system)
11076 (home-page "https://github.com/bgamari/dts-mode.git")
11077 (synopsis "Emacs minor mode for editing device tree files")
11078 (description
11079 "This package provides an Emacs minor mode for highlighting
11080device tree files.")
11081 (license license:gpl3+))))
11082
11083(define-public emacs-daemons
11084 (package
11085 (name "emacs-daemons")
11086 (version "2.0.0")
11087 (source
11088 (origin
11089 (method git-fetch)
11090 (uri (git-reference
11091 (url "https://github.com/cbowdon/daemons.el")
11092 (commit version)))
11093 (file-name (string-append name "-" version "-checkout"))
11094 (sha256
11095 (base32
11096 "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4"))))
11097 (build-system emacs-build-system)
11098 (home-page "https://github.com/cbowdon/daemons.el")
11099 (synopsis "Emacs UI for managing init system services")
11100 (description
11101 "This is an Emacs mode to give you a UI for managing init system
11102daemons (services) for those getting tired of typing out @code{sudo service
11103my_thing reload} all the time. It offers a consistent UI over different init
11104systems.")
11105 (license license:gpl3+)))
11106
11107(define-public emacs-esh-autosuggest
11108 (package
11109 (name "emacs-esh-autosuggest")
11110 (version "2.0.0")
11111 (source
11112 (origin
11113 (method git-fetch)
11114 (uri (git-reference
11115 (url "https://github.com/dieggsy/esh-autosuggest")
11116 (commit version)))
11117 (file-name (string-append name "-" version "-checkout"))
11118 (sha256
11119 (base32
11120 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
11121 (build-system emacs-build-system)
11122 (propagated-inputs `(("emacs-company" ,emacs-company)))
11123 (home-page "https://github.com/dieggsy/esh-autosuggest")
11124 (synopsis "Fish-like autosuggestions in Eshell")
11125 (description
11126 "This package assumes you use something other than company for eshell
11127completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
11128@code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
11129for history autosuggestions.
11130
11131Unless you're using @code{use-package}'s hook keyword, you can enable the
11132autosuggestions with:
11133@code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
11134 (license license:gpl3+)))
11135
11136(define-public emacs-desktop-environment
11137 (package
11138 (name "emacs-desktop-environment")
11139 (version "0.2.0")
11140 (source
11141 (origin
11142 (method git-fetch)
11143 (uri (git-reference
11144 (url "https://github.com/DamienCassou/desktop-environment.git")
11145 (commit (string-append "v" version))))
11146 (file-name (string-append name "-" version "-checkout"))
11147 (sha256
11148 (base32
11149 "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r"))))
11150 (build-system emacs-build-system)
11151 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11152 (synopsis "Control your GNU/Linux desktop environment from Emacs")
11153 (description
11154 "This package helps you control your GNU/Linux desktop from Emacs.
11155With @code{desktop-environment}, you can control the brightness and volume as
11156well as take screenshots and lock your screen. The package depends on the
11157availability of shell commands to do the hard work for us. These commands can
11158be changed by customizing the appropriate variables.")
11159 (license license:gpl3+)))
11160
11161(define-public emacs-org-caldav
11162 (package
11163 (name "emacs-org-caldav")
11164 (version "20180403")
11165 (source
11166 (origin
11167 (method url-fetch)
11168 (uri (string-append
11169 "https://github.com/dengste/org-caldav/raw/"
11170 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
11171 "/org-caldav.el"))
11172 (sha256
11173 (base32
11174 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
11175 (build-system emacs-build-system)
11176 (propagated-inputs `(("emacs-org" ,emacs-org)))
11177 (home-page "https://github.com/dengste/org-caldav")
11178 (synopsis
11179 "Sync Org files with external calendars via the CalDAV protocol")
11180 (description
11181 "Synchronize between events in Org-mode files and a CalDAV calendar.
11182This code is still alpha.")
11183 (license license:gpl3+)))
11184
11185(define-public emacs-zotxt
11186 (package
11187 (name "emacs-zotxt")
11188 (version "20180518")
11189 (source
11190 (origin
11191 (method url-fetch)
11192 (uri (string-append
11193 "https://github.com/egh/zotxt-emacs/archive/"
11194 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
11195 ".tar.gz"))
11196 (sha256
11197 (base32
11198 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
11199 (build-system emacs-build-system)
11200 (propagated-inputs
11201 `(("emacs-deferred" ,emacs-deferred)
11202 ("emacs-request" ,emacs-request)))
11203 (home-page "https://github.com/egh/zotxt-emacs")
11204 (synopsis "Integrate Emacs with Zotero")
11205 (description "This package provides two integration features between Emacs
11206and the Zotero research assistant: Insertion of links to Zotero items into an
11207Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
11208 (license license:gpl3+)))
11209
11210(define-public emacs-evil-ediff
11211 ;; Evil-Ediff is included in Evil Collection from 20180617.
11212 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
11213
11214(define-public emacs-evil-magit
11215 (let ((commit "dbf5a646a7ce1c35c229dfdc423bd5ecd927a3a8"))
11216 (package
11217 (name "emacs-evil-magit")
11218 (version (git-version "0.4.2" "1" commit))
11219 (source
11220 (origin
11221 (method git-fetch)
11222 (uri (git-reference
11223 (url "https://github.com/emacs-evil/evil-magit")
11224 (commit commit)))
11225 (file-name (string-append name "-" version "-checkout"))
11226 (sha256
11227 (base32
11228 "0ya0dkviq4pi92ab69a4j674y5r1hc1x3x7r7hlm97ag3a6zfkav"))))
11229 (build-system emacs-build-system)
11230 (propagated-inputs
11231 `(("emacs-evil" ,emacs-evil)
11232 ("magit" ,emacs-magit)))
11233 (home-page
11234 "https://github.com/emacs-evil/evil-magit")
11235 (synopsis "Evil-based key bindings for Magit")
11236 (description
11237 "This Emacs library configures Magit and Evil to play well with each other.
11238For some background see @url{https://github.com/magit/evil-magit/issues/1}.
11239See the README at @url{https://github.com/justbur/evil-magit} for a table
11240describing the key binding changes.")
11241 (license license:gpl3+))))
11242
11243(define-public emacs-evil-mu4e
11244 ;; Evil-mu4e is included in Evil Collection from 20180617.
11245 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
11246
11247(define-public emacs-evil-multiedit
11248 (package
11249 (name "emacs-evil-multiedit")
11250 (version "1.3.9")
11251 (source
11252 (origin
11253 (method git-fetch)
11254 (uri (git-reference
11255 (url "https://github.com/hlissner/evil-multiedit")
11256 (commit (string-append "v" version))))
11257 (file-name (string-append name "-" version "-checkout"))
11258 (sha256
11259 (base32
11260 "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"))))
11261 (build-system emacs-build-system)
11262 (propagated-inputs
11263 `(("emacs-evil" ,emacs-evil)
11264 ("emacs-iedit" ,emacs-iedit)))
11265 (home-page
11266 "https://github.com/hlissner/evil-multiedit")
11267 (synopsis "Multiple cursors for Evil mode")
11268 (description
11269 "This plugin was an answer to the lack of proper multiple cursor support
11270in Emacs+Evil. It allows you to select and edit matches interactively,
11271integrating @code{iedit-mode} into Evil mode with an attempt at sensible
11272defaults.")
11273 (license license:gpl3+)))
11274
11275(define-public emacs-evil-org
11276 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
11277 (package
11278 (name "emacs-evil-org")
11279 (version (git-version "0.1.1" "1" commit))
11280 (source
11281 (origin
11282 (method git-fetch)
11283 (uri (git-reference
11284 (url "https://github.com/Somelauw/evil-org-mode")
11285 (commit commit)))
11286 (file-name (string-append name "-" version "-checkout"))
11287 (sha256
11288 (base32
11289 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
11290 (build-system emacs-build-system)
11291 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
11292 (home-page
11293 "https://github.com/Somelauw/evil-org-mode")
11294 (synopsis "Evil keybindings for Org mode")
11295 (description
11296 "This package adds supplemental Evil mode key-bindings to Emacs
11297Org-mode. It features:
11298@itemize
11299@item normal, visual and insert mode bindings;
11300@item key bindings organised in key themes;
11301@item operators like > and < to work on headings;
11302@item text objects;
11303@item table support;
11304@item calendar (date selection) support;
11305@item agenda support.
11306@end itemize\n")
11307 (license license:gpl3+))))
11308
11309(define-public emacs-fish-completion
674d180c
PN
11310 (package
11311 (name "emacs-fish-completion")
11312 (version "1.0")
11313 (source
11314 (origin
11315 (method url-fetch)
11316 (uri (string-append
11317 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
11318 "archive.tar.gz?ref="
11319 version))
11320 (sha256
11321 (base32
11322 "1hpma1c5j50ja03ibr7h1xmyv7k8j3rbvqivad47kwqhlsgw0jk0"))))
11323 (build-system emacs-build-system)
11324 (inputs `(("fish" ,fish)))
11325 (arguments
11326 `(#:phases
11327 (modify-phases %standard-phases
11328 (add-after 'unpack 'configure
11329 (lambda* (#:key inputs outputs #:allow-other-keys)
11330 (let ((fish (assoc-ref inputs "fish")))
11331 ;; Specify the absolute file names of the various
11332 ;; programs so that everything works out-of-the-box.
11333 (emacs-substitute-variables
11334 "fish-completion.el"
11335 ("fish-completion-command"
11336 (string-append fish "/bin/fish")))))))))
11337 (home-page
11338 "https://gitlab.com/Ambrevar/emacs-fish-completion")
11339 (synopsis "Fish completion for Emacs pcomplete")
11340 (description
11341 "This package provides completion for the Fish shell to pcomplete (used
eeb883cb
RW
11342by shell and Eshell). You can set it up globally with:
11343
11344@example
11345(when (and (executable-find \"fish\")
11346 (require 'fish-completion nil t))
11347 (global-fish-completion-mode))
11348@end example
11349
11350Alternatively, you can call the @code{fish-completion-mode} manually or in
11351shell/Eshell mode hook.
11352
11353The package @code{emacs-bash-completion} is an optional dependency: if available,
11354@code{fish-completion-complete} can be configured to fall back on bash to further
11355try completing. See @code{fish-completion-fallback-on-bash-p}.")
674d180c 11356 (license license:gpl3+)))
eeb883cb
RW
11357
11358(define-public emacs-gif-screencast
11359 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
11360 (package
11361 (name "emacs-gif-screencast")
11362 (version (git-version "20180616" "1" commit))
11363 (source
11364 (origin
11365 (method url-fetch)
11366 (uri (string-append
11367 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
11368 "repository/archive.tar.gz?ref="
11369 commit))
11370 (sha256
11371 (base32
11372 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
11373 (build-system emacs-build-system)
11374 (inputs
11375 `(("scrot" ,scrot)
11376 ("imagemagick" ,imagemagick)
11377 ("gifsicle" ,gifsicle)))
11378 (arguments
11379 `(#:phases
11380 (modify-phases %standard-phases
11381 (add-after 'unpack 'configure
11382 (lambda* (#:key inputs outputs #:allow-other-keys)
11383 (let ((scrot (assoc-ref inputs "scrot"))
11384 (imagemagick (assoc-ref inputs "imagemagick"))
11385 (gifsicle (assoc-ref inputs "gifsicle")))
11386 ;; Specify the absolute file names of the various
11387 ;; programs so that everything works out-of-the-box.
11388 (emacs-substitute-variables
11389 "gif-screencast.el"
11390 ("gif-screencast-program"
11391 (string-append scrot "/bin/scrot"))
11392 ("gif-screencast-convert-program"
11393 (string-append imagemagick "/bin/convert"))
11394 ("gif-screencast-cropping-program"
11395 (string-append imagemagick "/bin/mogrify"))
11396 ("gif-screencast-optimize-program"
11397 (string-append imagemagick "/bin/gifsicle")))))))))
11398 (home-page
11399 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
11400 (synopsis "One-frame-per-action GIF recording")
11401 (description
11402 "Call @code{gif-screencast} to start a recording.
11403A screenshot is taken for every user action. Call
11404@code{gif-screencast-stop} (<f9> by default) to finish recording and create
11405the GIF result.")
11406 (license license:gpl3+))))
11407
11408(define-public emacs-google-translate
11409 (package
11410 (name "emacs-google-translate")
11411 (version "0.11.16")
11412 (source
11413 (origin
11414 (method url-fetch)
11415 (uri (string-append "https://github.com/atykhonov/google-translate/"
11416 "archive/v" version ".tar.gz"))
11417 (file-name (string-append name "-" version ".tar.gz"))
11418 (sha256
11419 (base32
11420 "01n9spj1d0gjfj39x526rl3m9c28wnx9afipmf5s8y77cx3mfwhl"))))
11421 (build-system emacs-build-system)
11422 (home-page "https://github.com/atykhonov/google-translate")
11423 (synopsis "Emacs interface to Google Translate")
11424 (description
11425 "This packages provides an Emacs interface to the Google Translate
11426on-line service.")
11427 (license license:gpl3+)))
11428
11429(define-public emacs-helm-company
11430 (let ((commit "d3fc093a0e833b4dee6561c00d6df3d62aa50f3f"))
11431 (package
11432 (name "emacs-helm-company")
11433 (version (git-version "0.2.3" "1" commit))
11434 (source
11435 (origin
11436 (method git-fetch)
11437 (uri (git-reference
11438 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11439 (commit commit)))
11440 (file-name (string-append name "-" version "-checkout"))
11441 (sha256
11442 (base32
11443 "1ciirsanhajdqm5iwl8k9ywf4jha1wdv4sc4d9kslyrfr9zn4q6k"))))
11444 (build-system emacs-build-system)
11445 (propagated-inputs
11446 `(("emacs-helm" ,emacs-helm)
11447 ("emacs-company" ,emacs-company)))
11448 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
11449 (synopsis "Helm interface for company-mode")
11450 (description
11451 "This is a Helm interface to company-mode, a text completion
11452framework.")
11453 (license license:gpl3+))))
11454
11455(define-public emacs-helm-descbinds
11456 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
11457 (package
11458 (name "emacs-helm-descbinds")
11459 (version (git-version "1.13" "1" commit))
11460 (source
11461 (origin
11462 (method git-fetch)
11463 (uri (git-reference
11464 (url "https://github.com/emacs-helm/helm-descbinds")
11465 (commit commit)))
11466 (file-name (string-append name "-" version "-checkout"))
11467 (sha256
11468 (base32
11469 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
11470 (build-system emacs-build-system)
11471 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11472 (home-page "https://github.com/emacs-helm/helm-descbinds")
11473 (synopsis "Convenient @code{describe-bindings} with Helm")
11474 (description
11475 "This package is a replacement of @code{describe-bindings} for Helm.
11476@code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
11477type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
11478@code{helm-descbinds}. The bindings are presented in a similar way as
11479@code{describe-bindings} does, but you can use completion to find the command
11480you searched for and execute it, or view its documentation.")
11481 (license license:gpl3+))))
11482
11483(define-public emacs-helm-emms
11484 (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
11485 (package
11486 (name "emacs-helm-emms")
11487 (version (git-version "1.3" "1" commit))
11488 (source
11489 (origin
11490 (method git-fetch)
11491 (uri (git-reference
11492 (url "https://github.com/emacs-helm/helm-emms")
11493 (commit commit)))
11494 (file-name (string-append name "-" version "-checkout"))
11495 (sha256
11496 (base32
11497 "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
11498 (build-system emacs-build-system)
11499 (propagated-inputs
11500 `(("emacs-helm" ,emacs-helm)
11501 ("emacs-emms" ,emacs-emms)))
11502 (home-page
11503 "https://github.com/emacs-helm/helm-emms")
11504 (synopsis "Emms for Helm")
11505 (description "Helm interface for Emms to browse all tracks and all folders
11506from @code{emms-source-file-default-directory}.")
11507 (license license:gpl3+))))
11508
11509(define-public emacs-helm-exwm
11510 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
11511 (package
11512 (name "emacs-helm-exwm")
11513 (version (git-version "20180703" "2" commit))
11514 (source
11515 (origin
11516 (method url-fetch)
11517 (uri (string-append
11518 "https://github.com/emacs-helm/helm-exwm/archive/"
11519 commit
11520 ".tar.gz"))
11521 (sha256
11522 (base32
11523 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
11524 (build-system emacs-build-system)
11525 (propagated-inputs
11526 `(("emacs-helm" ,emacs-helm)
11527 ("emacs-exwm" ,emacs-exwm)))
11528 (home-page
11529 "https://github.com/emacs-helm/helm-exwm")
11530 (synopsis "Helm for EXWM buffers")
11531 (description
11532 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
11533@code{helm-exwm-switch} is a convenience X application launcher using Helm to
11534switch between the various windows of one or several specific applications.
11535See @code{helm-exwm-switch-browser} for an example.")
11536 (license license:gpl3+))))
11537
11538(define-public emacs-helm-flycheck
11539 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
11540 (package
11541 (name "emacs-helm-flycheck")
11542 (version (git-version "0.4" "1" commit))
11543 (source
11544 (origin
11545 (method git-fetch)
11546 (uri (git-reference
11547 (url "https://github.com/yasuyk/helm-flycheck")
11548 (commit commit)))
11549 (file-name (string-append name "-" version "-checkout"))
11550 (sha256
11551 (base32
11552 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
11553 (build-system emacs-build-system)
11554 (propagated-inputs
11555 `(("emacs-dash" ,emacs-dash)
11556 ("emacs-flycheck" ,emacs-flycheck)
11557 ("emacs-helm" ,emacs-helm)))
11558 (home-page "https://github.com/yasuyk/helm-flycheck")
11559 (synopsis "Show Flycheck errors with Helm")
11560 (description
11561 "This integrates Flycheck with Helm.")
11562 (license license:gpl3+))))
11563
11564(define-public emacs-helm-ls-git
11565 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
11566 (package
11567 (name "emacs-helm-ls-git")
11568 (version (git-version "1.9.1" "1" commit))
11569 (source
11570 (origin
11571 (method git-fetch)
11572 (uri (git-reference
11573 (url "https://github.com/emacs-helm/helm-ls-git")
11574 (commit commit)))
11575 (file-name (string-append name "-" version "-checkout"))
11576 (sha256
11577 (base32
11578 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
11579 (build-system emacs-build-system)
11580 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11581 (home-page "https://github.com/emacs-helm/helm-ls-git")
11582 (synopsis "Helm interface for listing the files in a Git repository")
11583 (description
11584 "This package provides a Helm interface for Git files.
11585@itemize
11586@item Display the open buffers in project.
11587@item Display a status source showing state of project (modified files etc.).
11588@item Display a list of all files in project under git control.
11589@item Quickly look at diffs of modified files.
11590@item Allow switching to @code{git status} with your preferred frontend
11591(vc-dir, Magit,etc.).
11592@item Full integration of git-grep, also allow usage of @code{helm-grep} (you
11593can use ack-grep instead of grep).
11594@item Integrate usage of gid from id-utils.
11595@item Full integration with @code{helm-find-files}, allow you to browse
11596projects unrelated to current-buffer.
11597@item In addition, all actions of type files and buffers are provided.
11598@end itemize\n")
11599 (license license:gpl3+))))
11600
11601(define-public emacs-helm-mu
11602 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
11603 (package
11604 (name "emacs-helm-mu")
11605 (version (git-version "20180513" "1" commit))
11606 (source
11607 (origin
11608 (method url-fetch)
11609 (uri (string-append
11610 "https://github.com/emacs-helm/helm-mu/archive/"
11611 commit
11612 ".tar.gz"))
11613 (sha256
11614 (base32
11615 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
11616 (build-system emacs-build-system)
11617 (propagated-inputs
11618 `(("emacs-helm" ,emacs-helm)
11619 ("mu" ,mu)))
11620 (home-page
11621 "https://github.com/emacs-helm/helm-mu")
11622 (synopsis
11623 "Helm sources for searching emails and contacts")
11624 (description
11625 "Helm sources for searching emails and contacts using @code{mu} and
11626@code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
11627Emacs build on top of mu. Mu is highly efficient making it possible to get
11628instant results even for huge maildirs. It also provides search operators,
11629e.g: @code{from:Peter to:Anne flag:attach search term}.")
11630 (license license:gpl3+))))
11631
11632(define-public emacs-helm-pass
11633 (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"))
11634 (package
11635 (name "emacs-helm-pass")
11636 (version (git-version "20180416" "1" commit))
11637 (source
11638 (origin
11639 (method url-fetch)
11640 (uri (string-append
11641 "https://github.com/jabranham/helm-pass/archive/"
11642 commit
11643 ".tar.gz"))
11644 (sha256
11645 (base32
11646 "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
11647 (build-system emacs-build-system)
11648 (propagated-inputs
11649 `(("emacs-helm" ,emacs-helm)
11650 ("emacs-password-store" ,emacs-password-store)))
11651 (home-page
11652 "https://github.com/jabranham/helm-pass")
11653 (synopsis "Helm interface to pass, the standard Unix password manager")
11654 (description
11655 "Users of @code{helm-pass} may also be interested in functionality
11656provided by other Emacs packages dealing with pass:
11657@itemize
11658@item @code{emacs-password-store}, which @code{helm-pass} relies on.
11659@item @code{emacs-pass}, a major mode for @code{pass}.
11660@item @code{auth-source-pass.el}: integration of Emacs' auth-source with
11661@code{pass}, included in Emacs 26+).
11662@end itemize\n")
11663 (license license:gpl3+))))
11664
11665(define-public emacs-image+
11666 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
11667 (package
11668 (name "emacs-image+")
11669 (version (git-version "0.6.2" "1" commit))
11670 (source
11671 (origin
11672 (method git-fetch)
11673 (uri (git-reference
11674 (url "https://github.com/mhayashi1120/Emacs-imagex")
11675 (commit commit)))
11676 (file-name (string-append name "-" version "-checkout"))
11677 (sha256
11678 (base32
11679 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
11680 (build-system emacs-build-system)
11681 (inputs `(("imagemagick" ,imagemagick)))
11682 (arguments
11683 `(#:phases
11684 (modify-phases %standard-phases
11685 (add-after 'unpack 'configure
11686 (lambda* (#:key inputs outputs #:allow-other-keys)
11687 (let ((imagemagick (assoc-ref inputs "imagemagick")))
11688 ;; Specify the absolute file names of the various
11689 ;; programs so that everything works out-of-the-box.
11690 (chmod "image+.el" #o666)
11691 (emacs-substitute-variables
11692 "image+.el"
11693 ("imagex-convert-command"
11694 (string-append imagemagick "/bin/convert"))
11695 ("imagex-identify-command"
11696 (string-append imagemagick "/bin/identify")))))))))
11697 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
11698 (synopsis "Image manipulation extensions for Emacs")
11699 (description
11700 "Image+ provides keybindings allowing you to zoom in or zoom out of an
11701image, rotate it, save modified images, and more.")
11702 (license license:gpl3+))))
11703
11704(define-public emacs-package-lint
11705 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
11706 (package
11707 (name "emacs-package-lint")
11708 (version (git-version "0.5" "1" commit))
11709 (source
11710 (origin
11711 (method git-fetch)
11712 (uri (git-reference
11713 (url "https://github.com/purcell/package-lint")
11714 (commit commit)))
11715 (file-name (string-append name "-" version "-checkout"))
11716 (sha256
11717 (base32
11718 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
11719 (build-system emacs-build-system)
11720 (home-page "https://github.com/purcell/package-lint")
11721 (synopsis "Linting library for elisp package authors")
11722 (description
11723 "This provides a list of issues with the Emacs package metadata of a file,
11724e.g. the package dependencies it requires. See function
11725@code{package-lint-buffer}. Checks will currently be enabled only if a
11726\"Package-Requires:\" or \"Package-Version:\" header is present in the
11727file.")
11728 (license license:gpl3+))))
11729
11730(define-public emacs-picpocket
11731 (let ((version "40")
11732 (commit "6fd88b8711c4370662c0f9c462170187d092a046"))
11733 (package
11734 (name "emacs-picpocket")
11735 (version version)
11736 (source
11737 (origin
11738 (method git-fetch)
11739 (uri (git-reference
11740 (url "https://github.com/johanclaesson/picpocket")
11741 (commit commit)))
11742 (file-name (git-file-name name version))
11743 (sha256
11744 (base32 "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw"))))
11745 (build-system emacs-build-system)
11746 (arguments ; needed for running tests
11747 `(#:tests? #t
11748 #:emacs ,emacs
11749 #:test-command '("emacs" "--batch"
11750 "-l" "picpocket-test.el"
11751 "-f" "ert-run-tests-batch-and-exit")))
11752 (home-page "https://github.com/johanclaesson/picpocket")
11753 (synopsis "Image viewer for Emacs")
11754 (description
11755 "Picpocket is an image viewer for GNU Emacs. It has commands for:
11756
11757@itemize
11758@item File operations on the picture files (delete, move, copy, hardlink).
11759@item Scale and rotate the picture.
11760@item Associate pictures with tags which are saved to disk.
11761@item Filter pictures according to tags.
11762@item Customizing keystrokes for quick tagging and file operations.
11763@item Undo and browse history of undoable commands.
11764@end itemize")
11765 (license license:gpl3+))))
11766
11767(define-public emacs-wgrep-helm
11768 ;; `emacs-wgrep-helm' was mistakenly added.
11769 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
11770
11771(define-public emacs-mu4e-conversation
11772 (let ((commit "e7d4bfcb0d392b0aed1f705ccac2419a168d1f5e"))
11773 (package
11774 (name "emacs-mu4e-conversation")
11775 (version (git-version "20181126" "4" commit))
11776 (source
11777 (origin
11778 (method url-fetch)
11779 (uri (string-append
11780 "https://gitlab.com/Ambrevar/mu4e-conversation/"
11781 "repository/archive.tar.gz?ref="
11782 commit))
11783 (file-name (string-append name "-" version "-checkout"))
11784 (sha256
11785 (base32
11786 "0b52hf9rm2afba9pvgink9bwqm705sk0y5qikp0ff5sk53wqvy29"))))
11787 (build-system emacs-build-system)
11788 (propagated-inputs
11789 `(("mu" ,mu)))
11790 (home-page
11791 "https://gitlab.com/Ambrevar/mu4e-conversation")
11792 (synopsis
11793 "Show a complete thread in a single buffer")
11794 (description
11795 "This package offers an alternate view to mu4e's e-mail display. It
11796shows all e-mails of a thread in a single view, where each correspondent has
11797their own face. Threads can be displayed linearly (in which case e-mails are
11798displayed in chronological order) or as an Org document where the node tree
11799maps the thread tree.")
11800 (license license:gpl3+))))
11801
11802(define-public emacs-pinentry
11803 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
11804 (revision "1"))
11805 (package
11806 (name "emacs-pinentry")
11807 (version (git-version "0.1" revision commit))
11808 (source
11809 (origin
11810 (method url-fetch)
11811 (uri (string-append
11812 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
11813 "/packages/pinentry/pinentry.el?id=" commit))
11814 (file-name (string-append "pinentry.el"))
11815 (sha256
11816 (base32
11817 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
11818 (build-system emacs-build-system)
11819 (propagated-inputs
11820 `(("gnupg" ,gnupg)))
11821 (home-page "https://elpa.gnu.org/packages/pinentry.html")
11822 (synopsis "GnuPG Pinentry server implementation")
11823 (description
11824 "This package allows GnuPG passphrase to be prompted through the
11825minibuffer instead of graphical dialog.
11826
11827To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
11828reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
11829server with @code{M-x pinentry-start}.")
11830 (license license:gpl3+))))
11831
11832(define-public emacs-org-brain
11833 (package
11834 (name "emacs-org-brain")
11835 (version "0.5")
11836 (source
11837 (origin
11838 (method git-fetch)
11839 (uri (git-reference
11840 (url "https://github.com/Kungsgeten/org-brain.git")
11841 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
11842 (file-name (git-file-name name version))
11843 (sha256
11844 (base32
11845 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
11846 (build-system emacs-build-system)
11847 (home-page "https://github.com/Kungsgeten/org-brain")
11848 (synopsis "Org-mode wiki and concept-mapping for Emacs")
11849 (description "@code{emacs-org-brain} implements a variant of concept
11850mapping in Emacs, using @code{org-mode}. An org-brain is a network of
11851org-mode entries, where each entry is a file or a headline, and you can get a
11852visual overview of the relationships between the entries: parents, children,
11853siblings and friends. This visual overview can also be used to browse your
11854entries. You can think of entries as nodes in a mind map, or pages in a
11855wiki.")
11856 (license license:expat)))
11857
11858(define-public emacs-recent-addresses
11859 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
11860 (revision "1"))
11861 (package
11862 (name "emacs-recent-addresses")
11863 (home-page "http://nschum.de/src/emacs/recent-addresses/")
11864 (version (git-version "0.1" revision commit))
11865 (source (origin
11866 (method git-fetch)
11867 (uri (git-reference
11868 ;; Note: Use a branch that works with Helm. Submitted
11869 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
11870 (url "https://github.com/civodul/recent-addresses.el")
11871 (commit commit)))
11872 (sha256
11873 (base32
11874 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
11875 (file-name (git-file-name name version))))
11876 (build-system emacs-build-system)
11877 (synopsis "Record recently-used email addressed and auto-complete them")
11878 (description
11879 "@code{recent-addresses} is an Emacs package that allows you to quickly
11880look up previously used email addresses. It can be used alongside the Gnus
11881email client.")
11882 (license license:gpl2+))))
11883
11884(define-public emacs-fold-dwim
11885 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
11886 (revision "0"))
11887 (package
11888 (name "emacs-fold-dwim")
11889 (version (git-version "1.2" revision commit))
11890 (home-page "https://github.com/emacsattic/fold-dwim")
11891 (source (origin
11892 (method git-fetch)
11893 (uri (git-reference (url home-page) (commit commit)))
11894 (sha256
11895 (base32
11896 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
11897 (file-name (git-file-name name version))))
11898 (build-system emacs-build-system)
11899 (synopsis "Unified user interface for Emacs folding modes")
11900 (description
11901 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
11902can do different things depending on the context. In this package, it means
11903that, if the cursor is in a currently hidden folded construction, we want to
11904show it; if it's not, we want to hide whatever fold the cursor is in.")
11905 (license license:gpl2+))))
11906
11907(define-public emacs-markup-faces
11908 (package
11909 (name "emacs-markup-faces")
11910 (version "1.0.0")
11911 (source
11912 (origin
11913 (method url-fetch)
11914 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
11915 version ".el"))
11916 (sha256
11917 (base32
11918 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
11919 (build-system emacs-build-system)
11920 (home-page "https://github.com/sensorflo/markup-faces")
11921 (synopsis "Collection of Emacs faces for markup language modes")
11922 (description "emacs-markup-faces is like font-lock-faces, but tailored for
11923markup languages instead programming languages. The sub group markup-faces-text
11924is also intended for 'text viewing modes' such as info or (wo)man. This gives a
11925common look and feel, or let's say theme, across different markup language modes
11926and 'text viewing modes' respectively.")
11927 (license license:gpl3+)))
11928
11929(define-public emacs-adoc-mode
11930 (package
11931 (name "emacs-adoc-mode")
11932 (version "0.6.6")
11933 (source
11934 (origin
11935 (method url-fetch)
11936 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
11937 version ".el"))
11938 (sha256
11939 (base32
11940 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
11941 (build-system emacs-build-system)
11942 (propagated-inputs
11943 `(("emacs-markup-faces" ,emacs-markup-faces)))
11944 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
11945 (synopsis "AsciiDoc mode for Emacs")
11946 (description "This package provides an Emacs major mode for editing AsciiDoc
11947files. It focuses on highlighting the document to improve readability.")
11948 (license license:gpl2+)))
11949
11950(define-public emacs-rust-mode
11951 (let ((commit
11952 ;; Last release is old (2016), use more recent commit to get bug
11953 ;; fixes.
11954 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
11955 (revision "0"))
11956 (package
11957 (name "emacs-rust-mode")
11958 (version (git-version "0.3.0" revision commit))
11959 (source (origin
11960 (method git-fetch)
11961 (uri
11962 (git-reference
11963 (url "https://github.com/rust-lang/rust-mode")
11964 (commit commit)))
11965 (file-name (git-file-name name version))
11966 (sha256
11967 (base32
11968 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
11969 (build-system emacs-build-system)
11970 (arguments
11971 `(#:phases
11972 (modify-phases %standard-phases
11973 (replace 'check
11974 (lambda _
11975 (invoke "sh" "run_rust_emacs_tests.sh"))))))
11976 (home-page "https://github.com/rust-lang/rust-mode")
11977 (synopsis "Major Emacs mode for editing Rust source code")
11978 (description "This package provides a major Emacs mode for editing Rust
11979source code.")
11980 (license (list license:expat
11981 license:asl2.0)))))
11982
11983(define-public emacs-ztree
11984 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
11985 (package
11986 (name "emacs-ztree")
11987 (version (git-version "1.0.5" "1" commit))
11988 (source
11989 (origin
11990 (method git-fetch)
11991 (uri (git-reference
11992 (url "https://github.com/fourier/ztree")
11993 (commit commit)))
11994 (file-name (git-file-name name version))
11995 (sha256
11996 (base32
11997 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
11998 (build-system emacs-build-system)
11999 (home-page "https://github.com/fourier/ztree")
12000 (synopsis "Directory tree comparison mode for Emacs")
12001 (description "Ztree is a project dedicated to implementation of several
12002text-tree applications inside GNU Emacs. It consists of 2 subprojects:
12003@command{ztree-diff} and @command{ztree-dir} (the basis of
12004@command{ztree-diff}).")
12005 (license license:gpl3))))
12006
12007(define-public emacs-helm-org-contacts
12008 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
12009 (package
12010 (name "emacs-helm-org-contacts")
12011 (version (git-version "20180707" "1" commit))
12012 (source
12013 (origin
12014 (method git-fetch)
12015 (uri (git-reference
12016 (url "https://github.com/tmalsburg/helm-org-contacts")
12017 (commit commit)))
12018 (file-name (git-file-name name version))
12019 (sha256
12020 (base32
12021 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
12022 (build-system emacs-build-system)
12023 (propagated-inputs
12024 `(("emacs-dash" ,emacs-dash)
12025 ("emacs-helm" ,emacs-helm)
12026 ("emacs-s" ,emacs-s)))
12027 (home-page "https://github.com/tmalsburg/helm-org-contacts")
12028 (synopsis "Helm source for org-contacts")
12029 (description "This Helm source can be used to search contacts stored in
12030org-contacts format. There are actions for inserting postal addresses, email
12031addresses, and phone numbers in the buffer where @command{helm-org-contacts}
12032was called.")
12033 (license license:gpl3))))
12034
12035(define-public emacs-dired-du
12036 (package
12037 (name "emacs-dired-du")
12038 (version "0.5.1")
12039 (source
12040 (origin
12041 (method url-fetch)
12042 (uri (string-append
12043 "https://elpa.gnu.org/packages/dired-du-"
12044 version ".tar"))
12045 (sha256
12046 (base32
12047 "1091scnrjh0a4gja4z6jxic6ghy1yryv46qk9c76pmh50cpw6766"))))
12048 (build-system emacs-build-system)
12049 (home-page "http://elpa.gnu.org/packages/dired-du.html")
12050 (synopsis "Dired with recursive directory sizes")
12051 (description
12052 "Display the recursive size of directories in Dired.
12053This file defines a minor mode @command{dired-du-mode} to show the recursive
12054size of directories in Dired buffers. If @command{du} program is available,
12055then the directory sizes are obtained with it. Otherwise, the directory sizes
12056are obtained with Lisp. The former is faster and provide a more precise
12057value. For directories where the user doesn't have read permission, the
12058recursive size is not obtained. Once this mode is enabled, every new Dired
12059buffer displays recursive dir sizes.")
12060 (license license:gpl3+)))
12061
12062(define-public emacs-pcre2el
12063 ;; Last release is very old so we get the latest commit.
12064 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
12065 (package
12066 (name "emacs-pcre2el")
12067 (version (git-version "1.8" "1" commit))
12068 (source
12069 (origin
12070 (method git-fetch)
12071 (uri (git-reference
12072 (url "https://github.com/joddie/pcre2el")
12073 (commit commit)))
12074 (file-name (git-file-name name version))
12075 (sha256
12076 (base32
12077 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
12078 (build-system emacs-build-system)
12079 (home-page "https://github.com/joddie/pcre2el")
12080 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
12081 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
12082Tools) is a utility for working with regular expressions in Emacs, based on a
12083recursive-descent parser for regexp syntax. In addition to converting (a
12084subset of) PCRE syntax into its Emacs equivalent, it can do the following:
12085
12086@itemize
12087@item convert Emacs syntax to PCRE
12088@item convert either syntax to @code{rx}, an S-expression based regexp syntax
12089@item untangle complex regexps by showing the parse tree in @code{rx} form and
12090highlighting the corresponding chunks of code
12091@item show the complete list of strings (productions) matching a regexp,
12092provided the list is finite
12093@item provide live font-locking of regexp syntax (so far only for Elisp
12094buffers – other modes on the TODO list).
12095@end itemize\n")
12096 (license license:gpl3))))
12097
12098(define-public emacs-magit-todos
12099 (package
12100 (name "emacs-magit-todos")
12101 (version "1.1")
12102 (source
12103 (origin
12104 (method git-fetch)
12105 (uri (git-reference
12106 (url "https://github.com/alphapapa/magit-todos")
12107 (commit version)))
12108 (file-name (git-file-name name version))
12109 (sha256
12110 (base32
12111 "1mvzbxshr6zjdim3jd368ar1hy5l7n22i03cpvzdmrw83kkwdyhd"))))
12112 (build-system emacs-build-system)
12113 (propagated-inputs
12114 `(("emacs-async" ,emacs-async)
12115 ("emacs-dash" ,emacs-dash)
12116 ("emacs-f" ,emacs-f)
12117 ("emacs-hl-todo" ,emacs-hl-todo)
12118 ("magit" ,emacs-magit)
12119 ("emacs-pcre2el" ,emacs-pcre2el)
12120 ("emacs-s" ,emacs-s)))
12121 (home-page "https://github.com/alphapapa/magit-todos")
12122 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
12123 (description "This package displays keyword entries from source code
12124comments and Org files in the Magit status buffer. Activating an item jumps
12125to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
12126few (like NOTE).")
12127 (license license:gpl3)))
12128
12129(define-public emacs-git-annex
12130 ;; Unreleased version has a fontification fix.
12131 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
12132 (revision "1"))
12133 (package
12134 (name "emacs-git-annex")
12135 (version (string-append "1.1-" revision "." (string-take commit 8)))
12136 (source
12137 (origin
12138 (method git-fetch)
12139 (uri (git-reference
12140 (url "https://github.com/jwiegley/git-annex-el")
12141 (commit commit)))
12142 (file-name (string-append name "-" version "-checkout"))
12143 (sha256
12144 (base32
12145 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
12146 (build-system emacs-build-system)
12147 (home-page "https://github.com/jwiegley/git-annex-el")
12148 (synopsis "Emacs integration for git-annex")
12149 (description "Enhances Dired and buffers visiting annex files with
12150git-annex functionality. In Dired, the names of annex files are shortened by
12151hiding the symbolic links and fontified based on whether content is present.
12152Commands for performing some common operations (e.g., unlocking and adding
12153files) are provided.")
12154 (license license:gpl2+))))
12155
12156(define-public emacs-hackernews
12157 (let ((commit "d8c450bbc76d6bb65ec5cdb6c3b888a23f3769e9"))
12158 (package
12159 (name "emacs-hackernews")
12160 (version (git-version "0.4.0" "1" commit))
12161 (source
12162 (origin
12163 (method git-fetch)
12164 (uri (git-reference
12165 (url "https://github.com/clarete/hackernews.el")
12166 (commit commit)))
12167 (file-name (git-file-name name version))
12168 (sha256
12169 (base32
12170 "06mp4n6c300jv5lhwf50ircfjckzr2p1zd38s4mqnxxjlf1maim7"))))
12171 (build-system emacs-build-system)
12172 (home-page "https://github.com/clarete/hackernews.el")
12173 (synopsis "Hacker News client for Emacs")
12174 (description "The @command{hackernews} package is able to fetch stories
12175from six different Hacker News feeds, namely top, new, best, ask, show and job
12176stories. The default feed is top stories, which corresponds to the Hacker
12177News homepage.")
12178 (license license:gpl3))))
12179
12180(define-public emacs-youtube-dl
12181 (let ((commit "7c9d7a7d05b72a7d1b1257a36c5e2b2567b185dd"))
12182 (package
12183 (name "emacs-youtube-dl")
12184 (version (git-version "1.0" "1" commit))
12185 (source
12186 (origin
12187 (method git-fetch)
12188 (uri (git-reference
12189 (url "https://github.com/skeeto/youtube-dl-emacs/")
12190 (commit commit)))
12191 (file-name (git-file-name name version))
12192 (sha256
12193 (base32
12194 "0mh4s089a4x8s380agzb2306kdp1hl204px1n5rrrrdcls7imnh6"))))
12195 (build-system emacs-build-system)
12196 (inputs
12197 `(("youtube-dl" ,youtube-dl)))
12198 (arguments
12199 `(#:phases
12200 (modify-phases %standard-phases
12201 (add-after 'unpack 'configure
12202 (lambda* (#:key inputs #:allow-other-keys)
12203 (let ((youtube-dl (assoc-ref inputs "youtube-dl")))
12204 ;; .el is read-only in git.
12205 (chmod "youtube-dl.el" #o644)
12206 ;; Specify the absolute file names of the various
12207 ;; programs so that everything works out-of-the-box.
12208 (emacs-substitute-variables
12209 "youtube-dl.el"
12210 ("youtube-dl-program"
12211 (string-append youtube-dl "/bin/youtube-dl")))))))))
12212 (home-page "https://github.com/skeeto/youtube-dl-emacs/")
12213 (synopsis "Emacs youtube-dl download manager")
12214 (description "This package manages a video download queue for
12215@command{youtube-dl}, which serves as the back end. It manages a single
12216@command{youtube-dl} subprocess, downloading one video at a time. New videos
12217can be queued at any time.")
12218 (license license:unlicense))))
12219
12220(define-public emacs-org-web-tools
12221 (package
12222 (name "emacs-org-web-tools")
12223 (version "1.0")
12224 (source
12225 (origin
12226 (method git-fetch)
12227 (uri (git-reference
12228 (url "https://github.com/alphapapa/org-web-tools")
12229 (commit version)))
12230 (file-name (git-file-name name version))
12231 (sha256
12232 (base32
12233 "0kak9h5ny00d39gnwspv53nadnag01brw2fq9zk5wpfc91h9bjng"))))
12234 (build-system emacs-build-system)
12235 (propagated-inputs
12236 `(("emacs-dash" ,emacs-dash)
12237 ("emacs-esxml" ,emacs-esxml)
12238 ("emacs-s" ,emacs-s)))
12239 (inputs
12240 `(("pandoc" ,ghc-pandoc)))
12241 (arguments
12242 `(#:phases
12243 (modify-phases %standard-phases
12244 (add-after 'unpack 'patch-exec-paths
12245 (lambda* (#:key inputs #:allow-other-keys)
12246 (let ((pandoc (assoc-ref inputs "pandoc")))
12247 (substitute* "org-web-tools.el"
12248 (("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\"")))
12249 #t))))))
12250 (home-page "https://github.com/alphapapa/org-web-tools")
12251 (synopsis "Display/Process web page as Org-mode content")
12252 (description "This package contains library functions and commands useful
12253for retrieving web page content and processing it into Org-mode content.
12254
12255For example, you can copy a URL to the clipboard or kill-ring, then run a
12256command that downloads the page, isolates the “readable” content with
12257@command{eww-readable}, converts it to Org-mode content with Pandoc, and
12258displays it in an Org-mode buffer. Another command does all of that but
12259inserts it as an Org entry instead of displaying it in a new buffer.")
12260 (license license:gpl3+)))
12261
12262(define-public emacs-blimp
12263 (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03"))
12264 (package
12265 (name "emacs-blimp")
12266 (version (git-version "0.0.0" "1" commit))
12267 (source
12268 (origin
12269 (method git-fetch)
12270 (uri (git-reference
12271 (url "https://github.com/walseb/blimp")
12272 (commit commit)))
12273 (file-name (git-file-name name version))
12274 (sha256
12275 (base32
12276 "09wmhpym516b81dfq8smdmysh1fn610dzlyvyl2rkx8600f0fizd"))))
12277 (build-system emacs-build-system)
12278 (propagated-inputs
12279 `(("emacs-eimp" ,emacs-eimp)))
12280 (home-page "https://github.com/walseb/blimp")
12281 (synopsis "Emacs wrapper around all Imagemagick commands")
12282 (description "Blimp (Bustling Image Manipulation Package) is a complete
12283wrapper around all Imagemagick commands with descriptions, autocompletion (for
12284some commands) and hints displayed in prompt using @command{eimp.el} to
12285execute its commands and resize images.")
12286 (license license:gpl3+))))
12287
12288(define-public emacs-synosaurus
12289 (let ((commit "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb"))
12290 (package
12291 (name "emacs-synosaurus")
12292 (version (git-version "0.1.0" "1" commit))
12293 (source
12294 (origin
12295 (method git-fetch)
12296 (uri (git-reference
12297 (url "https://github.com/hpdeifel/synosaurus")
12298 (commit commit)))
12299 (file-name (git-file-name name version))
12300 (sha256
12301 (base32
12302 "15by9jccab6kyplxa6k0glzaivxkqdigl33gl2qi2cvy6f2q7gva"))))
12303 (build-system emacs-build-system)
12304 (propagated-inputs
12305 `(("wordnet" ,wordnet)))
12306 (arguments
12307 `(#:phases
12308 (modify-phases %standard-phases
12309 (add-after 'unpack 'configure
12310 (lambda* (#:key inputs outputs #:allow-other-keys)
12311 (let ((wn (assoc-ref inputs "wordnet")))
12312 ;; .el is read-only in git.
12313 (chmod "synosaurus-wordnet.el" #o644)
12314 ;; Specify the absolute file names of the various
12315 ;; programs so that everything works out-of-the-box.
12316 (emacs-substitute-variables
12317 "synosaurus-wordnet.el"
12318 ("wordnet-command"
12319 (string-append wn "/bin/wn")))))))))
12320 (home-page "https://github.com/hpdeifel/synosaurus")
12321 (synopsis "Extensible thesaurus mode for Emacs")
12322 (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
12323backends, including the @command{wordnet} offline backend.")
12324 (license license:gpl3+))))
12325
12326(define-public emacs-all-the-icons
12327 (package
12328 (name "emacs-all-the-icons")
12329 (version "3.2.0")
12330 (source
12331 (origin
12332 (method git-fetch)
12333 (uri (git-reference
12334 (url "https://github.com/domtronn/all-the-icons.el.git")
12335 (commit version)))
12336 (file-name (git-file-name name version))
12337 (sha256
12338 (base32
12339 "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
12340 (build-system emacs-build-system)
12341 (arguments
12342 `(#:include '("\\.el$" "^data/" "^fonts/")
12343 ;; Compiling "test/" fails with "Symbol’s value as variable is void:
12344 ;; all-the-icons--root-code". Ignoring tests.
12345 #:exclude '("^test/")
12346 #:tests? #f))
12347 (propagated-inputs
12348 `(("f" ,emacs-f)
12349 ("memoize" ,emacs-memoize)))
12350 (home-page "https://github.com/domtronn/all-the-icons.el")
12351 (synopsis "Collect icon fonts and propertize them within Emacs")
12352 (description "All-the-icons is a utility package to collect various icon
12353fonts and propertize them within Emacs. Icon fonts allow you to propertize
12354and format icons the same way you would normal text. This enables things such
12355as better scaling of and anti aliasing of the icons.")
12356 ;; Package is released under Expat license. Elisp files are licensed
12357 ;; under GPL3+. Fonts come with various licenses: Expat for
12358 ;; "all-the-icons.ttf" and "file-icons.ttf", Apache License 2.0 for
12359 ;; "material-design-icons.ttf", and SIL OFL 1.1 for "fontawesome.ttf",
12360 ;; "ocitcons.ttf" and "weathericons.ttf".
12361 (license
12362 (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0))))
12363
12364(define-public emacs-powerline
12365 (package
12366 (name "emacs-powerline")
12367 (version "2.4")
12368 (source
12369 (origin
12370 (method git-fetch)
12371 (uri (git-reference
12372 (url "https://github.com/milkypostman/powerline.git")
12373 (commit version)))
12374 (file-name (git-file-name name version))
12375 (sha256
12376 (base32
12377 "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
12378 (build-system emacs-build-system)
12379 (home-page "https://github.com/milkypostman/powerline/")
12380 (synopsis "Mode-line plugin for Emacs")
12381 (description "Powerline is a utility plugin which allows you to create
12382a better-looking, more functional Emacs mode-line. A collection of predefined
12383themes comes with the package.")
12384 (license license:gpl3+)))
12385
12386(define-public emacs-spaceline
12387 (package
12388 (name "emacs-spaceline")
12389 (version "2.0.1")
12390 (source
12391 (origin
12392 (method git-fetch)
12393 (uri (git-reference
12394 (url "https://github.com/TheBB/spaceline.git")
12395 (commit (string-append "v" version))))
12396 (file-name (git-file-name name version))
12397 (sha256
12398 (base32
12399 "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
12400 (build-system emacs-build-system)
12401 (propagated-inputs
12402 `(("dash" ,emacs-dash)
12403 ("powerline" ,emacs-powerline)
12404 ("s" ,emacs-s)))
12405 (home-page "https://github.com/TheBB/spaceline")
12406 (synopsis "Powerline theme from Spacemacs")
12407 (description "Spaceline provides Spacemacs' mode-line theme.
12408This package provides features for three kinds of users.
12409
12410@itemize
12411@item You just want to use the Spacemacs mode-line theme and forget about it.
12412@item You want to use something similar to the Spacemacs mode-line theme, but
12413with a handful of easy tweaks.
12414@item You want an easy-to-use library for building your own mode-line from
12415scratch, and you think the Spacemacs theme looks good.
12416@end itemize")
12417 (license license:gpl3+)))
12418
12419(define-public emacs-column-marker
12420 (package
12421 (name "emacs-column-marker")
12422 (version "9")
12423 (source
12424 (origin
12425 (method url-fetch)
12426 (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
12427 (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
12428 (build-system emacs-build-system)
12429 (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
12430 (synopsis "Emacs mode for highlighting columns")
12431 (description
12432 "With @code{column-marker.el} you can highlight any number of text columns.
12433Three such highlight column markers are provided by default. This is
12434especially useful for languages like COBOL or Fortran where certain columns
12435have special meaning. It is also handy for aligning text across long vertical
12436distances. Multi-column characters, such as @kbd{TAB} are treated
12437correctly.")
12438 (license license:gpl2+)))
12439
12440(define-public emacs-slime-repl-ansi-color
12441 (let ((commit "ad03263f5d4de473bc173b64a6fc3dc1106393d7"))
12442 (package
12443 (name "emacs-slime-repl-ansi-color")
12444 (version (git-version "0.0.0" "1" commit))
12445 (source (origin
12446 (method git-fetch)
12447 (uri (git-reference
12448 (url "https://github.com/deadtrickster/slime-repl-ansi-color")
12449 (commit commit)))
12450 (file-name (git-file-name name version))
12451 (sha256
12452 (base32
12453 "0bpg7gxz310x7bnlg324c507sxc5gxwwz6h64h6kdq141r73vbi4"))))
12454 (build-system emacs-build-system)
12455 (home-page "https://github.com/deadtrickster/slime-repl-ansi-color")
12456 (synopsis "Color ANSI codes in the REPL of SLIME")
12457 (description "Color ANSI codes in the REPL of SLIME")
12458 (license license:gpl2+))))
12459
12460(define-public emacs-helm-slime
12461 (let ((commit "9980925f3e5f6ac5a30369d2a544e82006a79c76"))
12462 (package
12463 (name "emacs-helm-slime")
12464 (version (git-version "0.0.0" "1" commit))
12465 (source (origin
12466 (method git-fetch)
12467 (uri (git-reference
12468 (url "https://github.com/emacs-helm/helm-slime")
12469 (commit commit)))
12470 (file-name (git-file-name name version))
12471 (sha256
12472 (base32
12473 "0xa07gpfkzwn522x9573mq5mfxvbawdgd0m93gqj6w5a14wk8zzh"))))
12474 (build-system emacs-build-system)
12475 (propagated-inputs
12476 `(("emacs-helm" ,emacs-helm)
12477 ("emacs-slime" ,emacs-slime)))
12478 (home-page "https://github.com/emacs-helm/helm-slime")
12479 (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
12480 (description "Helm-SLIME defines a few new commands:
12481
12482@itemize
12483@item helm-slime-complete: Select a symbol from the SLIME completion systems.
12484@item helm-slime-list-connections: Yet another slime-list-connections with Helm.
12485@item: helm-slime-apropos: Yet another slime-apropos with Helm.
12486@item helm-slime-repl-history: Select an input from the SLIME REPL history and insert it.
12487@end itemize\n")
12488 (license license:gpl3+))))
12489
12490(define-public emacs-gtk-look
12491 (package
12492 (name "emacs-gtk-look")
12493 (version "29")
12494 (source (origin
12495 (method url-fetch)
12496 (uri "https://download.tuxfamily.org/user42/gtk-look.el")
12497 (sha256
12498 (base32
12499 "14p2nwrd51cr1v06fxbjjn6jdrkf9d6vcxhmscm0kl677s25ypsp"))))
12500 (build-system emacs-build-system)
12501 (arguments
12502 `(#:phases
12503 (modify-phases %standard-phases
12504 (add-after 'unpack 'configure
12505 (lambda _
12506 ;; File is read-only.
12507 (chmod "gtk-look.el" #o644)
12508 (emacs-substitute-variables "gtk-look.el"
12509 ("gtk-lookup-devhelp-indices"
12510 '(list (expand-file-name "~/.guix-profile/share/gtk-doc/html/*/*.devhelp*"))))
12511 #t)))))
12512 (home-page "http://user42.tuxfamily.org/gtk-look/index.html")
12513 (synopsis "Find and display HTML documentation for GTK, GNOME and Glib")
12514 (description "@command{gtk-look} finds and displays HTML documentation for
12515GTK, GNOME and Glib functions and variables in Emacs, similar to what
12516info-lookup-symbol does for info files (C-h S). The documentation is expected
12517to be devhelp indexes with HTML files. The location of the indexes can be
12518customized. In addition to C code development @command{gtk-look} is good for
12519
12520@itemize
12521@item @command{perl-gtk2}, recognising class funcs like
12522@command{Gtk2::Label->new} and bare method names like @command{set_text}.
12523@item @command{guile-gnome}, recognising methods like @command{set-text} and
12524classes like @command{<gtk-window>}.
12525@end itemize\n")
12526 (license license:gpl3+)))
12527
12528(define-public emacs-ov
12529 (package
12530 (name "emacs-ov")
12531 (version "1.0.6")
12532 (source (origin
12533 (method git-fetch)
12534 (uri (git-reference
12535 (url "https://github.com/ShingoFukuyama/ov.el.git")
12536 (commit version)))
12537 (file-name (git-file-name name version))
12538 (sha256
12539 (base32
12540 "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
12541 (build-system emacs-build-system)
12542 (home-page "https://github.com/ShingoFukuyama/ov.el")
12543 (synopsis "Overlay library for Emacs Lisp")
12544 (description "@code{ov.el} provides a simple way to manipulate overlays in
12545Emacs.")
12546 (license license:gpl3+)))
12547
12548(define-public emacs-matrix-client
85a3d63f 12549 (let ((commit "a0623667b07a4bf60980c97b078e9faed97ace79"))
eeb883cb
RW
12550 (package
12551 (name "emacs-matrix-client")
85a3d63f 12552 (version (git-version "0.0.0" "3" commit))
eeb883cb
RW
12553 (source (origin
12554 (method git-fetch)
12555 (uri (git-reference
12556 (url "https://github.com/jgkamat/matrix-client-el.git")
12557 (commit commit)))
12558 (file-name (git-file-name name version))
12559 (sha256
12560 (base32
85a3d63f 12561 "1zya8id3y9wzjaj7nplq7br6nhm3lsskv0fkn1xr1y77fzcfgcdb"))))
eeb883cb
RW
12562 (build-system emacs-build-system)
12563 (propagated-inputs
12564 `(("a" ,emacs-a)
e6ab20f7 12565 ("anaphora" ,emacs-anaphora)
eeb883cb
RW
12566 ("dash" ,emacs-dash)
12567 ("esxml" ,emacs-esxml)
12568 ("f" ,emacs-f)
12569 ("frame-purpose" ,emacs-frame-purpose)
12570 ("ht" ,emacs-ht)
12571 ("ov" ,emacs-ov)
12572 ("rainbow-identifiers" ,emacs-rainbow-identifiers)
12573 ("request" ,emacs-request)
12574 ("s" ,emacs-s)
12575 ("tracking" ,emacs-tracking)))
12576 (home-page "https://github.com/jgkamat/matrix-client-el")
12577 (synopsis "Matrix client for Emacs")
12578 (description "@code{matrix-client} is a simple chat UI to Matrix.org
12579rooms. It also provides an API which allows Emacs to seamlessly create
12580RPC channels with users and other software.")
12581 (license license:gpl3+))))
12582
12583(define-public emacs-sesman
12584 (package
12585 (name "emacs-sesman")
12586 (version "0.3.3")
12587 (source
12588 (origin
12589 (method git-fetch)
12590 (uri (git-reference
12591 (url "https://github.com/vspinu/sesman.git")
12592 (commit (string-append "v" version))))
12593 (file-name (git-file-name name version))
12594 (sha256
12595 (base32
12596 "0r32f8ma9ddczxrrdz0nadp14j3zmk10q1ch02gb82synkx3xdra"))))
12597 (build-system emacs-build-system)
12598 (arguments
12599 `(#:tests? #t
12600 #:test-command '("make" "test")))
12601 (home-page "https://github.com/vspinu/sesman")
12602 (synopsis "Session manager for Emacs based IDEs")
12603 (description "Sesman provides facilities for session management and
12604interactive session association with the current contexts (project, directory,
12605buffers). While sesman can be used to manage arbitrary sessions, it primary
12606targets the Emacs based IDEs (CIDER, ESS, Geiser, Robe, SLIME etc.)")
12607 (license license:gpl3+)))
12608
12609(define-public emacs-buttercup
12610 (package
12611 (name "emacs-buttercup")
12612 (version "1.16")
12613 (source
12614 (origin
12615 (method git-fetch)
12616 (uri (git-reference
12617 (url "https://github.com/jorgenschaefer/emacs-buttercup.git")
12618 (commit (string-append "v" version))))
12619 (file-name (git-file-name name version))
12620 (sha256
12621 (base32
12622 "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"))))
12623 (build-system emacs-build-system)
12624 (arguments
12625 `(#:tests? #t
12626 #:test-command '("make" "test")
12627 #:phases
12628 (modify-phases %standard-phases
12629 (add-after 'install 'install-bin
12630 (lambda* (#:key outputs #:allow-other-keys)
12631 (install-file "bin/buttercup"
12632 (string-append (assoc-ref outputs "out") "/bin"))
12633 #t)))))
12634 (home-page "https://github.com/jorgenschaefer/emacs-buttercup")
12635 (synopsis "Behavior driven emacs lisp testing framework")
12636 (description "Buttercup is a behavior-driven development framework for
12637testing Emacs Lisp code. It allows to group related tests so they can share
12638common set-up and tear-down code, and allows the programmer to \"spy\" on
12639functions to ensure they are called with the right arguments during testing.")
12640 (license license:gpl3+)))
12641
12642(define-public emacs-wordnut
12643 (let ((commit "feac531404041855312c1a046bde7ea18c674915")
12644 (revision "0"))
12645 (package
12646 (name "emacs-wordnut")
12647 (version (git-version "0.1" revision commit))
12648 (home-page "https://github.com/gromnitsky/wordnut")
12649 (source (origin
12650 (method git-fetch)
12651 (uri (git-reference (url home-page) (commit commit)))
12652 (sha256
12653 (base32
12654 "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn"))
12655 (patches
12656 (search-patches "emacs-wordnut-require-adaptive-wrap.patch"))
12657 (file-name (git-file-name name version))))
12658 (build-system emacs-build-system)
12659 (propagated-inputs
12660 `(("wordnet" ,wordnet)
12661 ("emacs-adaptive-wrap" ,emacs-adaptive-wrap)))
12662 (synopsis "Major mode for WordNet")
12663 (description "This Emacs package provides an interface for
12664@code{wordnet}. Features include completion, if the query is not found
12665too ambiguous and navigation in the result buffer.")
12666 (license license:gpl3+))))
12667
12668(define-public emacs-frame-purpose
12669 (package
12670 (name "emacs-frame-purpose")
12671 (version "1.0")
12672 (source (origin
12673 (method git-fetch)
12674 (uri (git-reference
12675 (url "https://github.com/alphapapa/frame-purpose.el.git")
12676 (commit version)))
12677 (sha256
12678 (base32
12679 "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"))
12680 (file-name (git-file-name name version))))
12681 (build-system emacs-build-system)
12682 (inputs
12683 `(("dash" ,emacs-dash)))
12684 (synopsis "Purpose-specific frames for Emacs")
12685 (description "@code{frame-purpose} makes it easy to open purpose-specific
12686frames that only show certain buffers, e.g. by buffers’ major mode, their
12687filename or directory, etc, with custom frame/X-window titles, icons, and
12688other frame parameters.")
12689 (home-page "https://github.com/alphapapa/frame-purpose.el")
12690 (license license:gpl3+)))
12691
12692(define-public emacs-arduino-mode
12693 (let ((commit "3e2bad4569ad26e929e6db2cbcff0d6d36812698")) ;no release yet
12694 (package
12695 (name "emacs-arduino-mode")
12696 (version (git-version "0" "0" commit))
12697 (source (origin
12698 (method git-fetch)
12699 (uri (git-reference
12700 (url "https://github.com/bookest/arduino-mode.git")
12701 (commit commit)))
12702 (sha256
12703 (base32
12704 "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"))
12705 (file-name (git-file-name name version))))
12706 (build-system emacs-build-system)
12707 (synopsis "Emacs major mode for editing Arduino sketches")
12708 (description "Emacs major mode for editing Arduino sketches.")
12709 (home-page "https://github.com/bookest/arduino-mode")
12710 (license license:gpl3+))))
12711
12712(define-public emacs-general
12713 (let ((commit "675050199b5a30d54a24b58a367db32c0bdc47f5"))
12714 (package
12715 (name "emacs-general")
12716 (version (git-version "0" "0" commit))
12717 (home-page "https://github.com/noctuid/general.el")
12718 (source (origin
12719 (method git-fetch)
12720 (uri (git-reference
12721 (url (string-append home-page ".git"))
12722 (commit commit)))
12723 (sha256
12724 (base32
12725 "175yyhzk57yk1sskxh3d2jzhrh2waiibbcfsll167qxr117yji5h"))
12726 (file-name (git-file-name name version))))
12727 (build-system emacs-build-system)
12728 (synopsis "More convenient key definitions in emacs")
12729 (description "@code{general.el} provides a more convenient method for
12730binding keys in emacs (for both evil and non-evil users). Like
12731@code{use-package}, which provides a convenient, unified interface for
12732managing packages, @code{general.el} is intended to provide a convenient,
12733unified interface for key definitions. While this package does implement some
12734completely new functionality (such as the ability to make vim-style
12735keybindings under non-prefix keys with an optional timeout), its primary
12736purpose is to build on existing functionality to make key definition more
12737clear and concise. @code{general-define-key} is user-extensible and supports
12738defining multiple keys in multiple keymaps at once, implicitly wrapping key
12739strings with (@code{kbd ...}), using named prefix key sequences (like the
12740leader key in vim), and much more.")
12741 (license license:gpl3+))))
12742
12743(define-public emacs-tldr
12744 (let ((commit "398b197c8d2238628b07e1b32d0f373876279f4c"))
12745 (package
12746 (name "emacs-tldr")
12747 (version (git-version "0" "0" commit))
12748 (home-page "https://github.com/kuanyui/tldr.el")
12749 (source (origin
12750 (method git-fetch)
12751 (uri (git-reference
12752 (url (string-append home-page ".git"))
12753 (commit commit)))
12754 (sha256
12755 (base32
12756 "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f"))
12757 (file-name (git-file-name name version))))
12758 (build-system emacs-build-system)
12759 (synopsis "Simplified and community-driven man pages for Emacs")
12760 (description "@code{emacs-tldr} allows the user to access tldr pages
12761from within emacs. The @code{tldr} pages are a community effort to simplify
12762the man pages with practical examples.")
12763 (license license:wtfpl2))))
9830f1a2
PN
12764
12765(define-public emacs-window-layout
12766 (package
12767 (name "emacs-window-layout")
12768 (version "1.4")
12769 (home-page "https://github.com/kiwanami/emacs-window-layout")
12770 (source (origin
12771 (method git-fetch)
12772 (uri (git-reference
12773 (url home-page)
12774 (commit (string-append "v" version))))
12775 (sha256
12776 (base32
12777 "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"))
12778 (file-name (git-file-name name version))))
12779 (build-system emacs-build-system)
12780 (synopsis "Simple window layout management framework for emacs")
12781 (description "A window-layout management library that can split a frame
12782or a window into some windows according to a layout recipe.")
12783 (license license:gpl3+)))
5544a07f
PN
12784
12785(define-public emacs-e2wm
12786 (package
12787 (name "emacs-e2wm")
12788 (version "1.4")
12789 (home-page "https://github.com/kiwanami/emacs-window-manager")
12790 (source (origin
12791 (method git-fetch)
12792 (uri (git-reference
12793 (url home-page)
12794 (commit (string-append "v" version))))
12795 (sha256
12796 (base32
12797 "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"))
12798 (file-name (git-file-name name version))))
12799 (build-system emacs-build-system)
12800 (propagated-inputs
12801 `(("emacs-window-layout" ,emacs-window-layout)))
12802 (synopsis "Equilibrium Emacs Window Manager")
12803 (description "E2WM is a window manager for Emacs. It enables to
12804customize the place of pop-up window, how the windows are split, how the
12805buffers are located in the windows, keybinds to manipulate windows and
12806buffers, etc. It also has plug-ins to help your Emacs life.")
12807 (license license:gpl3+)))
3e1fcc5e
PN
12808
12809(define-public emacs-ctable
12810 (let ((commit "b8830d1ca95abb100a81bc32011bd17d5ecba000"))
12811 (package
12812 (name "emacs-ctable")
12813 (version (git-version "0.1.2" "1" commit))
12814 (home-page "https://github.com/kiwanami/emacs-ctable")
12815 (source (origin
12816 (method git-fetch)
12817 (uri (git-reference
12818 (url home-page)
12819 (commit commit)))
12820 (sha256
12821 (base32
12822 "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"))
12823 (file-name (git-file-name name version))))
12824 (build-system emacs-build-system)
12825 (synopsis "Table component for Emacs Lisp")
12826 (description "This program is a table component for Emacs Lisp. Other
12827programs can use this table component for the application UI.")
12828 (license license:gpl3+))))
8c98ce92
PN
12829
12830(define-public emacs-epc
12831 (let ((commit "e1bfa5ca163273859336e3cc89b4b6460f7f8cda"))
12832 (package
12833 (name "emacs-epc")
12834 (version (git-version "0.1.1" "1" commit))
12835 (home-page "https://github.com/kiwanami/emacs-epc")
12836 (source (origin
12837 (method git-fetch)
12838 (uri (git-reference
12839 (url home-page)
12840 (commit commit)))
12841 (sha256
12842 (base32
12843 "15nkrjgi64f829isfd6xrhl4zw8jirr8pkas7nisrbk1av868hx0"))
12844 (file-name (git-file-name name version))))
12845 (build-system emacs-build-system)
12846 (propagated-inputs
12847 `(("emacs-deferred" ,emacs-deferred)
12848 ("emacs-ctable" ,emacs-ctable)))
12849 (synopsis "RPC stack for Emacs Lisp")
12850 (description "This program is an asynchronous RPC stack for Emacs.
12851Using this RPC stack, Emacs can communicate with the peer process
12852smoothly. Because the protocol employs S-expression encoding and consists of
12853asynchronous communications, the RPC response is fairly good.")
12854 (license license:gpl3+))))
c010ec65
PN
12855
12856(define-public emacs-edbi
12857 (let ((commit "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"))
12858 (package
12859 (name "emacs-edbi")
12860 (version (git-version "0.1.3" "1" commit))
12861 (home-page "https://github.com/kiwanami/emacs-edbi")
12862 (source (origin
12863 (method git-fetch)
12864 (uri (git-reference
12865 (url home-page)
12866 (commit commit)))
12867 (sha256
12868 (base32
12869 "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"))
12870 (file-name (git-file-name name version))))
12871 (build-system emacs-build-system)
12872 (inputs
12873 `(("perl" ,perl)
12874 ("perl-rpc-epc-service" ,perl-rpc-epc-service)
12875 ("perl-dbi" ,perl-dbi)
12876 ;; TODO: Adding support for perl-dbd-mysql and others would
12877 ;; dramatically increase the closure size. Make several packages?
12878 ("perl-dbd-sqlite" ,perl-dbd-sqlite)))
12879 (propagated-inputs
12880 `(("emacs-e2wm" ,emacs-e2wm)
12881 ("emacs-epc" ,emacs-epc)))
12882 (arguments
12883 `(#:include '("\\.el$" "\\.pl$")
12884 #:phases
12885 (modify-phases %standard-phases
12886 (add-after 'install 'patch-path
12887 (lambda* (#:key inputs outputs #:allow-other-keys)
12888 (let ((perl (assoc-ref inputs "perl"))
12889 (dir (string-append (assoc-ref outputs "out")
12890 "/share/emacs/site-lisp/guix.d/edbi-"
12891 ,version)))
12892 (substitute* (string-append dir "/edbi.el")
12893 (("\"perl\"") (string-append "\"" perl "/bin/perl\"")))
12894 (chmod (string-append dir "/edbi-bridge.pl") #o555)
12895 (wrap-program (string-append dir "/edbi-bridge.pl")
12896 `("PERL5LIB" ":" prefix (,(getenv "PERL5LIB"))))
12897 #t))))))
12898 (synopsis "Database Interface for Emacs Lisp")
12899 (description "This program connects the database server through Perl's
12900DBI, and provides DB-accessing API and the simple management UI.")
12901 (license license:gpl3+))))
3d540c48
PN
12902
12903(define-public emacs-edbi-sqlite
12904 (let ((commit "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"))
12905 (package
12906 (name "emacs-edbi-sqlite")
12907 (version (git-version "0.1.1" "1" commit))
12908 (home-page "https://github.com/proofit404/edbi-sqlite")
12909 (source (origin
12910 (method git-fetch)
12911 (uri (git-reference
12912 (url home-page)
12913 (commit commit)))
12914 (sha256
12915 (base32
12916 "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"))
12917 (file-name (git-file-name name version))))
12918 (build-system emacs-build-system)
12919 (propagated-inputs
12920 `(("emacs-edbi" ,emacs-edbi)))
12921 (synopsis "Open SQLite files in Emacs")
12922 (description "This package is a convenience wrapper for @command{edbi}
12923to open SQLite databases.")
12924 (license license:gpl3+))))
f896abc7
LC
12925
12926(define-public emacs-nix-mode
12927 (package
12928 (name "emacs-nix-mode")
12929 (version "1.2.2")
12930 (source
12931 (origin
12932 (method url-fetch)
12933 (uri (string-append "https://github.com/NixOS/nix-mode/archive/v"
12934 version ".tar.gz"))
12935 (file-name (string-append name "-" version ".tar.gz"))
12936 (sha256
12937 (base32
12938 "06aqz0czznsj8835jqnk794sy2p6pa8kxfqwh0nl5d5vxivria6z"))))
12939 (build-system emacs-build-system)
12940 (inputs
12941 `(("emacs-company" ,emacs-company)
12942 ("emacs-mmm-mode" ,emacs-mmm-mode)))
12943 (home-page "https://github.com/NixOS/nix-mode")
12944 (synopsis "Emacs major mode for editing Nix expressions")
12945 (description "@code{nixos-mode} provides an Emacs major mode for editing
12946Nix expressions. It supports syntax highlighting, indenting and refilling of
12947comments.")
12948 (license license:lgpl2.1+)))
67248962
RW
12949
12950(define-public emacs-simple-mpc
12951 ;; There have been no releases.
12952 (let ((commit "bee8520e81292b4c7353e45b193f9a13b482f5b2")
12953 (revision "1"))
12954 (package
12955 (name "emacs-simple-mpc")
12956 (version (git-version "0" revision commit))
12957 (source
12958 (origin
12959 (method git-fetch)
12960 (uri (git-reference
12961 (url "https://github.com/jorenvo/simple-mpc.git")
12962 (commit commit)))
12963 (file-name (git-file-name name version))
12964 (sha256
12965 (base32
12966 "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"))))
12967 (build-system emacs-build-system)
12968 (propagated-inputs `(("emacs-s" ,emacs-s)))
12969 (home-page "https://github.com/jorenvo/simple-mpc")
12970 (synopsis "Simple Emacs frontend to mpc")
12971 (description "This package provides an Emacs major mode which acts as a
12972front end to mpc, a client for the @dfn{Music Player Daemon} (MPD).")
12973 (license license:gpl3+))))
43af5f9d
AI
12974
12975(define-public emacs-mkmcc-gnuplot-mode
12976 (package
12977 (name "emacs-mkmcc-gnuplot-mode")
12978 (version "1.2.0")
12979 (source
12980 (origin
12981 (method git-fetch)
12982 (uri (git-reference
12983 (url "https://github.com/mkmcc/gnuplot-mode")
12984 (commit "601f6392986f0cba332c87678d31ae0d0a496ce7")))
12985 (file-name (string-append name "-" version "-checkout"))
12986 (sha256
12987 (base32
12988 "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb"))))
12989 (build-system emacs-build-system)
12990 (home-page "https://mkmcc.github.io/software/gnuplot-mode.html")
12991 (synopsis "Minimal emacs major mode for editing gnuplot scripts")
12992 (description "@code{emacs-mkmcc-gnuplot-mode} is a minimal emacs major
12993mode for editing gnuplot scripts. It provides syntax highlighting,
12994indentation and a command to plot the file.")
12995 (license license:gpl3+)))
ba25ba90
CL
12996
12997(define-public emacs-dtrt-indent
12998 (package
12999 (name "emacs-dtrt-indent")
13000 (version "0.8")
13001 (source (origin
13002 (method git-fetch)
13003 (uri (git-reference
13004 (url "https://github.com/jscheid/dtrt-indent")
13005 (commit version)))
13006 (file-name (git-file-name name version))
13007 (sha256
13008 (base32
13009 "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"))))
13010 (build-system emacs-build-system)
13011 (home-page "https://github.com/jscheid/dtrt-indent")
13012 (synopsis "Minor mode that guesses the indentation offset")
13013 (description "This package provides a minor mode that guesses the
13014indentation offset originally used for creating source code files and
13015transparently adjusts the corresponding settings in Emacs, making it more
13016convenient to edit foreign files.")
13017 (license license:gpl2+)))
57b663fa
CL
13018
13019(define-public emacs-repo
13020 (package
13021 (name "emacs-repo")
13022 (version "0.1.3")
13023 (source (origin
13024 (method git-fetch)
13025 (uri (git-reference
13026 (url "https://github.com/canatella/repo-el")
13027 (commit version)))
13028 (file-name (git-file-name name version))
13029 (sha256
13030 (base32
13031 "0rbvcvm7bfr6ncji7cllfxyyr6x7n9fx863byp243phsj3n93adz"))))
13032 (build-system emacs-build-system)
13033 (native-inputs
13034 `(("emacs-el-mock" ,emacs-el-mock)
13035 ("ert-runner" ,emacs-ert-runner)))
13036 (propagated-inputs
13037 `(("emacs-f" ,emacs-f)
13038 ("magit" ,emacs-magit)))
13039 (home-page "https://github.com/canatella/repo-el")
13040 (synopsis "Emacs interface for the Google Repo tool")
13041 (description "This package provides integration of the Google Repo tool
13042with emacs. It displays the output of the @code{repo status} command in a
13043buffer and launches Magit from the status buffer for the project at point.")
b2cb1613 13044 (license license:gpl3+)))
bdccd7e1
MO
13045
13046(define-public emacs-alect-themes
13047 (package
13048 (name "emacs-alect-themes")
13049 (version "0.9")
13050 (source (origin
13051 (method git-fetch)
13052 (uri (git-reference
13053 (url "https://github.com/alezost/alect-themes")
13054 (commit (string-append "v" version))))
13055 (file-name (git-file-name name version))
13056 (sha256
13057 (base32
13058 "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9"))))
13059 (build-system emacs-build-system)
13060 (home-page "https://github.com/alezost/alect-themes")
13061 (synopsis "Low contrast, light, dark and black color theme for Emacs")
13062 (description "@code{emacs-alect-themes} provides configurable light, dark
13063and black color themes for Emacs. The themes are intended to be used with
13064GUI.")
57b663fa 13065 (license license:gpl3+)))
71066710
MO
13066
13067(define-public emacs-google-c-style
13068 (let ((commit "6271f3f473ceb3a7fef99388a3040903b1a145f1")
13069 (revision "0"))
13070 (package
13071 (name "emacs-google-c-style")
13072 (version (git-version "0.1" revision commit))
13073 (source (origin
13074 (method git-fetch)
13075 (uri (git-reference
13076 (url "https://github.com/google/styleguide")
13077 (commit commit)))
13078 (file-name (git-file-name name version))
13079 (sha256
13080 (base32
13081 "1jghyyasdl15c4gaqaxmdn43am63k6bykn5ab83f1ahv9zi1krxk"))))
13082 (build-system emacs-build-system)
13083 (home-page "https://github.com/google/styleguide")
13084 (synopsis "Emacs settings file for Google C/C++ style")
13085 (description "@code{emacs-google-c-style} provides an Emacs settings
13086file for Google C and C++ style.")
13087 (license license:gpl1+))))
285bf324
PN
13088
13089(define-public emacs-redshank
13090 (let ((commit "f98e68f532e622bcd464292ca4a9cf5fbea14ebb")
13091 (revision "1"))
13092 (package
13093 (name "emacs-redshank")
13094 (version (git-version "0.1" revision commit))
13095 (source (origin
13096 (method git-fetch)
13097 (uri (git-reference
13098 (url "http://www.foldr.org/~michaelw/projects/redshank.git")
13099 (commit commit)))
13100 (file-name (git-file-name name version))
13101 (sha256
13102 (base32
13103 "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"))))
13104 (build-system emacs-build-system)
13105 (propagated-inputs
13106 `(("emacs-paredit" ,emacs-paredit)))
13107 (home-page "http://www.foldr.org/~michaelw/emacs/redshank/")
13108 (synopsis "Common Lisp Editing Extensions (for Emacs)")
13109 (description "Redshank is a collection of code-wrangling Emacs macros
13110mostly geared towards Common Lisp, but some are useful for other Lisp
13111dialects, too. Redshank's code transformations aim to be expression-based (as
13112opposed to character-based).")
13113 (license license:gpl1+))))