gnu: emacs-js2-mode: Update to 20180301.
[jackhill/guix/guix.git] / gnu / packages / emacs.scm
CommitLineData
468bdabb 1;;; GNU Guix --- Functional package management for GNU
4a3e602c 2;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
02267798 3;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
84fe4420 4;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
e9c3a780 5;;; Copyright © 2014, 2015, 2016, 2017, 2018 Alex Kost <alezost@gmail.com>
78395334 6;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
5a545aab 7;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
4f95a118 8;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
51f4e36c 9;;; Copyright © 2015, 2016, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
f9f67fcb 10;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
995b7069 11;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
c5c08f1b 12;;; Copyright © 2016 David Thompson <davet@gnu.org>
ae609001 13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
fd2d17cd 14;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
4a78fd46 15;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
46bd4515 16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
7ad05d85 17;;; Copyright © 2016, 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
1bf75876 18;;; Copyright © 2016, 2017, 2018 Alex Vong <alexvong1995@gmail.com>
2891ea39 19;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
cf006d2e 20;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
563ab27b 21;;; Copyright © 2017, 2018 Mathieu Othacehe <m.othacehe@gmail.com>
30cf7070 22;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
4d3d3bd2 23;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
4fca8a02 24;;; Copyright © 2017, 2018 Kyle Meyer <kyle@kyleam.com>
3c8ba11a 25;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
99517d92 26;;; Copyright © 2017 George Clemmer <myglc2@gmail.com>
deddeb44 27;;; Copyright © 2017 Feng Shu <tumashu@163.com>
7a0efa77 28;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
b0912e9f 29;;; Copyright © 2017, 2018 Oleg Pykhalov <go.wigust@gmail.com>
de2e402b 30;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
b9dcaced 31;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
370ae985 32;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
491cbd35 33;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
33ca12f3 34;;; Copyright © 2017, 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
62d1105c 35;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com>
c3581ef9 36;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
4715f92e 37;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
98668259 38;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
5691898f 39;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
661e8a62 40;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
12498b59 41;;; Copyright © 2018 Alex Branham <alex.branham@gmail.com>
df2d77c4 42;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
78e3d554 43;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
468bdabb
LC
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
1ffa7090 60(define-module (gnu packages emacs)
f61e0e79 61 #:use-module ((guix licenses) #:prefix license:)
468bdabb
LC
62 #:use-module (guix packages)
63 #:use-module (guix download)
f906d30c 64 #:use-module (guix git-download)
e5045f30
FB
65 #:use-module (guix gexp)
66 #:use-module (guix monads)
67 #:use-module (guix store)
468bdabb 68 #:use-module (guix build-system gnu)
d2fe71b0 69 #:use-module (guix build-system cmake)
78395334 70 #:use-module (guix build-system emacs)
71f57158 71 #:use-module (guix build-system glib-or-gtk)
fe4163f3 72 #:use-module (guix build-system trivial)
59a43334 73 #:use-module (gnu packages)
bc3ece7d 74 #:use-module (gnu packages admin)
acf7d4a7 75 #:use-module (gnu packages audio)
4aafce22 76 #:use-module (gnu packages bash)
75408149 77 #:use-module (gnu packages cmake)
cf006d2e 78 #:use-module (gnu packages code)
4d089b5e 79 #:use-module (gnu packages databases)
f906d30c 80 #:use-module (gnu packages guile)
7abe1965 81 #:use-module (gnu packages gtk)
8ba4dc63 82 #:use-module (gnu packages gnome)
1ffa7090 83 #:use-module (gnu packages ncurses)
99517d92 84 #:use-module (gnu packages python)
41184943 85 #:use-module (gnu packages tex)
1ffa7090 86 #:use-module (gnu packages texinfo)
acf7d4a7 87 #:use-module (gnu packages tcl)
a7fd7b68 88 #:use-module (gnu packages tls)
4f028c8f 89 #:use-module (gnu packages pkg-config)
50efa797
LC
90 #:use-module (gnu packages xorg)
91 #:use-module (gnu packages lesstif)
d2fe71b0 92 #:use-module (gnu packages llvm)
e55354b8 93 #:use-module (gnu packages image)
504a83af 94 #:use-module (gnu packages linux)
9a4c9715 95 #:use-module (gnu packages version-control)
18d26210
MW
96 #:use-module (gnu packages imagemagick)
97 #:use-module (gnu packages w3m)
89925972 98 #:use-module (gnu packages wget)
18d26210 99 #:use-module (gnu packages autotools)
be379ee7 100 #:use-module (gnu packages base)
f61e0e79 101 #:use-module (gnu packages compression)
50efa797 102 #:use-module (gnu packages xml)
4a3e602c 103 #:use-module (gnu packages glib)
388fd01b 104 #:use-module (gnu packages acl)
b6efe0e8 105 #:use-module (gnu packages mail)
13fe4891 106 #:use-module (gnu packages package-management)
77c9286d 107 #:use-module (gnu packages perl)
ec9825d6 108 #:use-module (gnu packages pdf)
58a7dc13 109 #:use-module (gnu packages scheme)
41184943 110 #:use-module (gnu packages statistics)
77c9286d
LC
111 #:use-module (gnu packages xiph)
112 #:use-module (gnu packages mp3)
154c71e0 113 #:use-module (gnu packages gettext)
a80b60f4
AI
114 #:use-module (gnu packages fribidi)
115 #:use-module (gnu packages gd)
116 #:use-module (gnu packages fontutils)
03efe78c 117 #:use-module (gnu packages password-utils)
a14a80da 118 #:use-module (gnu packages pulseaudio)
0bcb9258 119 #:use-module (gnu packages xdisorg)
15dcd292 120 #:use-module (gnu packages shells)
b1f9fc0d 121 #:use-module (gnu packages gnupg)
9c208f38 122 #:use-module (gnu packages video)
320105ea 123 #:use-module (gnu packages haskell)
e10bf496 124 #:use-module (gnu packages wordnet)
4a3e602c 125 #:use-module (guix utils)
87449013
AI
126 #:use-module (srfi srfi-1)
127 #:use-module (ice-9 match))
468bdabb
LC
128
129(define-public emacs
130 (package
131 (name "emacs")
2206c7ad 132 (version "26.1")
468bdabb
LC
133 (source (origin
134 (method url-fetch)
135 (uri (string-append "mirror://gnu/emacs/emacs-"
3be9f724 136 version ".tar.xz"))
468bdabb
LC
137 (sha256
138 (base32
2206c7ad 139 "0b6k1wq44rc8gkvxhi1bbjxbz3cwg29qbq8mklq2az6p1hjgrx0w"))
fc1adab1 140 (patches (search-patches "emacs-exec-path.patch"
4509ec72 141 "emacs-fix-scheme-indent-function.patch"
0cdb6ab4 142 "emacs-source-date-epoch.patch"))
486f36eb
AK
143 (modules '((guix build utils)))
144 (snippet
145 ;; Delete the bundled byte-compiled elisp files and
146 ;; generated autoloads.
147 '(with-directory-excursion "lisp"
148 (for-each delete-file
149 (append (find-files "." "\\.elc$")
150 (find-files "." "loaddefs\\.el$")
151 ;; This is the only "autoloads" file that
152 ;; does not have "*loaddefs.el" name.
dc701091
LC
153 '("eshell/esh-groups.el")))
154
155 ;; Make sure Tramp looks for binaries in the right places on
156 ;; remote GuixSD machines, where 'getconf PATH' returns
157 ;; something bogus.
158 (substitute* "net/tramp-sh.el"
159 ;; Patch the line after "(defcustom tramp-remote-path".
160 (("\\(tramp-default-remote-path")
161 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
162 "~/.guix-profile/bin" "~/.guix-profile/sbin"
163 "/run/current-system/profile/bin"
d1c11418
OP
164 "/run/current-system/profile/sbin")))
165
166 ;; Make sure Man looks for C header files in the right
167 ;; places.
168 (substitute* "man.el"
169 (("\"/usr/local/include\"" line)
170 (string-join
171 (list line
172 "\"~/.guix-profile/include\""
173 "\"/var/guix/profiles/system/profile/include\"")
6cbee49d
MW
174 " ")))
175 #t))))
71f57158 176 (build-system glib-or-gtk-build-system)
468bdabb 177 (arguments
2206c7ad
MO
178 `(#:tests? #f ; no check target
179 #:phases
13fe4891
FB
180 (modify-phases %standard-phases
181 (add-before 'configure 'fix-/bin/pwd
182 (lambda _
183 ;; Use `pwd', not `/bin/pwd'.
184 (substitute* (find-files "." "^Makefile\\.in$")
185 (("/bin/pwd")
e2d90ee4
MW
186 "pwd"))
187 #t))
13fe4891 188 (add-after 'install 'install-site-start
59d04f63
AK
189 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
190 ;; provided by Guix and installed in
13fe4891
FB
191 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
192 ;; automatically found.
193 (lambda* (#:key inputs outputs #:allow-other-keys)
59d04f63
AK
194 (let* ((out (assoc-ref outputs "out"))
195 (lisp-dir (string-append out "/share/emacs/site-lisp")))
196 (copy-file (assoc-ref inputs "guix-emacs.el")
197 (string-append lisp-dir "/guix-emacs.el"))
13fe4891
FB
198 (with-output-to-file (string-append lisp-dir "/site-start.el")
199 (lambda ()
9bd94544
AK
200 (display
201 (string-append "(when (require 'guix-emacs nil t)\n"
202 " (guix-emacs-autoload-packages))\n"))))
13fe4891 203 #t))))))
468bdabb 204 (inputs
c4c4cc05 205 `(("gnutls" ,gnutls)
468bdabb
LC
206 ("ncurses" ,ncurses)
207
208 ;; TODO: Add the optional dependencies.
fa275717 209 ("libx11" ,libx11)
0a9e9a63 210 ("gtk+" ,gtk+)
fa275717 211 ("libxft" ,libxft)
50efa797 212 ("libtiff" ,libtiff)
504a83af 213 ("giflib" ,giflib)
71e304ed 214 ("libjpeg" ,libjpeg)
eb737a27 215 ("imagemagick" ,imagemagick)
388fd01b 216 ("acl" ,acl)
50efa797
LC
217
218 ;; When looking for libpng `configure' links with `-lpng -lz', so we
219 ;; must also provide zlib as an input.
220 ("libpng" ,libpng)
f61e0e79 221 ("zlib" ,zlib)
50efa797 222
8ba4dc63 223 ("librsvg" ,librsvg)
fa275717 224 ("libxpm" ,libxpm)
50efa797 225 ("libxml2" ,libxml2)
504a83af
MW
226 ("libice" ,libice)
227 ("libsm" ,libsm)
228 ("alsa-lib" ,alsa-lib)
13fe4891 229 ("dbus" ,dbus)
01c5c21a
AI
230
231 ;; multilingualization support
232 ("libotf" ,libotf)
233 ("m17n-lib" ,m17n-lib)))
c4c4cc05 234 (native-inputs
59d04f63
AK
235 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
236 ("pkg-config" ,pkg-config)
c4c4cc05 237 ("texinfo" ,texinfo)))
64c98347
LC
238
239 (native-search-paths
240 (list (search-path-specification
241 (variable "INFOPATH")
242 (files '("share/info")))))
243
6fd52309 244 (home-page "https://www.gnu.org/software/emacs/")
f50d2669 245 (synopsis "The extensible, customizable, self-documenting text editor")
468bdabb 246 (description
79c311b8
LC
247 "GNU Emacs is an extensible and highly customizable text editor. It is
248based on an Emacs Lisp interpreter with extensions for text editing. Emacs
249has been extended in essentially all areas of computing, giving rise to a
250vast array of packages supporting, e.g., email, IRC and XMPP messaging,
251spreadsheets, remote server editing, and much more. Emacs includes extensive
252documentation on all aspects of the system, from basic editing to writing
253large Lisp programs. It has full Unicode support for nearly all human
254languages.")
f61e0e79 255 (license license:gpl3+)))
4f028c8f 256
b2eaf7ba 257(define-public emacs-minimal
4fd540b7
LC
258 ;; This is the version that you should use as an input to packages that just
259 ;; need to byte-compile .el files.
b2eaf7ba
AK
260 (package (inherit emacs)
261 (name "emacs-minimal")
262 (synopsis "The extensible text editor (used only for byte-compilation)")
263 (build-system gnu-build-system)
264 (arguments
bd6a699d
RW
265 `(#:configure-flags (list "--with-gnutls=no")
266 ,@(substitute-keyword-arguments (package-arguments emacs)
267 ((#:phases phases)
268 `(modify-phases ,phases
269 (delete 'install-site-start))))))
b2eaf7ba
AK
270 (inputs
271 `(("ncurses" ,ncurses)))
272 (native-inputs
273 `(("pkg-config" ,pkg-config)))))
274
275(define-public emacs-no-x
4fd540b7 276 (package (inherit emacs)
4fd540b7
LC
277 (name "emacs-no-x")
278 (synopsis "The extensible, customizable, self-documenting text
279editor (console only)")
280 (build-system gnu-build-system)
281 (inputs (fold alist-delete
282 (package-inputs emacs)
283 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
4adde2a9
MW
284 "imagemagick" "libpng" "librsvg" "libxpm" "libice"
285 "libsm"
4fd540b7 286
4adde2a9
MW
287 ;; These depend on libx11, so remove them as well.
288 "libotf" "m17n-lib" "dbus")))))
4fd540b7 289
4a3e602c
TUBK
290(define-public emacs-no-x-toolkit
291 (package (inherit emacs)
292 (name "emacs-no-x-toolkit")
293 (synopsis "The extensible, customizable, self-documenting text
294editor (without an X toolkit)" )
71f57158 295 (build-system gnu-build-system)
388fd01b
MW
296 (inputs (append `(("inotify-tools" ,inotify-tools))
297 (alist-delete "gtk+" (package-inputs emacs))))
298 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
299 (package-arguments emacs)))))
4a3e602c 300
f906d30c
CAW
301(define-public guile-emacs
302 (package (inherit emacs)
303 (name "guile-emacs")
304 (version "20150512.41120e0")
305 (source (origin
306 (method git-fetch)
307 (uri (git-reference
308 (url "git://git.hcoop.net/git/bpt/emacs.git")
309 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
995b7069 310 (file-name (string-append name "-" version "-checkout"))
68cb962a 311 (patches (search-patches "guile-emacs-fix-configure.patch"))
f906d30c
CAW
312 (sha256
313 (base32
314 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
315 (native-inputs
316 `(("autoconf" ,autoconf)
317 ("automake" ,automake)
318 ("guile" ,guile-for-guile-emacs)
319 ,@(package-native-inputs emacs)))
320 (arguments
321 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
322 #:parallel-build? #f
323 ;; Tests aren't passing for now.
324 #:tests? #f
325 ,@(package-arguments emacs))
326 ((#:phases phases)
327 `(modify-phases ,phases
328 (add-after 'unpack 'autogen
f6fefe12
TGR
329 (lambda _
330 (invoke "sh" "autogen.sh")))
68cb962a
JN
331 ;; Build sometimes fails: deps/dispnew.d: No such file or directory
332 (add-before 'build 'make-deps-dir
333 (lambda _
f6fefe12 334 (invoke "mkdir" "-p" "src/deps")))))))))
f906d30c 335
4f028c8f
LC
336\f
337;;;
338;;; Emacs hacking.
339;;;
340
5c8031ff 341(define-public emacs-geiser
4f028c8f 342 (package
5c8031ff 343 (name "emacs-geiser")
e9c3a780 344 (version "0.10")
4f028c8f
LC
345 (source (origin
346 (method url-fetch)
cf8f58b2
LC
347 (uri (string-append "mirror://savannah/geiser/" version
348 "/geiser-" version ".tar.gz"))
4f028c8f 349 (sha256
1f8ad12a 350 (base32
e9c3a780 351 "0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
4f028c8f 352 (build-system gnu-build-system)
d51cafb0 353 (arguments
dc1d3cde
KK
354 '(#:phases
355 (modify-phases %standard-phases
356 (add-after 'install 'post-install
357 (lambda* (#:key outputs #:allow-other-keys)
358 (symlink "geiser-install.el"
359 (string-append (assoc-ref outputs "out")
360 "/share/emacs/site-lisp/"
361 "geiser-autoloads.el"))
362 #t)))))
bc96a8b5 363 (inputs `(("guile" ,guile-2.2)))
b8fc3622 364 (native-inputs `(("emacs" ,emacs-minimal)))
340978d7 365 (home-page "https://nongnu.org/geiser/")
4f028c8f
LC
366 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
367 (description
9586011d
LC
368 "Geiser is a collection of Emacs major and minor modes that conspire with
369one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
370continuously running Scheme interpreter takes the center of the stage in
371Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
372implementation, Emacs and, ultimately, the schemer, giving them access to live
373metadata.")
f61e0e79 374 (license license:bsd-3)))
9a4c9715 375
5c8031ff
PN
376(define-public geiser
377 (deprecated-package "geiser" emacs-geiser))
378
379(define-public emacs-paredit
fe4163f3 380 (package
967cfd18 381 (name "emacs-paredit")
c181b870 382 (version "24")
fe4163f3 383 (source (origin
c181b870
AK
384 (method url-fetch)
385 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
386 version ".el"))
387 (sha256
388 (base32
389 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
79b3c930 390 (build-system emacs-build-system)
fe4163f3
MW
391 (home-page "http://mumble.net/~campbell/emacs/paredit/")
392 (synopsis "Emacs minor mode for editing parentheses")
393 (description
394 "ParEdit (paredit.el) is a minor mode for performing structured editing
395of S-expression data. The typical example of this would be Lisp or Scheme
396source code.
397
398ParEdit helps **keep parentheses balanced** and adds many keys for moving
399S-expressions and moving around in S-expressions. Its behavior can be jarring
400for those who may want transient periods of unbalanced parentheses, such as
401when typing parentheses directly or commenting out code line by line.")
f61e0e79 402 (license license:gpl3+)))
fe4163f3 403
5c8031ff
PN
404(define-public paredit
405 (deprecated-package "paredit" emacs-paredit))
406
2f910ef6
LC
407(define-public git-modes
408 (package
6d21272b 409 (name "emacs-git-modes")
a9088fc8 410 (version "1.2.8")
2f910ef6
LC
411 (source (origin
412 (method url-fetch)
413 (uri (string-append
414 "https://github.com/magit/git-modes/archive/"
415 version ".tar.gz"))
8fd3c1ff 416 (file-name (string-append name "-" version ".tar.gz"))
2f910ef6
LC
417 (sha256
418 (base32
a9088fc8 419 "0h49f68yn0q4lg054adqii4qja1z2pzybm7nf4kvpq7fzjrzgv1q"))))
3d01b293 420 (build-system emacs-build-system)
2f910ef6
LC
421 (home-page "https://github.com/magit/git-modes")
422 (synopsis "Emacs major modes for Git configuration files")
423 (description
424 "This package provides Emacs major modes for editing various Git
425configuration files, such as .gitattributes, .gitignore, and .git/config.")
426 (license license:gpl3+)))
427
6d21272b
AK
428(define-public git-modes/old-name
429 (deprecated-package "git-modes" git-modes))
430
2b0e4300
AK
431(define-public emacs-with-editor
432 (package
433 (name "emacs-with-editor")
6917161d 434 (version "2.7.3")
2b0e4300
AK
435 (source (origin
436 (method url-fetch)
437 (uri (string-append
438 "https://github.com/magit/with-editor/archive/v"
439 version ".tar.gz"))
440 (file-name (string-append name "-" version ".tar.gz"))
441 (sha256
442 (base32
6917161d 443 "1ln2s0kckzkv50qmr6x1kb2j30cfjii0vs6lpghg7ff4lav8jqgh"))))
2b0e4300
AK
444 (build-system emacs-build-system)
445 (propagated-inputs
446 `(("emacs-dash" ,emacs-dash)))
447 (home-page "https://github.com/magit/with-editor")
448 (synopsis "Emacs library for using Emacsclient as EDITOR")
449 (description
450 "This package provides an Emacs library to use the Emacsclient as
451@code{$EDITOR} of child processes, making sure they know how to call home.
452For remote processes a substitute is provided, which communicates with Emacs
453on stdout instead of using a socket as the Emacsclient does.")
454 (license license:gpl3+)))
455
5c8031ff 456(define-public emacs-magit
9a4c9715 457 (package
5c8031ff 458 (name "emacs-magit")
67102068 459 (version "2.13.0")
9a4c9715
MW
460 (source (origin
461 (method url-fetch)
fac8b30b
MW
462 (uri (string-append
463 "https://github.com/magit/magit/releases/download/"
06619128 464 version "/magit-" version ".tar.gz"))
9a4c9715 465 (sha256
7e4871ba 466 (base32
67102068 467 "1ygaah3dd3nxpyd17297xgvdcgr7pgzzwlmpnmchki0kiwgg3sbc"))))
9a4c9715 468 (build-system gnu-build-system)
2c047b4a 469 (native-inputs `(("texinfo" ,texinfo)
b8fc3622 470 ("emacs" ,emacs-minimal)))
46bd4515
AG
471 (inputs
472 `(("git" ,git)
473 ("perl" ,perl)))
3db5ed11
AK
474 (propagated-inputs
475 `(("dash" ,emacs-dash)
f61719d1
AK
476 ("ghub" ,emacs-ghub)
477 ("magit-popup" ,emacs-magit-popup)
3db5ed11 478 ("with-editor" ,emacs-with-editor)))
9a4c9715 479 (arguments
84fe4420 480 `(#:test-target "test"
55f29c39 481 #:tests? #f ; tests are not included in the release
7e4871ba 482
55f29c39
AK
483 #:make-flags
484 (list (string-append "PREFIX=" %output)
485 ;; Don't put .el files in a sub-directory.
486 (string-append "lispdir=" %output "/share/emacs/site-lisp")
487 (string-append "DASH_DIR="
488 (assoc-ref %build-inputs "dash")
489 "/share/emacs/site-lisp/guix.d/dash-"
3db5ed11 490 ,(package-version emacs-dash))
f61719d1
AK
491 (string-append "GHUB_DIR="
492 (assoc-ref %build-inputs "ghub")
493 "/share/emacs/site-lisp/guix.d/ghub-"
494 ,(package-version emacs-ghub))
495 (string-append "MAGIT_POPUP_DIR="
496 (assoc-ref %build-inputs "magit-popup")
497 "/share/emacs/site-lisp/guix.d/magit-popup-"
498 ,(package-version emacs-magit-popup))
3db5ed11
AK
499 (string-append "WITH_EDITOR_DIR="
500 (assoc-ref %build-inputs "with-editor")
501 "/share/emacs/site-lisp/guix.d/with-editor-"
502 ,(package-version emacs-with-editor)))
d41a8a07 503
9a4c9715 504 #:phases
c466bfd1 505 (modify-phases %standard-phases
55f29c39 506 (delete 'configure)
c466bfd1
LC
507 (add-before
508 'build 'patch-exec-paths
509 (lambda* (#:key inputs #:allow-other-keys)
84fe4420 510 (let ((perl (assoc-ref inputs "perl")))
46bd4515
AG
511 (substitute* "lisp/magit-sequence.el"
512 (("perl") (string-append perl "/bin/perl")))
55f29c39 513 #t))))))
f61719d1 514 (home-page "https://magit.vc/")
9a4c9715
MW
515 (synopsis "Emacs interface for the Git version control system")
516 (description
517 "With Magit, you can inspect and modify your Git repositories with Emacs.
518You can review and commit the changes you have made to the tracked files, for
519example, and you can browse the history of past changes. There is support for
520cherry picking, reverting, merging, rebasing, and other common Git
521operations.")
f61e0e79 522 (license license:gpl3+)))
18d26210 523
5c8031ff
PN
524(define-public magit
525 (deprecated-package "magit" emacs-magit))
526
527(define-public emacs-magit-svn
97cc51f8 528 (package
5c8031ff 529 (name "emacs-magit-svn")
5ccd8f40 530 (version "2.2.0")
97cc51f8 531 (source (origin
be379ee7
AK
532 (method url-fetch)
533 (uri (string-append
534 "https://github.com/magit/magit-svn/archive/"
535 version ".tar.gz"))
536 (file-name (string-append name "-" version ".tar.gz"))
97cc51f8
LC
537 (sha256
538 (base32
5ccd8f40 539 "1c3n377v436zaxamlsz04y1ahdhp96x1vd43zaryv4y10m02ba47"))))
97cc51f8 540 (build-system trivial-build-system)
b8fc3622 541 (native-inputs `(("emacs" ,emacs-minimal)
be379ee7
AK
542 ("tar" ,tar)
543 ("gzip" ,gzip)))
544 (propagated-inputs `(("dash" ,emacs-dash)
5ccd8f40 545 ("with-editor" ,emacs-with-editor)
5c8031ff 546 ("magit" ,emacs-magit)))
97cc51f8
LC
547 (arguments
548 `(#:modules ((guix build utils)
549 (guix build emacs-utils))
550
551 #:builder
552 (begin
553 (use-modules (guix build utils)
554 (guix build emacs-utils))
555
be379ee7
AK
556 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
557 "/bin/tar"))
558 (PATH (string-append (assoc-ref %build-inputs "gzip")
559 "/bin"))
560 (emacs (string-append (assoc-ref %build-inputs "emacs")
97cc51f8
LC
561 "/bin/emacs"))
562 (magit (string-append (assoc-ref %build-inputs "magit")
563 "/share/emacs/site-lisp"))
be379ee7
AK
564 (dash (string-append (assoc-ref %build-inputs "dash")
565 "/share/emacs/site-lisp/guix.d/dash-"
566 ,(package-version emacs-dash)))
5ccd8f40
LC
567 (with-editor (string-append (assoc-ref %build-inputs "with-editor")
568 "/share/emacs/site-lisp/guix.d/with-editor-"
569 ,(package-version emacs-with-editor)))
97cc51f8
LC
570 (source (assoc-ref %build-inputs "source"))
571 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
be379ee7 572 (setenv "PATH" PATH)
e3cfef22 573 (invoke tar "xvf" source)
96c46210
LC
574
575 (install-file (string-append ,name "-" ,version "/magit-svn.el")
576 lisp-dir)
97cc51f8
LC
577
578 (with-directory-excursion lisp-dir
579 (parameterize ((%emacs emacs))
580 (emacs-generate-autoloads ,name lisp-dir)
581 (setenv "EMACSLOADPATH"
5ccd8f40 582 (string-append ":" magit ":" dash ":" with-editor))
e3cfef22 583 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
e3cfef22 584 #t))))
97cc51f8
LC
585 (home-page "https://github.com/magit/magit-svn")
586 (synopsis "Git-SVN extension to Magit")
587 (description
588 "This package is an extension to Magit, the Git Emacs mode, providing
589support for Git-SVN.")
590 (license license:gpl3+)))
591
5c8031ff
PN
592(define-public magit-svn
593 (deprecated-package "magit-svn" emacs-magit-svn))
594
c1562e3d
AK
595(define-public emacs-magit-popup
596 (package
597 (name "emacs-magit-popup")
e1bf455c 598 (version "2.12.4")
c1562e3d 599 (source (origin
f9fe94c1
TGR
600 (method git-fetch)
601 (uri (git-reference
602 (url "https://github.com/magit/magit-popup.git")
603 (commit (string-append "v" version))))
604 (file-name (git-file-name name version))
c1562e3d
AK
605 (sha256
606 (base32
f9fe94c1 607 "08952nzn0cb6gxscqyiljk4fq2zxjvr3ism0lvgw0gs9hl5phiwx"))))
c1562e3d 608 (build-system emacs-build-system)
09f7c41d
AK
609 (arguments
610 `(#:phases
611 (modify-phases %standard-phases
612 (add-before 'install 'make-info
613 (lambda _
d78f1fdc 614 (invoke "make" "info"))))))
09f7c41d
AK
615 (native-inputs
616 `(("texinfo" ,texinfo)))
c1562e3d
AK
617 (propagated-inputs
618 `(("emacs-dash" ,emacs-dash)))
09f7c41d 619 (home-page "https://github.com/magit/magit-popup")
c1562e3d
AK
620 (synopsis "Define prefix-infix-suffix command combos")
621 (description
622 "This library implements a generic interface for toggling switches and
623setting options and then invoking an Emacs command which does something with
624these arguments. The prototypical use is for the command to call an external
625process, passing on the arguments as command line arguments.")
626 (license license:gpl3+)))
627
0a287457
AK
628(define-public emacs-ghub
629 (package
630 (name "emacs-ghub")
5a368b2a 631 (version "2.0.1")
0a287457
AK
632 (source (origin
633 (method url-fetch)
634 (uri (string-append
635 "https://github.com/magit/ghub/archive/v"
636 version ".tar.gz"))
637 (file-name (string-append name "-" version ".tar.gz"))
638 (sha256
639 (base32
5a368b2a 640 "0d0qj5r1bm2aidi61rigrdaycxnyb7y1ivb3h8rpvvapsf8sk7z0"))))
0a287457
AK
641 (build-system emacs-build-system)
642 (arguments
643 `(#:phases
644 (modify-phases %standard-phases
645 (add-before 'install 'make-info
646 (lambda _
67cf588f 647 (invoke "make" "info"))))))
0a287457
AK
648 (native-inputs
649 `(("texinfo" ,texinfo)))
650 (home-page "https://github.com/magit/ghub")
651 (synopsis "Emacs client library for Github API and Gitlab API")
652 (description
653 "This package provides 2 files: @file{ghub.el} and @file{glab.el},
654which are the libraries that provide basic support for using the Github and
655Gitlab APIs from Emacs packages. It abstracts access to API resources using
656only a handful of functions that are not resource-specific.")
657 (license license:gpl3+)))
658
51f4e36c
CLW
659(define-public emacs-scribble-mode
660 (let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
661 (version "0.0")
662 (revision 0))
663 (package
664 (name "emacs-scribble-mode")
665 (version (if (zero? revision)
666 version
667 (string-append version "-"
668 (number->string revision)
669 "." (string-take commit 7))))
670 (source (origin
671 (method git-fetch)
672 (uri (git-reference
673 (url "https://github.com/emacs-pe/scribble-mode.git")
674 (commit commit)))
675 (sha256
676 (base32
677 "0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
678 (build-system emacs-build-system)
679 (home-page "https://github.com/emacs-pe/scribble-mode")
680 (synopsis "Emacs mode for editing the Scribble documentation syntax.")
681 (description
682 "This package provides basic syntax highlighting and editing support
683for editing Racket's Scribble documentation syntax in Emacs.")
684 (license license:gpl3+))))
685
5c8031ff 686(define-public emacs-haskell-mode
00f4bd50 687 (package
5c8031ff 688 (name "emacs-haskell-mode")
08fc0d68 689 (version "16.1")
00f4bd50
FB
690 (source (origin
691 (method url-fetch)
692 (file-name (string-append name "-" version ".tar.gz"))
693 (uri (string-append
694 "https://github.com/haskell/haskell-mode/archive/v"
695 version ".tar.gz"))
696 (sha256
2bd6ed9e
AV
697 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))
698 (patches
699 (search-patches ; backport test failure fixes
700 "haskell-mode-unused-variables.patch"
701 "haskell-mode-make-check.patch"))))
08fc0d68
FB
702 (inputs
703 `(("emacs-el-search" ,emacs-el-search) ; for tests
704 ("emacs-stream" ,emacs-stream))) ; for tests
705 (propagated-inputs
706 `(("emacs-dash" ,emacs-dash)))
00f4bd50 707 (native-inputs
b8fc3622 708 `(("emacs" ,emacs-minimal)
6aaf3899 709 ("texinfo" ,texinfo)))
00f4bd50
FB
710 (build-system gnu-build-system)
711 (arguments
712 `(#:make-flags (list (string-append "EMACS="
713 (assoc-ref %build-inputs "emacs")
714 "/bin/emacs"))
08fc0d68
FB
715 #:modules ((ice-9 match)
716 (srfi srfi-26)
717 ,@%gnu-build-system-modules)
00f4bd50
FB
718 #:phases
719 (modify-phases %standard-phases
720 (delete 'configure)
721 (add-before
722 'build 'pre-build
723 (lambda* (#:key inputs #:allow-other-keys)
08fc0d68 724 (define (el-dir store-dir)
69611d3e 725 (match (find-files store-dir "\\.el$")
08fc0d68
FB
726 ((f1 f2 ...) (dirname f1))
727 (_ "")))
728
00f4bd50 729 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
08fc0d68
FB
730 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
731
00f4bd50 732 (setenv "SHELL" "sh")
08fc0d68
FB
733 (setenv "EMACSLOADPATH"
734 (string-concatenate
735 (map (match-lambda
736 (((? emacs-prefix? name) . dir)
737 (string-append (el-dir dir) ":"))
738 (_ ""))
739 inputs)))
00f4bd50 740 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
2bd6ed9e
AV
741 ;; embed filename to fix test failure
742 (let ((file "tests/haskell-cabal-tests.el"))
743 (substitute* file
744 (("\\(buffer-file-name\\)")
745 (format #f "(or (buffer-file-name) ~s)" file))))
00f4bd50
FB
746 #t)))
747 (replace
748 'install
749 (lambda* (#:key outputs #:allow-other-keys)
750 (let* ((out (assoc-ref outputs "out"))
751 (el-dir (string-append out "/share/emacs/site-lisp"))
752 (doc (string-append
753 out "/share/doc/haskell-mode-" ,version))
754 (info (string-append out "/share/info")))
755 (define (copy-to-dir dir files)
96c46210
LC
756 (for-each (lambda (f)
757 (install-file f dir))
758 files))
00f4bd50
FB
759
760 (with-directory-excursion "doc"
ff6275fd 761 (invoke "makeinfo" "haskell-mode.texi")
96c46210 762 (install-file "haskell-mode.info" info))
00f4bd50
FB
763 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
764 (copy-to-dir el-dir (find-files "." "\\.elc?"))
08fc0d68 765 ;; These are part of other packages.
00f4bd50 766 (with-directory-excursion el-dir
08fc0d68 767 (for-each delete-file '("dash.el" "ert.el")))
00f4bd50
FB
768 #t))))))
769 (home-page "https://github.com/haskell/haskell-mode")
770 (synopsis "Haskell mode for Emacs")
771 (description
772 "This is an Emacs mode for editing, debugging and developing Haskell
773programs.")
774 (license license:gpl3+)))
775
5c8031ff
PN
776(define-public haskell-mode
777 (deprecated-package "haskell-mode" emacs-haskell-mode))
778
779(define-public emacs-flycheck
6e3fdbbe
LC
780 (package
781 (name "emacs-flycheck")
6ae0fd21 782 (version "31")
6e3fdbbe
LC
783 (source (origin
784 (method url-fetch)
0b928076
AK
785 (uri (string-append
786 "https://github.com/flycheck/flycheck/releases/download/"
787 version "/flycheck-" version ".tar"))
6e3fdbbe
LC
788 (sha256
789 (base32
223779c4
LC
790 "01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
791 (modules '((guix build utils)))
792 (snippet `(begin
793 ;; Change 'flycheck-version' so that it does not
794 ;; attempt to get its version from pkg-info.el.
795 (substitute* "flycheck.el"
796 (("\\(pkg-info-version-info 'flycheck\\)")
797 (string-append "\"" ,version "\"")))
798 #t))))
6e3fdbbe
LC
799 (build-system emacs-build-system)
800 (propagated-inputs
d0a52052 801 `(("emacs-dash" ,emacs-dash)))
6e3fdbbe
LC
802 (home-page "https://www.flycheck.org")
803 (synopsis "On-the-fly syntax checking")
804 (description
805 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
806replacement for the older Flymake extension which is part of GNU Emacs, with
807many improvements and additional features.
808
809Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
810checking for over 30 programming and markup languages with more than 70
811different tools. It highlights errors and warnings inline in the buffer, and
812provides an optional IDE-like error list.")
813 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
814
d4f7b7e1
NG
815(define-public emacs-a
816 (package
817 (name "emacs-a")
818 (version "0.1.1")
819 (source (origin
820 (method git-fetch)
821 (uri (git-reference
822 (url "https://github.com/plexus/a.el.git")
823 (commit (string-append "v" version))))
824 (file-name (git-file-name name version))
825 (sha256
826 (base32
827 "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"))))
828 (build-system emacs-build-system)
829 (home-page "https://github.com/plexus/a.el/")
830 (synopsis
831 "Emacs library for dealing with association lists and hash tables")
832 (description "@code{emacs-a} provides Emacs Lisp functions for dealing
833with associative structures in a uniform and functional way. These functions
834can take association lists, hash tables, and in some cases vectors (where the
835index is considered the key).")
836 (license license:gpl3+)))
837
18d26210
MW
838\f
839;;;
840;;; Web browsing.
841;;;
842
843(define-public emacs-w3m
5ede50b8
LC
844 ;; Emacs-w3m follows a "rolling release" model from its CVS repo. We could
845 ;; use CVS, sure, but instead we choose to use this Git mirror described on
846 ;; the home page as an "unofficial" mirror.
847 (let ((commit "0dd5691f46d314a84da63f3a7277d721815811a2"))
848 (package
849 (name "emacs-w3m")
850 (version (git-version "1.5" "0" commit))
851 (source (origin
852 (method git-fetch)
853 (uri (git-reference
854 (url "https://github.com/ecbrown/emacs-w3m")
855 (commit commit)))
856 (sha256
857 (base32
858 "02xalyxbrkgl4n8nj7xxkmsbm6lshhwdc8bzs2l4wz3hkpgkj7x4"))))
859 (build-system gnu-build-system)
860 (native-inputs `(("autoconf" ,autoconf)
861 ("texinfo" ,texinfo)
862 ("emacs" ,emacs-minimal)))
863 (inputs `(("w3m" ,w3m)
864 ("imagemagick" ,imagemagick)))
865 (arguments
866 `(#:modules ((guix build gnu-build-system)
867 (guix build utils)
868 (guix build emacs-utils))
869 #:imported-modules (,@%gnu-build-system-modules
870 (guix build emacs-utils))
871 #:configure-flags
872 (let ((out (assoc-ref %outputs "out")))
873 (list (string-append "--with-lispdir="
874 out "/share/emacs/site-lisp")
875 (string-append "--with-icondir="
876 out "/share/images/emacs-w3m")
877 ;; Leave .el files uncompressed, otherwise GC can't
878 ;; identify run-time dependencies. See
879 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
880 "--without-compress-install"))
881 #:tests? #f ; no check target
882 #:phases
883 (modify-phases %standard-phases
884 (add-after 'unpack 'autoconf
885 (lambda _
93adf925 886 (invoke "autoconf")))
5ede50b8
LC
887 (add-before 'configure 'support-emacs!
888 (lambda _
889 ;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
890 ;; unsupported.
891 (substitute* "configure"
892 (("EMACS_FLAVOR=unsupported")
893 "EMACS_FLAVOR=emacs"))
894 #t))
895 (add-before 'build 'patch-exec-paths
896 (lambda* (#:key inputs outputs #:allow-other-keys)
897 (let ((out (assoc-ref outputs "out"))
898 (w3m (assoc-ref inputs "w3m"))
899 (imagemagick (assoc-ref inputs "imagemagick"))
900 (coreutils (assoc-ref inputs "coreutils")))
901 (make-file-writable "w3m.el")
902 (emacs-substitute-variables "w3m.el"
903 ("w3m-command" (string-append w3m "/bin/w3m"))
904 ("w3m-touch-command"
905 (string-append coreutils "/bin/touch"))
906 ("w3m-icon-directory"
907 (string-append out "/share/images/emacs-w3m")))
908 (make-file-writable "w3m-image.el")
909 (emacs-substitute-variables "w3m-image.el"
910 ("w3m-imagick-convert-program"
911 (string-append imagemagick "/bin/convert"))
912 ("w3m-imagick-identify-program"
913 (string-append imagemagick "/bin/identify")))
914 #t)))
915 (replace 'install
916 (lambda* (#:key outputs #:allow-other-keys)
93adf925
TGR
917 (invoke "make" "install" "install-icons")
918 (with-directory-excursion
919 (string-append (assoc-ref outputs "out")
920 "/share/emacs/site-lisp")
921 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
922 (symlink "w3m-load.el" "w3m-autoloads.el")
923 #t))))))
5ede50b8
LC
924 (home-page "http://emacs-w3m.namazu.org/")
925 (synopsis "Simple Web browser for Emacs based on w3m")
926 (description
927 "Emacs-w3m is an emacs interface for the w3m web browser.")
928 (license license:gpl2+))))
89925972
MW
929
930(define-public emacs-wget
931 (package
932 (name "emacs-wget")
933 (version "0.5.0")
934 (source (origin
935 (method url-fetch)
936 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
937 version ".orig.tar.gz"))
938 (sha256
939 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
940 (build-system gnu-build-system)
6aaf3899 941 (inputs `(("wget" ,wget)))
b8fc3622 942 (native-inputs `(("emacs" ,emacs-minimal)))
89925972 943 (arguments
caaf1933 944 `(#:modules ((guix build gnu-build-system)
89925972
MW
945 (guix build utils)
946 (guix build emacs-utils))
caaf1933 947 #:imported-modules (,@%gnu-build-system-modules
89925972
MW
948 (guix build emacs-utils))
949 #:tests? #f ; no check target
950 #:phases
dc1d3cde
KK
951 (modify-phases %standard-phases
952 (replace 'configure
953 (lambda* (#:key outputs #:allow-other-keys)
954 (substitute* "Makefile"
955 (("/usr/local") (assoc-ref outputs "out"))
956 (("/site-lisp/emacs-wget") "/site-lisp"))
957 #t))
958 (add-before 'build 'patch-exec-paths
959 (lambda* (#:key inputs outputs #:allow-other-keys)
960 (let ((wget (assoc-ref inputs "wget")))
961 (emacs-substitute-variables "wget.el"
962 ("wget-command" (string-append wget "/bin/wget"))))
963 #t))
964 (add-after 'install 'post-install
965 (lambda* (#:key outputs #:allow-other-keys)
966 (emacs-generate-autoloads
967 "wget" (string-append (assoc-ref outputs "out")
968 "/share/emacs/site-lisp/"))
969 #t)))))
89925972 970 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
ae2189a9 971 (synopsis "Simple file downloader for Emacs based on wget")
89925972 972 (description
35b9e423 973 "Emacs-wget is an emacs interface for the wget file downloader.")
f61e0e79 974 (license license:gpl2+)))
77c9286d
LC
975
976\f
977;;;
978;;; Multimedia.
979;;;
980
5c8031ff 981(define-public emacs-emms
77c9286d 982 (package
d06d4d7b 983 (name "emacs-emms")
b1c7f5ff 984 (version "5.1")
77c9286d
LC
985 (source (origin
986 (method url-fetch)
987 (uri (string-append "mirror://gnu/emms/emms-"
988 version ".tar.gz"))
989 (sha256
990 (base32
b1c7f5ff 991 "149ddczyx6x10zn4mn8g0rll1rwf4yciv8x6j0qdnlbwszblx2x6"))
77c9286d
LC
992 (modules '((guix build utils)))
993 (snippet
6cbee49d
MW
994 '(begin
995 (substitute* "Makefile"
996 (("/usr/bin/install-info")
997 ;; No need to use 'install-info' since it would create a
998 ;; useless 'dir' file.
999 "true")
1000 (("^INFODIR=.*")
1001 ;; Install Info files to $out/share/info, not $out/info.
1002 "INFODIR := $(PREFIX)/share/info\n")
1003 (("/site-lisp/emms")
1004 ;; Install directly in share/emacs/site-lisp, not in a
1005 ;; sub-directory.
1006 "/site-lisp")
1007 (("^all: (.*)\n" _ rest)
1008 ;; Build 'emms-print-metadata'.
1009 (string-append "all: " rest " emms-print-metadata\n")))
1010 #t))))
77c9286d
LC
1011 (build-system gnu-build-system)
1012 (arguments
caaf1933 1013 `(#:modules ((guix build gnu-build-system)
77c9286d 1014 (guix build utils)
80c0f69c
RW
1015 (guix build emacs-utils)
1016 (ice-9 ftw))
caaf1933 1017 #:imported-modules (,@%gnu-build-system-modules
77c9286d
LC
1018 (guix build emacs-utils))
1019
2fe176be
EF
1020 #:phases
1021 (modify-phases %standard-phases
1022 (replace 'configure
1023 (lambda* (#:key inputs outputs #:allow-other-keys)
1024 (let ((out (assoc-ref outputs "out"))
66e55700 1025 (flac (assoc-ref inputs "flac"))
2fe176be
EF
1026 (vorbis (assoc-ref inputs "vorbis-tools"))
1027 (alsa (assoc-ref inputs "alsa-utils"))
1028 (mpg321 (assoc-ref inputs "mpg321"))
042358a9
PN
1029 (mp3info (assoc-ref inputs "mp3info"))
1030 (opus (assoc-ref inputs "opus-tools")))
2fe176be
EF
1031 ;; Specify the installation directory.
1032 (substitute* "Makefile"
1033 (("PREFIX=.*$")
1034 (string-append "PREFIX := " out "\n")))
1035
1036 (setenv "SHELL" (which "sh"))
1037 (setenv "CC" "gcc")
1038
1039 ;; Specify the absolute file names of the various
1040 ;; programs so that everything works out-of-the-box.
1041 (with-directory-excursion "lisp"
1042 (emacs-substitute-variables
1043 "emms-player-mpg321-remote.el"
1044 ("emms-player-mpg321-remote-command"
1045 (string-append mpg321 "/bin/mpg321")))
1046 (substitute* "emms-player-simple.el"
1047 (("\"ogg123\"")
1048 (string-append "\"" vorbis "/bin/ogg123\"")))
66e55700
MC
1049 (substitute* "emms-player-simple.el"
1050 (("\"mpg321\"")
1051 (string-append "\"" mpg321 "/bin/mpg321\"")))
2fe176be
EF
1052 (emacs-substitute-variables "emms-info-ogginfo.el"
1053 ("emms-info-ogginfo-program-name"
1054 (string-append vorbis "/bin/ogginfo")))
042358a9
PN
1055 (emacs-substitute-variables "emms-info-opusinfo.el"
1056 ("emms-info-opusinfo-program-name"
1057 (string-append opus "/bin/opusinfo")))
2fe176be
EF
1058 (emacs-substitute-variables "emms-info-libtag.el"
1059 ("emms-info-libtag-program-name"
1060 (string-append out "/bin/emms-print-metadata")))
1061 (emacs-substitute-variables "emms-info-mp3info.el"
1062 ("emms-info-mp3info-program-name"
1063 (string-append mp3info "/bin/mp3info")))
66e55700
MC
1064 (emacs-substitute-variables "emms-info-metaflac.el"
1065 ("emms-info-metaflac-program-name"
1066 (string-append flac "/bin/metaflac")))
1067 (emacs-substitute-variables "emms-source-file.el"
1068 ("emms-source-file-gnu-find" (which "find")))
2fe176be
EF
1069 (substitute* "emms-volume-amixer.el"
1070 (("\"amixer\"")
1071 (string-append "\"" alsa "/bin/amixer\"")))
1072 (substitute* "emms-tag-editor.el"
1073 (("\"mp3info\"")
1074 (string-append "\"" mp3info "/bin/mp3info\"")))))))
1075 (add-before 'install 'pre-install
1076 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 1077 ;; The 'install' rule expects the target directories to exist.
2fe176be 1078 (let* ((out (assoc-ref outputs "out"))
c3a10d30 1079 (bin (string-append out "/bin"))
2fe176be 1080 (man1 (string-append out "/share/man/man1")))
c3a10d30 1081 (mkdir-p bin)
2fe176be 1082 (mkdir-p man1)
80c0f69c
RW
1083
1084 ;; Ensure that files are not rejected by gzip
1085 (let ((early-1980 315619200)) ; 1980-01-02 UTC
1086 (ftw "." (lambda (file stat flag)
1087 (unless (<= early-1980 (stat:mtime stat))
1088 (utime file early-1980 early-1980))
1089 #t)))
2fe176be
EF
1090 #t)))
1091 (add-after 'install 'post-install
1092 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 1093 (let ((out (assoc-ref outputs "out")))
2fe176be
EF
1094 (symlink "emms-auto.el"
1095 (string-append out "/share/emacs/site-lisp/"
80c0f69c
RW
1096 "emms-autoloads.el")))
1097 #t)))
77c9286d 1098 #:tests? #f))
b8fc3622 1099 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
77c9286d 1100 ("texinfo" ,texinfo)))
c72aed6d 1101 (inputs `(("alsa-utils" ,alsa-utils)
66e55700 1102 ("flac" ,flac) ;for metaflac
77c9286d
LC
1103 ("vorbis-tools" ,vorbis-tools)
1104 ("mpg321" ,mpg321)
1105 ("taglib" ,taglib)
042358a9
PN
1106 ("mp3info" ,mp3info)
1107 ("opus-tools" ,opus-tools)))
38cb4766 1108 (properties '((upstream-name . "emms")))
77c9286d
LC
1109 (synopsis "Emacs Multimedia System")
1110 (description
1111 "EMMS is the Emacs Multimedia System. It is a small front-end which
1112can control one of the supported external players. Thus, it supports
1113whatever formats are supported by your music player. It also
1114supports tagging and playlist management, all behind a clean and
1115light user interface.")
6fd52309 1116 (home-page "https://www.gnu.org/software/emms/")
f61e0e79 1117 (license license:gpl3+)))
c7e553a3 1118
1095bd1d 1119(define-public emacs-emms-player-mpv
5ecb058c 1120 ;; A new mpv backend is included in Emms from 5.0.
5c8031ff 1121 (deprecated-package "emacs-emms-player-mpv" emacs-emms))
1095bd1d 1122
2316078a
RW
1123(define-public emacs-emms-mode-line-cycle
1124 (package
1125 (name "emacs-emms-mode-line-cycle")
1126 (version "0.2.5")
1127 (source
1128 (origin
1129 (method url-fetch)
1130 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
1131 "/archive/" version ".tar.gz"))
1132 (file-name (string-append name "-" version ".tar.gz"))
1133 (sha256
1134 (base32
1135 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
1136 (build-system emacs-build-system)
1137 (propagated-inputs
2a5f2b1f 1138 `(("emms" ,emacs-emms)))
2316078a
RW
1139 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1140 (synopsis "Display the EMMS mode line as a ticker")
1141 (description
1142 "This is a minor mode for updating the EMMS mode-line string cyclically
1143within a specified width. It is useful for displaying long track titles.")
1144 (license license:gpl3+)))
1145
c7e553a3
LC
1146\f
1147;;;
1148;;; Miscellaneous.
1149;;;
1150
5c8031ff 1151(define-public emacs-bbdb
c7e553a3 1152 (package
5c8031ff 1153 (name "emacs-bbdb")
c7e553a3
LC
1154 (version "3.1.2")
1155 (source (origin
1156 (method url-fetch)
1157 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1158 version ".tar.gz"))
1159 (sha256
1160 (base32
1161 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1162 (modules '((guix build utils)))
1163 (snippet
1164 ;; We don't want to build and install the PDF.
6cbee49d
MW
1165 '(begin
1166 (substitute* "doc/Makefile.in"
1167 (("^doc_DATA = .*$")
1168 "doc_DATA =\n"))
1169 #t))))
c7e553a3
LC
1170 (build-system gnu-build-system)
1171 (arguments
dc1d3cde
KK
1172 '(#:phases
1173 (modify-phases %standard-phases
1174 (add-after 'install 'post-install
1175 (lambda* (#:key outputs #:allow-other-keys)
1176 ;; Add an autoloads file with the right name for guix.el.
1177 (let* ((out (assoc-ref outputs "out"))
1178 (site (string-append out "/share/emacs/site-lisp")))
1179 (with-directory-excursion site
1180 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
1181 #t)))))
b8fc3622 1182 (native-inputs `(("emacs" ,emacs-minimal)))
340978d7 1183 (home-page "https://savannah.nongnu.org/projects/bbdb/")
c7e553a3
LC
1184 (synopsis "Contact management utility for Emacs")
1185 (description
1186 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1187an address book for email and snail mail addresses, phone numbers and the
1188like. It can be linked with various Emacs mail clients (Message and Mail
1189mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
f61e0e79 1190 (license license:gpl3+)))
78395334 1191
5c8031ff
PN
1192(define-public bbdb
1193 (deprecated-package "bbdb" emacs-bbdb))
1194
4d3d3bd2
VD
1195(define-public emacs-aggressive-indent
1196 (package
1197 (name "emacs-aggressive-indent")
1198 (version "1.8.3")
1199 (source (origin
1200 (method url-fetch)
1201 (uri (string-append "https://elpa.gnu.org/packages/"
1202 "aggressive-indent-" version ".el"))
1203 (sha256
1204 (base32
1205 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1206 (build-system emacs-build-system)
1207 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1208 (synopsis "Minor mode to aggressively keep your code always indented")
1209 (description
1210 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1211always indented. It reindents after every change, making it more reliable
1212than @code{electric-indent-mode}.")
1213 (license license:gpl2+)))
1214
cf006d2e
CB
1215(define-public emacs-ag
1216 (package
1217 (name "emacs-ag")
1218 (version "0.47")
1219 (source (origin
1220 (method url-fetch)
1221 (uri (string-append
1222 "https://github.com/Wilfred/ag.el/archive/"
1223 version ".tar.gz"))
1224 (file-name (string-append name "-" version ".tar.gz"))
1225 (sha256
1226 (base32
1227 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1228 (build-system emacs-build-system)
1229 (arguments
1230 `(#:phases
1231 (modify-phases %standard-phases
99517d92
GC
1232 (add-before 'install 'make-info
1233 (lambda _
1234 (with-directory-excursion "docs"
f9299da9 1235 (invoke "make" "info"))))
99517d92
GC
1236 (add-after 'install 'install-info
1237 (lambda* (#:key outputs #:allow-other-keys)
1238 (let* ((out (assoc-ref outputs "out"))
1239 (info (string-append out "/share/info")))
1240 (install-file "docs/_build/texinfo/agel.info" info)
1241 #t))))))
99517d92
GC
1242 (native-inputs
1243 `(("python-sphinx" ,python-sphinx)
1244 ("texinfo" ,texinfo)))
cf006d2e
CB
1245 (propagated-inputs
1246 `(("dash" ,emacs-dash)
86470421
CL
1247 ("s" ,emacs-s)
1248 ;; We need to use 'ag' as the executable on remote systems.
1249 ("the-silver-searcher" ,the-silver-searcher)))
cf006d2e
CB
1250 (home-page "https://github.com/Wilfred/ag.el")
1251 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1252 (description "This package provides the ability to use the silver
1253searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1254include version control system awareness, use of Perl compatible regular
1255expressions, editing the search results directly and searching file names
1256rather than the contents of files.")
1257 (license license:gpl3+)))
1258
b654de6d
AK
1259(define-public emacs-async
1260 (package
1261 (name "emacs-async")
3c3c3d1d 1262 (home-page "https://github.com/jwiegley/emacs-async")
ac3accd4 1263 (version "1.9.3")
b654de6d 1264 (source (origin
3c3c3d1d
MB
1265 (method git-fetch)
1266 (uri (git-reference
1267 (url home-page)
1268 (commit (string-append "v" version))))
1269 (file-name (git-file-name name version))
b654de6d
AK
1270 (sha256
1271 (base32
3c3c3d1d 1272 "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"))))
b654de6d 1273 (build-system emacs-build-system)
b654de6d
AK
1274 (synopsis "Asynchronous processing in Emacs")
1275 (description
1276 "This package provides the ability to call asynchronous functions and
1277processes. For example, it can be used to run dired commands (for copying,
1278moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1279as a library for other Emacs packages.")
1280 (license license:gpl3+)))
1281
78395334
FB
1282(define-public emacs-auctex
1283 (package
1284 (name "emacs-auctex")
7f9866a3 1285 (version "12.1.0")
78395334
FB
1286 (source
1287 (origin
1288 (method url-fetch)
1289 (uri (string-append
f32ffa04 1290 "https://elpa.gnu.org/packages/auctex-"
78395334
FB
1291 version
1292 ".tar"))
1293 (sha256
1294 (base32
7f9866a3 1295 "0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
78395334 1296 (build-system emacs-build-system)
a6eafbed
AK
1297 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1298 ;; ('emacs-minimal' does not provide dbus).
b1d32ec0
AI
1299 (arguments
1300 `(#:emacs ,emacs
1301 #:include '("\\.el$" "^images/" "^latex/" "\\.info$")
1302 #:exclude '("^tests/" "^latex/README")))
78395334
FB
1303 (native-inputs
1304 `(("perl" ,perl)))
6fd52309 1305 (home-page "https://www.gnu.org/software/auctex/")
78395334
FB
1306 (synopsis "Integrated environment for TeX")
1307 (description
1308 "AUCTeX is a comprehensive customizable integrated environment for
1309writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1310or XEmacs.")
1311 (license license:gpl3+)))
85ef742c 1312
de2e402b
MM
1313(define-public emacs-autothemer
1314 (package
1315 (name "emacs-autothemer")
1316 (version "0.2.2")
1317 (source
1318 (origin
1319 (method url-fetch)
1320 (uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
1321 version ".tar.gz"))
1322 (file-name (string-append name "-" version ".tar.gz"))
1323 (sha256
1324 (base32
1325 "0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
1326 (build-system emacs-build-system)
1327 (propagated-inputs
1328 `(("emacs-dash" ,emacs-dash)))
1329 (home-page "https://github.com/sebastiansturm/autothemer")
1330 (synopsis "Conveniently create Emacs themes")
1331 (description
1332 "Autothemer provides a thin layer on top of @code{deftheme} and
1333@code{custom-theme-set-faces} that creates a new custom color theme, based on
1334a set of simplified face specifications and a user-supplied color palette")
1335 (license license:gpl3+)))
1336
474e14f7
MC
1337(define-public emacs-howm
1338 (package
1339 (name "emacs-howm")
1340 (version "1.4.4")
1341 (source
1342 (origin
1343 (method url-fetch)
1344 (uri (string-append "http://howm.sourceforge.jp/a/howm-"
1345 version ".tar.gz"))
1346 (sha256
1347 (base32
1348 "0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
1349 (build-system gnu-build-system)
1350 (native-inputs
1351 `(("emacs" ,emacs-minimal)))
1352 (arguments
1353 `(#:configure-flags
1354 (list (string-append "--with-howmdir=" %output
1355 "/share/emacs/site-lisp/guix.d/howm-" ,version))
1356 #:modules ((guix build gnu-build-system)
1357 ((guix build emacs-build-system) #:prefix emacs:)
1358 (guix build utils))
1359 #:imported-modules (,@%gnu-build-system-modules
1360 (guix build emacs-build-system)
1361 (guix build emacs-utils))
1362 #:phases
1363 (modify-phases %standard-phases
2b16ae4b 1364 (add-after 'install 'make-autoloads
474e14f7
MC
1365 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
1366 (home-page "http://howm.osdn.jp/")
1367 (synopsis "Note-taking tool for Emacs")
1368 (description "Howm is a note-taking tool for Emacs. Like
1369code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
1370searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
1371 (license license:gpl1+)))
1372
36890436
VD
1373(define-public emacs-calfw
1374 (package
1375 (name "emacs-calfw")
ae2b1181 1376 (version "1.6")
36890436
VD
1377 (source
1378 (origin
1379 (method url-fetch)
1380 (uri (string-append
1381 "https://github.com/kiwanami/emacs-calfw/archive/v"
1382 version ".tar.gz"))
1383 (file-name (string-append name "-" version ".tar.gz"))
1384 (sha256
1385 (base32
ae2b1181 1386 "1zr91xr0f1xfcv78yxka8vs5ximmq2ixmqf2pkb57kwwnxlypq4i"))))
36890436 1387 (build-system emacs-build-system)
159d10ae
MC
1388 (propagated-inputs
1389 `(("emacs-howm" ,emacs-howm)))
36890436
VD
1390 (home-page "https://github.com/kiwanami/emacs-calfw/")
1391 (synopsis "Calendar framework for Emacs")
1392 (description
9dac2a8e
RW
1393 "This package displays a calendar view with various schedule data in the
1394Emacs buffer.")
36890436
VD
1395 (license license:gpl3+)))
1396
a8d0c9cb
CB
1397(define-public emacs-direnv
1398 (package
1399 (name "emacs-direnv")
1400 (version "1.2.0")
1401 (source
1402 (origin
1403 (method url-fetch)
1404 (uri (string-append
1405 "https://github.com/wbolster/emacs-direnv/archive/"
1406 version ".tar.gz"))
1407 (file-name (string-append name "-" version ".tar.gz"))
1408 (sha256
1409 (base32
1410 "0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
1411 (build-system emacs-build-system)
1412 (propagated-inputs
1413 `(("dash" ,emacs-dash)
1414 ("with-editor" ,emacs-with-editor)))
1415 (home-page "https://github.com/wbolster/emacs-direnv")
1416 (synopsis "Direnv integration for Emacs")
1417 (description
1418 "This package provides support for invoking direnv to get the environment
1419for the current file and updating the environment within Emacs to match.
1420
1421Direnv can be invoked manually, and a global minor mode is included that will
1422update the environment when the active buffer changes.
1423
1424Using emacs-direnv means that programs started from Emacs will use the
1425environment set through Direnv.")
1426 (license license:gpl3+)))
1427
cd5c3979
OP
1428(define-public emacs-ggtags
1429 (package
1430 (name "emacs-ggtags")
83246854 1431 (version "0.8.13")
cd5c3979
OP
1432 (source
1433 (origin
1434 (method url-fetch)
1435 (uri (string-append "http://elpa.gnu.org/packages/ggtags-"
1436 version ".el"))
1437 (sha256
1438 (base32
83246854 1439 "1qa7lcrcmf76sf6dy8sxbg4adq7rg59fm0n5848w3qxgsr0h45fg"))))
cd5c3979
OP
1440 (build-system emacs-build-system)
1441 (home-page "https://github.com/leoliu/ggtags")
1442 (synopsis "Frontend to the GNU Global source code tagging system")
1443 (description "@code{ggtags} provides a frontend to the GNU Global source
1444code tagging system.
1445
1446Features:
1447
1448@itemize
1449@item Build on @code{compile.el} for asynchronicity and its large feature-set.
1450@item Automatically update Global's tag files when needed with tuning for
1451large source trees.
1452@item Intuitive navigation among multiple matches with mode-line display of
1453current match, total matches and exit status.
1454@item Read tag with completion.
1455@item Show definition at point.
1456@item Jump to #include files.
1457@item Support search history and saving a search to register/bookmark.
1458@item Query replace.
1459@item Manage Global's environment variables on a per-project basis.
1460@item Highlight (definition) tag at point.
1461@item Abbreviated display of file names.
1462@item Support all Global search backends: @code{grep}, @code{idutils}, etc.
1463@item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
1464@code{pygments} backend.
1465@item Support all Global's output formats: @code{grep}, @code{ctags-x},
1466@code{cscope} etc.
1467@item Support projects on remote hosts (e.g. via @code{tramp}).
1468@item Support eldoc.
1469@item Search @code{GTAGSLIBPATH} for references and symbols.
1470@end itemize\n")
1471 (license license:gpl3+)))
1472
21a656f5
CB
1473(define-public emacs-go-mode
1474 (package
1475 (name "emacs-go-mode")
1476 (version "1.5.0")
1477 (source (origin
7af36275
RW
1478 (method git-fetch)
1479 (uri (git-reference
1480 (url "https://github.com/dominikh/go-mode.el.git")
1481 (commit (string-append "v" version))))
1482 (file-name (git-file-name name version))
21a656f5
CB
1483 (sha256
1484 (base32
7af36275 1485 "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"))))
21a656f5 1486 (build-system emacs-build-system)
7af36275
RW
1487 (arguments
1488 `(#:phases
1489 (modify-phases %standard-phases
1490 (add-after 'unpack 'make-writable
1491 (lambda _
1492 (for-each make-file-writable (find-files "." "\\.el$"))
1493 #t)))))
21a656f5
CB
1494 (home-page "https://github.com/dominikh/go-mode.el")
1495 (synopsis "Go mode for Emacs")
1496 (description
1497 "This package provides go-mode, an Emacs mode for working with software
1498written in the Go programming language.")
1499 (license license:bsd-3)))
1500
63878730
VD
1501(define-public emacs-google-maps
1502 (package
1503 (name "emacs-google-maps")
1504 (version "1.0.0")
1505 (source (origin
1506 (method url-fetch)
1507 (uri (string-append "https://github.com/jd/google-maps.el/"
1508 "archive/" version ".tar.gz"))
1509 (file-name (string-append name "-" version ".tar.gz"))
1510 (sha256
1511 (base32
1512 "014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
1513 (build-system emacs-build-system)
1514 (home-page "https://github.com/jd/google-maps.el")
1515 (synopsis "Access Google Maps from Emacs")
1516 (description "The @code{google-maps} package allows to display Google
1517Maps directly inside Emacs.")
1518 (license license:gpl3+)))
1519
1f37465a 1520(define-public emacs-graphviz-dot-mode
067a113a 1521 (let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
1f37465a
CB
1522 (revision "1"))
1523 (package
1524 (name "emacs-graphviz-dot-mode")
067a113a 1525 (version (string-append "0.3.11-" revision "."
1f37465a
CB
1526 (string-take commit 7)))
1527 (source (origin
1528 (method git-fetch)
1529 (uri (git-reference
1530 (url "https://github.com/ppareit/graphviz-dot-mode.git")
1531 (commit commit)))
1532 (file-name (string-append name "-" version "-checkout"))
1533 (sha256
1534 (base32
067a113a 1535 "0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
1f37465a
CB
1536 (build-system emacs-build-system)
1537 (arguments
1538 `(#:phases
1539 (modify-phases %standard-phases
1540 (add-before 'install 'make-info
1541 (lambda* (#:key inputs #:allow-other-keys)
1542 (with-directory-excursion "texinfo"
1543 (substitute* "Makefile"
1544 (("\\/usr\\/bin\\/gzip")
1545 (string-append (assoc-ref inputs "gzip") "/bin/gzip")))
8bc19675
TGR
1546 (invoke "make"
1547 "clean"
1548 "info"
1549 (string-append "TEXINFODIR="
1550 (assoc-ref inputs "texinfo")
1551 "/bin")))))
1f37465a
CB
1552 (add-after 'install 'install-info
1553 (lambda* (#:key outputs #:allow-other-keys)
1554 (let* ((out (assoc-ref outputs "out"))
1555 (info (string-append out "/share/info")))
1556 (install-file "texinfo/graphviz-dot-mode.info.gz" info)
1557 #t))))))
1558 (native-inputs
1559 `(("texinfo" ,texinfo)
1560 ("gzip" ,gzip)))
1561 (home-page "http://ppareit.github.com/graphviz-dot-mode")
1562 (synopsis "Major mode for editing Graphviz Dot files")
1563 (description
1564 "This Emacs packages helps you to create @file{.dot} or @file{.gv}
1565files using the dot syntax, and use Graphviz to convert these files to
1566diagrams.")
1567 (license license:gpl2+))))
1568
85ef742c
FB
1569(define-public emacs-mmm-mode
1570 (package
1571 (name "emacs-mmm-mode")
810cd037 1572 (version "0.5.5")
85ef742c
FB
1573 (source
1574 (origin
1575 (method url-fetch)
1576 (uri (string-append
0c909c05
AK
1577 "https://github.com/purcell/mmm-mode/archive/"
1578 version ".tar.gz"))
1579 (file-name (string-append name "-" version ".tar.gz"))
85ef742c
FB
1580 (sha256
1581 (base32
810cd037 1582 "0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
0c909c05
AK
1583 (build-system gnu-build-system)
1584 (arguments
1585 '(#:phases
1586 (modify-phases %standard-phases
1587 (add-after 'unpack 'autogen
1588 (lambda _
32a8a6bb 1589 (invoke "sh" "autogen.sh"))))))
0c909c05
AK
1590 (native-inputs
1591 `(("autoconf" ,autoconf)
1592 ("automake" ,automake)
b8fc3622 1593 ("emacs" ,emacs-minimal)
0c909c05 1594 ("texinfo" ,texinfo)))
85ef742c 1595 (home-page "https://github.com/purcell/mmm-mode")
0c909c05 1596 (synopsis "Allow multiple major modes in an Emacs buffer")
85ef742c 1597 (description
0c909c05 1598 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
85ef742c
FB
1599single buffer.")
1600 (license license:gpl3+)))
ec9825d6 1601
060348d2
AK
1602(define-public emacs-tablist
1603 (package
1604 (name "emacs-tablist")
1605 (version "0.70")
1606 (source (origin
1607 (method url-fetch)
1608 (uri (string-append
1609 "https://github.com/politza/tablist/archive/v"
1610 version ".tar.gz"))
1611 (file-name (string-append name "-" version ".tar.gz"))
1612 (sha256
1613 (base32
1614 "177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
1615 (build-system emacs-build-system)
1616 (home-page "https://github.com/politza/tablist")
1617 (synopsis "Extension for @code{tabulated-list-mode}")
1618 (description "Tablist is the Emacs package that provides several
1619additional features to @code{tabulated-list-mode}: it adds marks,
1620filters, new key bindings and faces. It can be enabled by
1621@code{tablist-mode} or @code{tablist-minor-mode} commands.")
1622 (license license:gpl3+)))
1623
ec9825d6
RW
1624(define-public emacs-pdf-tools
1625 (package
1626 (name "emacs-pdf-tools")
1210046d 1627 (version "0.80")
ec9825d6
RW
1628 (source (origin
1629 (method url-fetch)
1630 (uri (string-append
1631 "https://github.com/politza/pdf-tools/archive/v"
1632 version ".tar.gz"))
1633 (file-name (string-append name "-" version ".tar.gz"))
1634 (sha256
1635 (base32
1210046d 1636 "06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
ec9825d6
RW
1637 (build-system gnu-build-system)
1638 (arguments
1639 `(#:tests? #f ; there are no tests
1640 #:modules ((guix build gnu-build-system)
1bcae5c5 1641 ((guix build emacs-build-system) #:prefix emacs:)
ec9825d6
RW
1642 (guix build utils)
1643 (guix build emacs-utils))
1644 #:imported-modules (,@%gnu-build-system-modules
1bcae5c5 1645 (guix build emacs-build-system)
ec9825d6
RW
1646 (guix build emacs-utils))
1647 #:phases
1648 (modify-phases %standard-phases
1bcae5c5
AK
1649 ;; Build server side using 'gnu-build-system'.
1650 (add-after 'unpack 'enter-server-dir
1651 (lambda _ (chdir "server") #t))
d10092b8 1652 (add-after 'enter-server-dir 'autogen
1bcae5c5 1653 (lambda _
d2f3817d 1654 (invoke "bash" "autogen.sh")))
1bcae5c5
AK
1655
1656 ;; Build emacs side using 'emacs-build-system'.
1657 (add-after 'compress-documentation 'enter-lisp-dir
1658 (lambda _ (chdir "../lisp") #t))
1659 (add-after 'enter-lisp-dir 'emacs-patch-variables
1660 (lambda* (#:key outputs #:allow-other-keys)
1661 ;; Set path to epdfinfo program.
1662 (emacs-substitute-variables "pdf-info.el"
1663 ("pdf-info-epdfinfo-program"
1664 (string-append (assoc-ref outputs "out")
1665 "/bin/epdfinfo")))
1666 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1667 ;; upgrading" that pdf-tools tries to perform.
1668 (emacs-substitute-variables "pdf-tools.el"
1669 ("pdf-tools-handle-upgrades" '()))))
259ed58f
MC
1670 (add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
1671 (assoc-ref emacs:%standard-phases 'set-emacs-load-path))
1672 (add-after 'emacs-set-emacs-load-path 'emacs-install
1bcae5c5
AK
1673 (assoc-ref emacs:%standard-phases 'install))
1674 (add-after 'emacs-install 'emacs-build
1675 (assoc-ref emacs:%standard-phases 'build))
1676 (add-after 'emacs-install 'emacs-make-autoloads
1677 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
ec9825d6
RW
1678 (native-inputs `(("autoconf" ,autoconf)
1679 ("automake" ,automake)
1680 ("pkg-config" ,pkg-config)
b8fc3622 1681 ("emacs" ,emacs-minimal)))
ec9825d6
RW
1682 (inputs `(("poppler" ,poppler)
1683 ("cairo" ,cairo)
1684 ("glib" ,glib)
1685 ("libpng" ,libpng)
1686 ("zlib" ,zlib)))
1210046d 1687 (propagated-inputs `(("tablist" ,emacs-tablist)))
ec9825d6
RW
1688 (synopsis "Emacs support library for PDF files")
1689 (description
1690 "PDF Tools is, among other things, a replacement of DocView for PDF
1691files. The key difference is that pages are not pre-rendered by
1692e.g. ghostscript and stored in the file-system, but rather created on-demand
1693and stored in memory.")
1694 (home-page "https://github.com/politza/pdf-tools")
1695 (license license:gpl3+)))
d4dbf10e
FB
1696
1697(define-public emacs-dash
1698 (package
1699 (name "emacs-dash")
06f86379 1700 (version "2.14.1")
d4dbf10e 1701 (source (origin
06f86379
RW
1702 (method git-fetch)
1703 (uri (git-reference
1704 (url "https://github.com/magnars/dash.el.git")
1705 (commit version)))
1706 (file-name (git-file-name name version))
d4dbf10e
FB
1707 (sha256
1708 (base32
06f86379 1709 "1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
d4dbf10e
FB
1710 (build-system emacs-build-system)
1711 (arguments
d1d41db6
MC
1712 `(#:tests? #t
1713 #:test-command '("./run-tests.sh")))
d4dbf10e
FB
1714 (home-page "https://github.com/magnars/dash.el")
1715 (synopsis "Modern list library for Emacs")
1716 (description "This package provides a modern list API library for Emacs.")
1717 (license license:gpl3+)))
85777fe5 1718
753baf77
AK
1719(define-public emacs-bui
1720 (package
1721 (name "emacs-bui")
5d78cf0b 1722 (version "1.2.0")
753baf77 1723 (source (origin
5d78cf0b
AK
1724 (method git-fetch)
1725 (uri (git-reference
1726 (url "https://notabug.org/alezost/emacs-bui.git")
1727 (commit (string-append "v" version))))
1728 (file-name (string-append name "-" version "-checkout"))
753baf77
AK
1729 (sha256
1730 (base32
5d78cf0b 1731 "0ixia5s41f2nbal3wsixacbhbc0mk9yb75ir1amqakip30sq4apv"))))
753baf77
AK
1732 (build-system emacs-build-system)
1733 (propagated-inputs
1734 `(("dash" ,emacs-dash)))
5d78cf0b 1735 (home-page "https://notabug.org/alezost/emacs-bui")
753baf77
AK
1736 (synopsis "Buffer interface library for Emacs")
1737 (description
1738 "BUI (Buffer User Interface) is a library for making @code{list} and
1739@code{info} interfaces to display an arbitrary data of the same
1740type, for example: packages, buffers, files, etc.")
1741 (license license:gpl3+)))
1742
64e43c67
AK
1743(define-public emacs-guix
1744 (package
1745 (name "emacs-guix")
8a8662d2 1746 (version "0.5")
64e43c67
AK
1747 (source (origin
1748 (method url-fetch)
65f46862
AK
1749 (uri (string-append "https://emacs-guix.gitlab.io/website/"
1750 "releases/emacs-guix-" version ".tar.gz"))
64e43c67
AK
1751 (sha256
1752 (base32
8a8662d2 1753 "09zxd8x674vrpigmcx8l00ifhaxh35xwkwjb8dw9kydnhv9hyyi1"))))
64e43c67
AK
1754 (build-system gnu-build-system)
1755 (arguments
1756 `(#:configure-flags
1757 (let ((guix (assoc-ref %build-inputs "guix"))
8a8662d2 1758 (gcrypt (assoc-ref %build-inputs "guile-gcrypt"))
64e43c67
AK
1759 (geiser (assoc-ref %build-inputs "geiser"))
1760 (dash (assoc-ref %build-inputs "dash"))
1761 (bui (assoc-ref %build-inputs "bui"))
1762 (magit-popup (assoc-ref %build-inputs "magit-popup"))
ca59ce41 1763 (edit-indirect (assoc-ref %build-inputs "edit-indirect"))
8a8662d2
AK
1764 (site-lisp "/share/emacs/site-lisp")
1765 (site-scm "/share/guile/site")
1766 (site-go "/lib/guile")
1767 (guile-dir (lambda (dir)
1768 (car (find-files dir
1769 (lambda (file stat)
1770 (string-prefix?
1771 "2." (basename file)))
1772 #:directories? #t)))))
64e43c67 1773 (list (string-append "--with-guix-site-dir="
8a8662d2 1774 (guile-dir (string-append guix site-scm)))
3fb8e281 1775 (string-append "--with-guix-site-ccache-dir="
8a8662d2
AK
1776 (guile-dir (string-append guix site-go))
1777 "/site-ccache")
1778 (string-append "--with-guile-gcrypt-site-dir="
1779 (guile-dir (string-append gcrypt site-scm)))
1780 (string-append "--with-guile-gcrypt-site-ccache-dir="
1781 (guile-dir (string-append gcrypt site-go))
3fb8e281 1782 "/site-ccache")
64e43c67
AK
1783 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1784 (string-append "--with-dash-lispdir="
1785 dash site-lisp "/guix.d/dash-"
1786 ,(package-version emacs-dash))
1787 (string-append "--with-bui-lispdir="
1788 bui site-lisp "/guix.d/bui-"
1789 ,(package-version emacs-bui))
ca59ce41
AK
1790 (string-append "--with-editindirect-lispdir="
1791 edit-indirect site-lisp "/guix.d/edit-indirect-"
1792 ,(package-version emacs-edit-indirect))
64e43c67
AK
1793 (string-append "--with-popup-lispdir="
1794 magit-popup site-lisp "/guix.d/magit-popup-"
1795 ,(package-version emacs-magit-popup))))))
1796 (native-inputs
1797 `(("pkg-config" ,pkg-config)
1798 ("emacs" ,emacs-minimal)))
1799 (inputs
b4f8edb7 1800 `(("guile" ,guile-2.2)
64e43c67
AK
1801 ("guix" ,guix)))
1802 (propagated-inputs
5c8031ff 1803 `(("geiser" ,emacs-geiser)
8a8662d2 1804 ("guile-gcrypt" ,guile-gcrypt)
64e43c67
AK
1805 ("dash" ,emacs-dash)
1806 ("bui" ,emacs-bui)
ca59ce41 1807 ("edit-indirect" ,emacs-edit-indirect)
64e43c67 1808 ("magit-popup" ,emacs-magit-popup)))
65f46862 1809 (home-page "https://emacs-guix.gitlab.io/website/")
64e43c67
AK
1810 (synopsis "Emacs interface for GNU Guix")
1811 (description
b2f1f7b0
AK
1812 "Emacs-Guix provides a visual interface, tools and features for the GNU
1813Guix package manager. Particularly, it allows you to do various package
1814management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1815@code{M-x guix-help} command.")
64e43c67
AK
1816 (license license:gpl3+)))
1817
40f7ebac
AK
1818(define-public emacs-build-farm
1819 (package
1820 (name "emacs-build-farm")
fdf68c23 1821 (version "0.2.1")
40f7ebac
AK
1822 (source (origin
1823 (method git-fetch)
1824 (uri (git-reference
fdf68c23
AK
1825 (url "https://notabug.org/alezost/emacs-build-farm.git")
1826 (commit (string-append "v" version))))
40f7ebac
AK
1827 (file-name (string-append name "-" version "-checkout"))
1828 (sha256
1829 (base32
fdf68c23 1830 "1a4ky0hca26p7f3i2c2s5517ygkyaaz52vs0vxy6f5q95rhlgdhd"))))
40f7ebac
AK
1831 (build-system emacs-build-system)
1832 (propagated-inputs
1833 `(("bui" ,emacs-bui)
1834 ("magit-popup" ,emacs-magit-popup)))
fdf68c23 1835 (home-page "https://notabug.org/alezost/emacs-build-farm")
40f7ebac
AK
1836 (synopsis "Emacs interface for Hydra and Cuirass build farms")
1837 (description
1838 "This Emacs package provides an interface for Hydra and
1839Cuirass (build farms used by Nix and Guix). It allows you to look at
1840various data related to the build farm projects, jobsets, builds and
1841evaluations. The entry point is @code{M-x build-farm} command.")
1842 (license license:gpl3+)))
1843
d6e5de1e
RJ
1844(define-public emacs-d-mode
1845 (package
1846 (name "emacs-d-mode")
aa86a564 1847 (version "2.0.9")
d6e5de1e
RJ
1848 (source (origin
1849 (method url-fetch)
1850 (uri (string-append
1851 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1852 "archive/" version ".tar.gz"))
b87047e0 1853 (file-name (string-append name "-" version ".tar.gz"))
d6e5de1e
RJ
1854 (sha256
1855 (base32
aa86a564 1856 "127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
d6e5de1e
RJ
1857 (build-system emacs-build-system)
1858 (propagated-inputs
1859 `(("emacs-undercover" ,emacs-undercover)))
1860 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1861 (synopsis "Emacs major mode for editing D code")
1862 (description "This package provides an Emacs major mode for highlighting
1863code written in the D programming language. This mode is currently known to
1864work with Emacs 24 and 25.")
1865 (license license:gpl2+)))
1866
7f7b38af
VD
1867(define-public emacs-keyfreq
1868 (package
1869 (name "emacs-keyfreq")
1870 (version "20160516.716")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (string-append "http://melpa.org/packages/keyfreq-"
1875 version ".el"))
1876 (sha256
1877 (base32
1878 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1879 (build-system emacs-build-system)
1880 (home-page "https://github.com/dacap/keyfreq")
1881 (synopsis "Track Emacs command frequencies")
1882 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1883a command.")
1884 (license license:gpl3+)))
1885
6aab6c27
RJ
1886(define-public emacs-olivetti
1887 (package
1888 (name "emacs-olivetti")
1889 (version "1.5.7")
1890 (source (origin
1891 (method url-fetch)
1892 (uri (string-append
1893 "https://stable.melpa.org/packages/olivetti-"
1894 version ".el"))
1895 (sha256
1896 (base32
1897 "1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
1898 (build-system emacs-build-system)
1899 (home-page "https://github.com/rnkn/olivetti")
1900 (synopsis "Emacs minor mode for a nice writing environment")
1901 (description "This package provides an Emacs minor mode that puts writing
1902in the center.")
1903 (license license:gpl3+)))
1904
1075b437
DB
1905(define-public emacs-undo-tree
1906 (package
1907 (name "emacs-undo-tree")
77a7891b 1908 (version "0.6.6")
1075b437
DB
1909 (source (origin
1910 (method git-fetch)
1911 (uri (git-reference
1912 (url "http://dr-qubit.org/git/undo-tree.git")
08e1f38d 1913 (commit (string-append "release/" version))))
1075b437
DB
1914 (file-name (string-append name "-" version "-checkout"))
1915 (sha256
77a7891b 1916 (base32
1917 "1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
1075b437
DB
1918 (build-system emacs-build-system)
1919 (home-page "http://www.dr-qubit.org/emacs.php")
1920 (synopsis "Treat undo history as a tree")
1921 (description "Tree-like interface to Emacs undo system, providing
1922graphical tree presentation of all previous states of buffer that
1923allows easily move between them.")
1924 (license license:gpl3+)))
1925
85777fe5
FB
1926(define-public emacs-s
1927 (package
1928 (name "emacs-s")
4e425584 1929 (version "1.12.0")
85777fe5
FB
1930 (source (origin
1931 (method url-fetch)
1932 (uri (string-append
1933 "https://github.com/magnars/s.el/archive/"
1934 version ".tar.gz"))
1935 (file-name (string-append name "-" version ".tar.gz"))
1936 (sha256
1937 (base32
4e425584 1938 "0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
85777fe5
FB
1939 (build-system emacs-build-system)
1940 (arguments
d1d41db6 1941 `(#:tests? #t
80e99aa4 1942 #:emacs ,emacs ; FIXME: tests fail with emacs-minimal
d1d41db6 1943 #:test-command '("./run-tests.sh")))
85777fe5 1944 (home-page "https://github.com/magnars/s.el")
a124bbd2 1945 (synopsis "Emacs string manipulation library")
85777fe5
FB
1946 (description "This package provides an Emacs library for manipulating
1947strings.")
1948 (license license:gpl3+)))
cf9ce01f 1949
070e1fe9
VD
1950(define-public emacs-symon
1951 (package
1952 (name "emacs-symon")
d71b758f 1953 (version "20160630")
070e1fe9
VD
1954 (source
1955 (origin
1956 (method url-fetch)
d71b758f
VD
1957 (uri (string-append "https://github.com/zk-phi/symon/archive/"
1958 version ".tar.gz"))
1959 (file-name (string-append name "-" version ".tar.gz"))
070e1fe9
VD
1960 (sha256
1961 (base32
d71b758f 1962 "0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
070e1fe9 1963 (build-system emacs-build-system)
d71b758f 1964 (home-page "https://github.com/zk-phi/symon")
070e1fe9
VD
1965 (synopsis "Tiny graphical system monitor")
1966 (description
1967 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1968 (license license:gpl2+)))
1969
899bcad3 1970(define-public emacs-sx
582c122e
MC
1971 (let ((version "20180212")
1972 (revision "1")
1973 (commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
1974 (package
1975 (name "emacs-sx")
1976 (version (git-version version revision commit))
1977 (source
1978 (origin
1979 (method git-fetch)
1980 (uri (git-reference
1981 (url "https://github.com/vermiculus/sx.el")
1982 (commit commit)))
1983 (file-name (git-file-name name version))
1984 (sha256
1985 (base32
1986 "1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
1987 (build-system emacs-build-system)
1988 (propagated-inputs
1989 `(("emacs-markdown-mode" ,emacs-markdown-mode)))
1990 (home-page "https://github.com/vermiculus/sx.el")
1991 (synopsis "Emacs StackExchange client")
1992 (description
1993 "Emacs StackExchange client. Ask and answer questions on
899bcad3 1994Stack Overflow, Super User, and other StackExchange sites.")
582c122e 1995 (license license:gpl3+))))
899bcad3 1996
cf9ce01f
FB
1997(define-public emacs-f
1998 (package
1999 (name "emacs-f")
bc2f9dc3 2000 (version "0.20.0")
cf9ce01f 2001 (source (origin
bd0570f2
TGR
2002 (method git-fetch)
2003 (uri (git-reference
2004 (url "https://github.com/rejeep/f.el.git")
2005 (commit (string-append "v" version))))
2006 (file-name (git-file-name name version))
cf9ce01f
FB
2007 (sha256
2008 (base32
bc2f9dc3 2009 "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
cf9ce01f
FB
2010 (build-system emacs-build-system)
2011 (propagated-inputs
2012 `(("emacs-s" ,emacs-s)
2013 ("emacs-dash" ,emacs-dash)))
7bf837fd 2014 (home-page "https://github.com/rejeep/f.el")
cf9ce01f
FB
2015 (synopsis "Emacs API for working with files and directories")
2016 (description "This package provides an Emacs library for working with
2017files and directories.")
2018 (license license:gpl3+)))
48dbeef7 2019
0916dc52
CB
2020(define-public emacs-git-gutter
2021 (package
2022 (name "emacs-git-gutter")
2023 (version "0.90")
2024 (source (origin
2025 (method url-fetch)
2026 (uri (string-append
2027 "https://github.com/syohex/" name "/archive/"
2028 version ".tar.gz"))
2029 (file-name (string-append name "-" version ".tar.gz"))
2030 (sha256
2031 (base32
2032 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
2033 (build-system emacs-build-system)
2034 (home-page "https://github.com/syohex/emacs-git-gutter")
2035 (synopsis "See and manage hunks of text in a version control system")
2036 (description
2037 "This package is an Emacs minor mode for displaying and interacting with
2038hunks of text managed in a version control system. Added modified and deleted
2039areas can be indicated with symbols on the edge of the buffer, and commands
2040can be used to move between and perform actions on these hunks.
2041
2042Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
2043display and behaviour is easily customisable.")
2044 (license license:gpl3+)))
2045
0b35f11d
RW
2046(define-public emacs-git-timemachine
2047 (package
2048 (name "emacs-git-timemachine")
35b6fc12 2049 (version "4.5")
0b35f11d
RW
2050 (source
2051 (origin
2052 (method url-fetch)
0e56f589
KM
2053 (uri (string-append "https://gitlab.com/pidu/git-timemachine"
2054 "/-/archive/" version
2055 "/git-timemachine-" version ".tar.gz"))
0b35f11d
RW
2056 (file-name (string-append name "-" version ".tar.gz"))
2057 (sha256
2058 (base32
35b6fc12 2059 "0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
0b35f11d 2060 (build-system emacs-build-system)
0e56f589 2061 (home-page "https://gitlab.com/pidu/git-timemachine")
0b35f11d
RW
2062 (synopsis "Step through historic versions of Git-controlled files")
2063 (description "This package enables you to step through historic versions
2064of files under Git version control from within Emacs.")
2065 (license license:gpl3+)))
2066
26361de4 2067(define-public emacs-minitest
158943f2
CB
2068 (let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
2069 (revision "1"))
2070 (package
2071 (name "emacs-minitest")
2072 (version (git-version "0.8.0" revision commit))
2073 (source (origin
2074 (method git-fetch)
2075 (uri (git-reference
2076 (url "https://github.com/arthurnn/minitest-emacs")
2077 (commit commit)))
2078 (file-name (git-file-name name commit))
2079 (sha256
2080 (base32
2081 "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
2082 (build-system emacs-build-system)
2083 (arguments
2084 '(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
2085 #:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
2086 (propagated-inputs
2087 `(("emacs-dash" ,emacs-dash)
2088 ("emacs-f" ,emacs-f)))
2089 (home-page "https://github.com/arthurnn/minitest-emacs")
2090 (synopsis "Emacs minitest mode")
2091 (description
2092 "The minitest mode provides commands to run the tests for the current
26361de4
CB
2093file or line, as well as rerunning the previous tests, or all the tests for a
2094project.
2095
2096This package also includes relevant snippets for yasnippet.")
158943f2 2097 (license license:expat))))
26361de4 2098
1c32830b
RW
2099(define-public emacs-el-mock
2100 (package
2101 (name "emacs-el-mock")
2102 (version "1.25.1")
2103 (source
2104 (origin
2105 (method url-fetch)
2106 (uri (string-append "https://github.com/rejeep/el-mock.el/"
2107 "archive/v" version ".tar.gz"))
2108 (file-name (string-append name "-" version ".tar.gz"))
2109 (sha256
2110 (base32
2111 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
2112 (build-system emacs-build-system)
7bf837fd 2113 (home-page "https://github.com/rejeep/el-mock.el")
1c32830b
RW
2114 (synopsis "Tiny mock and stub framework in Emacs Lisp")
2115 (description
2116 "Emacs Lisp Mock is a library for mocking and stubbing using readable
2117syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
2118Expectations, but it can be used in other contexts.")
2119 (license license:gpl3+)))
2120
0c5d837c
RW
2121(define-public emacs-espuds
2122 (package
2123 (name "emacs-espuds")
2124 (version "0.3.3")
2125 (source
2126 (origin
2127 (method url-fetch)
2128 (uri (string-append "https://github.com/ecukes/espuds/"
2129 "archive/v" version ".tar.gz"))
2130 (file-name (string-append name "-" version ".tar.gz"))
2131 (sha256
2132 (base32
2133 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
2134 (build-system emacs-build-system)
2135 (propagated-inputs
2136 `(("emacs-s" ,emacs-s)
2137 ("emacs-dash" ,emacs-dash)
2138 ("emacs-f" ,emacs-f)))
7bf837fd 2139 (home-page "https://github.com/ecukes/espuds")
0c5d837c
RW
2140 (synopsis "Common step definitions for Ecukes")
2141 (description "Espuds is a collection of the most commonly used step
2142definitions for testing with the Ecukes framework.")
2143 (license license:gpl3+)))
2144
bae8e59e
MC
2145(define-public emacs-spark
2146 (let ((version "20160503") ; no proper tag, use date of commit
2147 (commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
2148 (revision "1"))
2149 (package
2150 (name "emacs-spark")
2151 (version (git-version version revision commit))
2152 (source
2153 (origin
2154 (method git-fetch)
2155 (uri (git-reference
2156 (url "https://github.com/alvinfrancis/spark.git")
2157 (commit commit)))
2158 (file-name (git-file-name name version))
2159 (sha256
2160 (base32
2161 "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
2162 (build-system emacs-build-system)
2163 (home-page "https://github.com/alvinfrancis/spark")
2164 (synopsis "Sparkline generation library for Emacs Lisp")
2165 (description "@code{emacs-spark} is a sparkline generation library for
2166Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
2167port of @code{cl-spark} to Emacs Lisp.")
2168 (license license:expat))))
2169
8bebe734
CB
2170(define-public emacs-es-mode
2171 (package
2172 (name "emacs-es-mode")
c4373a60 2173 (version "4.3.0")
8bebe734
CB
2174 (source (origin
2175 (method url-fetch)
2176 (uri (string-append
2177 "https://github.com/dakrone/es-mode/archive/"
2178 version ".tar.gz"))
2179 (file-name (string-append name "-" version ".tar.gz"))
2180 (sha256
2181 (base32
c4373a60 2182 "0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
8bebe734
CB
2183 (build-system emacs-build-system)
2184 (propagated-inputs
2185 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
2186 ;; to be rendered incorrectly
a262ac68
MC
2187 `(("emacs-dash" ,emacs-dash)
2188 ("emacs-org" ,emacs-org)
2189 ("emacs-spark" ,emacs-spark)))
8bebe734
CB
2190 (home-page "https://github.com/dakrone/es-mode")
2191 (synopsis "Major mode for editing Elasticsearch queries")
2192 (description "@code{es-mode} includes highlighting, completion and
2193indentation support for Elasticsearch queries. Also supported are
2194@code{es-mode} blocks in @code{org-mode}, for which the results of queries can
2195be processed through @code{jq}, or in the case of aggregations, can be
2196rendered in to a table. In addition, there is an @code{es-command-center}
2197mode, which displays information about Elasticsearch clusters.")
2198 (license license:gpl3+)))
2199
d0e43782
RW
2200(define-public emacs-expand-region
2201 (package
2202 (name "emacs-expand-region")
61c71171 2203 (version "0.11.0")
d0e43782
RW
2204 (source
2205 (origin
2206 (method url-fetch)
2207 (uri (string-append "https://github.com/magnars/expand-region.el"
2208 "/archive/" version ".tar.gz"))
2209 (file-name (string-append name "-" version ".tar.gz"))
2210 (sha256
2211 (base32
61c71171 2212 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
d0e43782
RW
2213 (build-system emacs-build-system)
2214 (home-page "https://github.com/magnars/expand-region.el")
2215 (synopsis "Increase selected region by semantic units")
2216 (description
2217 "Expand region increases the selected region by semantic units. Just
2218keep pressing the key until it selects what you want. There's also
2219@code{er/contract-region} if you expand too far.")
2220 (license license:gpl3+)))
2221
65568446
RW
2222(define-public emacs-fill-column-indicator
2223 (package
2224 (name "emacs-fill-column-indicator")
91375961 2225 (version "1.89")
65568446
RW
2226 (source
2227 (origin
2228 (method url-fetch)
2229 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
2230 "/archive/v" version ".tar.gz"))
2231 (file-name (string-append name "-" version ".tar.gz"))
2232 (sha256
2233 (base32
91375961 2234 "09ab01np14bdcsr38xf95kpnvxzqr46mdjmphg3pigwnx39a3jvg"))))
65568446
RW
2235 (build-system emacs-build-system)
2236 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
2237 (synopsis "Graphically indicate the fill column")
2238 (description
2239 "Fill-column-indicator graphically indicates the location of the fill
2240column by drawing a thin line down the length of the editing window.")
2241 (license license:gpl3+)))
2242
fbc60db8
MC
2243(define-public emacs-grep-a-lot
2244 (package
2245 (name "emacs-grep-a-lot")
2246 (version "1.0.7")
2247 (source (origin
2248 (method git-fetch)
2249 (uri (git-reference
2250 (url "https://github.com/ZungBang/emacs-grep-a-lot.git")
2251 (commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
2252 (file-name (string-append name "-" version "-checkout"))
2253 (sha256
2254 (base32
2255 "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
2256 (build-system emacs-build-system)
2257 (home-page "https://github.com/ZungBang/emacs-grep-a-lot")
2258 (synopsis "Enables multiple grep buffers in Emacs")
2259 (description
2260 "This Emacs package allows managing multiple grep buffers.")
2261 (license license:gpl3+)))
2262
f450d3c5
CB
2263(define-public emacs-inf-ruby
2264 (package
2265 (name "emacs-inf-ruby")
2266 (version "2.5.1")
2267 (source
2268 (origin
2269 (method url-fetch)
2270 (uri (string-append "https://github.com/nonsequitur/inf-ruby/"
2271 "archive/" version ".tar.gz"))
2272 (file-name (string-append name "-" version ".tar.gz"))
2273 (sha256
2274 (base32
2275 "0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
2276 (build-system emacs-build-system)
2277 (home-page "https://github.com/nonsequitur/inf-ruby")
2278 (synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
2279 (description
2280 "@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
2281for easy interaction with a ruby subprocess. Features include support for
2282detecting specific uses of Ruby, e.g. when using rails, and using a
2283appropriate console.")
2284 (license license:gpl3+)))
2285
7b9769b0
RW
2286(define-public emacs-znc
2287 (package
2288 (name "emacs-znc")
2289 (version "0.0.2")
2290 (source
2291 (origin
2292 (method url-fetch)
2293 (uri (string-append "https://marmalade-repo.org/packages/znc-"
2294 version ".el"))
2295 (sha256
2296 (base32
2297 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
2298 (build-system emacs-build-system)
2299 (home-page "https://github.com/sshirokov/ZNC.el")
2300 (synopsis "Make ERC and ZNC get along better")
2301 (description
2302 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
2303IRC bouncer with ERC.")
2304 (license license:expat)))
2305
1f9a7097
RW
2306(define-public emacs-shut-up
2307 (package
2308 (name "emacs-shut-up")
2309 (version "0.3.2")
2310 (source
2311 (origin
2312 (method url-fetch)
2313 (uri (string-append "https://github.com/cask/shut-up/"
2314 "archive/v" version ".tar.gz"))
2315 (file-name (string-append name "-" version ".tar.gz"))
2316 (sha256
2317 (base32
2318 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
2319 (build-system emacs-build-system)
2320 (home-page "https://github.com/cask/shut-up")
2321 (synopsis "Silence Emacs")
2322 (description "This package silences most output of Emacs when running an
2323Emacs shell script.")
2324 (license license:expat)))
2325
dbe38a3a
RW
2326(define-public emacs-undercover
2327 (package
2328 (name "emacs-undercover")
2329 (version "0.6.0")
2330 (source
2331 (origin
2332 (method url-fetch)
2333 (uri (string-append "https://github.com/sviridov/undercover.el/"
2334 "archive/v" version ".tar.gz"))
2335 (file-name (string-append name "-" version ".tar.gz"))
2336 (sha256
2337 (base32
2338 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
2339 (build-system emacs-build-system)
2340 (propagated-inputs
2341 `(("emacs-dash" ,emacs-dash)
2342 ("emacs-shut-up" ,emacs-shut-up)))
2343 (home-page "https://github.com/sviridov/undercover.el")
2344 (synopsis "Test coverage library for Emacs Lisp")
2345 (description
2346 "Undercover is a test coverage library for software written in Emacs
2347Lisp.")
2348 (license license:expat)))
2349
07046e5f
RW
2350(define-public emacs-paren-face
2351 (package
2352 (name "emacs-paren-face")
2353 (version "1.0.0")
2354 (source
2355 (origin
2356 (method url-fetch)
2357 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
2358 version ".tar.gz"))
2359 (file-name (string-append name "-" version ".tar.gz"))
2360 (sha256
2361 (base32
2362 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
2363 (build-system emacs-build-system)
7bf837fd 2364 (home-page "https://github.com/tarsius/paren-face")
07046e5f
RW
2365 (synopsis "Face for parentheses in lisp modes")
2366 (description
2367 "This library defines a face named @code{parenthesis} used just for
2368parentheses. The intended purpose of this face is to make parentheses less
2369visible in Lisp code by dimming them. Lispers probably don't need to be
2370constantly made aware of the existence of the parentheses. Dimming them might
2371be even more useful for people new to lisp who have not yet learned to
2372subconsciously blend out the parentheses.")
2373 (license license:gpl3+)))
2374
a46e3c0d
RW
2375(define-public emacs-page-break-lines
2376 (package
2377 (name "emacs-page-break-lines")
2378 (version "0.11")
2379 (source
2380 (origin
2381 (method url-fetch)
2382 (uri (string-append "https://github.com/purcell/page-break-lines/"
2383 "archive/" version ".tar.gz"))
2384 (file-name (string-append name "-" version ".tar.gz"))
2385 (sha256
2386 (base32
2387 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
2388 (build-system emacs-build-system)
2389 (home-page "https://github.com/purcell/page-break-lines")
2390 (synopsis "Display page breaks as tidy horizontal lines")
2391 (description
2392 "This library provides a global mode which displays form feed characters
2393as horizontal rules.")
2394 (license license:gpl3+)))
2395
1f8a951b
RW
2396(define-public emacs-simple-httpd
2397 (package
2398 (name "emacs-simple-httpd")
2399 (version "1.4.6")
2400 (source
2401 (origin
2402 (method url-fetch)
2403 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
2404 "archive/" version ".tar.gz"))
2405 (file-name (string-append name "-" version ".tar.gz"))
2406 (sha256
2407 (base32
2408 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
2409 (build-system emacs-build-system)
2410 (home-page "https://github.com/skeeto/emacs-http-server")
2411 (synopsis "HTTP server in pure Emacs Lisp")
2412 (description
2413 "This package provides a simple HTTP server written in Emacs Lisp to
2414serve files and directory listings.")
2415 (license license:unlicense)))
2416
6c04acaa
RW
2417(define-public emacs-skewer-mode
2418 (package
2419 (name "emacs-skewer-mode")
2420 (version "1.6.2")
2421 (source
2422 (origin
2423 (method url-fetch)
2424 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
2425 version ".tar.gz"))
2426 (file-name (string-append name "-" version ".tar.gz"))
2427 (sha256
2428 (base32
2429 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
2430 (build-system emacs-build-system)
2431 (propagated-inputs
2432 `(("emacs-simple-httpd" ,emacs-simple-httpd)
2433 ("emacs-js2-mode" ,emacs-js2-mode)))
46f5ae0b 2434 (arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
6c04acaa
RW
2435 (home-page "https://github.com/skeeto/skewer-mode")
2436 (synopsis "Live web development in Emacs")
2437 (description
2438 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
2439a web browser. Expressions are sent on-the-fly from an editing buffer to be
2440evaluated in the browser, just like Emacs does with an inferior Lisp process
2441in Lisp modes.")
2442 (license license:unlicense)))
2443
cdba3a84
MC
2444(define-public emacs-string-inflection
2445 (package
2446 (name "emacs-string-inflection")
2447 (version "1.0.6")
2448 (source (origin
2449 (method git-fetch)
2450 (uri (git-reference
2451 (url "https://github.com/akicho8/string-inflection")
2452 (commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
2453 (file-name (string-append name "-" version "-checkout"))
2454 (sha256
2455 (base32
2456 "1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
2457 (build-system emacs-build-system)
2458 (native-inputs
5c8031ff 2459 `(("ert-runner" ,emacs-ert-runner)))
cdba3a84 2460 (arguments
d1d41db6
MC
2461 `(#:tests? #t
2462 #:test-command '("ert-runner")))
cdba3a84
MC
2463 (home-page "https://github.com/akicho8/string-inflection")
2464 (synopsis "Convert symbol names between different naming conventions")
2465 (description
2466 "This Emacs package provides convenient methods for manipulating the
2467naming style of a symbol. It supports different naming conventions such as:
2468
2469@enumerate
2470@item camel case
2471@item Pascal case
2472@item all upper case
2473@item lower case separated by underscore
2474@item etc...
2475@end enumerate\n")
2476 (license license:gpl2+)))
2477
ce9701fb
RW
2478(define-public emacs-stripe-buffer
2479 (package
2480 (name "emacs-stripe-buffer")
2481 (version "0.2.5")
2482 (source
2483 (origin
2484 (method url-fetch)
2485 (uri (string-append "https://github.com/sabof/stripe-buffer/"
2486 "archive/" version ".tar.gz"))
2487 (file-name (string-append name "-" version ".tar.gz"))
2488 (sha256
2489 (base32
2490 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
2491 (build-system emacs-build-system)
2492 (home-page "https://github.com/sabof/stripe-buffer/")
2493 (synopsis "Add stripes to list buffers")
2494 (description
2495 "This Emacs package adds faces to add stripes to list buffers and org
2496tables.")
2497 (license license:gpl2+)))
2498
8d810163
RW
2499(define-public emacs-rich-minority
2500 (package
2501 (name "emacs-rich-minority")
2502 (version "1.0.1")
2503 (source
2504 (origin
2505 (method url-fetch)
2506 (uri (string-append "https://github.com/Malabarba/rich-minority/"
2507 "archive/" version ".tar.gz"))
2508 (file-name (string-append name "-" version ".tar.gz"))
2509 (sha256
2510 (base32
2511 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
2512 (build-system emacs-build-system)
2513 (home-page "https://github.com/Malabarba/rich-minority")
2514 (synopsis "Clean-up and beautify the list of minor modes")
2515 (description
2516 "This Emacs package hides and/or highlights minor modes in the
2517mode-line.")
2518 (license license:gpl2+)))
2519
8733fc91
CB
2520(define-public emacs-robe
2521 (package
2522 (name "emacs-robe")
2523 (version "0.8.1")
2524 (source
2525 (origin
2526 (method url-fetch)
2527 (uri (string-append "https://github.com/dgutov/robe/"
2528 "archive/" version ".tar.gz"))
2529 (file-name (string-append name "-" version ".tar.gz"))
2530 (sha256
2531 (base32
2532 "1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
2533 (build-system emacs-build-system)
376015c3
CB
2534 (arguments
2535 '(#:include (cons "^lib\\/" %default-include)))
8733fc91
CB
2536 (propagated-inputs
2537 `(("emacs-inf-ruby" ,emacs-inf-ruby)))
2538 (home-page "https://github.com/dgutov/robe")
2539 (synopsis "Ruby code assistance tool for Emacs")
2540 (description
2541 "Robe can provide information on loaded classes and modules in Ruby code,
2542as well as where methods are defined. This allows the user to jump to method
2543definitions, modules and classes, display method documentation and provide
2544method and constant name completion.")
2545 (license license:gpl3+)))
2546
81808194
CB
2547(define-public emacs-rspec
2548 (package
2549 (name "emacs-rspec")
2550 (version "1.11")
2551 (source
2552 (origin
2553 (method url-fetch)
2554 (uri (string-append "https://github.com/pezra/rspec-mode/"
2555 "archive/v" version ".tar.gz"))
2556 (file-name (string-append name "-" version ".tar.gz"))
2557 (sha256
2558 (base32
2559 "1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
2560 (build-system emacs-build-system)
2561 (home-page "https://github.com/pezra/rspec-mode")
2562 (synopsis "Provides a rspec mode for working with RSpec")
2563 (description
2564 "The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
2565verify the spec associated with the current buffer, or entire project, as well
2566as moving between the spec files, and coresponding code files.
2567
2568Also included are keybindings for spec files and Dired buffers, as well as
2569snippets for yasnippet.")
2570 (license license:gpl3+)))
2571
b33f913d
RW
2572(define-public emacs-smart-mode-line
2573 (package
2574 (name "emacs-smart-mode-line")
45dcdf53 2575 (version "2.12.0")
b33f913d
RW
2576 (source
2577 (origin
2578 (method url-fetch)
2579 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
2580 "archive/" version ".tar.gz"))
2581 (file-name (string-append name "-" version ".tar.gz"))
2582 (sha256
2583 (base32
45dcdf53 2584 "1hn8s6laijmg7w1bgwdfrki6h9vxkbgr8rmmssvd5yqyad5w2sba"))))
b33f913d
RW
2585 (build-system emacs-build-system)
2586 (propagated-inputs
2587 `(("emacs-rich-minority" ,emacs-rich-minority)))
7bf837fd 2588 (home-page "https://github.com/Malabarba/smart-mode-line")
66e07664 2589 (synopsis "Color-coded smart mode-line")
b33f913d
RW
2590 (description
2591 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
2592read from small to large monitors by using colors, a prefix feature, and smart
2593truncation.")
2594 (license license:gpl2+)))
2595
69b498a1 2596(define-public emacs-sr-speedbar
33ca12f3
MC
2597 (let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
2598 (revision "0"))
2599 (package
2600 (name "emacs-sr-speedbar")
2601 (version (git-version "20161025" revision commit))
2602 (source
2603 (origin
2604 (method git-fetch)
2605 (uri (git-reference
2606 (url "https://github.com/emacsorphanage/sr-speedbar.git")
2607 (commit commit)))
2608 (file-name (git-file-name name version))
2609 (sha256
2610 (base32
2611 "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
2612 (build-system emacs-build-system)
2613 (home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
2614 (synopsis "Same frame Emacs @code{speedbar}")
2615 (description
2616 "This Emacs package allows you to show @code{M-x speedbar} in the
69b498a1
OP
2617same frame (in an extra window). You can customize the initial width of
2618the speedbar window.")
33ca12f3 2619 (license license:gpl3+))))
69b498a1 2620
3bcb304e
RW
2621(define-public emacs-shell-switcher
2622 (package
2623 (name "emacs-shell-switcher")
2624 (version "1.0.1")
2625 (source
2626 (origin
2627 (method url-fetch)
2628 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
2629 "/archive/v" version ".tar.gz"))
2630 (file-name (string-append name "-" version ".tar.gz"))
2631 (sha256
2632 (base32
2633 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
2634 (build-system emacs-build-system)
2635 (home-page "https://github.com/DamienCassou/shell-switcher")
2636 (synopsis "Provide fast switching between shell buffers")
2637 (description
2638 "This package provides commands to quickly switch between shell buffers.")
2639 (license license:gpl3+)))
2640
48dbeef7
FB
2641(define-public emacs-ob-ipython
2642 (package
2643 (name "emacs-ob-ipython")
2644 (version "20150704.8807064693")
2645 (source (origin
2646 (method git-fetch)
2647 (uri (git-reference
698bd297 2648 (commit "880706469338ab59b5bb7dbe8460016f89755364")
48dbeef7 2649 (url "https://github.com/gregsexton/ob-ipython.git")))
eb6b471b 2650 (file-name (string-append name "-" version "-checkout"))
48dbeef7
FB
2651 (sha256
2652 (base32
2653 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
2654 (build-system emacs-build-system)
2655 (propagated-inputs
2656 `(("emacs-f" ,emacs-f)))
2657 (home-page "http://www.gregsexton.org")
2658 (synopsis "Org-Babel functions for IPython evaluation")
2659 (description "This package adds support to Org-Babel for evaluating Python
2660source code using IPython.")
2661 (license license:gpl3+)))
6fd66b6c
LC
2662
2663(define-public emacs-debbugs
2664 (package
2665 (name "emacs-debbugs")
504f0cf1 2666 (version "0.16")
6fd66b6c
LC
2667 (source (origin
2668 (method url-fetch)
f32ffa04 2669 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
6fd66b6c
LC
2670 version ".tar"))
2671 (sha256
2672 (base32
504f0cf1 2673 "0y3bq803c7820h15g66d1648skxfhlfa2v6vincj6xk5ssp44s9p"))))
6fd66b6c 2674 (build-system emacs-build-system)
91762db6 2675 (arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
32e16112
AK
2676 (propagated-inputs
2677 `(("emacs-async" ,emacs-async)))
f32ffa04 2678 (home-page "https://elpa.gnu.org/packages/debbugs.html")
6fd66b6c
LC
2679 (synopsis "Access the Debbugs bug tracker in Emacs")
2680 (description
2681 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
2682Tracker} from within Emacs.
2683
2684For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2685and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2686prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2687@code{M-x debbugs-org} and related commands.
2688
2689A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2690Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2691 (license license:gpl3+)))
3ffe36f5 2692
1fcd7e6c
MC
2693(define-public emacs-ert-expectations
2694 (package
2695 (name "emacs-ert-expectations")
2696 (version "0.2")
2697 (source
2698 (origin
2699 (method url-fetch)
2700 (uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
2701 (sha256
2702 (base32
2703 "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
2704 (build-system emacs-build-system)
2705 (home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
2706 (synopsis "Simple unit test framework for Emacs Lisp")
2707 (description "@code{emacs-ert-expectations} is a simple unit test
2708framework for Emacs Lisp to be used with @code{ert}.")
2709 (license license:gpl3+)))
2710
3ffe36f5
LC
2711(define-public emacs-deferred
2712 (package
2713 (name "emacs-deferred")
4dd0f8c0 2714 (version "0.5.1")
3ffe36f5
LC
2715 (home-page "https://github.com/kiwanami/emacs-deferred")
2716 (source (origin
2717 (method git-fetch)
2718 (uri (git-reference
2719 (url home-page)
2720 (commit (string-append "v" version))))
2721 (sha256
2722 (base32
4dd0f8c0 2723 "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
3ffe36f5
LC
2724 (file-name (string-append name "-" version))))
2725 (build-system emacs-build-system)
652741cf
MC
2726 (arguments
2727 `(#:phases
2728 (modify-phases %standard-phases
90ec79fb
AI
2729 (add-after 'unpack 'set-shell
2730 ;; Setting the SHELL environment variable is required for the tests
2731 ;; to find sh.
2732 (lambda _
2733 (setenv "SHELL" (which "sh"))
2734 #t))
652741cf
MC
2735 (add-before 'check 'fix-makefile
2736 (lambda _
2737 (substitute* "Makefile"
2738 (("\\$\\(CASK\\) exec ") ""))
2739 #t)))
2740 #:tests? #t
90ec79fb 2741 #:test-command '("make" "test")))
652741cf
MC
2742 (native-inputs
2743 `(("emacs-ert-expectations" ,emacs-ert-expectations)
2744 ("emacs-undercover" ,emacs-undercover)
5c8031ff 2745 ("ert-runner" ,emacs-ert-runner)))
3ffe36f5
LC
2746 (synopsis "Simple asynchronous functions for Emacs Lisp")
2747 (description
2748 "The @code{deferred.el} library provides support for asynchronous tasks.
2749The API is almost the same as that of
2750@uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2751for asynchronous tasks.")
2752 (license license:gpl3+)))
d001bb5a 2753
5c8031ff 2754(define-public emacs-butler
d001bb5a
LC
2755 (package
2756 (name "emacs-butler")
2757 (version "0.2.4")
2758 (home-page "https://github.com/AshtonKem/Butler")
2759 (source (origin
2760 (method git-fetch)
2761 (uri (git-reference
2762 (url home-page)
2763 (commit version)))
2764 (sha256
2765 (base32
2766 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2767 (file-name (string-append name "-" version))))
2768 (build-system emacs-build-system)
2769 (propagated-inputs
2770 `(("emacs-deferred" ,emacs-deferred)))
2771 (synopsis "Emacs client for Jenkins")
2772 (description
2773 "Butler provides an interface to connect to Jenkins continuous
2774integration servers. Users can specify a list of server in the
2775@code{butler-server-list} variable and then use @code{M-x butler-status} to
2776view the build status of those servers' build jobs, and possibly to trigger
2777build jobs.")
2778 (license license:gpl3+)))
2d1db448 2779
d1dbeddd
RW
2780(define-public emacs-company
2781 (package
2782 (name "emacs-company")
71a78ba6 2783 (version "0.9.7")
d1dbeddd
RW
2784 (source
2785 (origin
2786 (method url-fetch)
2787 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2788 version ".tar.gz"))
2789 (file-name (string-append name "-" version ".tar.gz"))
2790 (sha256
2791 (base32
71a78ba6 2792 "19flv38f2qhxda8lbk2ckywvibd72vbzmn4hchqz6d8acsknh4sb"))))
d1dbeddd 2793 (build-system emacs-build-system)
4e644ab8
AI
2794 (arguments
2795 `(#:phases
2796 (modify-phases %standard-phases
d1d41db6 2797 (add-before 'check 'fix-bin-dir
4e644ab8
AI
2798 (lambda _
2799 ;; The company-files-candidates-normal-root test looks
2800 ;; for the /bin directory, but the build environment has
2801 ;; no /bin directory. Modify the test to look for the
2802 ;; /tmp directory.
2803 (substitute* "test/files-tests.el"
2804 (("/bin/") "/tmp/"))
d1d41db6
MC
2805 #t)))
2806 #:tests? #t
2807 #:test-command '("make" "test-batch")))
d1dbeddd
RW
2808 (home-page "http://company-mode.github.io/")
2809 (synopsis "Modular text completion framework")
2810 (description
2811 "Company is a modular completion mechanism. Modules for retrieving
2812completion candidates are called back-ends, modules for displaying them are
2813front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2814These are distributed in separate files and can be used individually.")
2815 (license license:gpl3+)))
2816
d2fe71b0
TG
2817(define-public emacs-irony-mode
2818 (package
2819 (name "emacs-irony-mode")
2820 (version "1.2.0")
2821 (home-page "https://github.com/Sarcasm/irony-mode")
2822 (source (origin
2823 (method url-fetch)
2824 (uri (string-append home-page "/archive/v" version ".tar.gz"))
2825 (sha256
2826 (base32
2827 "1f68zi0glkg2aly66s07rx3w0b0hdi1znxan02h6dbabaadylk99"))
2828 (file-name (string-append name "-" version ".tar.gz"))))
2829 (build-system emacs-build-system)
2830 (arguments '())
2831 (propagated-inputs
2832 `(("emacs-irony-mode-server" ,emacs-irony-mode-server)))
2833 (synopsis "C/C++/ObjC Code completion and syntax checks for Emacs")
2834 (description "Irony-mode provides Clang-assisted syntax checking and
2835completion for C, C++, and ObjC in GNU Emacs. Using @code{libclang} it can
2836provide syntax checking and autocompletion on compiler level which is very
2837resistent against false positives. It also integrates well with other
2838packages like @code{eldoc-mode} and especially @code{company-mode} as
2839described on the homepage.")
2840 (license license:gpl3+)))
2841
2842(define-public emacs-irony-mode-server
2843 (package (inherit emacs-irony-mode)
2844 (name "emacs-irony-mode-server")
2845 (inputs
2846 `(("clang" ,clang)))
2847 (propagated-inputs '())
2848 (arguments
2849 `(#:phases
2850 (modify-phases %standard-phases
2851 (replace 'configure
2852 (lambda* (#:key outputs #:allow-other-keys)
2853 (let ((out (assoc-ref outputs "out")))
2854 (invoke "cmake"
2855 "server"
2856 (string-append "-DCMAKE_INSTALL_PREFIX=" out)) #t))))))
2857 (build-system cmake-build-system)
2858 (synopsis "Server for the Emacs @dfn{irony mode}")))
2859
c94d2f4d
TG
2860(define-public emacs-company-irony
2861 (package
2862 (name "emacs-company-irony")
2863 (version "1.1.0")
2864 (source (origin
2865 (method git-fetch)
2866 (uri (git-reference
2867 (url "https://github.com/Sarcasm/company-irony.git")
2868 (commit (string-append "v" version))))
2869 (sha256 (base32
2870 "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"))
2871 (file-name (git-file-name name version))))
2872 (build-system emacs-build-system)
2873 (inputs
2874 `(("emacs-irony-mode" ,emacs-irony-mode)
2875 ("emacs-company" ,emacs-company)))
2876 (synopsis "C++ completion backend for Company using irony-mode")
2877 (description "This backend for company-mode allows for C++ code completion
2878with irony-mode using clang-tooling.")
2879 (home-page "https://github.com/Sarcasm/company-irony")
2880 (license license:gpl3+)))
2881
f07a93ed
TG
2882(define-public emacs-flycheck-irony
2883 (package
2884 (name "emacs-flycheck-irony")
2885 (version "0.1.0")
2886 (source (origin
2887 (method git-fetch)
2888 (uri (git-reference
2889 (url "https://github.com/Sarcasm/flycheck-irony.git")
2890 (commit (string-append "v" version))))
2891 (sha256
2892 (base32 "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"))
2893 (file-name (string-append name "-" version))))
2894 (build-system emacs-build-system)
2895 (inputs
2896 `(("irony-mode" ,emacs-irony-mode)
2897 ("flycheck-mode" ,emacs-flycheck)
2898 ("emacs-company" ,emacs-company)))
2899 (synopsis "Live syntax checking frontend for Flycheck using irony-mode")
2900 (description "This package provides a frontend for Flycheck that lets
2901irony-mode do the syntax checking.")
2902 (home-page "https://github.com/Sarcasm/flycheck-irony")
2903 (license license:gpl3+)))
2904
21446c6d
TG
2905(define-public emacs-irony-eldoc
2906 (package
2907 (name "emacs-irony-eldoc")
2908 (version (package-version emacs-irony-mode))
2909 (source
2910 (origin
2911 (method git-fetch)
2912 (uri (git-reference
2913 (url "https://github.com/ikirill/irony-eldoc.git")
2914 (commit "0df5831eaae264a25422b061eb2792aadde8b3f2")))
2915 (sha256 (base32 "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"))
2916 (file-name (string-append name "-" version))))
2917 (build-system emacs-build-system)
2918 (inputs
2919 `(("irony-mode" ,emacs-irony-mode)))
2920 (synopsis "Eldoc integration for irony-mode")
2921 (description "Irony-eldoc is an eldoc extension that shows documentation
2922for the current function or variable in the minibuffer.")
2923 (home-page "https://github.com/ikirill/irony-eldoc")
2924 (license license:gpl3+)))
2925
016590a9
OP
2926(define-public emacs-company-quickhelp
2927 (package
2928 (name "emacs-company-quickhelp")
2929 (version "2.3.0")
2930 (source
2931 (origin
2932 (method url-fetch)
2933 (uri (string-append
2934 "https://github.com/expez/company-quickhelp/archive/"
2935 version ".tar.gz"))
2936 (file-name (string-append name "-" version ".tar.gz"))
2937 (sha256
2938 (base32
2939 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0"))))
2940 (build-system emacs-build-system)
2941 (propagated-inputs
2942 `(("emacs-pos-tip" ,emacs-pos-tip)
2943 ("emacs-company" ,emacs-company)))
2944 (home-page "https://github.com/expez/company-quickhelp")
2945 (synopsis "Popup documentation for completion candidates")
2946 (description "@code{company-quickhelp} shows documentation for the
2947completion candidate when using the Company text completion framework.")
2948 (license license:gpl3+)))
2949
7c438099
RW
2950(define-public emacs-multiple-cursors
2951 (package
2952 (name "emacs-multiple-cursors")
2953 (version "1.4.0")
2954 (source
2955 (origin
2956 (method url-fetch)
2957 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2958 "archive/" version ".tar.gz"))
2959 (file-name (string-append name "-" version ".tar.gz"))
2960 (sha256
2961 (base32
2962 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2963 (build-system emacs-build-system)
2964 (home-page "https://github.com/magnars/multiple-cursors.el")
2965 (synopsis "Multiple cursors for Emacs")
2966 (description
2967 "This package adds support to Emacs for editing text with multiple
2968simultaneous cursors.")
2969 (license license:gpl3+)))
2970
5c8031ff 2971(define-public emacs-typo
2d1db448
LC
2972 (package
2973 (name "emacs-typo")
2974 (version "1.1")
2975 (home-page "https://github.com/jorgenschaefer/typoel")
2976 (source (origin
2977 (method git-fetch)
2978 (uri (git-reference
2979 (url home-page)
2980 (commit (string-append "v" version))))
2981 (sha256
2982 (base32
2983 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2984 (file-name (string-append name "-" version))))
2985 (build-system emacs-build-system)
2986 (synopsis "Minor mode for typographic editing")
2987 (description
2988 "This package provides two Emacs modes, @code{typo-mode} and
2989@code{typo-global-mode}. These modes automatically insert Unicode characters
2990for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2991automatically inserts a Unicode opening or closing quotation mark, depending
2992on context.")
2993 (license license:gpl3+)))
e037a09f
FB
2994
2995(define-public emacs-scheme-complete
2996 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2997 (package
2998 (name "emacs-scheme-complete")
2999 (version (string-append "20151223." (string-take commit 8)))
3000 (source
3001 (origin
3002 (file-name (string-append name "-" version))
3003 (method git-fetch)
3004 (uri (git-reference
3005 (url "https://github.com/ashinn/scheme-complete.git")
3006 (commit commit)))
3007 (sha256
3008 (base32
3009 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
3010 (patches
fc1adab1 3011 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
e037a09f
FB
3012 (build-system emacs-build-system)
3013 (home-page "https://github.com/ashinn/scheme-complete")
3014 (synopsis "Smart tab completion for Scheme in Emacs")
3015 (description
3016 "This file provides a single function, @code{scheme-smart-complete},
3017which you can use for intelligent, context-sensitive completion for any Scheme
3018implementation in Emacs. To use it just load this file and bind that function
3019to a key in your preferred mode.")
3020 (license license:public-domain))))
58a7dc13 3021
75408149
MC
3022(define-public emacs-scel
3023 (let ((version "20170629")
3024 (revision "1")
3025 (commit "aeea3ad4be9306d14c3a734a4ff54fee10ac135b"))
3026 (package
3027 (name "emacs-scel")
3028 (version (git-version version revision commit))
3029 (source
3030 (origin
3031 (method git-fetch)
3032 (uri (git-reference
3033 (url "https://github.com/supercollider/scel.git")
3034 (commit commit)))
3035 (file-name (string-append name "-" version "-checkout"))
3036 (sha256
3037 (base32
3038 "0jvmzs1lsjyndqshhii2y4mnr3wghai26i3p75453zrpxpg0zvvw"))))
3039 (build-system emacs-build-system)
3040 (arguments
3041 `(#:modules ((guix build emacs-build-system)
3042 ((guix build cmake-build-system) #:prefix cmake:)
3043 (guix build utils))
3044 #:imported-modules (,@%emacs-build-system-modules
3045 (guix build cmake-build-system))
3046 #:phases
3047 (modify-phases %standard-phases
3048 (add-after 'unpack 'configure
3049 (lambda* (#:key outputs #:allow-other-keys)
3050 (substitute* "el/CMakeLists.txt"
3051 (("share/emacs/site-lisp/SuperCollider")
3052 (string-append
3053 "share/emacs/site-lisp/guix.d/scel-" ,version)))
3054 ((assoc-ref cmake:%standard-phases 'configure)
3055 #:outputs outputs
3056 #:configure-flags '("-DSC_EL_BYTECOMPILE=OFF"))))
3057 (add-after 'set-emacs-load-path 'add-el-dir-to-emacs-load-path
3058 (lambda _
3059 (setenv "EMACSLOADPATH"
3060 (string-append (getcwd) "/el:" (getenv "EMACSLOADPATH")))
3061 #t))
3062 (replace 'install (assoc-ref cmake:%standard-phases 'install)))))
3063 (inputs
3064 `(("supercollider" ,supercollider)))
3065 (native-inputs
3066 `(("cmake" ,cmake)))
3067 (home-page "https://github.com/supercollider/scel")
3068 (synopsis "SuperCollider Emacs interface")
3069 (description "@code{emacs-scel} is an Emacs interface to SuperCollider.
3070SuperCollider is a platform for audio synthesis and algorithmic composition.")
3071 (license license:gpl2+))))
3072
58a7dc13
FB
3073(define-public emacs-mit-scheme-doc
3074 (package
3075 (name "emacs-mit-scheme-doc")
3076 (version "20140203")
3077 (source
3078 (origin
3079 (modules '((guix build utils)))
3080 (snippet
3081 ;; keep only file of interest
3082 '(begin
3083 (for-each delete-file '("dot-emacs.el" "Makefile"))
f3860753 3084 (install-file "6.945-config/mit-scheme-doc.el" ".")
6cbee49d
MW
3085 (delete-file-recursively "6.945-config")
3086 #t))
58a7dc13
FB
3087 (file-name (string-append name "-" version ".tar.bz2"))
3088 (method url-fetch)
3089 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
3090 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
3091 (sha256
3092 (base32
3093 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
3094 (build-system emacs-build-system)
3095 (inputs `(("mit-scheme" ,mit-scheme)))
3096 (arguments
3097 `(#:phases
3098 (modify-phases %standard-phases
3099 (add-after 'unpack 'configure-doc
3100 (lambda* (#:key inputs #:allow-other-keys)
3101 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
3102 (doc-dir (string-append mit-scheme-dir "/share/doc/"
3103 "mit-scheme-"
3104 ,(package-version mit-scheme))))
3105 (substitute* "mit-scheme-doc.el"
3106 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
3107 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
3108 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
3109 (synopsis "MIT-Scheme documentation lookup for Emacs")
3110 (description
3111 "This package provides a set of Emacs functions to search definitions of
3112identifiers in the MIT-Scheme documentation.")
3113 (license license:gpl2+)))
e5045f30 3114
e5045f30
FB
3115(define-public emacs-constants
3116 (package
3117 (name "emacs-constants")
f99f3f24 3118 (version "2.6")
a9e41d2f 3119 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
e5045f30
FB
3120 (source
3121 (origin
37dbfc50 3122 (file-name (string-append name "-" version ".tar.gz"))
f99f3f24
FB
3123 (method url-fetch)
3124 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
3125 "/archive/v" version ".tar.gz"))
e5045f30
FB
3126 (sha256
3127 (base32
f99f3f24 3128 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
e5045f30 3129 (build-system emacs-build-system)
e5045f30
FB
3130 (synopsis "Enter definition of constants into an Emacs buffer")
3131 (description
3132 "This package provides functions for inserting the definition of natural
3133constants and units into an Emacs buffer.")
3134 (license license:gpl2+)))
85960693 3135
e203221f
RW
3136(define-public emacs-tagedit
3137 (package
3138 (name "emacs-tagedit")
3139 (version "1.4.0")
3140 (source
3141 (origin
3142 (method url-fetch)
3143 (uri (string-append "https://github.com/magnars/tagedit/"
3144 "archive/" version ".tar.gz"))
3145 (file-name (string-append name "-" version ".tar.gz"))
3146 (sha256
3147 (base32
3148 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
3149 (build-system emacs-build-system)
3150 (propagated-inputs
3151 `(("emacs-s" ,emacs-s)
3152 ("emacs-dash" ,emacs-dash)))
3153 (home-page "https://github.com/magnars/tagedit")
3154 (synopsis "Some paredit-like features for html-mode")
3155 (description
3156 "This package provides a collection of paredit-like functions for editing
3157in @code{html-mode}.")
3158 (license license:gpl3+)))
3159
85960693
FB
3160(define-public emacs-slime
3161 (package
3162 (name "emacs-slime")
8f3dc810 3163 (version "2.22")
85960693
FB
3164 (source
3165 (origin
3166 (file-name (string-append name "-" version ".tar.gz"))
3167 (method url-fetch)
3168 (uri (string-append
3169 "https://github.com/slime/slime/archive/v"
3170 version ".tar.gz"))
3171 (sha256
3172 (base32
8f3dc810 3173 "07vaib1n4zyh5yy30gdpq0bc5cv6w84piml5b3mfc9ibjhaykkms"))))
85960693
FB
3174 (build-system emacs-build-system)
3175 (native-inputs
3176 `(("texinfo" ,texinfo)))
3177 (arguments
e8cefe11
AI
3178 `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib")
3179 #:exclude '("^slime-tests.el" "^contrib/test/"
3180 "^contrib/Makefile$" "^contrib/README.md$")
3181 #:phases
85960693
FB
3182 (modify-phases %standard-phases
3183 (add-before 'install 'configure
3184 (lambda* _
3185 (emacs-substitute-variables "slime.el"
3186 ("inferior-lisp-program" "sbcl"))
3187 #t))
3188 (add-before 'install 'install-doc
3189 (lambda* (#:key outputs #:allow-other-keys)
3190 (let* ((out (assoc-ref outputs "out"))
3191 (info-dir (string-append out "/share/info"))
3192 (doc-dir (string-append out "/share/doc/"
3193 ,name "-" ,version))
3194 (doc-files '("doc/slime-refcard.pdf"
3195 "README.md" "NEWS" "PROBLEMS"
3196 "CONTRIBUTING.md")))
3197 (with-directory-excursion "doc"
3198 (substitute* "Makefile"
3199 (("infodir=/usr/local/info")
3200 (string-append "infodir=" info-dir)))
e76d959d
TGR
3201 (invoke "make" "html/index.html")
3202 (invoke "make" "slime.info")
85960693
FB
3203 (install-file "slime.info" info-dir)
3204 (copy-recursively "html" (string-append doc-dir "/html")))
3205 (for-each (lambda (f)
3206 (install-file f doc-dir)
3207 (delete-file f))
3208 doc-files)
3209 (delete-file-recursively "doc")
3210 #t))))))
3211 (home-page "https://github.com/slime/slime")
3212 (synopsis "Superior Lisp Interaction Mode for Emacs")
3213 (description
3214 "SLIME extends Emacs with support for interactive programming in
db574f71 3215Common Lisp. The features are centered around @command{slime-mode},
3216an Emacs minor mode that complements the standard @command{lisp-mode}.
3217While lisp-mode supports editing Lisp source files, @command{slime-mode}
3218adds support for interacting with a running Common Lisp process
3219for compilation, debugging, documentation lookup, and so on.")
3bd45f5c 3220 (license (list license:gpl2+ license:public-domain))))
e11d14fe 3221
3222(define-public emacs-popup
3223 (package
3224 (name "emacs-popup")
3225 (version "0.5.3")
3226 (source (origin
3227 (method url-fetch)
3228 (uri (string-append
3229 "https://github.com/auto-complete/popup-el/archive/v"
3230 version ".tar.gz"))
3231 (file-name (string-append name "-" version ".tar.gz"))
3232 (sha256
3233 (base32
3234 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
3235 (build-system emacs-build-system)
e11d14fe 3236 (home-page "https://github.com/auto-complete/popup-el")
3237 (synopsis "Visual Popup User Interface for Emacs")
3238 (description
3239 "Popup.el is a visual popup user interface library for Emacs.
3240This provides a basic API and common UI widgets such as popup tooltips
3241and popup menus.")
3242 (license license:gpl3+)))
48766ea8 3243
2c5f8aad
CB
3244(define-public emacs-puppet-mode
3245 (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2")
3246 (revision "1"))
3247 (package
3248 (name "emacs-puppet-mode")
3249 ;; The last release, 0.3 was several years ago, and there have been many
3250 ;; commits since
3251 (version (git-version "0.3" revision commit))
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (string-append
3256 "https://raw.githubusercontent.com/voxpupuli/puppet-mode/"
3257 commit "/puppet-mode.el"))
3258 (sha256
3259 (base32
3260 "1indycxawsl0p2aqqg754f6735q3cmah9vd886rpn0ncc3ipi1xm"))))
3261 (build-system emacs-build-system)
3262 (home-page "https://github.com/voxpupuli/puppet-mode")
3263 (synopsis "Emacs major mode for the Puppet configuration language")
3264 (description
3265 "This package provides support for the Puppet configuration language,
3266including syntax highlighting, indentation of expressions and statements,
3267linting of manifests and integration with Puppet Debugger.")
3268 ;; Also incorporates work covered by the Apache License, Version 2.0
3269 (license license:gpl3+))))
3270
48766ea8
RW
3271(define-public emacs-god-mode
3272 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
3273 (revision "1"))
3274 (package
3275 (name "emacs-god-mode")
3276 (version (string-append "20151005.925."
3277 revision "-" (string-take commit 9)))
3278 (source
3279 (origin
3280 (method git-fetch)
3281 (uri (git-reference
3282 (url "https://github.com/chrisdone/god-mode.git")
3283 (commit commit)))
3284 (file-name (string-append name "-" version "-checkout"))
3285 (sha256
3286 (base32
3287 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
3288 (build-system emacs-build-system)
3289 (home-page "https://github.com/chrisdone/god-mode")
3290 (synopsis "Minor mode for entering commands without modifier keys")
3291 (description
3292 "This package provides a global minor mode for entering Emacs commands
3293without modifier keys. It's similar to Vim's separation of commands and
3294insertion mode. When enabled all keys are implicitly prefixed with
3295@samp{C-} (among other helpful shortcuts).")
3296 (license license:gpl3+))))
4670f70a 3297
8fc559dc 3298(define-public emacs-jinja2-mode
3299 (package
3300 (name "emacs-jinja2-mode")
3301 (version "0.2")
3302 (source
3303 (origin
3304 (method url-fetch)
3305 (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/"
3306 "archive/v" version ".tar.gz"))
3307 (file-name (string-append name "-" version ".tar.gz"))
3308 (sha256
3309 (base32
3310 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn"))))
3311 (build-system emacs-build-system)
3312 (home-page "https://github.com/paradoxxxzero/jinja2-mode")
3313 (synopsis "Major mode for jinja2")
3314 (description
3315 "Emacs major mode for jinja2 with: syntax highlighting,
3316sgml/html integration, and indentation (working with sgml).")
3317 (license license:gpl3+)))
3318
4670f70a
CM
3319(define-public emacs-rfcview
3320 (package
3321 (name "emacs-rfcview")
3322 (version "0.13")
3323 (home-page "http://www.loveshack.ukfsn.org/emacs")
3324 (source (origin
02736daa 3325 (method url-fetch)
4670f70a
CM
3326 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
3327 (sha256
3328 (base32
3329 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
3330 (build-system emacs-build-system)
4670f70a
CM
3331 (synopsis "Prettify Request for Comments (RFC) documents")
3332 (description "The Internet Engineering Task Force (IETF) and the Internet
3333Society (ISOC) publish various Internet-related protocols and specifications
3334as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
3335documents. RFCs and STDs are published in a simple text form. This package
3336provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
3337read these documents in Emacs. It prettifies the text and adds
3338hyperlinks/menus for easier navigation. It also provides functions for
3339browsing the index of RFC documents and fetching them from remote servers or
3340local directories.")
3341 (license license:gpl3+)))
3342
9e9c71eb
CM
3343(define-public emacs-ffap-rfc-space
3344 (package
3345 (name "emacs-ffap-rfc-space")
3346 (version "12")
3347 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
3348 (source (origin
02736daa 3349 (method url-fetch)
9e9c71eb
CM
3350 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
3351 (sha256
3352 (base32
3353 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
3354 (build-system emacs-build-system)
9e9c71eb
CM
3355 (synopsis "Make ffap recognize an RFC with a space before its number")
3356 (description "The Internet Engineering Task Force (IETF) and the
3357Internet Society (ISOC) publish various Internet-related protocols and
3358specifications as \"Request for Comments\" (RFC) documents. The
3359built-in Emacs module \"ffap\" (Find File at Point) has the ability to
3360recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
3361and load the appropriate RFC from a remote server. However, it fails
3362to recognize a name like \"RFC 1234\". This package enhances ffap so
3363that it correctly finds RFCs even when a space appears before the
3364number.")
3365 (license license:gpl3+)))
9576cc72 3366
db1a4960
RW
3367(define-public emacs-org-bullets
3368 (package
3369 (name "emacs-org-bullets")
3370 (version "0.2.4")
3371 (source
3372 (origin
3373 (method url-fetch)
3374 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
3375 version ".tar.gz"))
3376 (file-name (string-append name "-" version ".tar.gz"))
3377 (sha256
3378 (base32
3379 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
3380 (build-system emacs-build-system)
3381 (home-page "https://github.com/sabof/org-bullets")
3382 (synopsis "Show bullets in org-mode as UTF-8 characters")
3383 (description
3384 "This package provides an Emacs minor mode causing bullets in
3385@code{org-mode} to be rendered as UTF-8 characters.")
3386 (license license:gpl3+)))
b1679379
OP
3387
3388(define-public emacs-org-pomodoro
3389 (package
3390 (name "emacs-org-pomodoro")
3391 (version "2.1.0")
3392 (source
3393 (origin
3394 (method url-fetch)
3395 (uri (string-append
3396 "https://github.com/lolownia/org-pomodoro/archive/"
3397 version ".tar.gz"))
3398 (file-name (string-append name "-" version ".tar.gz"))
3399 (sha256
3400 (base32
3401 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4"))))
3402 (build-system emacs-build-system)
3403 (propagated-inputs
3404 `(("emacs-alert" ,emacs-alert)))
3405 (home-page "https://github.com/lolownia/org-pomodoro")
3406 (synopsis "Pomodoro technique for org-mode")
3407 (description "@code{emacs-org-pomodoro} adds very basic support for
3408Pomodoro technique in Emacs org-mode.
3409
3410Run @code{M-x org-pomodoro} for the task at point or select one of the
3411last tasks that you clocked time for. Each clocked-in pomodoro starts
3412a timer of 25 minutes and after each pomodoro a break timer of 5
3413minutes is started automatically. Every 4 breaks a long break is
3414started with 20 minutes. All values are customizable.")
3415 (license license:gpl3+)))
db1a4960 3416
ed8bc028
RJ
3417(define-public emacs-org-trello
3418 (package
3419 (name "emacs-org-trello")
bf86533b 3420 (version "0.8.0")
ed8bc028
RJ
3421 (source (origin
3422 (method url-fetch)
3423 (uri (string-append
3424 "https://github.com/org-trello/org-trello/archive/"
3425 version ".tar.gz"))
3426 (file-name (string-append name "-" version ".tar.gz"))
3427 (sha256
3428 (base32
bf86533b 3429 "0549mnf5cgwn8b8jbl38fljbaxmh1605sv9j8f3lsa95jhs1zpa0"))))
ed8bc028
RJ
3430 (build-system emacs-build-system)
3431 (propagated-inputs
8865d476
MC
3432 `(("emacs-dash" ,emacs-dash)
3433 ("emacs-deferred" ,emacs-deferred)
3434 ("emacs-f" ,emacs-f)
3435 ("emacs-helm" ,emacs-helm)
ed8bc028 3436 ("emacs-request" ,emacs-request)
ed8bc028
RJ
3437 ("emacs-s" ,emacs-s)))
3438 (home-page "https://org-trello.github.io")
3439 (synopsis "Emacs minor mode for interacting with Trello")
3440 (description "This package provides an Emacs minor mode to extend
3441@code{org-mode} with Trello abilities. Trello is an online project
3442organizer.")
3443 (license license:gpl3+)))
3444
b5f746d2
PM
3445(define-public emacs-atom-one-dark-theme
3446 (let ((commit "1f1185bf667a38d3d0d180ce85fd4c131818aae2")
3447 (revision "0"))
3448 (package
3449 (name "emacs-atom-one-dark-theme")
3450 (version (git-version "0.4.0" revision commit))
3451 (source (origin
3452 (method git-fetch)
3453 (uri (git-reference
3454 (url "https://github.com/jonathanchu/atom-one-dark-theme.git")
3455 (commit commit)))
3456 (sha256
3457 (base32
3458 "1alma16hg3mfjly8a9s3mrswkjjx4lrpdnf43869hn2ibkn7zx9z"))
3459 (file-name (git-file-name name version))))
3460 (build-system emacs-build-system)
3461 (home-page "https://github.com/jonathanchu/atom-one-dark-theme")
3462 (synopsis "Atom One Dark color theme for Emacs")
3463 (description "An Emacs port of the Atom One Dark theme from Atom.io.")
3464 (license license:gpl3+))))
3465
9576cc72
AP
3466(define-public emacs-zenburn-theme
3467 (package
3468 (name "emacs-zenburn-theme")
61d64513 3469 (version "2.6")
9576cc72
AP
3470 (source (origin
3471 (method url-fetch)
3472 (uri (string-append
3473 "https://github.com/bbatsov/zenburn-emacs/archive/v"
3474 version ".tar.gz"))
3475 (file-name (string-append name "-" version ".tar.gz"))
3476 (sha256
3477 (base32
61d64513 3478 "0qc9d1rwq55yzh8shbppyd6izy1grpyr8kqh5zdgm7c5jccngpr4"))))
9576cc72 3479 (build-system emacs-build-system)
7bf837fd 3480 (home-page "https://github.com/bbatsov/zenburn-emacs")
9576cc72
AP
3481 (synopsis "Low contrast color theme for Emacs")
3482 (description
3483 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
3484It is built on top of the custom theme support in Emacs 24 or later.")
3485 (license license:gpl3+)))
3486
012c8b35
RW
3487(define-public emacs-solarized-theme
3488 (package
3489 (name "emacs-solarized-theme")
3490 (version "1.2.2")
3491 (source (origin
3492 (method url-fetch)
3493 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
3494 "archive/v" version ".tar.gz"))
3495 (file-name (string-append name "-" version ".tar.gz"))
3496 (sha256
3497 (base32
3498 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
3499 (build-system emacs-build-system)
3500 (propagated-inputs
090bdb9e 3501 `(("emacs-dash" ,emacs-dash)))
7bf837fd 3502 (home-page "https://github.com/bbatsov/solarized-emacs")
012c8b35
RW
3503 (synopsis "Port of the Solarized theme for Emacs")
3504 (description
3505 "Solarized for Emacs is a port of the Solarized theme for Vim. This
3506package provides a light and a dark variant.")
3507 (license license:gpl3+)))
3508
e7761186
AV
3509(define-public emacs-ahungry-theme
3510 (package
3511 (name "emacs-ahungry-theme")
e5f95406 3512 (version "1.10.0")
e7761186
AV
3513 (source
3514 (origin (method url-fetch)
f32ffa04 3515 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
e7761186
AV
3516 version ".tar"))
3517 (sha256
3518 (base32
e5f95406 3519 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm"))))
e7761186
AV
3520 (build-system emacs-build-system)
3521 (home-page "https://github.com/ahungry/color-theme-ahungry")
3522 (synopsis "Ahungry color theme for Emacs")
3523 (description "Ahungry theme for Emacs provides bright and bold colors.
3524If you load it from a terminal, you will be able to make use of the
3525transparent background. If you load it from a GUI, it will default to a
3526dark background.")
3527 (license license:gpl3+)))
3528
ab966b8f 3529(define-public emacs-2048-game
3530 (package
3531 (name "emacs-2048-game")
3532 (version "20151026.1233")
3533 (source
3534 (origin
3535 (method url-fetch)
3536 (uri (string-append "https://melpa.org/packages/2048-game-"
3537 version ".el"))
3538 (sha256
3539 (base32
3540 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd"))))
3541 (build-system emacs-build-system)
3542 (home-page "https://bitbucket.org/zck/2048.el")
3543 (synopsis "Implementation of the game 2048 in Emacs Lisp")
3544 (description
3545 "This program is an implementation of 2048 for Emacs.
3546The goal of this game is to create a tile with value 2048. The size of the
3547board and goal value can be customized.")
3548 (license license:gpl3+)))
3549
4da9beab 3550(define-public emacs-base16-theme
3551 (package
3552 (name "emacs-base16-theme")
3553 (version "2.1")
3554 (source
3555 (origin
3556 (method url-fetch)
3557 (uri (string-append "https://stable.melpa.org/packages/base16-theme-"
3558 version ".tar"))
3559 (sha256
3560 (base32
3561 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj"))))
3562 (build-system emacs-build-system)
3563 (home-page "https://github.com/belak/base16-emacs")
3564 (synopsis "Base16 color themes for Emacs")
3565 (description
3566 "Base16 provides carefully chosen syntax highlighting and a default set
3567of sixteen colors suitable for a wide range of applications. Base16 is not a
3568single theme but a set of guidelines with numerous implementations.")
3569 (license license:expat)))
3570
5c447e28
AP
3571(define-public emacs-smartparens
3572 (package
3573 (name "emacs-smartparens")
308b8f79 3574 (version "1.11.0")
5c447e28
AP
3575 (source (origin
3576 (method url-fetch)
3577 (uri (string-append
3578 "https://github.com/Fuco1/smartparens/archive/"
3579 version ".tar.gz"))
3580 (file-name (string-append name "-" version ".tar.gz"))
3581 (sha256
3582 (base32
308b8f79 3583 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409"))))
5c447e28 3584 (build-system emacs-build-system)
db95d8ca
MC
3585 (propagated-inputs
3586 `(("emacs-dash" ,emacs-dash)
3587 ("emacs-markdown-mode" ,emacs-markdown-mode)))
5c447e28
AP
3588 (home-page "https://github.com/Fuco1/smartparens")
3589 (synopsis "Paredit-like insertion, wrapping and navigation with user
3590defined pairs")
3591 (description
3592 "Smartparens is a minor mode for Emacs that deals with parens pairs
3593and tries to be smart about it. It started as a unification effort to
3594combine functionality of several existing packages in a single,
3595compatible and extensible way to deal with parentheses, delimiters, tags
3596and the like. Some of these packages include autopair, textmate,
3597wrap-region, electric-pair-mode, paredit and others. With the basic
3598features found in other packages it also brings many improvements as
3599well as completely new features.")
3600 (license license:gpl3+)))
8eeb301d 3601
425d66f7
OP
3602(define-public emacs-highlight-symbol
3603 (package
3604 (name "emacs-highlight-symbol")
3605 (version "1.3")
3606 (source (origin
3607 (method url-fetch)
3608 (uri (string-append
3609 "https://github.com/nschum/highlight-symbol.el/archive/"
3610 version ".tar.gz"))
3611 (file-name (string-append name "-" version ".tar.gz"))
3612 (sha256
3613 (base32
3614 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90"))))
3615 (build-system emacs-build-system)
3616 (home-page "https://nschum.de/src/emacs/highlight-symbol")
3617 (synopsis "Automatic and manual symbol highlighting for Emacs")
3618 (description
3619 "Use @code{highlight-symbol} to toggle highlighting of the symbol at
3620point throughout the current buffer. Use @code{highlight-symbol-mode} to keep
3621the symbol at point highlighted.
3622
3623The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev},
3624@code{highlight-symbol-next-in-defun} and
3625@code{highlight-symbol-prev-in-defun} allow for cycling through the locations
3626of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key
3627bindings @code{M-p} and @code{M-p} for navigation. When
3628@code{highlight-symbol-on-navigation-p} is set, highlighting is triggered
3629regardless of @code{highlight-symbol-idle-delay}.
3630
3631@code{highlight-symbol-query-replace} can be used to replace the symbol. ")
3632 (license license:gpl2+)))
3633
8f82641a
RJ
3634(define-public emacs-hl-todo
3635 (package
3636 (name "emacs-hl-todo")
4fa7f29f 3637 (version "1.9.0")
8f82641a
RJ
3638 (source (origin
3639 (method url-fetch)
3640 (uri (string-append
3641 "https://raw.githubusercontent.com/tarsius/hl-todo/"
3642 version "/hl-todo.el"))
0e7c4089 3643 (file-name (string-append "hl-todo-" version ".el"))
8f82641a
RJ
3644 (sha256
3645 (base32
4fa7f29f 3646 "0728givzh7xv5i88ac9if8byj1p8bilrj1fnizca10s0rv100hdr"))))
8f82641a
RJ
3647 (build-system emacs-build-system)
3648 (home-page "https://github.com/tarsius/hl-todo")
3649 (synopsis "Emacs mode to highlight TODO and similar keywords")
3650 (description
3651 "This package provides an Emacs mode to highlight TODO and similar
3652keywords in comments and strings. This package also provides commands for
3653moving to the next or previous keyword and to invoke @code{occur} with a
3654regexp that matches all known keywords.")
3655 (license license:gpl3+)))
3656
480f7350
RW
3657(define-public emacs-perspective
3658 (package
3659 (name "emacs-perspective")
3660 (version "1.12")
3661 (source
3662 (origin
3663 (method url-fetch)
3664 (uri (string-append "https://github.com/nex3/perspective-el/"
3665 "archive/" version ".tar.gz"))
3666 (file-name (string-append name "-" version ".tar.gz"))
3667 (sha256
3668 (base32
3669 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
3670 (build-system emacs-build-system)
7bf837fd 3671 (home-page "https://github.com/nex3/perspective-el")
480f7350
RW
3672 (synopsis "Switch between named \"perspectives\"")
3673 (description
3674 "This package provides tagged workspaces in Emacs, similar to workspaces in
3675windows managers such as Awesome and XMonad. @code{perspective.el} provides
3676multiple workspaces (or \"perspectives\") for each Emacs frame. Each
3677perspective is composed of a window configuration and a set of buffers.
3678Switching to a perspective activates its window configuration, and when in a
3679perspective only its buffers are available by default.")
3680 ;; This package is released under the same license as Emacs (GPLv3+) or
3681 ;; the Expat license.
3682 (license license:gpl3+)))
3683
439ad15d
MC
3684(define-public emacs-test-simple
3685 (package
3686 (name "emacs-test-simple")
3687 (version "1.3.0")
3688 (source
3689 (origin
3690 (method url-fetch)
3691 (uri (string-append "https://elpa.gnu.org/packages/test-simple-"
3692 version ".el"))
3693 (sha256
3694 (base32
3695 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz"))))
3696 (build-system emacs-build-system)
3697 (home-page "https://github.com/rocky/emacs-test-simple")
3698 (synopsis "Simple unit test framework for Emacs Lisp")
3699 (description
3700 "Test Simple is a simple unit test framework for Emacs Lisp. It
3701alleviates the need for context macros, enclosing specifications or required
3702test tags. It supports both interactive and non-interactive use.")
3703 (license license:gpl3+)))
3704
fa1a17b7
MC
3705(define-public emacs-load-relative
3706 (package
3707 (name "emacs-load-relative")
3708 (version "1.3")
3709 (source
3710 (origin
3711 (method url-fetch)
3712 (uri (string-append "https://elpa.gnu.org/packages/load-relative-"
3713 version ".el"))
3714 (sha256
3715 (base32
3716 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps"))))
3717 (build-system emacs-build-system)
3718 (home-page "http://github.com/rocky/emacs-load-relative")
3719 (synopsis "Emacs Lisp relative file loading related functions")
3720 (description
3721 "Provides functions which facilitate writing multi-file Emacs packages
3722and running from the source tree without having to \"install\" code or fiddle
3723with @{load-path}.
3724
3725The main function, @code{load-relative}, loads an Emacs Lisp file relative to
3726another (presumably currently running) Emacs Lisp file.")
3727 (license license:gpl3+)))
3728
fd38bfe2
MC
3729(define-public emacs-loc-changes
3730 (package
3731 (name "emacs-loc-changes")
3732 (version "1.2")
3733 (source
3734 (origin
3735 (method url-fetch)
3736 (uri (string-append "https://elpa.gnu.org/packages/loc-changes-"
3737 version ".el"))
3738 (sha256
3739 (base32
3740 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3"))))
3741 (build-system emacs-build-system)
3742 (home-page "https://github.com/rocky/emacs-loc-changes")
3743 (synopsis "Keeps track of positions even after buffer changes")
3744 (description
3745 "This Emacs package provides a mean to track important buffer positions
3746after buffer changes.")
3747 (license license:gpl3+)))
3748
b1968d86
MC
3749(define-public emacs-realgud
3750 (package
3751 (name "emacs-realgud")
5368e67c 3752 (version "1.4.5")
b1968d86
MC
3753 (source
3754 (origin
3755 (method url-fetch)
3756 (uri (string-append "https://elpa.gnu.org/packages/realgud-"
3757 version ".tar"))
3758 (sha256
3759 (base32
03592a6f
MC
3760 "108wgxg7fb4byaiasgvbxv2hq7b00biq9f0mh9hy6vw4160y5w24"))
3761 (patches
3762 ;; Patch awaiting inclusion upstream (see:
3763 ;; https://github.com/realgud/realgud/pull/226).
3764 (search-patches "emacs-realgud-fix-configure-ac.patch"))))
b1968d86
MC
3765 (build-system emacs-build-system)
3766 (arguments
3767 `(#:tests? #t
3768 #:phases
3769 (modify-phases %standard-phases
aea388cf 3770 (add-after 'set-emacs-load-path 'fix-autogen-script
b1968d86
MC
3771 (lambda _
3772 (substitute* "autogen.sh"
3773 (("./configure") "sh configure"))))
3774 (add-after 'fix-autogen-script 'autogen
3775 (lambda _
3776 (setenv "CONFIG_SHELL" "sh")
3777 (invoke "sh" "autogen.sh")))
3778 (add-after 'fix-autogen-script 'set-home
3779 (lambda _
3780 (setenv "HOME" (getenv "TMPDIR"))))
3781 (add-before 'patch-el-files 'remove-realgud-pkg.el
3782 (lambda _
3783 ;; XXX: This file is auto-generated at some point and causes
3784 ;; substitute* to crash during the `patch-el-files' phase with:
3785 ;; ERROR: In procedure stat: No such file or directory:
3786 ;; "./realgud-pkg.el"
3787 (delete-file "./realgud-pkg.el")
3788 ;; FIXME: `patch-el-files' crashes on this file with error:
3789 ;; unable to locate "bashdb".
3790 (delete-file "./test/test-regexp-bashdb.el"))))
3791 #:include (cons* ".*\\.el$" %default-include)))
3792 (native-inputs
3793 `(("autoconf" ,autoconf)
3794 ("automake" ,automake)
3795 ("emacs-test-simple" ,emacs-test-simple)))
3796 (propagated-inputs
3797 `(("emacs-load-relative" ,emacs-load-relative)
3798 ("emacs-loc-changes" ,emacs-loc-changes)))
3799 (home-page "https://github.com/realgud/realgud/")
3800 (synopsis
3801 "Modular front-end for interacting with external debuggers")
3802 (description
3803 "RealGUD is a modular, extensible GNU Emacs front-end for interacting
3804with external debuggers. It integrates various debuggers such as gdb, pdb,
3805ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the
3806sources. Unlike GUD, it also supports running multiple debug sessions in
3807parallel.")
3808 (license license:gpl3+)))
3809
36e5d103
RJ
3810(define-public emacs-request
3811 (package
3812 (name "emacs-request")
5a545aab 3813 (version "0.3.0")
36e5d103 3814 (source (origin
5a545aab
RW
3815 (method git-fetch)
3816 (uri (git-reference
3817 (url "https://github.com/tkf/emacs-request.git")
3818 (commit (string-append "v" version))))
3819 (file-name (string-append name "-" version "-checkout"))
36e5d103 3820 (sha256
5a545aab
RW
3821 (base32
3822 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"))))
36e5d103 3823 (build-system emacs-build-system)
4e782fff
MC
3824 (propagated-inputs
3825 `(("emacs-deferred" ,emacs-deferred)))
36e5d103
RJ
3826 (home-page "https://github.com/tkf/emacs-request")
3827 (synopsis "Package for speaking HTTP in Emacs Lisp")
3828 (description "This package provides a HTTP request library with multiple
3829backends. It supports url.el which is shipped with Emacs and the curl command
3830line program.")
3831 (license license:gpl3+)))
3832
f1b61e26 3833(define-public emacs-rudel
3834 (package
3835 (name "emacs-rudel")
3836 (version "0.3.1")
3837 (source
3838 (origin
3839 (method url-fetch)
3840 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
3841 version ".tar"))
3842 (sha256
3843 (base32
3844 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
3845 (build-system emacs-build-system)
3846 (home-page "http://rudel.sourceforge.net/")
3847 (synopsis "Collaborative editing framework")
3848 (description
3849 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
3850is to share buffers with other users in order to edit the contents of those
3851buffers collaboratively. Rudel supports multiple backends to enable
3852communication with other collaborative editors using different protocols,
3853though currently Obby (for use with the Gobby editor) is the only
3854fully-functional one.")
3855 (license license:gpl3+)))
3856
79b3d3ea
RW
3857(define-public emacs-hydra
3858 (package
3859 (name "emacs-hydra")
9932dabf 3860 (version "0.14.0")
79b3d3ea
RW
3861 (source
3862 (origin
3863 (method url-fetch)
3864 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
3865 version ".tar.gz"))
3866 (file-name (string-append name "-" version ".tar.gz"))
3867 (sha256
3868 (base32
9932dabf 3869 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8"))))
79b3d3ea
RW
3870 (build-system emacs-build-system)
3871 (home-page "https://github.com/abo-abo/hydra")
3872 (synopsis "Make Emacs bindings that stick around")
3873 (description
3874 "This package can be used to tie related commands into a family of short
3875bindings with a common prefix---a Hydra. Once you summon the Hydra (through
3876the prefixed binding), all the heads can be called in succession with only a
3877short extension. Any binding that isn't the Hydra's head vanquishes the
3878Hydra. Note that the final binding, besides vanquishing the Hydra, will still
3879serve its original purpose, calling the command assigned to it. This makes
3880the Hydra very seamless; it's like a minor mode that disables itself
3881automatically.")
3882 (license license:gpl3+)))
3883
12db29ba
RW
3884(define-public emacs-ivy
3885 (package
3886 (name "emacs-ivy")
a8374234 3887 (version "0.10.0")
12db29ba
RW
3888 (source
3889 (origin
a8374234
RW
3890 (method git-fetch)
3891 (uri (git-reference
3892 (url "https://github.com/abo-abo/swiper.git")
3893 (commit version)))
3894 (file-name (string-append name "-" version "-checkout"))
12db29ba
RW
3895 (sha256
3896 (base32
a8374234 3897 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
12db29ba 3898 (build-system emacs-build-system)
5f66a0a7
RW
3899 (arguments
3900 `(#:phases
3901 (modify-phases %standard-phases
3902 (add-after 'install 'install-doc
3903 (lambda* (#:key outputs #:allow-other-keys)
3904 (let* ((out (assoc-ref outputs "out"))
3905 (info (string-append out "/share/info")))
3906 (with-directory-excursion "doc"
e97ad01e
TGR
3907 (invoke "makeinfo" "ivy.texi")
3908 (install-file "ivy.info" info)
3909 #t)))))))
12db29ba
RW
3910 (propagated-inputs
3911 `(("emacs-hydra" ,emacs-hydra)))
5f66a0a7
RW
3912 (native-inputs
3913 `(("texinfo" ,texinfo)))
12db29ba
RW
3914 (home-page "http://oremacs.com/swiper/")
3915 (synopsis "Incremental vertical completion for Emacs")
3916 (description
3917 "This package provides @code{ivy-read} as an alternative to
3918@code{completing-read} and similar functions. No attempt is made to determine
3919the best candidate. Instead, the user can navigate candidates with
3920@code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
3921splitting the input text by spaces and re-building it into a regular
3922expression.")
3923 (license license:gpl3+)))
3924
da23cc00 3925(define-public emacs-ivy-yasnippet
7cad66d9
RW
3926 (let ((commit "32580b4fd23ebf9ca7dde96704f7d53df6e253cd")
3927 (revision "2"))
da23cc00
OP
3928 (package
3929 (name "emacs-ivy-yasnippet")
7cad66d9 3930 (version (git-version "0.1" revision commit))
da23cc00
OP
3931 (source
3932 (origin
3933 (method git-fetch)
3934 (uri (git-reference
3935 (url "https://github.com/mkcms/ivy-yasnippet.git")
3936 (commit commit)))
3937 (file-name (git-file-name name version))
3938 (sha256
3939 (base32
7cad66d9 3940 "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"))))
da23cc00
OP
3941 (build-system emacs-build-system)
3942 (propagated-inputs
3943 `(("emacs-ivy" ,emacs-ivy)
3944 ("emacs-yasnippet" ,emacs-yasnippet)
3945 ("emacs-dash" ,emacs-dash)))
3946 (home-page "https://github.com/mkcms/ivy-yasnippet")
3947 (synopsis "Preview @code{yasnippets} with @code{ivy}")
3948 (description "This package allows you to select @code{yasnippet}
3949snippets using @code{ivy} completion. When current selection changes in the
3950minibuffer, the snippet contents are temporarily expanded in the buffer. To
3951use it, call @code{M-x ivy-yasnippet} (but make sure you have enabled
3952@code{yas-minor-mode} first).")
3953 (license license:gpl3+))))
3954
78e3d554
PL
3955(define-public emacs-ivy-rich
3956 (package
3957 (name "emacs-ivy-rich")
3958 (version "0.1.0")
3959 (source
3960 (origin
3961 (method url-fetch)
3962 (uri (string-append "https://github.com/Yevgnen/ivy-rich/archive/"
3963 version ".tar.gz"))
3964 (file-name (string-append name "-" version ".tar.gz"))
3965 (sha256
3966 (base32
3967 "14r3mx5rkd4wz0ls5pv5w6c7la3z9iy93d3jfind3xyg4kywy95c"))))
3968 (build-system emacs-build-system)
3969 (propagated-inputs
3970 `(("emacs-ivy" ,emacs-ivy)))
3971 (home-page "https://github.com/Yevgnen/ivy-rich")
3972 (synopsis "More friendly interface for @code{ivy}")
3973 (description
3974 "This package extends @code{ivy} by showing more information in the
3975minibuffer for each candidate. It adds columns showing buffer modes, file
3976sizes, docstrings, etc. If @code{emacs-all-the-icons} is installed, it can
3977show icons as well.")
3978 (license license:gpl3+)))
3979
5edc24ec
RW
3980(define-public emacs-avy
3981 (package
3982 (name "emacs-avy")
3983 (version "0.4.0")
3984 (source
3985 (origin
3986 (method url-fetch)
3987 (uri (string-append "https://github.com/abo-abo/avy/archive/"
3988 version ".tar.gz"))
3989 (file-name (string-append name "-" version ".tar.gz"))
3990 (sha256
3991 (base32
3992 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
3993 (build-system emacs-build-system)
3994 (home-page "https://github.com/abo-abo/avy")
3995 (synopsis "Tree-based completion for Emacs")
3996 (description
3997 "This package provides a generic completion method based on building a
3998balanced decision tree with each candidate being a leaf. To traverse the tree
3999from the root to a desired leaf, typically a sequence of @code{read-key} can
4000be used.
4001
4002In order for @code{read-key} to make sense, the tree needs to be visualized
4003appropriately, with a character at each branch node. So this completion
4004method works only for things that you can see on your screen, all at once,
4005such as the positions of characters, words, line beginnings, links, or
4006windows.")
4007 (license license:gpl3+)))
4008
93dba17c
RW
4009(define-public emacs-ace-window
4010 (package
4011 (name "emacs-ace-window")
4012 (version "0.9.0")
4013 (source
4014 (origin
4015 (method url-fetch)
4016 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
4017 version ".tar.gz"))
4018 (file-name (string-append name "-" version ".tar.gz"))
4019 (sha256
4020 (base32
4021 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
4022 (build-system emacs-build-system)
4023 (propagated-inputs
4024 `(("emacs-avy" ,emacs-avy)))
4025 (home-page "https://github.com/abo-abo/ace-window")
4026 (synopsis "Quickly switch windows in Emacs")
4027 (description
4028 "@code{ace-window} is meant to replace @code{other-window}.
4029In fact, when there are only two windows present, @code{other-window} is
4030called. If there are more, each window will have its first character
4031highlighted. Pressing that character will switch to that window.")
4032 (license license:gpl3+)))
4033
e1918ce4
RW
4034(define-public emacs-iedit
4035 (package
4036 (name "emacs-iedit")
f9f77a9e 4037 (version "0.9.9.9")
e1918ce4
RW
4038 (source
4039 (origin
4040 (method url-fetch)
4041 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
4042 version ".tar.gz"))
4043 (file-name (string-append name "-" version ".tar.gz"))
4044 (sha256
4045 (base32
f9f77a9e 4046 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0"))))
e1918ce4
RW
4047 (build-system emacs-build-system)
4048 (home-page "http://www.emacswiki.org/emacs/Iedit")
4049 (synopsis "Edit multiple regions in the same way simultaneously")
4050 (description
4051 "This package is an Emacs minor mode and allows you to edit one
4052occurrence of some text in a buffer (possibly narrowed) or region, and
4053simultaneously have other occurrences edited in the same way.
4054
4055You can also use Iedit mode as a quick way to temporarily show only the buffer
4056lines that match the current text being edited. This gives you the effect of
4057a temporary @code{keep-lines} or @code{occur}.")
4058 (license license:gpl3+)))
4059
30cf7070
CL
4060(define-public emacs-zoutline
4061 (let ((commit "b3ee0f0e0b916838c2d2c249beba74ffdb8d5699")
4062 (revision "0"))
4063 (package
4064 (name "emacs-zoutline")
4065 (version (git-version "0.1" revision commit))
4066 (home-page "https://github.com/abo-abo/zoutline")
4067 (source (origin
4068 (method git-fetch)
4069 (uri (git-reference (url home-page) (commit commit)))
4070 (sha256
4071 (base32
4072 "0sd0017piw0dis6dhpq5dkqd3acisxqgipl7dj8gmc1vnswhdwr8"))
4073 (file-name (git-file-name name version))))
4074 (build-system emacs-build-system)
4075 (synopsis "Simple outline library")
4076 (description
4077 "This library provides helpers for outlines. Outlines allow users to
4078navigate code in a tree-like fashion.")
4079 (license license:gpl3+))))
4080
a5338dd4 4081(define-public emacs-lispy
e8360eb8
CL
4082 ;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
4083 ;; since.
e5d57c1c 4084 (let ((commit "c2a358a7a15fcf056a5b7461a8e690b481b03b80")
e8360eb8
CL
4085 (revision "0"))
4086 (package
4087 (name "emacs-lispy")
4088 (version (git-version "0.26.0" revision commit))
4089 (home-page "https://github.com/abo-abo/lispy")
4090 (source (origin
4091 (method git-fetch)
4092 (uri (git-reference (url home-page) (commit commit)))
4093 (sha256
4094 (base32
e5d57c1c 4095 "1g6756qqx2n4cx8jac6mlwayilsiyc5rz8nrqjnywvzc75xdinjd"))
e8360eb8
CL
4096 (file-name (git-file-name name version))))
4097 (build-system emacs-build-system)
4098 (propagated-inputs
4099 `(("emacs-ace-window" ,emacs-ace-window)
4100 ("emacs-iedit" ,emacs-iedit)
4101 ("emacs-ivy" ,emacs-ivy)
4102 ("emacs-hydra" ,emacs-hydra)
4103 ("emacs-zoutline" ,emacs-zoutline)))
4104 (synopsis "Modal S-expression editing")
4105 (description
4106 "Due to the structure of Lisp syntax it's very rare for the programmer
4107to want to insert characters right before \"(\" or right after \")\". Thus
a5338dd4
RW
4108unprefixed printable characters can be used to call commands when the point is
4109at one of these special locations. Lispy provides unprefixed keybindings for
4110S-expression editing when point is at the beginning or end of an
4111S-expression.")
e8360eb8 4112 (license license:gpl3+))))
a5338dd4 4113
28ca6b35
CL
4114(define-public emacs-lispyville
4115 ;; Later versions need a more recent Evil, with an evil-define-key*
4116 ;; supporting nil for the state.
4117 (let ((commit "b4291857ed6a49a67c4ea77522889ce51fb171ab")
4118 (revision "0"))
4119 (package
4120 (name "emacs-lispyville")
4121 (version (git-version "0.1" revision commit))
4122 (home-page "https://github.com/noctuid/lispyville")
4123 (source (origin
4124 (method git-fetch)
4125 (uri (git-reference (url home-page) (commit commit)))
4126 (sha256
4127 (base32
4128 "095zibzc3naknahdrnb59g9rbljy8wz9rkc7rf8avb3wxlwvxhm3"))
4129 (file-name (git-file-name name version))))
4130 (propagated-inputs
4131 `(("emacs-evil" ,emacs-evil)
4132 ("emacs-lispy" ,emacs-lispy)))
4133 (build-system emacs-build-system)
4134 (synopsis "Minor mode for integrating Evil with lispy")
4135 (description
4136 "LispyVille's main purpose is to provide a Lisp editing environment
4137suited towards Evil users. It can serve as a minimal layer on top of lispy
4138for better integration with Evil, but it does not require the use of lispy’s
4139keybinding style. The provided commands allow for editing Lisp in normal
4140state and will work even without lispy being enabled.")
4141 (license license:gpl3+))))
a5338dd4 4142
8eeb301d
AP
4143(define-public emacs-clojure-mode
4144 (package
4145 (name "emacs-clojure-mode")
2fa6f63b 4146 (version "5.6.1")
8eeb301d
AP
4147 (source (origin
4148 (method url-fetch)
4149 (uri (string-append
4150 "https://github.com/clojure-emacs/clojure-mode/archive/"
4151 version ".tar.gz"))
4152 (file-name (string-append name "-" version ".tar.gz"))
4153 (sha256
4154 (base32
2fa6f63b 4155 "1f4k1hncy5ygh4izn7mqfp744nnisrp9ywn2njknbjxx34ai1q88"))))
8eeb301d 4156 (build-system emacs-build-system)
92d9cfef
AI
4157 (native-inputs
4158 `(("emacs-dash" ,emacs-dash)
4159 ("emacs-s" ,emacs-s)
5c8031ff 4160 ("ert-runner" ,emacs-ert-runner)))
92d9cfef 4161 (arguments
d1d41db6
MC
4162 `(#:tests? #t
4163 #:test-command '("ert-runner")))
7bf837fd 4164 (home-page "https://github.com/clojure-emacs/clojure-mode")
8eeb301d
AP
4165 (synopsis "Major mode for Clojure code")
4166 (description
4167 "This Emacs package provides font-lock, indentation, navigation and basic
4168refactoring for the @uref{http://clojure.org, Clojure programming language}.
4169It is recommended to use @code{clojure-mode} with paredit or smartparens.")
4170 (license license:gpl3+)))
d345491a
AP
4171
4172(define-public emacs-epl
4173 (package
4174 (name "emacs-epl")
4175 (version "0.8")
4176 (source (origin
4177 (method url-fetch)
4178 (uri (string-append
4179 "https://github.com/cask/epl/archive/"
4180 version ".tar.gz"))
5a6f7a68 4181 (file-name (string-append name "-" version ".tar.gz"))
d345491a
AP
4182 (sha256
4183 (base32
4184 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
4185 (build-system emacs-build-system)
7bf837fd 4186 (home-page "https://github.com/cask/epl")
d345491a
AP
4187 (synopsis "Emacs Package Library")
4188 (description
4189 "A package management library for Emacs, based on @code{package.el}.
4190
4191The purpose of this library is to wrap all the quirks and hassle of
4192@code{package.el} into a sane API.")
4193 (license license:gpl3+)))
ad6c4bc4
AP
4194
4195(define-public emacs-queue
4196 (package
4197 (name "emacs-queue")
5f51f39e 4198 (version "0.2")
ad6c4bc4 4199 (source (origin
02736daa 4200 (method url-fetch)
f32ffa04 4201 (uri (string-append "https://elpa.gnu.org/packages/queue-"
ad6c4bc4
AP
4202 version ".el"))
4203 (sha256
4204 (base32
5f51f39e 4205 "0cx2848sqnnkkr4zisvqadzxngjyhmb36mh0q3if7q19yjjhmrkb"))))
ad6c4bc4
AP
4206 (build-system emacs-build-system)
4207 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
4208 (synopsis "Queue data structure for Emacs")
4209 (description
4210 "This Emacs library provides queue data structure. These queues can be
4211used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
4212stack, i.e. elements can be added to the front or back of the queue, and can
4213be removed from the front. This type of data structure is sometimes called an
4214\"output-restricted deque\".")
4215 (license license:gpl3+)))
32abfcf4
AP
4216
4217(define-public emacs-pkg-info
4218 (package
4219 (name "emacs-pkg-info")
4220 (version "0.6")
4221 (source (origin
4222 (method url-fetch)
4223 (uri (string-append
4224 "https://github.com/lunaryorn/pkg-info.el/archive/"
4225 version ".tar.gz"))
4226 (file-name (string-append name "-" version ".tar.gz"))
4227 (sha256
4228 (base32
4229 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
4230 (build-system emacs-build-system)
4231 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
4232 (home-page "https://github.com/lunaryorn/pkg-info.el")
4233 (synopsis "Information about Emacs packages")
4234 (description
4235 "This library extracts information from the installed Emacs packages.")
4236 (license license:gpl3+)))
565bccc5
AP
4237
4238(define-public emacs-spinner
4239 (package
4240 (name "emacs-spinner")
cd4d96b8 4241 (version "1.7.3")
565bccc5 4242 (source (origin
02736daa 4243 (method url-fetch)
f32ffa04 4244 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
565bccc5
AP
4245 version ".el"))
4246 (sha256
4247 (base32
cd4d96b8 4248 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
565bccc5
AP
4249 (build-system emacs-build-system)
4250 (home-page "https://github.com/Malabarba/spinner.el")
4251 (synopsis "Emacs mode-line spinner for operations in progress")
4252 (description
4253 "This Emacs package adds spinners and progress-bars to the mode-line for
4254ongoing operations.")
4255 (license license:gpl3+)))
62a45cb6 4256
fd2d17cd
RJ
4257(define-public emacs-sparql-mode
4258 (package
4259 (name "emacs-sparql-mode")
4260 (version "2.0.1")
4261 (source (origin
4262 (method url-fetch)
4263 (uri (string-append "https://github.com/ljos/sparql-mode/archive/"
4264 "v" version ".tar.gz"))
4265 (file-name (string-append name "-" version ".tar.gz"))
4266 (sha256
4267 (base32
4268 "1s93mkllxnhy7fw616cnnc2danacdlarys0g3cn89drh0llh53cv"))))
4269 (build-system emacs-build-system)
4270 (home-page "https://github.com/ljos/sparql-mode")
4271 (synopsis "SPARQL mode for Emacs")
4272 (description "This package provides a major mode for Emacs that provides
4273syntax highlighting for SPARQL. It also provides a way to execute queries
4274against a SPARQL HTTP endpoint, such as is provided by Fuseki. It is also
4275possible to query other endpoints like DBPedia.")
4276 (license license:gpl3+)))
4277
6ede256f
DT
4278(define-public emacs-better-defaults
4279 (package
4280 (name "emacs-better-defaults")
4281 (version "0.1.3")
4282 (source
4283 (origin
4284 (method url-fetch)
4285 (uri (string-append "https://github.com/technomancy/better-defaults"
4286 "/archive/" version ".tar.gz"))
13384842 4287 (file-name (string-append name "-" version ".tar.gz"))
6ede256f
DT
4288 (sha256
4289 (base32
4290 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
4291 (build-system emacs-build-system)
4292 (home-page "https://github.com/technomancy/better-defaults")
4293 (synopsis "Better defaults for Emacs")
4294 (description
4295 "Better defaults attempts to address the most obvious deficiencies of the
4296Emacs default configuration in uncontroversial ways that nearly everyone can
4297agree upon.")
4298 (license license:gpl3+)))
c5c08f1b 4299
7034791a
RJ
4300(define-public emacs-eprime
4301 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
4302 (package
4303 (name "emacs-eprime")
4304 (version (string-append "20140513-" (string-take commit 7)))
4305 (source (origin
4306 (method url-fetch)
4307 (uri (string-append "https://raw.githubusercontent.com"
4308 "/AndrewHynes/eprime-mode/"
4309 commit "/eprime-mode.el"))
4310 (file-name (string-append "eprime-" version ".el"))
4311 (sha256
4312 (base32
4313 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
4314 (build-system emacs-build-system)
4315 (home-page "https://github.com/AndrewHynes/eprime-mode")
4316 (synopsis "E-prime checking mode for Emacs")
4317 (description "This package provides an E-prime checking mode for Emacs
4318that highlights non-conforming text. The subset of the English language called
4319E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
4320 (license license:gpl3+))))
4321
db29e598
KM
4322(define-public emacs-julia-mode
4323 ;; XXX: Upstream version remained stuck at 0.3. See
4324 ;; <https://github.com/JuliaEditorSupport/julia-emacs/issues/46>.
4325 (let ((commit "115d4dc8a07445301772da8376b232fa8c7168f4")
4326 (revision "1"))
4327 (package
4328 (name "emacs-julia-mode")
4329 (version (string-append "0.3-" revision "." (string-take commit 8)))
4330 (source
4331 (origin
4332 (method git-fetch)
4333 (uri (git-reference
4334 (url "https://github.com/JuliaEditorSupport/julia-emacs.git")
4335 (commit commit)))
4336 (file-name (string-append name "-" version "-checkout"))
4337 (sha256
4338 (base32
4339 "1is4dcv6blslpzbjcg8l2jpxi8xj96q4cm0nxjxsyswpm8bw8ki0"))))
4340 (build-system emacs-build-system)
4341 (arguments
d1d41db6
MC
4342 `(#:tests? #t
4343 #:test-command '("emacs" "--batch"
4344 "-l" "julia-mode-tests.el"
4345 "-f" "ert-run-tests-batch-and-exit")))
db29e598
KM
4346 (home-page "https://github.com/JuliaEditorSupport/julia-emacs")
4347 (synopsis "Major mode for Julia")
4348 (description "This Emacs package provides a mode for the Julia
4349programming language.")
4350 (license license:expat))))
4351
41184943
RJ
4352(define-public emacs-ess
4353 (package
4354 (name "emacs-ess")
12498b59 4355 (version "17.11")
41184943
RJ
4356 (source (origin
4357 (method url-fetch)
12498b59
AB
4358 (uri (string-append "https://github.com/emacs-ess/ESS/archive/v"
4359 version ".tar.gz"))
41184943
RJ
4360 (sha256
4361 (base32
12498b59
AB
4362 "0cbilbsiwvcyf6d5y24mymp57m3ana5dkzab3knfs83w4a3a4c5c"))
4363 (file-name (string-append name "-" version ".tar.gz"))
a209907e
KM
4364 (modules '((guix build utils)))
4365 (snippet
4366 '(begin
4367 ;; Stop ESS from trying to bundle an external julia-mode.el.
4368 (substitute* "lisp/Makefile"
4369 (("^\tjulia-mode.elc\\\\\n") "")
12498b59
AB
4370 (("^dist: all julia-mode.el")
4371 "dist: all"))
4372 ;; No need to build docs in so many formats. Also, skipping
4373 ;; pdf lets us not pull in texlive.
4374 (substitute* "doc/Makefile"
4375 (("all : info text html pdf")
4376 "all : info")
4377 (("install: install-info install-other-docs")
4378 "install: install-info"))
4379 ;; Test fails upstream
4380 (substitute* "test/ess-r-tests.el"
4381 (("ert-deftest ess-r-namespaced-eval-no-srcref-in-errors ()")
4382 "ert-deftest ess-r-namespaced-eval-no-srcref-in-errors () :expected-result :failed"))
6cbee49d 4383 #t))))
41184943
RJ
4384 (build-system gnu-build-system)
4385 (arguments
eaff063a 4386 (let ((base-directory "/share/emacs/site-lisp/guix.d/ess"))
a209907e 4387 `(#:make-flags (list (string-append "PREFIX=" %output)
eaff063a
RJ
4388 (string-append "ETCDIR=" %output "/"
4389 ,base-directory "/etc")
4390 (string-append "LISPDIR=" %output "/"
4391 ,base-directory))
4392 #:phases
4393 (modify-phases %standard-phases
4394 (delete 'configure)
4395 (add-before 'build 'more-shebang-patching
4396 (lambda* (#:key inputs #:allow-other-keys)
4397 (substitute* "Makeconf"
4398 (("SHELL = /bin/sh")
2f48416f
TGR
4399 (string-append "SHELL = " (which "sh"))))
4400 #t))
a209907e
KM
4401 (replace 'check
4402 (lambda _
2f48416f 4403 (invoke "make" "test")))))))
41184943
RJ
4404 (inputs
4405 `(("emacs" ,emacs-minimal)
2d7c4ae3 4406 ("r-minimal" ,r-minimal)))
41184943
RJ
4407 (native-inputs
4408 `(("perl" ,perl)
12498b59
AB
4409 ("texinfo" ,texinfo)))
4410 (propagated-inputs
4411 `(("emacs-julia-mode" ,emacs-julia-mode)))
d062957a 4412 (home-page "https://ess.r-project.org/")
41184943
RJ
4413 (synopsis "Emacs mode for statistical analysis programs")
4414 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
4415Emacs. It is designed to support editing of scripts and interaction with
12498b59 4416various statistical analysis programs such as R, Julia, and JAGS.")
41184943
RJ
4417 (license license:gpl2+)))
4418
c5c08f1b
DT
4419(define-public emacs-smex
4420 (package
4421 (name "emacs-smex")
4422 (version "3.0")
4423 (source (origin
4424 (method url-fetch)
4425 (uri (string-append "https://raw.githubusercontent.com"
4426 "/nonsequitur/smex/" version "/smex.el"))
4427 (file-name (string-append "smex-" version ".el"))
4428 (sha256
4429 (base32
4430 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
4431 (build-system emacs-build-system)
7bf837fd 4432 (home-page "https://github.com/nonsequitur/smex/")
c5c08f1b
DT
4433 (synopsis "M-x interface with Ido-style fuzzy matching")
4434 (description
4435 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
4436convenient interface to your recently and most frequently used commands. And
4437to all the other commands, too.")
4438 (license license:gpl3+)))
3e5be84b
DT
4439
4440(define-public emacs-js2-mode
4441 (package
4442 (name "emacs-js2-mode")
a7bed894 4443 (version "20180301")
3e5be84b
DT
4444 (source (origin
4445 (method url-fetch)
4446 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
4447 version ".tar.gz"))
4448 (file-name (string-append name "-" version ".tar.gz"))
4449 (sha256
4450 (base32
a7bed894 4451 "13aghgwaqrmbf3pbifcry52kya454wnh1gbdh5805n1n6xgjm5w3"))))
3e5be84b
DT
4452 (build-system emacs-build-system)
4453 (home-page "https://github.com/mooz/js2-mode/")
4454 (synopsis "Improved JavaScript editing mode for Emacs")
4455 (description
4456 "Js2-mode provides a JavaScript major mode for Emacs that is more
4457advanced than the built-in javascript-mode. Features include accurate syntax
4458highlighting using a recursive-descent parser, on-the-fly reporting of syntax
4459errors and strict-mode warnings, smart line-wrapping within comments and
4460strings, and code folding.")
4461 (license license:gpl3+)))
b78b6e80 4462
6c123c26
ML
4463(define-public emacs-nodejs-repl
4464 (package
4465 (name "emacs-nodejs-repl")
24220e0f 4466 (version "0.2.0")
6c123c26
ML
4467 (source (origin
4468 (method url-fetch)
4469 (uri (string-append "https://github.com/abicky/nodejs-repl.el"
4470 "/archive/" version ".tar.gz"))
4471 (sha256
4472 (base32
24220e0f 4473 "0hq2cqdq2668yf48g7qnkci90nhih1gnhacsgz355jnib56lhmkz"))
6c123c26
ML
4474 (file-name (string-append name "-" version ".tar.gz"))))
4475 (build-system emacs-build-system)
4476 (home-page "https://github.com/abicky/nodejs-repl.el")
4477 (synopsis "Node.js REPL inside Emacs")
4478 (description
4479 "This program is derived from comint-mode and provides the following
4480features:
4481
4482@itemize
4483@item TAB completion same as Node.js REPL
4484@item file name completion in string
4485@item incremental history search
4486@end itemize")
4487 (license license:gpl3+)))
4488
0bb78bf9
ML
4489(define-public emacs-typescript-mode
4490 (package
4491 (name "emacs-typescript-mode")
4492 (version "0.3")
4493 (source (origin
4494 (method url-fetch)
4495 (uri (string-append
4496 "https://github.com/ananthakumaran/typescript.el"
4497 "/archive/v" version ".tar.gz"))
4498 (sha256
4499 (base32
4500 "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj"))
4501 (file-name (string-append name "-" version ".tar.gz"))))
4502 (build-system emacs-build-system)
4503 (home-page "https://github.com/ananthakumaran/typescript.el")
4504 (synopsis "Emacs major mode for editing Typescript code")
4505 (description
4506 "This is based on Karl Landstrom's barebones @code{typescript-mode}.
4507This is much more robust and works with @code{cc-mode}'s comment
4508filling (mostly). The modifications to the original @code{javascript.el} mode
4509mainly consisted in replacing \"javascript\" with \"typescript\"
4510
4511The main features of this Typescript mode are syntactic highlighting (enabled
4512with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic
4513indentation and filling of comments and C preprocessor fontification.")
4514 (license license:gpl3+)))
4515
19db14ca
ML
4516(define-public emacs-tide
4517 (package
4518 (name "emacs-tide")
4519 (version "2.8.3.1")
4520 (source (origin
4521 (method url-fetch)
4522 (uri (string-append "https://github.com/ananthakumaran/tide"
4523 "/archive/v" version ".tar.gz"))
4524 (sha256
4525 (base32
4526 "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y"))
4527 (file-name (string-append name "-" version ".tar.gz"))))
4528 (build-system emacs-build-system)
4529 (propagated-inputs
4530 `(("emacs-dash" ,emacs-dash)
4531 ("emacs-s" ,emacs-s)
5c8031ff 4532 ("emacs-flycheck" ,emacs-flycheck)
19db14ca
ML
4533 ("emacs-typescript-mode" ,emacs-typescript-mode)))
4534 (home-page "https://github.com/ananthakumaran/tide")
4535 (synopsis "Typescript IDE for Emacs")
4536 (description
4537 "Tide is an Interactive Development Environment (IDE) for Emacs which
4538provides the following features:
4539
4540@itemize
4541@item ElDoc
4542@item Auto complete
4543@item Flycheck
4544@item Jump to definition, Jump to type definition
4545@item Find occurrences
4546@item Rename symbol
4547@item Imenu
4548@item Compile On Save
4549@item Highlight Identifiers
4550@item Code Fixes
4551@item Code Refactor
4552@item Organize Imports
4553@end itemize")
4554 (license license:gpl3+)))
4555
b78b6e80
DT
4556(define-public emacs-markdown-mode
4557 (package
4558 (name "emacs-markdown-mode")
2175a427 4559 (version "2.3")
b78b6e80
DT
4560 (source (origin
4561 (method url-fetch)
4562 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
4563 "/markdown-mode/v" version
4564 "/markdown-mode.el"))
4565 (file-name (string-append "markdown-mode-" version ".el"))
4566 (sha256
4567 (base32
2175a427 4568 "152whyrq3dqlqy5wv4mdd94kmal19hs5kwaxjcp2gp2r97lsmdmi"))))
b78b6e80
DT
4569 (build-system emacs-build-system)
4570 (home-page "http://jblevins.org/projects/markdown-mode/")
4571 (synopsis "Emacs Major mode for Markdown files")
4572 (description
4573 "Markdown-mode is a major mode for editing Markdown-formatted text files
4574in Emacs.")
4575 (license license:gpl3+)))
a2670dde 4576
659f790b
OP
4577(define-public emacs-edit-indirect
4578 (package
4579 (name "emacs-edit-indirect")
4580 (version "0.1.4")
4581 (source
4582 (origin
4583 (method url-fetch)
4584 (uri (string-append "https://github.com/Fanael/edit-indirect/archive/"
4585 version ".tar.gz"))
4586 (file-name (string-append name "-" version ".tar.gz"))
4587 (sha256
4588 (base32
4589 "07kr58rd1p5j764wminsssazr73hy51yw8iqcsv5z2dwgj7msv71"))))
4590 (build-system emacs-build-system)
4591 (home-page "https://github.com/Fanael/edit-indirect")
4592 (synopsis "Edit regions in separate buffers")
4593 (description "This package allows you to edit regions in separate buffers,
4594like @code{org-edit-src-code} but for arbitrary regions.")
4595 (license license:gpl3+)))
4596
a2670dde
DT
4597(define-public emacs-projectile
4598 (package
4599 (name "emacs-projectile")
6461c44c 4600 (version "0.14.0")
a2670dde
DT
4601 (source (origin
4602 (method url-fetch)
4603 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
4604 "/projectile/v" version "/projectile.el"))
4605 (file-name (string-append "projectile-" version ".el"))
4606 (sha256
4607 (base32
6461c44c 4608 "1ql1wnzhblbwnv66hf2y0wq45g71hh6s9inc090lmhm1vgylbd1f"))))
a2670dde
DT
4609 (build-system emacs-build-system)
4610 (propagated-inputs
4611 `(("emacs-dash" ,emacs-dash)
4612 ("emacs-pkg-info" ,emacs-pkg-info)))
4613 (home-page "https://github.com/bbatsov/projectile")
4614 (synopsis "Manage and navigate projects in Emacs easily")
4615 (description
4616 "This library provides easy project management and navigation. The
4617concept of a project is pretty basic - just a folder containing special file.
4618Currently git, mercurial and bazaar repos are considered projects by default.
4619If you want to mark a folder manually as a project just create an empty
4620.projectile file in it.")
4621 (license license:gpl3+)))
4aea1e01
DT
4622
4623(define-public emacs-elfeed
4624 (package
4625 (name "emacs-elfeed")
d5452aa2 4626 (version "3.0.0")
4aea1e01
DT
4627 (source (origin
4628 (method url-fetch)
4629 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
4630 version ".tar.gz"))
4631 (file-name (string-append name "-" version ".tar.gz"))
4632 (sha256
4633 (base32
d5452aa2 4634 "1wkdrxr6zzqb48czqqv34l87bx8aqjk1739ddqg933aqh241kfvn"))))
4aea1e01 4635 (build-system emacs-build-system)
568f977f 4636 (arguments
d1d41db6
MC
4637 `(#:tests? #t
4638 #:test-command '("make" "test")))
4aea1e01
DT
4639 (home-page "https://github.com/skeeto/elfeed")
4640 (synopsis "Atom/RSS feed reader for Emacs")
4641 (description
4642 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
4643and RSS, with a user interface inspired by notmuch.")
4644 (license license:gpl3+)))
c86f0207 4645
aaf10fa7
MC
4646(define-public emacs-el-x
4647 (package
4648 (name "emacs-el-x")
4649 (version "0.3.1")
4650 (source (origin
4651 (method git-fetch)
4652 (uri (git-reference
4653 (url "https://github.com/sigma/el-x.git")
4654 (commit (string-append "v" version))))
4655 (file-name (string-append name "-" version "-checkout"))
4656 (sha256
4657 (base32
4658 "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"))))
4659 (build-system emacs-build-system)
4660 (arguments
4661 `(#:phases
4662 (modify-phases %standard-phases
4663 ;; Move the source files to the top level, which is included in
4664 ;; the EMACSLOADPATH.
4665 (add-after 'unpack 'move-source-files
4666 (lambda _
4667 (let ((el-files (find-files "./lisp" ".*\\.el$")))
4668 (for-each (lambda (f)
4669 (rename-file f (basename f)))
4670 el-files))
4671 #t)))))
4672 (home-page "https://github.com/sigma/el-x")
4673 (synopsis "Emacs Lisp extensions")
4674 (description "command@{emacs-el-x} defines the @code{dflet} macro to
4675provide the historic behavior of @code{flet}, as well as
4676@code{declare-function} stub for older Emacs.")
4677 (license license:gpl2+)))
4678
563f151b
MC
4679(define-public emacs-mocker
4680 (package
4681 (name "emacs-mocker")
4682 (version "0.3.1")
4683 (source (origin
4684 (method git-fetch)
4685 (uri (git-reference
4686 (url "https://github.com/sigma/mocker.el.git")
4687 (commit (string-append "v" version))))
4688 (file-name (string-append name "-" version "-checkout"))
4689 (sha256
4690 (base32
4691 "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"))))
4692 (build-system emacs-build-system)
4693 (arguments
4694 `(#:tests? #t
4695 #:test-command '("ert-runner")))
4696 (native-inputs
5c8031ff 4697 `(("ert-runner" ,emacs-ert-runner)))
563f151b
MC
4698 (propagated-inputs
4699 `(("emacs-el-x" ,emacs-el-x)))
4700 (home-page "https://github.com/sigma/mocker.el")
4701 (synopsis "Mocking framework for Emacs Lisp")
4702 (description "Mocker.el is a framework for writing tests in Emacs Lisp.
4703It uses regular Lisp rather than a domain specific language (DSL), which
4704maximizes flexibility (at the expense of conciseness).")
4705 (license license:gpl2+)))
4706
2c6ff3a2
MC
4707(define-public emacs-find-file-in-project
4708 (package
4709 (name "emacs-find-file-in-project")
4710 (version "5.4.7")
4711 (source (origin
4712 (method git-fetch)
4713 (uri (git-reference
4714 (url "https://github.com/technomancy/find-file-in-project.git")
4715 (commit version)))
4716 (file-name (string-append name "-" version "-checkout"))
4717 (sha256
4718 (base32
4719 "1sdnyqv69mipbgs9yax88m9b6crsa59rjhwrih197pifl4089awr"))))
4720 (build-system emacs-build-system)
4721 (arguments
4722 `(#:phases
4723 (modify-phases %standard-phases
4724 (add-before 'check 'set-shell
4725 ;; Otherwise Emacs shell-file-name is set to "/bin/sh", which doesn't
4726 ;; work.
4727 (lambda _
4728 (setenv "SHELL" (which "sh"))
4729 #t)))
4730 #:tests? #t
4731 #:test-command '("./tests/test.sh")))
4732 (home-page "https://github.com/technomancy/find-file-in-project")
4733 (synopsis "File/directory finder for Emacs")
4734 (description "@code{find-file-in-project} allows to find files or
4735directories quickly in the current project. The project root is detected
4736automatically when Git, Subversion or Mercurial are used. It also provides
4737functions to assist in reviewing changes on files.")
4738 (license license:gpl3+)))
4739
87e9fb57
MC
4740(define-public emacs-pyvenv
4741 (package
4742 (name "emacs-pyvenv")
4743 (version "1.11")
4744 (source (origin
4745 (method git-fetch)
4746 (uri (git-reference
4747 (url "https://github.com/jorgenschaefer/pyvenv.git")
4748 (commit (string-append "v" version))))
4749 (file-name (string-append name "-" version "-checkout"))
4750 (sha256
4751 (base32
4752 "1a346qdimr1dvj53q033aqnahwd2dhyn9jadrs019nm0bzgw7g63"))))
4753 (build-system emacs-build-system)
4754 (arguments
4755 `(#:phases
4756 (modify-phases %standard-phases
4757 ;; This phase incorrectly attempts to substitute "activate" and fails
4758 ;; doing so.
4759 (delete 'patch-el-files))
4760 #:tests? #t
4761 #:test-command '("ert-runner")))
4762 (native-inputs
5c8031ff 4763 `(("ert-runner" ,emacs-ert-runner)
87e9fb57
MC
4764 ("emacs-mocker" ,emacs-mocker)))
4765 (home-page "https://github.com/jorgenschaefer/pyvenv")
4766 (synopsis "Virtualenv minor mode for Emacs")
4767 (description "pyvenv.el is a minor mode to support using Python virtual
4768environments (virtualenv) inside Emacs.")
4769 (license license:gpl3+)))
4770
dcc31d7f
MC
4771(define-public emacs-highlight-indentation
4772 (package
4773 (name "emacs-highlight-indentation")
4774 (version "0.7.0")
4775 (source (origin
4776 (method git-fetch)
4777 (uri (git-reference
4778 (url "https://github.com/antonj/Highlight-Indentation-for-Emacs.git")
4779 (commit (string-append "v" version))))
4780 (file-name (string-append name "-" version "-checkout"))
4781 (sha256
4782 (base32
4783 "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"))))
4784 (build-system emacs-build-system)
4785 (home-page "https://github.com/antonj/Highlight-Indentation-for-Emacs/")
4786 (synopsis "Highlighting indentation for Emacs")
4787 (description "Provides two minor modes to highlight indentation guides in Emacs:
4788@enumerate
4789@item @code{highlight-indentation-mode}, which displays guidelines
4790indentation (space indentation only).
4791@item @code{highlight-indentation-current-column-mode}, which displays guidelines for the current-point indentation (space indentation only).
4792@end enumerate")
4793 (license license:gpl2+)))
4794
82baeea2
MC
4795(define-public emacs-elpy
4796 (package
4797 (name "emacs-elpy")
56ddcf04 4798 (version "1.26.0")
82baeea2
MC
4799 (source (origin
4800 (method git-fetch)
4801 (uri (git-reference
4802 (url "https://github.com/jorgenschaefer/elpy.git")
4803 (commit version)))
4804 (file-name (string-append name "-" version "-checkout"))
4805 (sha256
4806 (base32
56ddcf04 4807 "0wynzp5xmrgiggmam82n6lfaiqmfl4n3ccpsgnh86r6pbsmssxjk"))))
82baeea2
MC
4808 (build-system emacs-build-system)
4809 (arguments
4810 `(#:include (cons* "^elpy/[^/]+\\.py$" "^snippets\\/" %default-include)
4811 #:phases
4812 ;; TODO: Make `elpy-config' display Guix commands :)
4813 (modify-phases %standard-phases
4814 ;; One elpy test depends on being run inside a Python virtual
4815 ;; environment to pass. We have nothing to gain from doing so here,
4816 ;; so we just trick Elpy into thinking we are (see:
4817 ;; https://github.com/jorgenschaefer/elpy/pull/1293).
4818 (add-before 'check 'fake-virtualenv
4819 (lambda _
4820 (setenv "VIRTUAL_ENV" "/tmp")
4821 #t))
4822 (add-before 'check 'build-doc
4823 (lambda _
4824 (with-directory-excursion "docs"
4825 (invoke "make" "info" "man"))
4826 ;; Move .info file at the root so that it can installed by the
4827 ;; 'move-doc phase.
4828 (rename-file "docs/_build/texinfo/Elpy.info" "Elpy.info")
4829 #t))
4830 (add-after 'build-doc 'install-manpage
4831 (lambda* (#:key outputs #:allow-other-keys)
4832 (let* ((out (assoc-ref outputs "out"))
4833 (man1 (string-append out "/share/man/man1")))
4834 (mkdir-p man1)
4835 (copy-file "docs/_build/man/elpy.1"
4836 (string-append man1 "/elpy.1")))
4837 #t)))
4838 #:tests? #t
4839 #:test-command '("ert-runner")))
4840 (propagated-inputs
4841 `(("emacs-company" ,emacs-company)
4842 ("emacs-find-file-in-project" ,emacs-find-file-in-project)
4843 ("emacs-highlight-indentation" ,emacs-highlight-indentation)
4844 ("emacs-yasnippet" ,emacs-yasnippet)
4845 ("pyvenv" ,emacs-pyvenv)
4846 ("s" ,emacs-s)))
4847 (native-inputs
5c8031ff 4848 `(("ert-runner" ,emacs-ert-runner)
82baeea2
MC
4849 ("emacs-f" ,emacs-f)
4850 ("python" ,python-wrapper)
4851 ("python-autopep8" ,python-autopep8)
4852 ("python-black" ,python-black)
4853 ("python-flake8" ,python-flake8)
4854 ("python-jedi" ,python-jedi)
4855 ("python-yapf" ,python-yapf)
4856 ;; For documentation.
4857 ("python-sphinx" ,python-sphinx)
4858 ("texinfo" ,texinfo)))
4859 (home-page "https://github.com/jorgenschaefer/elpy")
4860 (synopsis "Python development environment for Emacs")
4861 (description "Elpy brings powerful Python editing to Emacs. It combines
4862and configures a number of other packages written in Emacs Lisp as well as
4863Python, together offering features such as navigation, documentation,
4864completion, interactive development and more.")
4865 (license license:gpl3+)))
4866
c86f0207
DT
4867(define-public emacs-rainbow-delimiters
4868 (package
4869 (name "emacs-rainbow-delimiters")
4870 (version "2.1.3")
4871 (source (origin
4872 (method url-fetch)
4873 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4874 "/rainbow-delimiters/" version
4875 "/rainbow-delimiters.el"))
4876 (file-name (string-append "rainbow-delimiters-" version ".el"))
4877 (sha256
4878 (base32
4879 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
4880 (build-system emacs-build-system)
4881 (home-page "https://github.com/Fanael/rainbow-delimiters")
4882 (synopsis "Highlight brackets according to their depth")
4883 (description
4884 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
4885highlights parentheses, brackets, and braces according to their depth. Each
4886successive level is highlighted in a different color, making it easy to spot
4887matching delimiters, orient yourself in the code, and tell which statements
4888are at a given level.")
4889 (license license:gpl3+)))
65b49ae7 4890
d95e8e01
RJ
4891(define-public emacs-rainbow-identifiers
4892 (package
4893 (name "emacs-rainbow-identifiers")
4894 (version "0.2.2")
4895 (source (origin
4896 (method url-fetch)
4897 (uri (string-append "https://raw.githubusercontent.com/Fanael"
4898 "/rainbow-identifiers/" version
4899 "/rainbow-identifiers.el"))
4900 (file-name (string-append "rainbow-identifiers-" version ".el"))
4901 (sha256
4902 (base32
4903 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
4904 (build-system emacs-build-system)
4905 (home-page "https://github.com/Fanael/rainbow-identifiers")
4906 (synopsis "Highlight identifiers in source code")
4907 (description
4908 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
4909identifiers based on their names. Each identifier gets a color based on a hash
4910of its name.")
4911 (license license:bsd-2)))
4912
9619a95e
RJ
4913(define-public emacs-rainbow-mode
4914 (package
4915 (name "emacs-rainbow-mode")
2f1dacc2 4916 (version "1.0.1")
9619a95e
RJ
4917 (source (origin
4918 (method url-fetch)
4919 (uri (string-append
4920 "http://elpa.gnu.org/packages/rainbow-mode-" version ".el"))
4921 (sha256
4922 (base32
2f1dacc2 4923 "0cpga4ax635rfpj7y2vmh7ank0yw00dcy20gjg1mj74r97by8csf"))))
9619a95e
RJ
4924 (build-system emacs-build-system)
4925 (home-page "http://elpa.gnu.org/packages/rainbow-mode.html")
4926 (synopsis "Colorize color names in buffers")
4927 (description
4928 "This minor mode sets background color to strings that match color
4929names, e.g. #0000ff is displayed in white with a blue background.")
4930 (license license:gpl3+)))
4931
fede3a90
RW
4932(define-public emacs-visual-fill-column
4933 (package
4934 (name "emacs-visual-fill-column")
32e23aba 4935 (version "1.11")
fede3a90
RW
4936 (source (origin
4937 (method url-fetch)
4938 (uri (string-append "https://codeload.github.com/joostkremers/"
4939 "visual-fill-column/tar.gz/" version))
4940 (file-name (string-append name "-" version ".tar.gz"))
4941 (sha256
4942 (base32
32e23aba 4943 "13jnviakp607zcms7f8ams56mr8wffnq1pghlc6fvqs39663pgwh"))))
fede3a90
RW
4944 (build-system emacs-build-system)
4945 (home-page "https://github.com/joostkremers/visual-fill-column")
4946 (synopsis "Fill-column for visual-line-mode")
4947 (description
4948 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
4949the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
4950wrapping lines at the window edge, which is the standard behaviour of
4951@code{visual-line-mode}, it wraps lines at @code{fill-column}. If
4952@code{fill-column} is too large for the window, the text is wrapped at the
4953window edge.")
4954 (license license:gpl3+)))
4955
0ef1c223
KM
4956(define-public emacs-writeroom
4957 (package
4958 (name "emacs-writeroom")
4959 (version "3.7")
4960 (source (origin
4961 (method url-fetch)
4962 (uri (string-append
4963 "https://github.com/joostkremers/writeroom-mode/archive/"
4964 version ".tar.gz"))
4965 (file-name (string-append name "-" version ".tar.gz"))
4966 (sha256
4967 (base32
4968 "0yqgp5h3kvvpgva4azakb2wnjl7gsyh45glf75crspv3xyq57f2r"))))
4969 (build-system emacs-build-system)
4970 (propagated-inputs
4971 `(("emacs-visual-fill-column" ,emacs-visual-fill-column)))
4972 (home-page "https://github.com/joostkremers/writeroom-mode")
4973 (synopsis "Distraction-free writing for Emacs")
4974 (description
4975 "This package defines a minor mode for distraction-free writing. Some of
4976the default effects include entering fullscreen, deleting other windows of the
4977current frame, disabling the mode line, and adding margins to the buffer that
4978restrict the text width to 80 characters.")
4979 (license license:bsd-3)))
4980
65b49ae7
DT
4981(define-public emacs-ido-completing-read+
4982 (package
4983 (name "emacs-ido-completing-read+")
4984 (version "3.12")
4985 (source (origin
4986 (method url-fetch)
4987 (uri (string-append "https://raw.githubusercontent.com"
4988 "/DarwinAwardWinner/ido-ubiquitous/v"
4989 version "/ido-completing-read+.el"))
4990 (file-name (string-append "ido-completing-read+-" version ".el"))
4991 (sha256
4992 (base32
4993 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
4994 (build-system emacs-build-system)
4995 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
4996 (synopsis "Replacement for completing-read using ido")
4997 (description
4998 "The ido-completing-read+ function is a wrapper for ido-completing-read.
4999Importantly, it detects edge cases that ordinary ido cannot handle and either
5000adjusts them so ido can handle them, or else simply falls back to the standard
5001Emacs completion function instead.")
5002 (license license:gpl3+)))
529fe992
DT
5003
5004(define-public emacs-ido-ubiquitous
5005 (package
5006 (name "emacs-ido-ubiquitous")
5007 (version "3.12")
5008 (source (origin
5009 (method url-fetch)
5010 (uri (string-append "https://raw.githubusercontent.com"
5011 "/DarwinAwardWinner/ido-ubiquitous/v"
5012 version "/ido-ubiquitous.el"))
5013 (file-name (string-append "ido-ubiquitous-" version ".el"))
5014 (sha256
5015 (base32
5016 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
5017 (build-system emacs-build-system)
5018 (propagated-inputs
5019 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
5020 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
5021 (synopsis "Use ido (nearly) everywhere")
5022 (description
5023 "Ido-ubiquitous enables ido-style completion for almost every function
5024that uses the standard completion function completing-read.")
5025 (license license:gpl3+)))
63de1231
DT
5026
5027(define-public emacs-yaml-mode
5028 (package
5029 (name "emacs-yaml-mode")
847284e1 5030 (version "0.0.13")
63de1231
DT
5031 (source (origin
5032 (method url-fetch)
5033 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
5034 "/yaml-mode/v" version "/yaml-mode.el"))
5035 (file-name (string-append "yaml-mode-" version ".el"))
5036 (sha256
5037 (base32
847284e1 5038 "0im88sk9dqw03x6d6zaspgvg9i0pfpgb8f2zygrmbifh2w4pwmvj"))))
63de1231
DT
5039 (build-system emacs-build-system)
5040 (home-page "https://github.com/yoshiki/yaml-mode")
5041 (synopsis "Major mode for editing YAML files")
5042 (description
5043 "Yaml-mode is an Emacs major mode for editing files in the YAML data
5044serialization format. It was initially developed by Yoshiki Kurihara and many
5045features were added by Marshall Vandegrift. As YAML and Python share the fact
5046that indentation determines structure, this mode provides indentation and
5047indentation command behavior very similar to that of python-mode.")
5048 (license license:gpl3+)))
7529c883
DT
5049
5050(define-public emacs-web-mode
5051 (package
5052 (name "emacs-web-mode")
bc1d26e3 5053 (version "16")
7529c883
DT
5054 (source (origin
5055 (method url-fetch)
5056 (uri (string-append "https://raw.githubusercontent.com/fxbois"
5057 "/web-mode/v" version "/web-mode.el"))
5058 (file-name (string-append "web-mode-" version ".el"))
5059 (sha256
5060 (base32
bc1d26e3 5061 "1hs5w7kdvcyn4ihyw1kfjg48djn5p7lz4rlbhzzdqv1g56xqx3gw"))))
7529c883
DT
5062 (build-system emacs-build-system)
5063 (synopsis "Major mode for editing web templates")
5064 (description "Web-mode is an Emacs major mode for editing web templates
5065aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
5066client/server side engines). Web-mode is compatible with many template
5067engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
5068Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
5069Dust.js, React/JSX, Angularjs, ejs, etc.")
5070 (home-page "http://web-mode.org/")
5071 (license license:gpl3+)))
ae609001 5072
814da59f 5073(define-public emacs-wgrep
3ad4443f
PN
5074 (let ((commit "414be70bd313e482cd9f0b70fd2daad4ee23497c"))
5075 ;; Late commit fixes compatibility issue with Emacs 26+.
5076 (package
5077 (name "emacs-wgrep")
5078 (version (git-version "2.1.10" "1" commit))
5079 (source (origin
5080 (method git-fetch)
5081 (uri (git-reference
5082 (url "https://github.com/mhayashi1120/Emacs-wgrep")
5083 (commit commit)))
5084 (file-name (git-file-name name version))
5085 (sha256
5086 (base32
5087 "1sdhd587q3pg92lhiayph87azhalmf1gzrnsprkmqvnphv7mvks9"))))
5088 (build-system emacs-build-system)
5089 (home-page "https://github.com/mhayashi1120/Emacs-wgrep")
5090 (synopsis "Edit a grep buffer and apply those changes to the files")
5091 (description
5092 "Emacs wgrep allows you to edit a grep buffer and apply those changes
5093to the file buffer. Several backends are supported beside the classic grep:
5094ack, ag, helm and pt.")
5095 (license license:gpl3+))))
814da59f 5096
ae609001
MJ
5097(define-public emacs-helm
5098 (package
5099 (name "emacs-helm")
2b0820bf 5100 (version "3.0")
ae609001
MJ
5101 (source (origin
5102 (method url-fetch)
5103 (uri (string-append
5104 "https://github.com/" name "/helm/archive/v"
5105 version ".tar.gz"))
5106 (file-name (string-append name "-" version ".tar.gz"))
5107 (sha256
5108 (base32
2b0820bf 5109 "0k2r0ccppaqfjvyszaxa16vf7g2qzj1clhfr6v646ncsy17laciw"))))
ae609001
MJ
5110 (build-system emacs-build-system)
5111 (propagated-inputs
5112 `(("emacs-async" ,emacs-async)
5113 ("emacs-popup" ,emacs-popup)))
5114 (home-page "https://emacs-helm.github.io/helm/")
5115 (synopsis "Incremental completion and selection narrowing
5116framework for Emacs")
5117 (description "Helm is incremental completion and selection narrowing
5118framework for Emacs. It will help steer you in the right direction when
5119you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
5120of @code{anything.el} originally written by Tamas Patrovic and can be
5121considered to be its successor. Helm sets out to clean up the legacy code in
5122@code{anything.el} and provide a cleaner, leaner and more modular tool, that's
5123not tied in the trap of backward compatibility.")
5124 (license license:gpl3+)))
f9be4366 5125
03cc1cf3
KM
5126(define-public emacs-helm-swoop
5127 (package
5128 (name "emacs-helm-swoop")
d3d57661 5129 (version "1.7.4")
03cc1cf3
KM
5130 (source (origin
5131 (method url-fetch)
5132 (uri (string-append
5133 "https://github.com/ShingoFukuyama/helm-swoop/archive/"
5134 version
5135 ".tar.gz"))
5136 (file-name (string-append name "-" version ".tar.gz"))
5137 (sha256
5138 (base32
d3d57661 5139 "1ssivsjzlnkg049cg993l8fp09l5nhpz6asj7w5c91zp5kpc6fh7"))))
03cc1cf3
KM
5140 (build-system emacs-build-system)
5141 (propagated-inputs
5142 `(("emacs-helm" ,emacs-helm)))
5143 (home-page "https://github.com/ShingoFukuyama/helm-swoop")
5144 (synopsis "Filter and jump to lines in an Emacs buffer using Helm")
5145 (description
5146 "This package builds on the Helm interface to provide several commands
5147for search-based navigation of buffers.")
5148 (license license:gpl2+)))
5149
f69c29f7
KM
5150(define-public emacs-helm-projectile
5151 (package
5152 (name "emacs-helm-projectile")
5153 (version "0.14.0")
5154 (source (origin
5155 (method url-fetch)
5156 (uri (string-append
5157 "https://github.com/bbatsov/helm-projectile/archive/v"
5158 version
5159 ".tar.gz"))
5160 (file-name (string-append name "-" version ".tar.gz"))
5161 (sha256
5162 (base32
5163 "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
5164 (build-system emacs-build-system)
5165 (propagated-inputs
5166 `(("emacs-dash" ,emacs-dash)
5167 ("emacs-helm" ,emacs-helm)
5168 ("emacs-projectile" ,emacs-projectile)))
5169 (home-page "https://github.com/bbatsov/helm-projectile")
5170 (synopsis "Helm integration for Projectile")
5171 (description
5172 "This Emacs library provides a Helm interface for Projectile.")
5173 (license license:gpl3+)))
5174
2e4bb8c8 5175(define-public emacs-helm-make
555a7429 5176 (let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
2e4bb8c8
OP
5177 (revision "1"))
5178 (package
5179 (name "emacs-helm-make")
5180 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
5181 (source
5182 (origin
5183 (method git-fetch)
5184 (uri (git-reference
5185 (url "https://github.com/abo-abo/helm-make.git")
5186 (commit commit)))
5187 (file-name (string-append name "-" version "-checkout"))
5188 (sha256
5189 (base32
555a7429 5190 "1y2v77mmd1bfkkz51cnk1l0dg3lvvxc39wlamnm7wjns66dbvlam"))))
2e4bb8c8
OP
5191 (build-system emacs-build-system)
5192 (propagated-inputs
5193 `(("emacs-helm" ,emacs-helm)
5194 ("emacs-projectile" ,emacs-projectile)))
5195 (home-page "https://github.com/abo-abo/helm-make")
5196 (synopsis "Select a Makefile target with helm")
5197 (description "@code{helm-make} or @code{helm-make-projectile} will give
5198you a @code{helm} selection of directory Makefile's targets. Selecting a
5199target will call @code{compile} on it.")
5200 (license license:gpl3+))))
5201
f9be4366
AP
5202(define-public emacs-cider
5203 (package
5204 (name "emacs-cider")
1f143575 5205 (version "0.15.1")
f9be4366
AP
5206 (source (origin
5207 (method url-fetch)
5208 (uri (string-append
5209 "https://github.com/clojure-emacs/cider/archive/v"
5210 version ".tar.gz"))
5211 (file-name (string-append name "-" version ".tar.gz"))
5212 (sha256
5213 (base32
1f143575 5214 "1j5hlmi14ypszv1f9nvq0jjlz7i742flg0ny3055l7i4x089xx6g"))))
f9be4366 5215 (build-system emacs-build-system)
65e4109c
SB
5216 (arguments
5217 '(#:exclude ; Don't exclude 'cider-test.el'.
5218 '("^\\.dir-locals\\.el$" "^test/")))
f9be4366
AP
5219 (propagated-inputs
5220 `(("emacs-clojure-mode" ,emacs-clojure-mode)
5221 ("emacs-spinner" ,emacs-spinner)
5222 ("emacs-pkg-info" ,emacs-pkg-info)
d0a52052 5223 ("emacs-queue" ,emacs-queue)))
f9be4366
AP
5224 (home-page "https://cider.readthedocs.org/")
5225 (synopsis "Clojure development environment for Emacs")
5226 (description
5227 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
5228provide an interactive development experience similar to the one you'd get
5229when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
5230Geiser) and Smalltalk.
5231
5232CIDER is the successor to the now deprecated combination of using SLIME +
5233swank-clojure for Clojure development.
5234
5235There are plenty of differences between CIDER and SLIME, but the core ideas
5236are pretty much the same (and SLIME served as the principle inspiration for
5237CIDER).")
5238 (license license:gpl3+)))
26e08b4d 5239
e982500f
RW
5240;; There hasn't been a tag or release since 2015, so we take the latest
5241;; commit.
5242(define-public emacs-sly
5243 (let ((commit "486bfbe95612bcdc0960c490207970a188e0fbb9")
5244 (revision "1"))
5245 (package
5246 (name "emacs-sly")
5247 (version (string-append "1.0.0-" revision "." (string-take commit 9)))
5248 (source
5249 (origin
5250 (method git-fetch)
5251 (uri (git-reference
5252 (url "https://github.com/joaotavora/sly.git")
5253 (commit commit)))
aeb95f1f 5254 (file-name (git-file-name name version))
e982500f
RW
5255 (sha256
5256 (base32
5257 "0ib4q4k3h3qn88pymyjjmlmnpizdn1mfg5gpk5a715nqsgxlg09l"))))
5258 (build-system emacs-build-system)
5259 (arguments
5260 `(#:include (cons "^lib\\/" %default-include)
5261 #:phases
5262 ;; The package provides autoloads.
5263 (modify-phases %standard-phases
5264 (delete 'make-autoloads))))
5265 (home-page "https://github.com/joaotavora/sly")
5266 (synopsis "Sylvester the Cat's Common Lisp IDE")
5267 (description
5268 "SLY is Sylvester the Cat's Common Lisp IDE. SLY is a fork of SLIME, and
5269contains the following improvements over it:
5270
5271@enumerate
5272@item Completely redesigned REPL based on Emacs's own full-featured
5273 @code{comint.el}
5274@item Live code annotations via a new @code{sly-stickers} contrib
5275@item Consistent interactive button interface. Everything can be copied to
5276 the REPL.
5277@item Multiple inspectors with independent history
5278@item Regexp-capable @code{M-x sly-apropos}
5279@item Contribs are first class SLY citizens and enabled by default
5280@item Use ASDF to loads contribs on demand.
5281@end enumerate
5282
5283SLY tracks SLIME's bugfixes and all its familar features (debugger, inspector,
5284xref, etc...) are still available, but with better integration.")
5285 (license license:gpl3+))))
5286
26e08b4d 5287(define-public emacs-lua-mode
69dcad33
AW
5288 (let ((commit "652e299cb967fccca827dda381d61a9c144d97de")
5289 (revision "1"))
5290 (package
5291 (name "emacs-lua-mode")
5292 (version (string-append "20151025." revision "-" (string-take commit 9)))
5293 (home-page "https://github.com/immerrr/lua-mode/")
5294 (source (origin
5295 (method git-fetch)
5296 (uri (git-reference
5297 (url home-page)
5298 (commit commit)))
5299 (file-name (string-append name "-" version ".checkout"))
5300 (sha256
5301 (base32
5302 "053025k930wh0lak6rc1973ynfrmm8zsyzfqhhd39x7abkl41hc9"))))
5303 (build-system emacs-build-system)
5304 (synopsis "Major mode for lua")
5305 (description
5306 "This Emacs package provides a mode for @uref{https://www.lua.org/,
26e08b4d 5307Lua programing language}.")
69dcad33 5308 (license license:gpl2+))))
0202612d 5309
5310(define-public emacs-ebuild-mode
5311 (package
5312 (name "emacs-ebuild-mode")
4735393a 5313 (version "1.37")
0202612d 5314 (source (origin
5315 (method url-fetch)
5316 (uri (string-append
5317 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
5318 "-" version ".tar.xz"))
5319 (file-name (string-append name "-" version ".tar.xz"))
5320 (sha256
5321 (base32
4735393a 5322 "07dzrdjjczkxdfdgi60h4jjkvzi4p0k9rij2wpfp8s03ay3qldpp"))))
0202612d 5323 (build-system emacs-build-system)
5324 (home-page "https://devmanual.gentoo.org")
5325 (synopsis "Major modes for Gentoo package files")
5326 (description
5327 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
5328news items, openrc and runscripts.")
5329 (license license:gpl2+)))
a9fbe94e 5330
2edbfbf5 5331(define-public emacs-evil
913f1f1f
PN
5332 (let ((commit "230b87212c81aaa68ef5547a6b998d9c365fe139"))
5333 (package
5334 (name "emacs-evil")
5335 (version (git-version "1.2.13" "1" commit))
5336 (source
5337 (origin
5338 (method git-fetch)
5339 (uri (git-reference
5340 (url "https://github.com/emacs-evil/evil")
5341 (commit commit)))
5342 (file-name (string-append name "-" version "-checkout"))
5343 (sha256
5344 (base32
5345 "0c9zy3bpck10gcrv79kd3h7i4ygd5bgbgy773n0lg7a2r5kwn1gx"))))
5346 (build-system emacs-build-system)
5347 (propagated-inputs
5348 `(("emacs-undo-tree" ,emacs-undo-tree)
5349 ("emacs-goto-chg" ,emacs-goto-chg)))
5350 (home-page "https://github.com/emacs-evil/evil")
5351 (synopsis "Extensible Vi layer for Emacs")
5352 (description
5353 "Evil is an extensible vi layer for Emacs. It emulates the
2edbfbf5 5354main features of Vim, and provides facilities for writing custom
5355extensions.")
913f1f1f 5356 (license license:gpl3+))))
2edbfbf5 5357
a0bee5e7 5358(define-public emacs-evil-collection
3e70c3a0
PN
5359 (let ((commit "abc9dd60f71ccc1f24803a12d853f84b4a8b258c")
5360 (revision "4"))
a0bee5e7
PN
5361 (package
5362 (name "emacs-evil-collection")
3e70c3a0 5363 (version (git-version "0.0.1" revision commit))
a0bee5e7
PN
5364 (source (origin
5365 (method git-fetch)
5366 (uri (git-reference
5367 (url "https://github.com/emacs-evil/evil-collection")
5368 (commit commit)))
5369 (file-name (string-append name "-" version "-checkout"))
5370 (sha256
5371 (base32
3e70c3a0 5372 "0c9l93vrsl6kzx8gg305dq8qkb2dr3s10fww7lh382911pdmsh7v"))))
a0bee5e7
PN
5373 (build-system emacs-build-system)
5374 (propagated-inputs
5375 `(("emacs-evil" ,emacs-evil)))
5376 (home-page "https://github.com/emacs-evil/evil-collection")
5377 (synopsis "Collection of Evil bindings for many major and minor modes")
5378 (description "This is a collection of Evil bindings for the parts of
5379Emacs that Evil does not cover properly by default, such as @code{help-mode},
5380@code{M-x calendar}, Eshell and more.")
5381 (license license:gpl3+))))
5382
ce74e520 5383(define-public emacs-goto-chg
5384 (package
5385 (name "emacs-goto-chg")
5386 (version "1.6")
5387 (source
5388 (origin
5389 (method url-fetch)
5390 ;; There is no versioned source.
5391 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
6669a932 5392 (file-name (string-append "goto-chg-" version ".el"))
ce74e520 5393 (sha256
5394 (base32
5395 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
5396 (build-system emacs-build-system)
5397 ;; There is no other home page.
5398 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
5399 (synopsis "Go to the last change in the Emacs buffer")
5400 (description
5401 "This package provides @code{M-x goto-last-change} command that goes to
5402the point of the most recent edit in the current Emacs buffer. When repeated,
5403go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
5404used for reverse direction.")
5405 (license license:gpl2+)))
5406
a1eba1be
VD
5407(define-public emacs-monroe
5408 (package
5409 (name "emacs-monroe")
b125649a 5410 (version "0.3.1")
a1eba1be
VD
5411 (source
5412 (origin
5413 (method url-fetch)
b125649a
VD
5414 (uri (string-append "https://github.com/sanel/monroe/archive/"
5415 version ".tar.gz"))
5416 (file-name (string-append name "-" version ".tar.gz"))
a1eba1be
VD
5417 (sha256
5418 (base32
b125649a 5419 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
a1eba1be 5420 (build-system emacs-build-system)
b125649a 5421 (home-page "https://github.com/sanel/monroe")
a1eba1be
VD
5422 (synopsis "Clojure nREPL client for Emacs")
5423 (description
5424 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
5425distribution, primarily targeting Clojure users")
5426 (license license:gpl3+)))
5427
32034405
NG
5428(define-public emacs-orgalist
5429 (package
5430 (name "emacs-orgalist")
1df40d3d 5431 (version "1.9")
32034405
NG
5432 (source
5433 (origin
5434 (method url-fetch)
5435 (uri (string-append "https://elpa.gnu.org/packages/"
5436 "orgalist-" version ".el"))
5437 (sha256
5438 (base32
1df40d3d 5439 "1rmmcyiiqkq54hn74nhzxzl4nvd902hv6gq341jwhrm7yiagffi6"))))
32034405
NG
5440 (build-system emacs-build-system)
5441 (home-page "http://elpa.gnu.org/packages/orgalist.html")
5442 (synopsis "Manage Org-like lists in non-Org buffers")
5443 (description "Write Org mode's plain lists in non-Org buffers. More
5444specifically, Orgalist supports the syntax of Org mode for numbered,
5445unnumbered, description items, checkboxes, and counter cookies.
5446
5447The library also implements radio lists, i.e., lists written in Org
40dc6df4 5448syntax later translated into the host format, e.g., LaTeX or HTML.")
32034405
NG
5449 (license license:gpl3+)))
5450
a9fbe94e
LC
5451(define-public emacs-writegood-mode
5452 (package
5453 (name "emacs-writegood-mode")
5454 (version "2.0.2")
7bf837fd 5455 (home-page "https://github.com/bnbeckwith/writegood-mode")
a9fbe94e
LC
5456 (source (origin
5457 (method git-fetch)
5458 (uri (git-reference
5459 (url home-page)
5460 (commit (string-append "v" version))))
5461 (sha256
5462 (base32
5463 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
5464 (file-name (string-append name "-checkout"))))
5465 (build-system emacs-build-system)
5466 (synopsis "Polish up poor writing on the fly")
5467 (description
5468 "This minor mode tries to find and highlight problems with your writing
5469in English as you type. It primarily detects \"weasel words\" and abuse of
5470passive voice.")
5471 (license license:gpl3+)))
e08ca4b9 5472
5473(define-public emacs-neotree
5474 (package
5475 (name "emacs-neotree")
95058772 5476 (version "0.5.2")
e08ca4b9 5477 (home-page "https://github.com/jaypei/emacs-neotree")
5478 (source (origin
5479 (method url-fetch)
5480 (uri (string-append
5481 "https://github.com/jaypei/" name
95058772 5482 "/archive/" version ".tar.gz"))
e08ca4b9 5483 (sha256
5484 (base32
95058772 5485 "1zd6dchwyijnf7kgchfcp51gs938l204dk9z6mljrfqf2zy0gp12"))
f409d0aa 5486 (file-name (string-append name "-" version ".tar.gz"))))
e08ca4b9 5487 (build-system emacs-build-system)
5488 (synopsis "Folder tree view for Emacs")
5489 (description "This Emacs package provides a folder tree view.")
5490 (license license:gpl3+)))
59065bb3
NG
5491
5492(define-public emacs-org
5493 (package
5494 (name "emacs-org")
769e7155
CL
5495 ;; emacs-org-contrib inherits from this package. Please update its sha256
5496 ;; checksum as well.
a255142a 5497 (version "9.1.14")
59065bb3
NG
5498 (source (origin
5499 (method url-fetch)
2d19a7e4 5500 (uri (string-append "http://elpa.gnu.org/packages/org-"
59065bb3
NG
5501 version ".tar"))
5502 (sha256
5503 (base32
a255142a 5504 "17vd9hig26rqv90l6y92hc2i0x29g44lsdsp0xd4m53s8r3zdikz"))))
59065bb3 5505 (build-system emacs-build-system)
7cbe77d7 5506 (home-page "https://orgmode.org/")
59065bb3
NG
5507 (synopsis "Outline-based notes management and organizer")
5508 (description "Org is an Emacs mode for keeping notes, maintaining TODO
90735611
NG
5509lists, and project planning with a fast and effective lightweight markup
5510language. It also is an authoring system with unique support for literate
5511programming and reproducible research.")
59065bb3 5512 (license license:gpl3+)))
41392b9a 5513
8e2ae7ee
CB
5514(define-public emacs-org-contrib
5515 (package
5516 (inherit emacs-org)
5517 (name "emacs-org-contrib")
90735611 5518 (version "20180507")
8e2ae7ee
CB
5519 (source (origin
5520 (method url-fetch)
7cbe77d7 5521 (uri (string-append "https://orgmode.org/elpa/org-plus-contrib-"
5ecd2d28 5522 version ".tar"))
8e2ae7ee
CB
5523 (sha256
5524 (base32
90735611 5525 "190iwjpdjrhg7gl2d4bri2y0y679vlrwd841r6dvhza0yy338d2d"))))
8e2ae7ee
CB
5526 (arguments
5527 `(#:modules ((guix build emacs-build-system)
5528 (guix build utils)
5529 (guix build emacs-utils)
5530 (ice-9 ftw)
5531 (srfi srfi-1))
5532 #:phases
5533 (modify-phases %standard-phases
5534 (add-after 'install 'delete-org-files
5535 (lambda* (#:key inputs outputs #:allow-other-keys)
5536 (let* ((out (assoc-ref outputs "out"))
5537 (org (assoc-ref inputs "emacs-org"))
5538 (contrib-files
5539 (map basename (find-files out)))
5540 (org+contrib-files
5541 (map basename (find-files org)))
5542 (duplicates (lset-intersection
5543 string=? contrib-files org+contrib-files)))
5544 (with-directory-excursion
5545 (string-append
5ecd2d28 5546 out "/share/emacs/site-lisp/guix.d/org-contrib-" ,version)
8e2ae7ee
CB
5547 (for-each delete-file duplicates))
5548 #t))))))
5549 (propagated-inputs
0b8823d8
MC
5550 `(("emacs-org" ,emacs-org)
5551 ("emacs-scel" ,emacs-scel)))
35377cfa 5552 (synopsis "Contributed packages to Org mode")
8e2ae7ee
CB
5553 (description "Org is an Emacs mode for keeping notes, maintaining TODO
5554lists, and project planning with a fast and effective plain-text system.
5555
77e3ce3e 5556This package is equivalent to org-plus-contrib, but only includes additional
8e2ae7ee
CB
5557files that you would find in @file{contrib/} from the git repository.")))
5558
41392b9a 5559(define-public emacs-flx
5560 (package
5561 (name "emacs-flx")
5562 (version "0.6.1")
5563 (source
5564 (origin
5565 (method url-fetch)
5566 (uri (string-append "https://github.com/lewang/"
5567 "flx/archive/v" version ".tar.gz"))
5568 (sha256
5569 (base32
5570 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
5571 (file-name (string-append name "-" version ".tar.gz"))))
5572 (build-system emacs-build-system)
5573 (home-page "https://github.com/lewang/flx")
5574 (synopsis "Fuzzy matching for Emacs")
5575 (description
5576 "Flx provides fuzzy matching for emacs a la sublime text.
5577The sorting algorithm is a balance between word beginnings (abbreviation)
5578and contiguous matches (substring). The longer the substring match,
5579the higher it scores. This maps well to how we think about matching.
5580Flx has support for ido (interactively do things) through flx-ido.")
5581 (license license:gpl3+)))
9657aba4 5582
5583(define-public emacs-cyberpunk-theme
5584 (package
5585 (name "emacs-cyberpunk-theme")
88e6086e 5586 (version "1.19")
9657aba4 5587 (source
5588 (origin
5589 (method url-fetch)
5590 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
5591 "archive/" version ".tar.gz"))
5592 (sha256
5593 (base32
88e6086e 5594 "05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
9657aba4 5595 (file-name (string-append name "-" version ".tar.gz"))))
5596 (build-system emacs-build-system)
5597 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
5598 (synopsis "Cyberpunk theme for emacs built-in color theme support")
5599 (description
5600 "Cyberpunk color theme for the emacs 24+ built-in color theme support
5601known loosely as deftheme. Many mode-specific customizations are included.")
5602 (license license:gpl3+)))
840224aa 5603
8f493950 5604(define-public emacs-danneskjold-theme
5605 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
5606 (revision "1"))
5607 (package
5608 (name "emacs-danneskjold-theme")
5609 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5610 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
5611 (source
5612 (origin
5613 (method git-fetch)
5614 (uri (git-reference
5615 (url home-page)
5616 (commit commit)))
5617 (file-name (string-append name "-" version "-checkout"))
5618 (sha256
5619 (base32
5620 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
5621 (build-system emacs-build-system)
5622 (arguments
5623 `(#:phases
5624 (modify-phases %standard-phases
5625 (add-after 'unpack 'delete-screenshots
5626 (lambda _
5627 (delete-file-recursively "screenshots") #t)))))
5628 (synopsis "High-contrast Emacs theme")
5629 (description
5630 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
5631 (license license:gpl3+))))
5632
1ba67b62 5633(define-public emacs-dream-theme
5634 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
5635 (revision "1"))
5636 (package
5637 (name "emacs-dream-theme")
5638 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
5639 (source
5640 (origin
5641 (method git-fetch)
5642 (uri (git-reference
5643 (url "https://github.com/djcb/dream-theme")
5644 (commit commit)))
5645 (file-name (string-append name "-" version "-checkout"))
5646 (sha256
5647 (base32
5648 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
5649 (build-system emacs-build-system)
5650 (home-page "https://github.com/djcb/dream-theme")
5651 (synopsis "High-contrast Emacs theme")
5652 (description
5653 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
5654by zenburn, sinburn and similar themes, but slowly diverging from them.")
5655 (license license:gpl3+))))
5656
840224aa 5657(define-public emacs-auto-complete
5658 (package
5659 (name "emacs-auto-complete")
5660 (version "1.5.1")
5661 (source
5662 (origin
5663 (method url-fetch)
5664 (uri (string-append "https://github.com/auto-complete/"
5665 "auto-complete/archive/v" version ".tar.gz"))
5666 (sha256
5667 (base32
5668 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
5669 (file-name (string-append name "-" version ".tar.gz"))))
5670 (build-system emacs-build-system)
5671 (propagated-inputs
5672 `(("emacs-popup" ,emacs-popup)))
5673 (home-page "https://github.com/auto-complete/auto-complete")
5674 (synopsis "Intelligent auto-completion extension for Emacs")
5675 (description
5676 "Auto-Complete is an intelligent auto-completion extension for Emacs.
5677It extends the standard Emacs completion interface and provides an environment
5678that allows users to concentrate more on their own work. Its features are:
5679a visual interface, reduce overhead of completion by using statistic method,
5680extensibility.")
5681 (license license:gpl3+)))
154c71e0
AI
5682
5683(define-public m17n-db
5684 (package
5685 (name "m17n-db")
94282358 5686 (version "1.8.0")
154c71e0
AI
5687 (source
5688 (origin
5689 (method url-fetch)
5690 (uri (string-append "mirror://savannah/m17n/m17n-db-"
5691 version ".tar.gz"))
5692 (sha256
94282358
AI
5693 (base32
5694 "0vfw7z9i2s9np6nmx1d4dlsywm044rkaqarn7akffmb6bf1j6zv5"))))
154c71e0
AI
5695 (build-system gnu-build-system)
5696 (inputs
7c90d0f4 5697 `(("gettext" ,gettext-minimal)))
154c71e0
AI
5698 (arguments
5699 `(#:configure-flags
5700 (list (string-append "--with-charmaps="
5701 (assoc-ref %build-inputs "libc")
5702 "/share/i18n/charmaps"))))
5703 ;; With `guix lint' the home-page URI returns a small page saying
5704 ;; that your browser does not handle frames. This triggers the "URI
5705 ;; returns suspiciously small file" warning.
340978d7 5706 (home-page "https://www.nongnu.org/m17n/")
154c71e0
AI
5707 (synopsis "Multilingual text processing library (database)")
5708 (description "The m17n library realizes multilingualization of
5709many aspects of applications. The m17n library represents
5710multilingual text as an object named M-text. M-text is a string with
5711attributes called text properties, and designed to substitute for
5712string in C. Text properties carry any information required to input,
5713display and edit the text.
5714
5715This package contains the library database.")
5716 (license license:lgpl2.1+)))
a80b60f4
AI
5717
5718(define-public m17n-lib
5719 (package
5720 (name "m17n-lib")
53c64d7c 5721 (version "1.8.0")
a80b60f4
AI
5722 (source
5723 (origin
5724 (method url-fetch)
966a543b
LC
5725 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
5726 version ".tar.gz"))
a80b60f4 5727 (sha256
53c64d7c
AI
5728 (base32
5729 "0jp61y09xqj10mclpip48qlfhniw8gwy8b28cbzxy8hq8pkwmfkq"))))
a80b60f4
AI
5730 (build-system gnu-build-system)
5731 (inputs
5732 `(("fribidi" ,fribidi)
5733 ("gd" ,gd)
5734 ("libotf" ,libotf)
5735 ("libxft" ,libxft)
5736 ("libxml2" ,libxml2)
5737 ("m17n-db" ,m17n-db)))
5738 (arguments
5739 `(#:parallel-build? #f))
5740 ;; With `guix lint' the home-page URI returns a small page saying
5741 ;; that your browser does not handle frames. This triggers the "URI
5742 ;; returns suspiciously small file" warning.
340978d7 5743 (home-page "https://www.nongnu.org/m17n/")
a80b60f4
AI
5744 (synopsis "Multilingual text processing library (runtime)")
5745 (description "The m17n library realizes multilingualization of
5746many aspects of applications. The m17n library represents
5747multilingual text as an object named M-text. M-text is a string with
5748attributes called text properties, and designed to substitute for
5749string in C. Text properties carry any information required to input,
5750display and edit the text.
5751
5752This package contains the library runtime.")
5753 (license license:lgpl2.1+)))
71d3ee1c
AI
5754
5755(define-public emacs-nginx-mode
5756 (package
5757 (name "emacs-nginx-mode")
292d637b 5758 (version "1.1.9")
71d3ee1c
AI
5759 (source
5760 (origin
5761 (method url-fetch)
5762 (uri (string-append
5763 "https://github.com/ajc/nginx-mode/archive/v"
5764 version ".tar.gz"))
5765 (file-name (string-append name "-" version ".tar.gz"))
5766 (sha256
5767 (base32
292d637b 5768 "0bzyrj6zz1hm67bkhw23bam7qc869s3zg7m1rb1c3aa4n0aw90cq"))))
71d3ee1c
AI
5769 (build-system emacs-build-system)
5770 (home-page "https://github.com/ajc/nginx-mode")
5771 (synopsis "Emacs major mode for editing nginx config files")
5772 (description "This package provides an Emacs major mode for
5773editing nginx config files.")
5774 (license license:gpl2+)))
8f50634b
FB
5775
5776(define-public emacs-stream
5777 (package
5778 (name "emacs-stream")
5779 (version "2.2.0")
5780 (home-page "https://github.com/NicolasPetton/stream")
5781 (source
5782 (origin
5783 (method url-fetch)
5784 (file-name (string-append name "-" version ".tar.gz"))
5785 (uri (string-append home-page "/archive/"version ".tar.gz"))
5786 (sha256
5787 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
5788 (build-system emacs-build-system)
5789 (synopsis "Implementation of streams for Emacs")
5790 (description "This library provides an implementation of streams for Emacs.
5791Streams are implemented as delayed evaluation of cons cells.")
5792 (license license:gpl3+)))
0fc06f3e
FB
5793
5794(define-public emacs-el-search
5795 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
5796 (revision "1"))
5797 (package
5798 (name "emacs-el-search")
5799 ;; No ufficial release.
5800 (version (string-append "0.0-" revision "." (string-take commit 7)))
5801 (home-page "https://github.com/emacsmirror/el-search")
5802 (source
5803 (origin
5804 (method git-fetch)
5805 (file-name (string-append name "-" version ".tar.gz"))
5806 (uri (git-reference
5807 (commit commit)
5808 (url (string-append home-page ".git"))))
5809 (sha256
5810 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
5811 (build-system emacs-build-system)
5812 (inputs `(("emacs-stream" ,emacs-stream)))
5813 (synopsis "Expression based interactive search for emacs-lisp-mode")
5814 (description "This package provides expression based interactive search
5815procedures for emacs-lisp-mode.")
5816 (license license:gpl3+))))
1e523180
MO
5817
5818(define-public emacs-ht
5819 (package
5820 (name "emacs-ht")
5821 (version "2.1")
5822 (source
5823 (origin
5824 (method url-fetch)
5825 (uri (string-append
5826 "https://github.com/Wilfred/ht.el/archive/"
5827 version ".tar.gz"))
5828 (file-name (string-append name "-" version ".tar.gz"))
5829 (sha256
5830 (base32
5831 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
5832 (build-system emacs-build-system)
5833 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
5834 (home-page "https://github.com/Wilfred/ht.el")
5835 (synopsis "Hash table library for Emacs")
5836 (description
5837 "This package simplifies the use of hash tables in elisp. It also
5838provides functions to convert hash tables from and to alists and plists.")
5839 (license license:gpl3+)))
5840
521f5d96
MO
5841(define-public emacs-log4e
5842 (package
5843 (name "emacs-log4e")
5844 (version "0.3.0")
5845 (source
5846 (origin
5847 (method url-fetch)
5848 (uri (string-append
5849 "https://github.com/aki2o/log4e/archive/v"
5850 version ".tar.gz"))
5851 (file-name (string-append name "-" version ".tar.gz"))
5852 (sha256
5853 (base32
5854 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
5855 (build-system emacs-build-system)
5856 (arguments
5857 `(#:phases
5858 (modify-phases %standard-phases
5859 (add-after 'unpack 'remove-tests
5860 ;; Guile builder complains about null characters in some
5861 ;; strings of test files. Remove "test" directory (it is not
5862 ;; needed anyway).
5863 (lambda _
5864 (delete-file-recursively "test"))))))
5865 (home-page "https://github.com/aki2o/log4e")
5866 (synopsis "Logging framework for elisp")
5867 (description
5868 "This package provides a logging framework for elisp. It allows
5869you to deal with multiple log levels.")
5870 (license license:gpl3+)))
ba117841
MO
5871
5872(define-public emacs-gntp
5873 (package
5874 (name "emacs-gntp")
5875 (version "0.1")
5876 (source
5877 (origin
5878 (method url-fetch)
5879 (uri (string-append
5880 "https://github.com/tekai/gntp.el/archive/v"
5881 version ".tar.gz"))
5882 (file-name (string-append name "-" version ".tar.gz"))
5883 (sha256
5884 (base32
5885 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
5886 (build-system emacs-build-system)
5887 (home-page "https://github.com/tekai/gntp.el")
5888 (synopsis "Growl Notification Protocol for Emacs")
5889 (description
5890 "This package implements the Growl Notification Protocol GNTP
5891described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
5892It is incomplete as it only lets you send but not receive
5893notifications.")
5894 (license license:bsd-3)))
2c5e31fa
MO
5895
5896(define-public emacs-alert
5897 (package
5898 (name "emacs-alert")
5899 (version "1.2")
5900 (source
5901 (origin
5902 (method url-fetch)
5903 (uri (string-append
5904 "https://github.com/jwiegley/alert/archive/v"
5905 version ".tar.gz"))
5906 (file-name (string-append name "-" version ".tar.gz"))
5907 (sha256
5908 (base32
5909 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
5910 (build-system emacs-build-system)
5911 (propagated-inputs
5912 `(("emacs-gntp" ,emacs-gntp)
5913 ("emacs-log4e" ,emacs-log4e)))
5914 (home-page "https://github.com/jwiegley/alert")
5915 (synopsis "Growl-style notification system for Emacs")
5916 (description
5917 "Alert is a Growl-workalike for Emacs which uses a common notification
5918interface and multiple, selectable \"styles\", whose use is fully
5919customizable by the user.")
5920 (license license:gpl2+)))
c695ed3c
MO
5921
5922(define-public emacs-mu4e-alert
5923 (package
5924 (name "emacs-mu4e-alert")
dd69ff6d 5925 (version "1.0")
c695ed3c
MO
5926 (source
5927 (origin
5928 (method url-fetch)
5929 (uri (string-append
5930 "https://github.com/iqbalansari/mu4e-alert/archive/v"
5931 version ".tar.gz"))
5932 (file-name (string-append name "-" version ".tar.gz"))
5933 (sha256
5934 (base32
dd69ff6d 5935 "07qc834qnxn8xi4bw5nawj8g91bmkzw0r0vahkgysp7r9xrf57gj"))))
c695ed3c
MO
5936 (build-system emacs-build-system)
5937 (propagated-inputs
5938 `(("emacs-alert" ,emacs-alert)
5939 ("emacs-s" ,emacs-s)
b6efe0e8
MC
5940 ("emacs-ht" ,emacs-ht)
5941 ("mu" ,mu)))
c695ed3c
MO
5942 (home-page "https://github.com/iqbalansari/mu4e-alert")
5943 (synopsis "Desktop notification for mu4e")
5944 (description
5945 "This package provides desktop notifications for mu4e.
5946Additionally it can display the number of unread emails in the
5947mode-line.")
5948 (license license:gpl3+)))
e967dd9c 5949
5950(define-public emacs-pretty-mode
5951 (package
5952 (name "emacs-pretty-mode")
5953 (version "2.0.3")
5954 (source
5955 (origin
5956 (method url-fetch)
5957 (uri (string-append "https://github.com/akatov/pretty-mode/"
5958 "archive/" version ".tar.gz"))
5959 (file-name (string-append name "-" version ".tar.gz"))
5960 (sha256
5961 (base32
5962 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
5963 (build-system emacs-build-system)
5964 (home-page "https://github.com/akatov/pretty-mode")
5965 (synopsis "Redisplay parts of the buffer as Unicode symbols")
5966 (description
5967 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
5968 (license license:gpl3+)))
c1029f86
RW
5969
5970(define-public emacs-yasnippet
5971 (package
5972 (name "emacs-yasnippet")
91c5e6a6 5973 (version "0.13.0")
c1029f86
RW
5974 (source (origin
5975 (method url-fetch)
5976 (uri (string-append "https://github.com/joaotavora/yasnippet/"
5977 "archive/" version ".tar.gz"))
5978 (file-name (string-append name "-" version ".tar.gz"))
5979 (sha256
5980 (base32
91c5e6a6 5981 "12ls2x17agzbrj1xynjbmfa11igqxia4hj4fv6fpr66yci2r1plc"))
1f0d4705
KM
5982 (modules '((guix build utils)))
5983 (snippet
5984 '(begin
5985 ;; YASnippet expects a "snippets" subdirectory in the same
5986 ;; directory as yasnippet.el, but we don't install it
5987 ;; because it's a git submodule pointing to an external
5988 ;; repository. Adjust `yas-snippet-dirs' to prevent
5989 ;; warnings about a missing directory.
5990 (substitute* "yasnippet.el"
5991 (("^ +'yas-installed-snippets-dir\\)\\)\n")
6cbee49d
MW
5992 "))\n"))
5993 #t))))
c1029f86 5994 (build-system emacs-build-system)
7bf837fd 5995 (home-page "https://github.com/joaotavora/yasnippet")
c1029f86
RW
5996 (synopsis "Yet another snippet extension for Emacs")
5997 (description
5998 "YASnippet is a template system for Emacs. It allows you to type an
5999abbreviation and automatically expand it into function templates.")
6000 (license license:gpl3+)))
55fa5349 6001
4bfdf034
KM
6002(define-public emacs-yasnippet-snippets
6003 (let ((commit "885050d34737e2fb36a3e7759d60c09347bd4ce0")
6004 (revision "1"))
6005 (package
6006 (name "emacs-yasnippet-snippets")
6007 (version (string-append "1-" revision "." (string-take commit 8)))
6008 (source
6009 (origin
6010 (method git-fetch)
6011 (uri (git-reference
6012 (url "https://github.com/AndreaCrotti/yasnippet-snippets")
6013 (commit commit)))
6014 (file-name (string-append name "-" version "-checkout"))
6015 (sha256
6016 (base32
6017 "1m935zgglw0iakzrixld5rcjz3wnj84f8wy2mvc3pggjri9l0qr9"))))
6018 (build-system trivial-build-system)
6019 (arguments
6020 `(#:modules ((ice-9 ftw)
6021 (ice-9 regex)
6022 (guix build utils))
6023 #:builder
6024 (begin
6025 (use-modules (ice-9 ftw)
6026 (ice-9 regex)
6027 (guix build utils))
6028 (with-directory-excursion (assoc-ref %build-inputs "source")
6029 (for-each (lambda (dir)
6030 (copy-recursively
6031 dir
6032 (string-append %output
6033 "/share/emacs/yasnippet-snippets/"
6034 dir)))
6035 (scandir "." (lambda (fname)
6036 (and (string-match "-mode$" fname)
e3cfef22
MW
6037 (directory-exists? fname))))))
6038 #t)))
4bfdf034
KM
6039 (home-page "https://github.com/AndreaCrotti/yasnippet-snippets")
6040 (synopsis "Collection of YASnippet snippets for many languages")
6041 (description
6042 "Provides Andrea Crotti's collection of YASnippet snippets. After installation,
6043the snippets will be in \"~/.guix-profile/share/emacs/yasnippet-snippets/\".
6044To make YASnippet aware of these snippets, add the above directory to
6045@code{yas-snippet-dirs}.")
6046 (license license:expat))))
6047
2ede8c61
OP
6048(define-public emacs-helm-c-yasnippet
6049 (let ((commit "65ca732b510bfc31636708aebcfe4d2d845b59b0")
6050 (revision "1"))
6051 (package
6052 (name "emacs-helm-c-yasnippet")
6053 (version (string-append "0.6.7" "-" revision "."
6054 (string-take commit 7)))
6055 (source (origin
6056 (method git-fetch)
6057 (uri (git-reference
6058 (url "https://github.com/emacs-jp/helm-c-yasnippet")
6059 (commit commit)))
6060 (file-name (string-append name "-" version "-checkout"))
6061 (sha256
6062 (base32
6063 "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"))))
6064 (build-system emacs-build-system)
6065 (propagated-inputs
6066 `(("emacs-helm" ,emacs-helm)
6067 ("emacs-yasnippet" ,emacs-yasnippet)))
6068 (home-page "https://github.com/emacs-jp/helm-c-yasnippet")
6069 (synopsis "Helm integration for Yasnippet")
6070 (description "This Emacs library provides Helm interface for
6071Yasnippet.")
6072 (license license:gpl2+))))
6073
b889df27 6074(define-public emacs-helm-system-packages
c1220498
PN
6075 (package
6076 (name "emacs-helm-system-packages")
475e1657 6077 (version "1.10.1")
c1220498
PN
6078 (source (origin
6079 (method git-fetch)
6080 (uri (git-reference
6081 (url "https://github.com/emacs-helm/helm-system-packages")
6082 (commit (string-append "v" version))))
6083 (file-name (string-append name "-" version "-checkout"))
6084 (sha256
6085 (base32
475e1657 6086 "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f"))))
c1220498 6087 (build-system emacs-build-system)
05f8943f
PN
6088 (inputs
6089 `(("recutils" ,recutils)))
c1220498
PN
6090 (propagated-inputs
6091 `(("emacs-helm" ,emacs-helm)))
05f8943f
PN
6092 (arguments
6093 `(#:phases
6094 (modify-phases %standard-phases
6095 (add-after 'unpack 'configure
6096 (lambda* (#:key inputs outputs #:allow-other-keys)
6097 (let ((recutils (assoc-ref inputs "recutils")))
6098 ;; Specify the absolute file names of the various
6099 ;; programs so that everything works out-of-the-box.
6100 (substitute* "helm-system-packages-guix.el"
6101 (("recsel") (string-append recutils "/bin/recsel")))))))))
c1220498
PN
6102 (home-page "https://github.com/emacs-helm/helm-system-packages")
6103 (synopsis "Helm System Packages is an interface to your package manager")
6104 (description "List all available packages in Helm (with installed
b889df27
PN
6105packages displayed in their own respective face). Fuzzy-search, mark and
6106execute the desired action over any selections of packages: Install,
6107uninstall, display packages details (in Org Mode) or insert details at point,
6108find files owned by packages... And much more, including performing all the
6109above over the network.")
c1220498 6110 (license license:gpl3+)))
b889df27 6111
55fa5349
AI
6112(define-public emacs-memoize
6113 (package
1848cdfb
AI
6114 (name "emacs-memoize")
6115 (version "1.1")
6116 (source
6117 (origin
6118 (method url-fetch)
6119 (uri (string-append
6120 "https://github.com/skeeto/emacs-memoize/archive/"
6121 version ".tar.gz"))
6122 (file-name (string-append name "-" version ".tar.gz"))
6123 (sha256
6124 (base32
6125 "05ijgwi4ymxx31vpjm2pn356j85cykknajn14lrzz8pn5sh0vrg4"))))
6126 (build-system emacs-build-system)
6127 (arguments
6128 `(#:tests? #t
6129 #:test-command '("emacs" "--batch"
6130 "-l" "memoize-test.el"
6131 "-f" "ert-run-tests-batch-and-exit")))
6132 (home-page "https://github.com/skeeto/emacs-memoize")
6133 (synopsis "Emacs lisp memoization library")
6134 (description "@code{emacs-memoize} is an Emacs library for
55fa5349 6135memoizing functions.")
1848cdfb 6136 (license license:unlicense)))
6b7e3362 6137
c86c1991
AI
6138(define-public emacs-linum-relative
6139 (package
6140 (name "emacs-linum-relative")
6141 (version "0.5")
6142 (source
6143 (origin
6144 (method url-fetch)
6145 (uri (string-append
6146 "https://github.com/coldnew/linum-relative/archive/"
6147 version ".tar.gz"))
6148 (file-name (string-append name "-" version ".tar.gz"))
6149 (sha256
6150 (base32
6151 "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
6152 (build-system emacs-build-system)
6153 (home-page "https://github.com/coldnew/linum-relative")
6154 (synopsis "Relative line numbering for Emacs")
6155 (description "@code{emacs-linum-relative} displays the relative line
6156number on the left margin in Emacs.")
6157 (license license:gpl2+)))
6158
6b7e3362
VD
6159(define-public emacs-idle-highlight
6160 (package
6161 (name "emacs-idle-highlight")
6162 (version "1.1.3")
6163 (source
6164 (origin
6165 (method url-fetch)
6166 (uri (string-append
6167 "https://github.com/nonsequitur/idle-highlight-mode/archive/"
6168 version ".tar.gz"))
6169 (file-name (string-append name "-" version ".tar.gz"))
6170 (sha256
6171 (base32
6172 "0kdv10hrgqpskjh0zvpnzwlkn5bccnqxas62gkws6njln57bf8nl"))))
6173 (build-system emacs-build-system)
6174 (home-page "https://www.emacswiki.org/emacs/IdleHighlight")
d1e4ad1b 6175 (synopsis "Highlights all occurrences of the word the point is on")
6b7e3362
VD
6176 (description
6177 "This Emacs package provides @code{idle-highlight-mode} that sets
d1e4ad1b 6178 an idle timer to highlight all occurrences in the buffer of the word under
6b7e3362
VD
6179 the point.")
6180 (license license:gpl3+)))
6a91c5f2
VD
6181
6182(define-public emacs-ox-twbs
6183 (package
6184 (name "emacs-ox-twbs")
6185 (version "1.1.1")
6186 (source
6187 (origin
6188 (method url-fetch)
6189 (uri (string-append
6190 "https://github.com/marsmining/ox-twbs/archive/v"
6191 version ".tar.gz"))
6192 (file-name (string-append name "-" version ".tar.gz"))
6193 (sha256
6194 (base32
6195 "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs"))))
6196 (build-system emacs-build-system)
6197 (home-page "https://github.com/marsmining/ox-twbs")
6198 (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap")
6199 (description
6200 "This Emacs package outputs your org-mode docs with a simple, clean and
6201modern look. It implements a new HTML back-end for exporting org-mode docs as
6202HTML compatible with Twitter Bootstrap. By default, HTML is exported with
6203jQuery and Bootstrap resources included via osscdn.")
6204 (license license:gpl3+)))
239cf024
VD
6205
6206(define-public emacs-highlight-sexp
6207 (package
6208 (name "emacs-highlight-sexp")
6209 (version "1.0")
6210 (source
6211 (origin
6212 (method url-fetch)
6213 (uri (string-append
6214 "https://github.com/daimrod/highlight-sexp/archive/v"
6215 version ".tar.gz"))
6216 (file-name (string-append name "-" version ".tar.gz"))
6217 (sha256
6218 (base32
6219 "0jwx87qkln1rg9wmv4qkgkml935fh2pkgrg5x4ca6n5dgb4q6rj1"))))
6220 (build-system emacs-build-system)
6221 (home-page "https://github.com/daimrod/highlight-sexp")
6222 (synopsis "Minor mode that highlights the s-exp at the current position")
6223 (description
6224 "This Emacs package highlights the s-exp at the current position.")
6225 (license license:gpl3+)))
350cfccb 6226
7a452689
OP
6227(define-public emacs-highlight-stages
6228 (let ((commit "29cbc5b78261916da042ddb107420083da49b271")
6229 (revision "1"))
6230 (package
6231 (name "emacs-highlight-stages")
6232 (version (string-append "1.1.0" "-" revision "." (string-take commit 7)))
6233 (source
6234 (origin
6235 (method git-fetch)
6236 (uri (git-reference
6237 (url "https://github.com/zk-phi/highlight-stages.git")
6238 (commit commit)))
6239 (file-name (string-append name "-" version "-checkout"))
6240 (sha256
6241 (base32
6242 "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0"))
6243 (patches
6244 (search-patches "emacs-highlight-stages-add-gexp.patch"))))
6245 (build-system emacs-build-system)
6246 (home-page "https://github.com/wigust/highlight-stages")
6247 (synopsis "Minor mode that highlights (quasi-quoted) expressions")
6248 (description "@code{highlight-stages} provides an Emacs minor mode that
6249highlights quasi-quoted expressions.")
6250 (license license:gpl3+))))
6251
acf7d4a7
KK
6252(define-public emacspeak
6253 (package
6254 (name "emacspeak")
935cb931 6255 (version "48.0")
acf7d4a7
KK
6256 (source
6257 (origin
6258 (method url-fetch)
6259 (uri (string-append
6260 "https://github.com/tvraman/emacspeak/releases/download/"
6261 version "/emacspeak-" version ".tar.bz2"))
6262 (sha256
6263 (base32
935cb931 6264 "07imi3hji06b3r7v7v59978q76s8a7ynmxwfc9j03pgnv965lpjy"))))
acf7d4a7
KK
6265 (build-system gnu-build-system)
6266 (arguments
6267 '(#:make-flags (list (string-append "prefix="
6268 (assoc-ref %outputs "out")))
6269 #:phases
6270 (modify-phases %standard-phases
6271 (replace 'configure
935cb931
KK
6272 (lambda* (#:key outputs #:allow-other-keys)
6273 (let* ((out (assoc-ref outputs "out"))
6274 (lisp (string-append out
6275 "/share/emacs/site-lisp/emacspeak")))
6276 (setenv "SHELL" (which "sh"))
6277 ;; Configure Emacspeak according to etc/install.org.
6278 (invoke "make" "config"))))
231e48d6
KK
6279 (add-after 'build 'build-espeak
6280 (lambda _
935cb931 6281 (invoke "make" "espeak")))
231e48d6 6282 (replace 'install
935cb931 6283 (lambda* (#:key inputs outputs #:allow-other-keys)
231e48d6
KK
6284 (let* ((out (assoc-ref outputs "out"))
6285 (bin (string-append out "/bin"))
6286 (lisp (string-append out "/share/emacs/site-lisp/emacspeak"))
935cb931
KK
6287 (info (string-append out "/share/info"))
6288 (emacs (string-append (assoc-ref inputs "emacs")
6289 "/bin/emacs")))
231e48d6
KK
6290 ;; According to etc/install.org, the Emacspeak directory should
6291 ;; be copied to its installation destination.
6292 (for-each
6293 (lambda (file)
6294 (copy-recursively file (string-append lisp "/" file)))
935cb931
KK
6295 '("etc" "info" "js" "lisp" "media" "scapes" "servers" "sounds"
6296 "stumpwm" "xsl"))
231e48d6
KK
6297 ;; Make sure emacspeak is loaded from the correct directory.
6298 (substitute* "etc/emacspeak.sh"
935cb931
KK
6299 (("exec FLAVOR.*")
6300 (string-append "exec " emacs " -l " lisp
231e48d6
KK
6301 "/lisp/emacspeak-setup.el $CL_ALL")))
6302 ;; Install the convenient startup script.
6303 (mkdir-p bin)
6304 (copy-file "etc/emacspeak.sh" (string-append bin "/emacspeak")))
6305 #t))
6306 (add-after 'install 'wrap-program
acf7d4a7
KK
6307 (lambda* (#:key inputs outputs #:allow-other-keys)
6308 (let* ((out (assoc-ref outputs "out"))
6309 (emacspeak (string-append out "/bin/emacspeak"))
6310 (espeak (string-append (assoc-ref inputs "espeak")
6311 "/bin/espeak")))
6312 ;; The environment variable DTK_PROGRAM tells emacspeak what
6313 ;; program to use for speech.
6314 (wrap-program emacspeak
6315 `("DTK_PROGRAM" ":" prefix (,espeak)))
6316 #t))))
6317 #:tests? #f)) ; no check target
6318 (inputs
935cb931
KK
6319 `(("emacs" ,emacs)
6320 ("espeak" ,espeak)
6321 ("perl" ,perl)
acf7d4a7
KK
6322 ("tcl" ,tcl)
6323 ("tclx" ,tclx)))
acf7d4a7
KK
6324 (home-page "http://emacspeak.sourceforge.net")
6325 (synopsis "Audio desktop interface for Emacs")
6326 (description
6327 "Emacspeak is a speech interface that allows visually impaired users to
6328interact independently and efficiently with the computer. Audio formatting
6329--a technique pioneered by AsTeR-- and full support for W3C's Aural CSS (ACSS)
6330allows Emacspeak to produce rich aural presentations of electronic information.
6331By seamlessly blending all aspects of the Internet such as Web-surfing and
6332messaging, Emacspeak speech-enables local and remote information via a
6333consistent and well-integrated user interface.")
6334 (license license:gpl2+)))
6335
350cfccb
AP
6336(define-public emacs-adaptive-wrap
6337 (package
6338 (name "emacs-adaptive-wrap")
13869ff5 6339 (version "0.5.1")
350cfccb
AP
6340 (source (origin
6341 (method url-fetch)
6342 (uri (string-append
6343 "http://elpa.gnu.org/packages/adaptive-wrap-"
6344 version ".el"))
6345 (sha256
6346 (base32
13869ff5 6347 "0qi7gjprcpywk2daivnlavwsx53hl5wcqvpxbwinvigg42vxh3ll"))))
350cfccb
AP
6348 (build-system emacs-build-system)
6349 (home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
6350 (synopsis "Smart line-wrapping with wrap-prefix")
6351 (description
6352 "This Emacs package provides the @code{adaptive-wrap-prefix-mode}
6353minor mode which sets the wrap-prefix property on the fly so that
6354single-long-line paragraphs get word-wrapped in a way similar to what
6355you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
6356actually changing the buffer's text.")
6357 (license license:gpl3+)))
0201c5d4 6358
42e891c2
MC
6359(define-public emacs-diff-hl
6360 (package
6361 (name "emacs-diff-hl")
6362 (version "1.8.4")
6363 (source
6364 (origin
6365 (method url-fetch)
6366 (uri (string-append "http://elpa.gnu.org/packages/diff-hl-"
6367 version ".tar"))
6368 (sha256
6369 (base32
6370 "0axhidc3cym7a2x4rpxf4745qss9s9ajyg4s9h5b4zn7v7fyp71n"))))
6371 (build-system emacs-build-system)
6372 (home-page "https://github.com/dgutov/diff-hl")
6373 (synopsis
6374 "Highlight uncommitted changes using VC")
6375 (description
6376 "@code{diff-hl-mode} highlights uncommitted changes on the side of the
6377window (using the fringe, by default), allows you to jump between
6378the hunks and revert them selectively.")
6379 (license license:gpl3+)))
6380
0201c5d4
AI
6381(define-public emacs-diminish
6382 (package
6383 (name "emacs-diminish")
6384 (version "0.45")
6385 (source
6386 (origin
6387 (method url-fetch)
6388 (uri (string-append
6389 "https://github.com/myrjola/diminish.el/archive/v"
6390 version ".tar.gz"))
6391 (file-name (string-append name "-" version ".tar.gz"))
6392 (sha256
6393 (base32
6394 "0i3629sv5cfrrb00hcnmaqzgs8mk36yasc1ax3ry1ga09nr6rkj9"))))
6395 (build-system emacs-build-system)
6396 (home-page "https://github.com/myrjola/diminish.el")
6397 (synopsis "Diminish minor modes with no modeline display")
6398 (description "@code{emacs-diminish} implements hiding or
6399abbreviation of the mode line displays (lighters) of minor modes.")
6400 (license license:gpl2+)))
b247fb86
AI
6401
6402(define-public emacs-use-package
abf3a331
PM
6403 (let ((commit "da8c9e2840343906e732f9699e43d35a1f06481d")
6404 (revision "1"))
6405 (package
6406 (name "emacs-use-package")
6407 (version (git-version "2.3" revision commit))
6408 (source (origin
6409 (method git-fetch)
6410 (uri (git-reference
6411 (url "https://github.com/jwiegley/use-package")
6412 (commit commit)))
6413 (file-name (git-file-name name version))
6414 (sha256
6415 (base32
6416 "0jz38pbq1p9h85i6qcsh3sfzkd103y6mw3rg5zd14dxigp8ir3xz"))))
6417 (build-system emacs-build-system)
6418 (propagated-inputs
6419 `(("emacs-diminish" ,emacs-diminish)))
6420 (arguments
6421 `(#:tests? #t
6422 #:test-command '("emacs" "--batch"
6423 "-l" "use-package-tests.el"
6424 "-f" "ert-run-tests-batch-and-exit")))
6425 (home-page "https://github.com/jwiegley/use-package")
6426 (synopsis "Declaration for simplifying your .emacs")
6427 (description "The use-package macro allows you to isolate package
b247fb86
AI
6428configuration in your @file{.emacs} file in a way that is both
6429performance-oriented and tidy.")
abf3a331 6430 (license license:gpl2+))))
e2345554 6431
8ad5a20f
MO
6432(define-public emacs-strace-mode
6433 (let* ((commit "6a69b4b06db6797af56f33eda5cb28af94e59f11")
6434 (revision "1"))
6435 (package
6436 (name "emacs-strace-mode")
6437 (version (string-append "0.0.2-" revision "." (string-take commit 7)))
6438 (source (origin
6439 (method git-fetch)
6440 (uri (git-reference
6441 (url "https://github.com/pkmoore/strace-mode")
6442 (commit commit)))
6443 (file-name (string-append name "-" version "-checkout"))
6444 (sha256
6445 (base32
6446 "1lbk2kzdznf2bkfazizfbimaxxzfzv00lrz1ran9dc2zqbc0bj9f"))))
6447 (build-system emacs-build-system)
6448 (home-page "https://github.com/pkmoore/strace-mode")
6449 (synopsis "Emacs major mode to highlight strace outputs")
6450 (description "@code{emacs-strace-mode} provides an Emacs major mode
6451 highlighting strace outputs.")
6452 (license license:gpl3+))))
6453
e2345554
CM
6454(define-public emacs-default-encrypt
6455 (package
6456 (name "emacs-default-encrypt")
6457 (version "4.3")
6458 (source
6459 (origin
6460 (method url-fetch)
6461 (uri (string-append
a97f6da4
CM
6462 "https://www.informationelle-selbstbestimmung-im-internet.de"
6463 "/emacs/jl-encrypt" version "/jl-encrypt.el"))
e2345554
CM
6464 (file-name (string-append "jl-encrypt-" version ".el"))
6465 (sha256
6466 (base32
6467 "16i3rlfp3jxlqvndn8idylhmczync3gwmy8a019v29vyr48rnnr0"))))
6468 (build-system emacs-build-system)
6469 (home-page "https://www.informationelle-selbstbestimmung-im-internet.de/Emacs.html")
6470 (synopsis "Automatically encrypt or sign Gnus messages in Emacs")
6471 (description
6472 "DefaultEncrypt is designed to be used with Gnus in Emacs. It
6473automatically encrypts messages that you send (e.g., email) when public keys
6474for all recipients are available, and it protects you from accidentally
6475sending un-encrypted messages. It can also be configured to automatically
6476sign messages that you send. For details and instructions on how to use
6477DefaultEncrypt, please refer to the home page or read the comments in the
6478source file, @file{jl-encrypt.el}.")
6479 (license license:gpl3+)))
25e810b8
AI
6480
6481(define-public emacs-htmlize
6482 (package
6483 (name "emacs-htmlize")
80683c1e 6484 (version "1.53")
25e810b8
AI
6485 (source
6486 (origin
6487 (method url-fetch)
6488 (uri (string-append
6489 "https://github.com/hniksic/emacs-htmlize/archive/release/"
6490 version ".tar.gz"))
6491 (file-name (string-append name "-" version ".tar.gz"))
6492 (sha256
6493 (base32
80683c1e 6494 "1lzaf9m1qr9dhw4nn53g6wszk2vqw95gpsbrc3y85bams4cn24ga"))))
25e810b8
AI
6495 (build-system emacs-build-system)
6496 (home-page "https://github.com/hniksic/emacs-htmlize")
6497 (synopsis "Convert buffer text and decorations to HTML")
6498 (description "@code{emacs-htmlize} converts the buffer text and
6499the associated decorations to HTML. Output to CSS, inline CSS and
6500fonts is supported.")
6501 (license license:gpl2+)))
0ee59b81
AI
6502
6503(define-public emacs-xmlgen
6504 (package
6505 (name "emacs-xmlgen")
6506 (version "0.5")
6507 (source
6508 (origin
6509 (method url-fetch)
6510 (uri (string-append
6511 "https://github.com/philjackson/xmlgen/archive/"
6512 version ".tar.gz"))
6513 (file-name (string-append name "-" version ".tar.gz"))
6514 (sha256
6515 (base32
6516 "0zay490vjby3f7455r0vydmjg7q1gwc78hilpfb0rg4gwz224z8r"))))
6517 (build-system emacs-build-system)
6518 (arguments
d1d41db6
MC
6519 `(#:tests? #t
6520 #:test-command '("emacs" "--batch"
6521 "-l" "xmlgen-test.el"
6522 "-f" "ert-run-tests-batch-and-exit")))
0ee59b81
AI
6523 (home-page "https://github.com/philjackson/xmlgen")
6524 (synopsis "S-expression to XML domain specific language (DSL) in
6525Emacs Lisp")
6526 (description "@code{emacs-xmlgen} provides S-expression to XML
6527conversion for Emacs Lisp.")
6528 (license license:gpl2+)))
8d50a990
AI
6529
6530(define-public emacs-cdlatex
6531 (package
6532 (name "emacs-cdlatex")
6533 (version "4.7")
6534 (source
6535 (origin
6536 (method url-fetch)
6537 (uri (string-append
6538 "https://github.com/cdominik/cdlatex/archive/"
6539 version ".tar.gz"))
6540 (file-name (string-append name "-" version ".tar.gz"))
6541 (sha256
6542 (base32
6543 "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp"))))
6544 (build-system emacs-build-system)
00bdf501
MC
6545 (propagated-inputs
6546 `(("emacs-auctex" ,emacs-auctex)))
8d50a990
AI
6547 (home-page "https://github.com/cdominik/cdlatex")
6548 (synopsis "Fast Emacs input methods for LaTeX environments and
6549math")
6550 (description "CDLaTeX is an Emacs minor mode supporting fast
6551insertion of environment templates and math in LaTeX. Similar
6552commands are also offered as part of the AUCTeX package, but it is not
6553the same - CDLaTeX focuses on speediness for inserting LaTeX
6554constructs.")
6555 (license license:gpl3+)))
deddeb44 6556
65fff6a3
FS
6557(define-public emacs-cnfonts
6558 (package
6559 (name "emacs-cnfonts")
6560 (version "0.9.1")
6561 (source (origin
6562 (method url-fetch)
6563 (uri (string-append
6564 "https://github.com/tumashu/cnfonts/archive/v"
6565 version ".tar.gz"))
6566 (file-name (string-append name "-" version ".tar.gz"))
6567 (sha256
6568 (base32
6569 "1l6cgcvc6md1zq97ccczankpyi0k4vjx6apflny6kjq3p33lyhf4"))))
6570 (build-system emacs-build-system)
6571 (home-page "https://github.com/tumashu/cnfonts")
6572 (synopsis "Emacs Chinese fonts setup tool")
6573 (description "cnfonts is a Chinese fonts setup tool, allowing for easy
6574configuration of Chinese fonts.")
6575 (license license:gpl2+)))
6576
57fe82c5
RJ
6577(define-public emacs-php-mode
6578 (package
6579 (name "emacs-php-mode")
6580 (version "20171225.342")
6581 (source (origin
6582 (method url-fetch)
6583 (uri (string-append
6584 "https://melpa.org/packages/php-mode-"
6585 version ".tar"))
6586 (sha256
6587 (base32
6588 "1zz682f34v4wsm2dyj1gnrnvsrqdq1cy7j8p6cvc398w2fziyg3q"))))
6589 (build-system emacs-build-system)
6590 (home-page "https://github.com/ejmr/php-mode")
6591 (synopsis "Major mode for editing PHP code")
6592 (description "@code{php-mode} is a major mode for editing PHP source
6593code. It's an extension of C mode; thus it inherits all C mode's navigation
6594functionality. But it colors according to the PHP grammar and indents
6595according to the PEAR coding guidelines. It also includes a couple handy
6596IDE-type features such as documentation search and a source and class
6597browser.")
6598 (license license:gpl3+)))
6599
9f3b27a2
FS
6600(define-public emacs-pos-tip
6601 (package
6602 (name "emacs-pos-tip")
6603 (version "0.4.6")
6604 (source (origin
6605 (method url-fetch)
6606 (uri (string-append
6607 "https://github.com/pitkali/pos-tip/archive/"
6608 version ".tar.gz"))
6609 (file-name (string-append name "-" version ".tar.gz"))
6610 (sha256
6611 (base32
6612 "12jqfy26vjk7lq0aa8yn8zqj8c85fkvx7y9prj0pcn4wqiz2ad2r"))))
6613 (build-system emacs-build-system)
6614 ;; The following functions and variables needed by emacs-pos-tip are
6615 ;; not included in emacs-minimal:
6616 ;; x-display-pixel-width, x-display-pixel-height, x-show-tip
6617 (arguments `(#:emacs ,emacs))
6618 (home-page "https://github.com/pitkali/pos-tip")
6619 (synopsis "Show tooltip at point")
6620 (description "The standard library tooltip.el provides a function for
6621displaying a tooltip at the mouse position. However, locating a tooltip at an
6622arbitrary buffer position in a window is not easy. Pos-tip provides such a
6623function to be used by other frontend programs.")
6624 (license license:gpl2+)))
6625
0fa8a932
FS
6626(define-public emacs-pyim-basedict
6627 (package
6628 (name "emacs-pyim-basedict")
6629 (version "0.3.1")
6630 (source (origin
6631 (method url-fetch)
6632 (uri (string-append
6633 "https://github.com/tumashu/pyim-basedict/archive/v"
6634 version ".tar.gz"))
6635 (file-name (string-append name "-" version ".tar.gz"))
6636 (sha256
6637 (base32
6638 "0nfgxviavkgrpyfsw60xsws4fk51fcmgl8fp6zf4ibqjjbp53n3n"))))
6639 (build-system emacs-build-system)
6640 (home-page "https://github.com/tumashu/pyim-basedict")
6641 (synopsis "Input method dictionary of pyim")
6642 (description "Pyim-basedict is the default pinyin input method dictionary,
6643containing words from the rime project.")
6644 (license license:gpl2+)))
6645
7493306f
FS
6646(define-public emacs-pyim
6647 (package
6648 (name "emacs-pyim")
6649 (version "1.6.4")
6650 (source (origin
6651 (method url-fetch)
6652 (uri (string-append
6653 "https://github.com/tumashu/pyim/archive/v"
6654 version ".tar.gz"))
6655 (file-name (string-append name "-" version ".tar.gz"))
6656 (sha256
6657 (base32
6658 "0hfg8q9hcjifvnlghw2g94dfxfirms2psq2ghqb28fhkf0lks13r"))))
6659 (build-system emacs-build-system)
6660 (propagated-inputs
6661 `(("emacs-async" ,emacs-async)
6fe2d37c 6662 ("emacs-pyim-basedict" ,emacs-pyim-basedict)
7493306f
FS
6663 ("emacs-popup" ,emacs-popup)
6664 ("emacs-pos-tip" ,emacs-pos-tip)))
6665 (home-page "https://github.com/tumashu/pyim")
6666 (synopsis "Chinese input method")
6667 (description "Chinese input method which supports quanpin, shuangpin, wubi
6668and cangjie.")
6669 (license license:gpl2+)))
6670
2f1524d0
FS
6671(define-public emacs-el2org
6672 (package
6673 (name "emacs-el2org")
6674 (version "0.6.0")
6675 (source (origin
6676 (method url-fetch)
6677 (uri (string-append
6678 "https://github.com/tumashu/el2org/archive/v"
6679 version ".tar.gz"))
6680 (file-name (string-append name "-" version ".tar.gz"))
6681 (sha256
6682 (base32
6683 "0gd3km1swwvg2w0kdi7370f54wgrflxn63gjgssfjc1iyc9sbqwq"))))
6684 (build-system emacs-build-system)
6685 (home-page "https://github.com/tumashu/el2org")
6686 (synopsis "Convert Emacs-lisp file to org file")
6687 (description "El2org is a simple tool, which can convert Emacs-lisp file
6688to org file, you can use this tool to write orgify commentary.")
6689 (license license:gpl2+)))
6690
5b38c3e6
FS
6691(define-public emacs-mustache
6692 (package
6693 (name "emacs-mustache")
6694 (version "0.23")
6695 (source (origin
6696 (method url-fetch)
6697 (uri (string-append
6698 "https://github.com/Wilfred/mustache.el/archive/"
6699 version ".tar.gz"))
6700 (file-name (string-append name "-" version ".tar.gz"))
6701 (sha256
6702 (base32
6703 "0k9lcgil7kykkv1ylrgwy1g13ldjjmgi2cwmysgyb2vlj3jbwpdj"))))
6704 (build-system emacs-build-system)
6705 (propagated-inputs
6706 `(("emacs-dash" ,emacs-dash)
6707 ("emacs-ht" ,emacs-ht)
6708 ("emacs-s" ,emacs-s)))
6709 (home-page "https://github.com/Wilfred/mustache.el")
6710 (synopsis "Mustache templating library for Emacs")
6711 (description "Mustache templating library for Emacs, mustache is
6712a simple web template system, which is described as a logic-less system
6713because it lacks any explicit control flow statements, both looping and
6714conditional evaluation can be achieved using section tags processing lists
6715and lambdas.")
6716 (license license:gpl3+)))
6717
f03e15ec
FS
6718(define-public emacs-org2web
6719 (package
6720 (name "emacs-org2web")
6721 (version "0.9.1")
6722 (source (origin
6723 (method url-fetch)
6724 (uri (string-append
6725 "https://github.com/tumashu/org2web/archive/v"
6726 version ".tar.gz"))
6727 (file-name (string-append name "-" version ".tar.gz"))
6728 (sha256
6729 (base32
6730 "1c0ixcphlhp4c4qdiwq40bc3yp1gp1llp8pxrk4s7ny9n68s52zp"))))
6731 (build-system emacs-build-system)
6732 (propagated-inputs
6733 `(("emacs-dash" ,emacs-dash)
6734 ("emacs-el2org" ,emacs-el2org)
6735 ("emacs-ht" ,emacs-ht)
6736 ("emacs-mustache" ,emacs-mustache)
6737 ("emacs-simple-httpd" ,emacs-simple-httpd)))
6738 (home-page "https://github.com/tumashu/org2web")
6739 (synopsis "Static site generator based on org-mode ")
6740 (description "Org2web is a static site generator based on org-mode,
6741which code derived from Kelvin H's org-page.")
6742 (license license:gpl2+)))
6743
deddeb44
FS
6744(define-public emacs-xelb
6745 (package
6746 (name "emacs-xelb")
503fe870 6747 (version "0.16")
deddeb44
FS
6748 (source (origin
6749 (method url-fetch)
6750 (uri (string-append "https://elpa.gnu.org/packages/xelb-"
6751 version ".tar"))
6752 (sha256
6753 (base32
503fe870 6754 "03wsr1jr7f7zfd80h864rd4makwh4widdnj1kjv2xyjwdgap9rl8"))))
deddeb44
FS
6755 (build-system emacs-build-system)
6756 ;; The following functions and variables needed by emacs-xelb are
6757 ;; not included in emacs-minimal:
6758 ;; x-display-screens, x-keysym-table, x-alt-keysym, x-meta-keysym
6759 ;; x-hyper-keysym, x-super-keysym, libxml-parse-xml-region
6760 ;; x-display-pixel-width, x-display-pixel-height
6761 (arguments
6762 `(#:emacs ,emacs
6763 #:phases
6764 (modify-phases %standard-phases
6765 (add-after 'unpack 'regenerate-el-files
6766 (lambda* (#:key inputs #:allow-other-keys)
bca4b2e7
TGR
6767 (invoke "make"
6768 (string-append "PROTO_PATH="
6769 (assoc-ref inputs "xcb-proto")
6770 "/share/xcb")
6771 (string-append "EMACS_BIN="
6772 (assoc-ref inputs "emacs")
6773 "/bin/emacs -Q")))))))
deddeb44
FS
6774 (native-inputs `(("xcb-proto" ,xcb-proto)))
6775 (home-page "https://github.com/ch11ng/xelb")
6776 (synopsis "X protocol Emacs Lisp binding")
6777 (description "@code{emacs-xelb} is a pure Emacs Lisp implementation of the
6778X11 protocol based on the XML description files from the XCB project. It
6779features an object-oriented API and permits a certain degree of concurrency.
6780It should enable you to implement low-level X11 applications.")
6781 (license license:gpl3+)))
2b3b745c
FS
6782
6783(define-public emacs-exwm
6784 (package
6785 (name "emacs-exwm")
f1376bfa 6786 (version "0.20")
2b3b745c
FS
6787 (synopsis "Emacs X window manager")
6788 (source (origin
6789 (method url-fetch)
6790 (uri (string-append "https://elpa.gnu.org/packages/exwm-"
6791 version ".tar"))
6792 (sha256
6793 (base32
f1376bfa 6794 "0nhhzbkm0mkj7sd1dy2c19cmn56gyaj9nl8kgy86h4fp63hjaz04"))))
2b3b745c
FS
6795 (build-system emacs-build-system)
6796 (propagated-inputs
6797 `(("emacs-xelb" ,emacs-xelb)))
6798 (inputs
6799 `(("xhost" ,xhost)
6800 ("dbus" ,dbus)))
6801 ;; The following functions and variables needed by emacs-exwm are
6802 ;; not included in emacs-minimal:
6803 ;; scroll-bar-mode, fringe-mode
6804 ;; x-display-pixel-width, x-display-pixel-height
6805 (arguments
6806 `(#:emacs ,emacs
6807 #:phases
6808 (modify-phases %standard-phases
6809 (add-after 'build 'install-xsession
6810 (lambda* (#:key inputs outputs #:allow-other-keys)
6811 (let* ((out (assoc-ref outputs "out"))
6812 (xsessions (string-append out "/share/xsessions"))
6813 (bin (string-append out "/bin"))
6814 (exwm-executable (string-append bin "/exwm")))
6815 ;; Add a .desktop file to xsessions
6816 (mkdir-p xsessions)
6817 (mkdir-p bin)
6818 (with-output-to-file
6819 (string-append xsessions "/exwm.desktop")
6820 (lambda _
6821 (format #t "[Desktop Entry]~@
6822 Name=~a~@
6823 Comment=~a~@
6824 Exec=~a~@
6825 TryExec=~@*~a~@
6826 Type=Application~%" ,name ,synopsis exwm-executable)))
6827 ;; Add a shell wrapper to bin
2b3b745c
FS
6828 (with-output-to-file exwm-executable
6829 (lambda _
6830 (format #t "#!~a ~@
2b3b745c 6831 ~a +SI:localuser:$USER ~@
11f8e028 6832 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
2b3b745c
FS
6833 (string-append (assoc-ref inputs "bash") "/bin/sh")
6834 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6835 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6836 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6837 '(cond
6838 ((file-exists-p "~/.exwm")
6839 (load-file "~/.exwm"))
6840 ((not (featurep 'exwm))
6841 (require 'exwm)
6842 (require 'exwm-config)
6843 (exwm-config-default)
87c95cb2
AI
6844 (message (concat "exwm configuration not found. "
6845 "Falling back to default configuration...")))))))
2b3b745c
FS
6846 (chmod exwm-executable #o555)
6847 #t))))))
6848 (home-page "https://github.com/ch11ng/exwm")
6849 (description "EXWM is a full-featured tiling X window manager for Emacs
6850built on top of XELB.")
6851 (license license:gpl3+)))
21b99aad 6852
58addd2b
FS
6853(define-public emacs-switch-window
6854 (package
6855 (name "emacs-switch-window")
adaebe80 6856 (version "1.5.1")
58addd2b
FS
6857 (source (origin
6858 (method url-fetch)
6859 (uri (string-append
6860 "https://github.com/dimitri/switch-window/archive/v"
6861 version ".tar.gz"))
6862 (file-name (string-append name "-" version ".tar.gz"))
6863 (sha256
6864 (base32
adaebe80 6865 "07f99apxscwvsp2bjxsbi462c433kcglrjh6xl0gyafs1nvvvnd8"))))
58addd2b
FS
6866 (build-system emacs-build-system)
6867 (home-page "https://github.com/dimitri/switch-window")
6868 (synopsis "Emacs window switch tool")
6869 (description "Switch-window is an emacs window switch tool, which
6870offer a visual way to choose a window to switch to, delete, split or
6871other operations.")
6872 (license license:wtfpl2)))
6873
f4ade9b6
FS
6874(define-public emacs-exwm-x
6875 (package
6876 (name "emacs-exwm-x")
03a34d54 6877 (version "1.8.1")
f4ade9b6
FS
6878 (synopsis "Derivative window manager based on EXWM")
6879 (source (origin
6880 (method url-fetch)
6881 (uri (string-append
6882 "https://github.com/tumashu/exwm-x/archive/v"
6883 version ".tar.gz"))
6884 (file-name (string-append name "-" version ".tar.gz"))
6885 (sha256
6886 (base32
03a34d54 6887 "0ali1100aacq4zbvcck80h51pvw204jlxhn4aikkqq4ngbx03kkr"))))
f4ade9b6
FS
6888 (build-system emacs-build-system)
6889 (propagated-inputs
6890 `(("emacs-exwm" ,emacs-exwm)
6891 ("emacs-switch-window" ,emacs-switch-window)
2a9a2207
FS
6892 ("emacs-ivy" ,emacs-ivy)
6893 ("emacs-use-package" ,emacs-use-package)))
f4ade9b6
FS
6894 (inputs
6895 `(("xhost" ,xhost)
6896 ("dbus" ,dbus)))
6897 ;; Need emacs instead of emacs-minimal,
6898 ;; for emacs's bin path will be inserted into bin/exwm-x file.
6899 (arguments
6900 `(#:emacs ,emacs
6901 #:phases
6902 (modify-phases %standard-phases
6903 (add-after 'build 'install-xsession
6904 (lambda* (#:key inputs outputs #:allow-other-keys)
6905 (let* ((out (assoc-ref outputs "out"))
6906 (xsessions (string-append out "/share/xsessions"))
6907 (bin (string-append out "/bin"))
6908 (exwm-executable (string-append bin "/exwm-x")))
6909 ;; Add a .desktop file to xsessions
6910 (mkdir-p xsessions)
6911 (mkdir-p bin)
6912 (with-output-to-file
6913 (string-append xsessions "/exwm-x.desktop")
6914 (lambda _
6915 (format #t "[Desktop Entry]~@
6916 Name=~a~@
6917 Comment=~a~@
6918 Exec=~a~@
6919 TryExec=~@*~a~@
6920 Type=Application~%" ,name ,synopsis exwm-executable)))
6921 ;; Add a shell wrapper to bin
f4ade9b6
FS
6922 (with-output-to-file exwm-executable
6923 (lambda _
6924 (format #t "#!~a ~@
f4ade9b6
FS
6925 ~a +SI:localuser:$USER ~@
6926 exec ~a --exit-with-session ~a \"$@\" --eval '~s' ~%"
6927 (string-append (assoc-ref inputs "bash") "/bin/sh")
6928 (string-append (assoc-ref inputs "xhost") "/bin/xhost")
6929 (string-append (assoc-ref inputs "dbus") "/bin/dbus-launch")
6930 (string-append (assoc-ref inputs "emacs") "/bin/emacs")
6931 '(require 'exwmx-loader))))
6932 (chmod exwm-executable #o555)
6933 #t))))))
6934 (home-page "https://github.com/tumashu/exwm-x")
6935 (description "EXWM-X is a derivative window manager based on EXWM, with focus
6936on mouse-control.")
6937 (license license:gpl3+)))
6938
21b99aad
AI
6939(define-public emacs-gnuplot
6940 (package
6941 (name "emacs-gnuplot")
6942 (version "0.7.0")
6943 (source
6944 (origin
6945 (method url-fetch)
6946 (uri (string-append
6947 "https://github.com/bruceravel/gnuplot-mode/archive/"
6948 version ".tar.gz"))
6949 (file-name (string-append name "-" version ".tar.gz"))
6950 (sha256
6951 (base32
6952 "0glzymrn138lwig7p4cj17x4if5jisr6l4g6wcbxisqkqgc1h01i"))))
6953 (build-system gnu-build-system)
6954 (native-inputs `(("emacs" ,emacs-minimal)))
6955 (arguments
6956 (let ((elisp-dir (string-append "/share/emacs/site-lisp/guix.d"
6957 "/gnuplot-" version)))
6958 `(#:modules ((guix build gnu-build-system)
6959 (guix build utils)
6960 (guix build emacs-utils))
6961 #:imported-modules (,@%gnu-build-system-modules
6962 (guix build emacs-utils))
6963 #:configure-flags
6964 (list (string-append "EMACS=" (assoc-ref %build-inputs "emacs")
6965 "/bin/emacs")
6966 (string-append "--with-lispdir=" %output ,elisp-dir))
6967 #:phases
6968 (modify-phases %standard-phases
6969 (add-after 'install 'generate-autoloads
6970 (lambda* (#:key outputs #:allow-other-keys)
6971 (emacs-generate-autoloads
6972 "gnuplot"
6973 (string-append (assoc-ref outputs "out") ,elisp-dir))
6974 #t))))))
6975 (home-page "https://github.com/bruceravel/gnuplot-mode")
6976 (synopsis "Emacs major mode for interacting with gnuplot")
6977 (description "@code{emacs-gnuplot} is an emacs major mode for interacting
6978with gnuplot.")
6979 (license license:gpl2+)))
860f73c6
AI
6980
6981(define-public emacs-transpose-frame
6982 (package
6983 (name "emacs-transpose-frame")
6984 (version "0.1.0")
6985 (source
6986 (origin
6987 (method url-fetch)
6988 (uri "http://www.emacswiki.org/emacs/download/transpose-frame.el")
8a421ddb 6989 (file-name (string-append "transpose-frame-" version ".el"))
860f73c6
AI
6990 (sha256
6991 (base32
6992 "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"))))
6993 (build-system emacs-build-system)
6994 (home-page "https://www.emacswiki.org/emacs/TransposeFrame")
6995 (synopsis "Transpose window arrangement in current frame")
6996 (description "@code{emacs-transpose-frame} provides some interactive
6997functions which allows users to transpose windows arrangement in currently
6998selected frame.")
6999 (license license:bsd-2)))
a34242ee
KM
7000
7001(define-public emacs-key-chord
7002 (package
7003 (name "emacs-key-chord")
7004 (version "0.6")
7005 (source
7006 (origin
7007 (method url-fetch)
7008 (uri "https://www.emacswiki.org/emacs/download/key-chord.el")
a742becd 7009 (file-name (string-append "key-chord-" version ".el"))
a34242ee
KM
7010 (sha256
7011 (base32
7012 "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
7013 (build-system emacs-build-system)
7014 (home-page "https://www.emacswiki.org/emacs/key-chord.el")
7015 (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
7016 (description "@code{emacs-key-chord} provides @code{key-chord-mode}, a
7017mode for binding key chords to commands. A key chord is defined as two keys
7018pressed simultaneously or a single key quickly pressed twice.")
7019 (license license:gpl2+)))
a993add1
AI
7020
7021(define-public emacs-evil-surround
7022 (package
7023 (name "emacs-evil-surround")
7024 (version "1.0.0")
7025 (source
7026 (origin
7027 (method url-fetch)
7028 (uri (string-append
7029 "https://github.com/timcharper/evil-surround/archive/v"
7030 version ".tar.gz"))
7031 (file-name (string-append name "-" version ".tar.gz"))
7032 (sha256
7033 (base32
7034 "0p572jgic3q1ia1nz37kclir729ay6i2f4sa7wnaapyxly2lwb3r"))))
7035 (build-system emacs-build-system)
7036 (propagated-inputs
7037 `(("emacs-evil" ,emacs-evil)))
7038 (home-page "https://github.com/timcharper/evil-surround")
7039 (synopsis "Easily modify surrounding parantheses and quotes")
7040 (description "@code{emacs-evil-surround} allows easy deletion, change and
7041addition of surrounding pairs, such as parantheses and quotes, in evil mode.")
7042 (license license:gpl3+)))
2406766e
AI
7043
7044(define-public emacs-evil-commentary
7045 (package
7046 (name "emacs-evil-commentary")
7047 (version "2.1.1")
7048 (source
7049 (origin
7050 (method url-fetch)
7051 (uri (string-append
7052 "https://github.com/linktohack/evil-commentary/archive/v"
7053 version ".tar.gz"))
7054 (file-name (string-append name "-" version ".tar.gz"))
7055 (sha256
7056 (base32
7057 "1jdya0i921nwskwrzdsj0vrr3m7gm49dy6f6pk9p5nxaarfxk230"))))
7058 (build-system emacs-build-system)
7059 (propagated-inputs
7060 `(("emacs-evil" ,emacs-evil)))
7061 (home-page "https://github.com/linktohack/evil-commentary")
7062 (synopsis "Comment out code in evil mode")
7063 (description "@code{emacs-evil-commentary} adds keybindings to easily
7064comment out lines of code in evil mode. It provides @code{gcc} to comment out
7065lines, and @code{gc} to comment out the target of a motion.")
7066 (license license:gpl3+)))
99d406c9
AI
7067
7068;; Tests for emacs-ansi have a circular dependency with ert-runner, and
7069;; therefore cannot be run
7070(define-public emacs-ansi
7071 (package
7072 (name "emacs-ansi")
7073 (version "0.4.1")
7074 (source
7075 (origin
7076 (method url-fetch)
7077 (uri (string-append "https://github.com/rejeep/ansi.el/archive/v"
7078 version ".tar.gz"))
7079 (file-name (string-append name "-" version ".tar.gz"))
7080 (sha256
7081 (base32
7082 "13jj4vbi98j3p17hs99bmy7g21jd5h4v3wpxk4pkvhylm3bfwjw8"))))
7083 (build-system emacs-build-system)
7084 (propagated-inputs
7085 `(("emacs-dash" ,emacs-dash)
7086 ("emacs-s" ,emacs-s)))
7087 (home-page "https://github.com/rejeep/ansi.el")
7088 (synopsis "Convert strings to ANSI")
7089 (description "@code{emacs-ansi} defines functions that turns simple
7090strings to ANSI strings. Turning a string into an ANSI string can be to add
7091color to a text, add color in the background of a text or adding a style, such
7092as bold, underscore or italic.")
7093 (license license:gpl3+)))
605ecbcb
AI
7094
7095;; Tests for emacs-commander have a circular dependency with ert-runner, and
7096;; therefore cannot be run
7097(define-public emacs-commander
7098 (package
7099 (name "emacs-commander")
7100 (version "0.7.0")
7101 (source
7102 (origin
7103 (method url-fetch)
7104 (uri (string-append "https://github.com/rejeep/commander.el/archive/v"
7105 version ".tar.gz"))
7106 (file-name (string-append name "-" version ".tar.gz"))
7107 (sha256
7108 (base32
7109 "196s2i15z7gwxa97l1wkxvjnfmj5n38wwm6d3g4zz15l2vqggc2y"))))
7110 (build-system emacs-build-system)
7111 (propagated-inputs
7112 `(("emacs-dash" ,emacs-dash)
7113 ("emacs-f" ,emacs-f)
7114 ("emacs-s" ,emacs-s)))
7115 (home-page "https://github.com/rejeep/commander.el")
7116 (synopsis "Emacs command line parser")
7117 (description "@code{emacs-commander} provides command line parsing for
7118Emacs.")
7119 (license license:gpl3+)))
87449013
AI
7120
7121;; Tests for ert-runner have a circular dependency with ecukes, and therefore
7122;; cannot be run
5c8031ff 7123(define-public emacs-ert-runner
9490c411 7124 (package
5c8031ff 7125 (name "emacs-ert-runner")
9490c411
MC
7126 (version "0.7.0")
7127 (source
7128 (origin
7129 (method url-fetch)
7130 (uri (string-append "https://github.com/rejeep/ert-runner.el/archive/v"
7131 version ".tar.gz"))
7132 (file-name (string-append name "-" version ".tar.gz"))
7133 (sha256
7134 (base32
7135 "1657nck9i96a4xgl8crfqq0s8gflzp21pkkzwg6m3z5npjxklgwp"))))
7136 (build-system emacs-build-system)
7137 (inputs
7138 `(("emacs-ansi" ,emacs-ansi)
7139 ("emacs-commander" ,emacs-commander)
7140 ("emacs-dash" ,emacs-dash)
7141 ("emacs-f" ,emacs-f)
7142 ("emacs-s" ,emacs-s)
7143 ("emacs-shut-up" ,emacs-shut-up)))
7144 (arguments
7145 `(#:phases
7146 (modify-phases %standard-phases
7147 (add-after 'install 'install-executable
7148 (lambda* (#:key inputs outputs #:allow-other-keys)
7149 (let ((out (assoc-ref outputs "out")))
7150 (substitute* "bin/ert-runner"
7151 (("ERT_RUNNER=\"\\$\\(dirname \\$\\(dirname \\$0\\)\\)")
7152 (string-append "ERT_RUNNER=\"" out
ea1a3601
RW
7153 "/share/emacs/site-lisp/guix.d/ert-runner-"
7154 ,version)))
9490c411
MC
7155 (install-file "bin/ert-runner" (string-append out "/bin"))
7156 (wrap-program (string-append out "/bin/ert-runner")
7157 (list "EMACSLOADPATH" ":" 'prefix
7158 (string-split (getenv "EMACSLOADPATH") #\:)))
7159 #t))))
7160 #:include (cons* "^reporters/.*\\.el$" %default-include)))
7161 (home-page "https://github.com/rejeep/ert-runner.el")
7162 (synopsis "Opinionated Ert testing workflow")
7163 (description "@code{ert-runner} is a tool for Emacs projects tested
87449013
AI
7164using ERT. It assumes a certain test structure setup and can therefore make
7165running tests easier.")
9490c411 7166 (license license:gpl3+)))
7a0efa77 7167
5c8031ff
PN
7168(define-public ert-runner
7169 (deprecated-package "ert-runner" emacs-ert-runner))
7170
7a0efa77
JN
7171(define-public emacs-disable-mouse
7172 (package
7173 (name "emacs-disable-mouse")
7174 (version "0.2")
7175 (source
7176 (origin
7177 (method url-fetch)
7178 (uri (string-append
7179 "https://github.com/purcell/disable-mouse/archive/"
7180 version ".tar.gz"))
7181 (file-name (string-append name "-" version ".tar.gz"))
7182 (sha256
7183 (base32
7184 "0haqpq23r1wx04lsqrrg3p5visg9hx5i36dg55ab003wfsrlrzbc"))))
7185 (build-system emacs-build-system)
7186 (home-page "https://github.com/purcell/disable-mouse")
7187 (synopsis "Disable mouse commands globally")
7188 (description
7189 "Provides @code{disable-mouse-mode} and @code{global-disable-mouse-mode},
7190pair of minor modes which suppress all mouse events by intercepting them and
7191running a customisable handler command (@code{ignore} by default). ")
7192 (license license:gpl3+)))
ce676015 7193
b0912e9f
OP
7194(define-public emacs-json-reformat
7195 (package
7196 (name "emacs-json-reformat")
7197 (version "0.0.6")
7198 (source
7199 (origin
7200 (method url-fetch)
7201 (uri (string-append "https://github.com/gongo/json-reformat/archive/"
7202 version ".tar.gz"))
7203 (file-name (string-append name "-" version ".tar.gz"))
7204 (sha256
7205 (base32
7206 "11fbq4scrgr7m0iwnzcrn2g7xvqwm2gf82sa7zy1l0nil7265p28"))
7207 (patches (search-patches "emacs-json-reformat-fix-tests.patch"))))
7208 (build-system emacs-build-system)
d1d41db6
MC
7209 (propagated-inputs
7210 `(("emacs-undercover" ,emacs-undercover)))
7211 (native-inputs
7212 `(("emacs-dash" ,emacs-dash)
7213 ("emacs-shut-up" ,emacs-shut-up)
5c8031ff 7214 ("ert-runner" ,emacs-ert-runner)))
b0912e9f 7215 (arguments
d1d41db6
MC
7216 `(#:tests? #t
7217 #:test-command '("ert-runner")))
b0912e9f
OP
7218 (home-page "https://github.com/gongo/json-reformat")
7219 (synopsis "Reformatting tool for JSON")
7220 (description "@code{json-reformat} provides a reformatting tool for
7221@url{http://json.org/, JSON}.")
7222 (license license:gpl3+)))
7223
6df27407
OP
7224(define-public emacs-json-snatcher
7225 (package
7226 (name "emacs-json-snatcher")
7227 (version "1.0.0")
7228 (source
7229 (origin
7230 (method url-fetch)
7231 (uri (string-append "https://github.com/Sterlingg/json-snatcher/archive/"
7232 version ".tar.gz"))
7233 (file-name (string-append name "-" version ".tar.gz"))
7234 (sha256
7235 (base32
7236 "1nfiwsifpdiz0lbrqa77nl0crnfrv5h85ans9b0g5rggnmyshcfb"))))
7237 (build-system emacs-build-system)
7238 (home-page "https://github.com/sterlingg/json-snatcher")
7239 (synopsis "Grabs the path to JSON values in a JSON file")
7240 (description "@code{emacs-json-snatcher} grabs the path to JSON values in
7241a @url{http://json.org/, JSON} file.")
7242 (license license:gpl3+)))
7243
dd72837d
OP
7244(define-public emacs-json-mode
7245 (package
7246 (name "emacs-json-mode")
7247 (version "1.7.0")
7248 (source
7249 (origin
7250 (method url-fetch)
7251 (uri (string-append "https://github.com/joshwnj/json-mode/archive/"
7252 "v" version ".tar.gz"))
7253 (file-name (string-append name "-" version ".tar.gz"))
7254 (sha256
7255 (base32
7256 "06h45p4cn767pk9sqi2zb1c65wy5gyyijqxzpglp80zwxhvajdz5"))))
7257 (build-system emacs-build-system)
7258 (propagated-inputs
7259 `(("emacs-json-reformat" ,emacs-json-reformat)
7260 ("emacs-json-snatcher" ,emacs-json-snatcher)))
7261 (home-page "https://github.com/joshwnj/json-mode")
7262 (synopsis "Major mode for editing JSON files")
7263 (description "@code{json-mode} extends the builtin js-mode syntax
7264highlighting.")
7265 (license license:gpl3+)))
7266
ce676015
JR
7267(define-public emacs-restclient
7268 (let ((commit "07a3888bb36d0e29608142ebe743b4362b800f40")
7269 (revision "1")) ;Guix package revision,
7270 ;upstream doesn't have official releases
7271 (package
7272 (name "emacs-restclient")
7273 (version (string-append revision "."
7274 (string-take commit 7)))
7275 (source (origin
7276 (method git-fetch)
7277 (uri (git-reference
7278 (url "https://github.com/pashky/restclient.el.git")
7279 (commit commit)))
7280 (sha256
7281 (base32
7282 "00lmjhb5im1kgrp54yipf1h9pshxzgjlg71yf2rq5n973gvb0w0q"))
7283 (file-name (git-file-name name version))))
7284 (build-system emacs-build-system)
7285 (propagated-inputs
7286 `(("emacs-helm" ,emacs-helm)))
7287 (home-page "https://github.com/pashky/restclient.el")
7288 (synopsis "Explore and test HTTP REST webservices")
7289 (description
7290 "This tool allows for testing and exploration of HTTP REST Web services
7291from within Emacs. Restclient runs queries from a plan-text query sheet,
7292displays results pretty-printed in XML or JSON with @code{restclient-mode}")
7293 (license license:public-domain))))
730c0790 7294
de5256d3
MC
7295(define-public emacs-eimp
7296 (let ((version "1.4.0")
7297 (commit "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f")
7298 (revision "1"))
7299 (package
7300 (name "emacs-eimp")
7301 (version (git-version version revision commit))
7302 (source
7303 (origin
7304 (method git-fetch)
7305 (uri (git-reference
7306 (url "https://github.com/nicferrier/eimp.git")
7307 (commit commit)))
7308 (file-name (git-file-name name version))
7309 (sha256
7310 (base32
7311 "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"))))
7312 (build-system emacs-build-system)
7313 (arguments
7314 `(#:phases
7315 (modify-phases %standard-phases
7316 (add-after 'unpack 'configure
7317 (lambda* (#:key inputs #:allow-other-keys)
7318 (let ((imagemagick (assoc-ref inputs "imagemagick")))
7319 ;; eimp.el is read-only in git.
7320 (chmod "eimp.el" #o644)
7321 (emacs-substitute-variables "eimp.el"
7322 ("eimp-mogrify-program"
7323 (string-append imagemagick "/bin/mogrify"))))
7324 #t)))))
7325 (inputs
7326 `(("imagemagick" ,imagemagick)))
7327 (home-page "https://github.com/nicferrier/eimp")
7328 (synopsis "Interactive image manipulation utility for Emacs")
7329 (description "@code{emacs-eimp} allows interactive image manipulation
7330from within Emacs. It uses the code@{mogrify} utility from ImageMagick to do
7331the actual transformations.")
7332 (license license:gpl2+))))
7333
730c0790
OP
7334(define-public emacs-dired-hacks
7335 (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
7336 (revision "1"))
7337 (package
7338 (name "emacs-dired-hacks")
7339 (version (string-append "0.0.1-" revision "."
7340 (string-take commit 7)))
7341 (source (origin
7342 (method git-fetch)
7343 (uri (git-reference
7344 (url "https://github.com/Fuco1/dired-hacks.git")
7345 (commit commit)))
7346 (file-name (string-append name "-" version "-checkout"))
7347 (sha256
7348 (base32
7349 "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
7350 (build-system emacs-build-system)
7351 (propagated-inputs
7352 `(("emacs-dash" ,emacs-dash)
fee23c17 7353 ("emacs-eimp" ,emacs-eimp)
730c0790
OP
7354 ("emacs-f" ,emacs-f)
7355 ("emacs-s" ,emacs-s)))
7356 (home-page "https://github.com/Fuco1/dired-hacks")
7357 (synopsis
7358 "Collection of useful dired additions")
7359 (description
7360 "Collection of Emacs dired mode additions:
7361@itemize
7362@item dired-avfs
7363@item dired-columns
7364@item dired-filter
7365@item dired-hacks-utils
7366@item dired-images
7367@item dired-list
7368@item dired-narrow
7369@item dired-open
7370@item dired-rainbow
7371@item dired-ranger
7372@item dired-subtree
7373@item dired-tagsistant
7374@end itemize\n")
7375 (license license:gpl3+))))
1a80e4d7 7376
3e12df7d
MB
7377(define-public emacs-dired-sidebar
7378 (let ((commit "06bd0d40bab812c61a668129daf29ba359424454")
7379 (revision "0"))
7380 (package
7381 (name "emacs-dired-sidebar")
7382 (home-page "https://github.com/jojojames/dired-sidebar")
7383 (version (git-version "0.0.1" revision commit))
7384 (source (origin
7385 (method git-fetch)
7386 (uri (git-reference (url home-page) (commit commit)))
7387 (sha256
7388 (base32
7389 "0lvwvq6sl80sha9fq5m4568sg534dhmifyjqw75bqddcbf3by84x"))))
7390 (build-system emacs-build-system)
7391 (propagated-inputs
7392 `(("emacs-dired-subtree" ,emacs-dired-hacks)))
7393 (synopsis "Sidebar for Emacs using Dired")
7394 (description
7395 "This package provides a sidebar for Emacs similar to @code{NeoTree}
7396or @code{treemacs}, but leveraging @code{Dired} to do the job of display.")
7397 (license license:gpl3+))))
7398
1a80e4d7
OP
7399(define-public emacs-which-key
7400 (package
7401 (name "emacs-which-key")
42f9ebdc 7402 (version "3.3.0")
1a80e4d7
OP
7403 (source
7404 (origin
7405 (method url-fetch)
7406 (uri (string-append
7407 "https://github.com/justbur/emacs-which-key/archive/v"
7408 version ".tar.gz"))
7409 (sha256
7410 (base32
42f9ebdc 7411 "1lsj314111cp2hjjwnv3f46ws1za6bm39rgy3l19044xf6a68j5w"))
1a80e4d7
OP
7412 (file-name (string-append name "-" version ".tar.gz"))))
7413 (build-system emacs-build-system)
7414 (arguments
d1d41db6
MC
7415 `(#:tests? #t
7416 #:test-command '("emacs" "--batch"
7417 "-l" "which-key-tests.el"
7418 "-f" "ert-run-tests-batch-and-exit")))
1a80e4d7
OP
7419 (home-page "https://github.com/justbur/emacs-which-key")
7420 (synopsis "Display available key bindings in popup")
2482c02f
AI
7421 (description
7422 "@code{emacs-which-key} is a minor mode for Emacs that displays the key
7423bindings following your currently entered incomplete command (a prefix) in a
7424popup. For example, after enabling the minor mode if you enter C-x and wait
7425for the default of 1 second, the minibuffer will expand with all of the
7426available key bindings that follow C-x (or as many as space allows given your
7427settings).")
1a80e4d7 7428 (license license:gpl3+)))
c97979d6 7429
397d7980
MC
7430(define-public emacs-ws-butler
7431 (package
7432 (name "emacs-ws-butler")
7433 (version "0.6")
7434 (source (origin
7435 (method git-fetch)
7436 (uri (git-reference
7437 (url "https://github.com/lewang/ws-butler.git")
7438 (commit "323b651dd70ee40a25accc940b8f80c3a3185205")))
7439 (file-name (string-append name "-" version "-checkout"))
7440 (sha256
7441 (base32
7442 "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"))))
7443 (build-system emacs-build-system)
7444 (native-inputs
5c8031ff 7445 `(("ert-runner" ,emacs-ert-runner)))
397d7980 7446 (arguments
d1d41db6
MC
7447 `(#:tests? #t
7448 #:test-command '("ert-runner" "tests")))
397d7980
MC
7449 (home-page "https://github.com/lewang/ws-butler")
7450 (synopsis "Trim spaces from end of lines")
7451 (description
7452 "This Emacs package automatically and unobtrusively trims whitespace
7453characters from end of lines.")
7454 (license license:gpl3+)))
7455
c97979d6
OP
7456(define-public emacs-org-edit-latex
7457 (package
7458 (name "emacs-org-edit-latex")
7459 (version "0.8.0")
7460 (source
7461 (origin
7462 (method url-fetch)
7463 (uri (string-append
7464 "https://github.com/et2010/org-edit-latex/archive/v"
7465 version ".tar.gz"))
7466 (file-name (string-append name "-" version ".tar.gz"))
7467 (sha256
7468 (base32
7469 "1y4h6wrs8286h9pbsv4d8fr67a885vz8b2k80qgv5qddipi2i78p"))))
7470 (build-system emacs-build-system)
7471 (propagated-inputs
7472 `(("emacs-auctex" ,emacs-auctex)
7473 ;; The version of org in Emacs 25.2 is not sufficient, because the
7474 ;; `org-latex-make-preamble' function is required.
7475 ("emacs-org" ,emacs-org)))
7476 (home-page "https://github.com/et2010/org-edit-latex")
7477 (synopsis "Edit a latex fragment just like editing a src block")
7478 (description "@code{emacs-org-edit-latex} is an extension for org-mode.
7479It lets you edit a latex fragment in a dedicated buffer just like editing a
7480src block.")
7481 (license license:gpl3+)))
aadd75ac
OP
7482
7483(define-public emacs-emamux
7484 (package
7485 (name "emacs-emamux")
7486 (version "0.14")
7487 (source (origin
7488 (method url-fetch)
7489 (uri (string-append
7490 "https://github.com/syohex/emacs-emamux/archive/"
7491 version ".tar.gz"))
7492 (file-name (string-append name "-" version ".tar.gz"))
7493 (sha256
7494 (base32
7495 "0wlqg4icy037bj70b0qmhvwvmiwhagpnx6pnxhq6gzy1hvwlilkx"))))
7496 (build-system emacs-build-system)
7497 (home-page "https://github.com/syohex/emacs-emamux")
7498 (synopsis "Manipulate Tmux from Emacs")
7499 (description
7500 "@code{emacs-emamux} lets Emacs interact with the @code{tmux} terminal
7501multiplexer.")
7502 (license license:gpl3+)))
e8d9a878
OP
7503
7504(define-public emacs-rpm-spec-mode
7505 (package
7506 (name "emacs-rpm-spec-mode")
7507 (version "0.16")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 ;; URI has the Fedora release number instead of the version
7512 ;; number. This will have to updated manually every new release.
7513 (uri (string-append
7514 "https://src.fedoraproject.org/cgit/rpms"
7515 "/emacs-rpm-spec-mode.git/snapshot"
7516 "/emacs-rpm-spec-mode-f26.tar.gz"))
7517 (sha256
7518 (base32
7519 "17dz80lhjrc89fj17pysl8slahzrqdkxgcjdk55zls6jizkr6kz3"))))
7520 (build-system emacs-build-system)
7521 (home-page "http://pkgs.fedoraproject.org/cgit/rpms/emacs-rpm-spec-mode.git")
7522 (synopsis "Emacs major mode for editing RPM spec files")
7523 (description "@code{emacs-rpm-spec-mode} provides an Emacs major mode for
7524editing RPM spec files.")
7525 (license license:gpl2+)))
a88adeb3
OP
7526
7527(define-public emacs-git-messenger
7528 (package
7529 (name "emacs-git-messenger")
7530 (version "0.18")
7531 (source
7532 (origin
7533 (method url-fetch)
7534 (uri (string-append
7535 "https://github.com/syohex/emacs-git-messenger/archive/"
7536 version ".tar.gz"))
7537 (file-name (string-append name "-" version ".tar.gz"))
7538 (sha256
7539 (base32
7540 "17mqki6g0wx46fn7dcbcc2pjxik7vvrcb1j9jzxim8b9psbsbnp9"))))
7541 (build-system emacs-build-system)
7542 (propagated-inputs
7543 `(("emacs-popup" ,emacs-popup)))
7544 (arguments
d1d41db6
MC
7545 `(#:tests? #t
7546 #:test-command '("emacs" "--batch" "-l" "test/test.el"
7547 "-f" "ert-run-tests-batch-and-exit")))
a88adeb3
OP
7548 (home-page "https://github.com/syohex/emacs-git-messenger")
7549 (synopsis "Popup commit message at current line")
7550 (description "@code{emacs-git-messenger} provides
7551@code{git-messenger:popup-message}, a function that when called, will popup
7552the last git commit message for the current line. This uses git-blame
7553internally.")
7554 (license license:gpl3+)))
1ee879e9
OP
7555
7556(define-public emacs-gitpatch
7557 (package
7558 (name "emacs-gitpatch")
7559 (version "0.5.0")
7560 (source
7561 (origin
7562 (method url-fetch)
7563 (uri (string-append "https://github.com/tumashu/gitpatch/archive/"
7564 "v" version ".tar.gz"))
7565 (file-name (string-append name "-" version ".tar.gz"))
7566 (sha256
7567 (base32
7568 "1yj6pmic541lcnscjin300k380qp9xdfprs55xg1q57jrkq6f6k7"))))
7569 (build-system emacs-build-system)
7570 (home-page "https://github.com/tumashu/gitpatch")
7571 (synopsis "Mail git patch from Emacs")
7572 (description "@code{emacs-gitpatch} lets users easily send git patches,
7573created by @code{git format-patch}, from @code{magit}, @code{dired} and
7574@code{ibuffer} buffers.")
7575 (license license:gpl3+)))
27feda65
OP
7576
7577(define-public emacs-erc-hl-nicks
7578 (package
7579 (name "emacs-erc-hl-nicks")
e661dca8 7580 (version "1.3.3")
27feda65
OP
7581 (source
7582 (origin
7583 (method url-fetch)
7584 (uri (string-append "https://github.com/leathekd/erc-hl-nicks"
7585 "/archive/" version ".tar.gz"))
7586 (file-name (string-append name "-" version ".tar.gz"))
7587 (sha256
7588 (base32
e661dca8 7589 "1a1r2kc3688g8c2ybkpwh88kgmnqhg3h3032g2yn4zr9m0n3vpkr"))))
27feda65
OP
7590 (build-system emacs-build-system)
7591 (synopsis "Nickname highlighting for Emacs ERC")
7592 (description "@code{erc-hl-nicks} highlights nicknames in ERC, an IRC
7593client for Emacs. The main features are:
7594@itemize
7595@item Auto-colorizes nicknames without having to specify colors
7596@item Ignores certain characters that IRC clients add to nicknames to avoid
7597duplicates (nickname, nickname’, nickname\", etc.)
7598@item Attempts to produce colors with a sufficient amount of contrast between
7599the nick color and the background color
7600@end itemize\n")
7601 (home-page "https://github.com/leathekd/erc-hl-nicks")
7602 (license license:gpl3+)))
f262f446
OP
7603
7604(define-public emacs-engine-mode
7605 (package
7606 (name "emacs-engine-mode")
7607 (version "2.0.0")
7608 (source
7609 (origin
7610 (method url-fetch)
7611 (uri (string-append "https://github.com/hrs/engine-mode/archive/"
7612 "v" version ".tar.gz"))
7613 (file-name (string-append name "-" version ".tar.gz"))
7614 (sha256
7615 (base32
7616 "1vm4p7pcp1vnwwxvps1bhm7i7hkabqqxl898knxf2hqvxys76684"))))
7617 (build-system emacs-build-system)
7618 (synopsis "Minor mode for defining and querying search engines")
7619 (description "@code{engine-mode} is a global minor mode for Emacs. It
7620enables you to easily define search engines, bind them to keybindings, and
7621query them from the comfort of your editor.")
7622 (home-page "https://github.com/hrs/engine-mode")
7623 (license license:gpl3+)))
b9dcaced
PM
7624
7625(define-public emacs-prop-menu
7626 (package
7627 (name "emacs-prop-menu")
7628 (version "0.1.2")
7629 (source
7630 (origin
7631 (method url-fetch)
7632 (uri (string-append
7633 "http://stable.melpa.org/packages/prop-menu-"
7634 version ".el"))
7635 (sha256
7636 (base32
7637 "01bk4sjafzz7gqrkv9jg0pa85qr34vbk3q8ga2b0m61bndywzgpr"))))
7638 (build-system emacs-build-system)
7639 (home-page
7640 "https://github.com/david-christiansen/prop-menu-el")
7641 (synopsis
7642 "Create and display a context menu based on text and overlay properties")
7643 (description
7644 "This is a library for computing context menus based on text
7645properties and overlays. The intended use is to have tools that
7646annotate source code and others that use these annotations, without
7647requiring a direct coupling between them, but maintaining
7648discoverability.
7649
7650Major modes that wish to use this library should first define an
7651appropriate value for @code{prop-menu-item-functions}. Then, they should
7652bind @code{prop-menu-by-completing-read} to an appropriate
7653key. Optionally, a mouse pop-up can be added by binding
7654@code{prop-menu-show-menu} to a mouse event.")
7655 (license license:gpl3+)))
5883bb76
PM
7656
7657(define-public emacs-idris-mode
7658 (package
7659 (name "emacs-idris-mode")
7660 (version "0.9.19")
7661 (source
7662 (origin
7663 (method url-fetch)
7664 (uri (string-append
7665 "http://stable.melpa.org/packages/idris-mode-"
7666 version ".tar"))
7667 (sha256
7668 (base32
a05a637c 7669 "02r1qqsxi6qk7q4cj6a6pygbj856dcw9vcmhfh0ib92j41v77q6y"))))
5883bb76
PM
7670 (build-system emacs-build-system)
7671 (propagated-inputs
7672 `(("emacs-prop-menu" ,emacs-prop-menu)))
7673 (home-page
7674 "https://github.com/idris-hackers/idris-mode")
7675 (synopsis "Major mode for editing Idris code")
7676 (description
7677 "This is an Emacs mode for editing Idris code. It requires the latest
7678version of Idris, and some features may rely on the latest Git version of
7679Idris.")
7680 (license license:gpl3+)))
eaf4ba6e
OP
7681
7682(define-public emacs-browse-at-remote
96023187
OP
7683 (package
7684 (name "emacs-browse-at-remote")
7685 (version "0.10.0")
7686 (source
7687 (origin
7688 (method url-fetch)
7689 (uri (string-append
7690 "https://github.com/rmuslimov/browse-at-remote/archive/"
7691 version ".tar.gz"))
7692 (file-name (string-append name "-" version ".tar.gz"))
7693 (sha256
7694 (base32
7695 "0ymslsp6i1naw25zckv25bf4aaq6qwkbkn95qyzlwg869l802686"))))
7696 (build-system emacs-build-system)
7697 (propagated-inputs
7698 `(("emacs-f" ,emacs-f)
7699 ("emacs-s" ,emacs-s)))
7700 (native-inputs
5c8031ff 7701 `(("ert-runner" ,emacs-ert-runner)))
96023187
OP
7702 (arguments
7703 `(#:tests? #t
7704 #:test-command '("ert-runner")))
7705 (home-page "https://github.com/rmuslimov/browse-at-remote")
7706 (synopsis "Open github/gitlab/bitbucket/stash page from Emacs")
7707 (description
7708 "This Emacs package allows you to open a target page on
eaf4ba6e
OP
7709github/gitlab (or bitbucket) by calling @code{browse-at-remote} command.
7710It supports dired buffers and opens them in tree mode at destination.")
96023187 7711 (license license:gpl3+)))
63253098
OP
7712
7713(define-public emacs-tiny
7714 (package
7715 (name "emacs-tiny")
d8ec1b71 7716 (version "0.2.1")
63253098
OP
7717 (source
7718 (origin
7719 (method url-fetch)
7720 (uri (string-append "http://elpa.gnu.org/packages/tiny-" version ".tar"))
7721 (sha256
7722 (base32
d8ec1b71 7723 "1cr73a8gba549ja55x0c2s554f3zywf69zbnd7v82jz5q1k9wd2v"))))
63253098
OP
7724 (build-system emacs-build-system)
7725 (home-page "https://github.com/abo-abo/tiny")
7726 (synopsis "Quickly generate linear ranges in Emacs")
7727 (description
7728 "The main command of the @code{tiny} extension for Emacs is @code{tiny-expand}.
a913d9d9 7729It is meant to quickly generate linear ranges, e.g. 5, 6, 7, 8. Some elisp
63253098
OP
7730proficiency is an advantage, since you can transform your numeric range with
7731an elisp expression.")
0b88f536 7732 (license license:gpl3+)))
4aafce22 7733
7081d4e0
RW
7734(define-public emacs-emojify
7735 (package
7736 (name "emacs-emojify")
7737 (version "0.4")
7738 (source
7739 (origin
7740 (method url-fetch)
7741 (uri (string-append "https://github.com/iqbalansari/emacs-emojify/"
7742 "releases/download/v" version "/emojify-"
7743 version ".tar"))
7744 (sha256
7745 (base32
7746 "0k84v2d2bkiwcky9fi1yyprgkj46g7wh6pyl9gzmcd7sqv051d5n"))))
7747 (build-system emacs-build-system)
7748 (arguments
7749 `(#:phases
7750 (modify-phases %standard-phases
7751 (add-after 'install 'install-data
7752 (lambda* (#:key outputs #:allow-other-keys)
7753 (copy-recursively "data"
7754 (string-append (assoc-ref outputs "out")
7755 "/share/emacs/site-lisp/guix.d/"
7756 "emojify-" ,version "/data"))
7757 #t)))))
7758 (propagated-inputs
7759 `(("emacs-ht" ,emacs-ht)))
7760 (home-page "https://github.com/iqbalansari/emacs-emojify")
7761 (synopsis "Display emojis in Emacs")
7762 (description "This package displays emojis in Emacs similar to how Github,
7763Slack, and other websites do. It can display plain ASCII like @code{:)} as
7764well as Github-style emojis like @code{:smile:}. It provides a minor mode
7765@code{emojify-mode} to enable the display of emojis in a buffer.")
7766 (license license:gpl3+)))
7767
9c058ef2
RW
7768(define-public emacs-websocket
7769 (package
7770 (name "emacs-websocket")
a6334e6e 7771 (version "1.10")
9c058ef2
RW
7772 (source
7773 (origin
a6334e6e
RW
7774 (method git-fetch)
7775 (uri (git-reference
7776 (url "https://github.com/ahyatt/emacs-websocket.git")
7777 (commit version)))
7778 (file-name (string-append name "-" version "-checkout"))
9c058ef2
RW
7779 (sha256
7780 (base32
a6334e6e 7781 "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"))))
9c058ef2
RW
7782 (build-system emacs-build-system)
7783 (home-page "http://elpa.gnu.org/packages/websocket.html")
7784 (synopsis "Emacs WebSocket client and server")
7785 (description "This is an Elisp library for WebSocket clients to talk to
7786WebSocket servers, and for WebSocket servers to accept connections from
7787WebSocket clients. This library is designed to be used by other library
7788writers, to write applications that use WebSockets, and is not useful by
7789itself.")
7790 (license license:gpl3+)))
7791
a204c14c
RW
7792(define-public emacs-oauth2
7793 (package
7794 (name "emacs-oauth2")
7795 (version "0.11")
7796 (source
7797 (origin
7798 (method url-fetch)
7799 (uri (string-append "https://elpa.gnu.org/packages/oauth2-"
7800 version ".el"))
7801 (sha256
7802 (base32
7803 "0ydkc9jazsnbbvfhd47mql52y7k06n3z7r0naqxkwb99j9blqsmp"))))
7804 (build-system emacs-build-system)
7805 (home-page "http://elpa.gnu.org/packages/oauth2.html")
7806 (synopsis "OAuth 2.0 authorization protocol implementation")
7807 (description
7808 "This package provides an Elisp implementation of the OAuth 2.0 draft.
7809The main entry point is @code{oauth2-auth-and-store} which will return a token
7810structure. This token structure can be then used with
7811@code{oauth2-url-retrieve-synchronously} or @code{oauth2-url-retrieve} to
7812retrieve any data that need OAuth authentication to be accessed. If the token
7813needs to be refreshed, the code handles it automatically and stores the new
7814value of the access token.")
7815 (license license:gpl3+)))
7816
26b388ce
RW
7817(define-public emacs-circe
7818 (package
7819 (name "emacs-circe")
79b83412 7820 (version "2.10")
26b388ce
RW
7821 (source
7822 (origin
7823 (method git-fetch)
7824 (uri (git-reference
7825 (url "https://github.com/jorgenschaefer/circe.git")
7826 (commit (string-append "v" version))))
79b83412 7827 (file-name (git-file-name name version))
26b388ce
RW
7828 (sha256
7829 (base32
79b83412 7830 "10gi14kwxd81blddpvqh95lgmpbfgp0m955naxix3bs3r6a75n4s"))))
26b388ce
RW
7831 (build-system emacs-build-system)
7832 ;; In order to securely connect to an IRC server using TLS, Circe requires
7833 ;; the GnuTLS binary.
7834 (propagated-inputs
7835 `(("gnutls" ,gnutls)))
7836 (home-page "https://github.com/jorgenschaefer/circe")
7837 (synopsis "Client for IRC in Emacs")
7838 (description "Circe is a Client for IRC in Emacs. It integrates well with
7839the rest of the editor, using standard Emacs key bindings and indicating
7840activity in channels in the status bar so it stays out of your way unless you
7841want to use it.")
7842 (license license:gpl3+)))
7843
8fc78612
NG
7844(define-public emacs-tracking
7845 (package
7846 (inherit emacs-circe)
7847 (name "emacs-tracking")
7848 (arguments
7849 ;; "tracking.el" is a library extracted from Circe package. It requires
7850 ;; "shorten.el".
7851 `(#:include '("^shorten.el$" "^tracking.el$")
7852 #:tests? #f)) ;tests require buttercup
7853 (home-page "https://github.com/jorgenschaefer/circe/wiki/Tracking")
7854 (synopsis "Buffer tracking library")
7855 (description "@code{tracking.el} provides a way for different modes to
7856notify the user that a buffer needs attention. The user then can cycle
7857through them using @key{C-c C-SPC}.")
7858 (license license:gpl3+)))
7859
5c8cdd4e 7860(define-public emacs-slack
bc84fc47
RW
7861 (let ((commit "99a57501629a0329a9ca090c1ea1296462eda02d")
7862 (revision "5"))
5c8cdd4e
RW
7863 (package
7864 (name "emacs-slack")
bc84fc47 7865 (version (git-version "0.0.2" revision commit))
5c8cdd4e
RW
7866 (source (origin
7867 (method git-fetch)
7868 (uri (git-reference
7869 (url "https://github.com/yuya373/emacs-slack.git")
7870 (commit commit)))
bc84fc47 7871 (file-name (git-file-name name commit))
5c8cdd4e
RW
7872 (sha256
7873 (base32
bc84fc47 7874 "0jw1diypfw8pmzkq0napgxmfc0gqka7zcccgnw359604lr30k2z2"))))
5c8cdd4e
RW
7875 (build-system emacs-build-system)
7876 (propagated-inputs
7877 `(("emacs-alert" ,emacs-alert)
7878 ("emacs-emojify" ,emacs-emojify)
bc84fc47 7879 ("emacs-helm" ,emacs-helm)
5c8cdd4e
RW
7880 ("emacs-request" ,emacs-request)
7881 ("emacs-websocket" ,emacs-websocket)
7882 ("emacs-oauth2" ,emacs-oauth2)
7883 ("emacs-circe" ,emacs-circe)))
7884 (home-page "https://github.com/yuya373/emacs-slack")
7885 (synopsis "Slack client for Emacs")
7886 (description "This package provides an Emacs client for the Slack
7887messaging service.")
7888 (license license:gpl3+))))
7889
4aafce22
JN
7890(define-public emacs-bash-completion
7891 (package
7892 (name "emacs-bash-completion")
d39c9efa 7893 (version "2.1.0")
4aafce22
JN
7894 (source
7895 (origin
7896 (method url-fetch)
7897 (uri (string-append
7898 "https://github.com/szermatt/emacs-bash-completion/archive/v"
7899 version ".tar.gz"))
7900 (file-name (string-append name "-" version ".tar.gz"))
7901 (sha256
7902 (base32
d39c9efa 7903 "1z0qck3v3ra6ivacn8n04w1v33a4xn01xx860761q31qzsv3sksq"))))
4aafce22
JN
7904 (inputs `(("bash" ,bash)))
7905 (build-system emacs-build-system)
7906 (arguments
7907 `(#:phases
7908 (modify-phases %standard-phases
7909 (add-before 'install 'configure
7910 (lambda* (#:key inputs #:allow-other-keys)
7911 (let ((bash (assoc-ref inputs "bash")))
7912 (emacs-substitute-variables "bash-completion.el"
7913 ("bash-completion-prog" (string-append bash "/bin/bash"))))
7914 #t)))))
7915 (home-page "https://github.com/szermatt/emacs-bash-completion")
d3095f34 7916 (synopsis "Bash completion for the shell buffer")
4aafce22
JN
7917 (description
7918 "@code{bash-completion} defines dynamic completion hooks for shell-mode
d3095f34 7919and shell-command prompts that are based on Bash completion.")
4aafce22 7920 (license license:gpl2+)))
d02c2873
KM
7921
7922(define-public emacs-easy-kill
7923 (package
7924 (name "emacs-easy-kill")
7925 (version "0.9.3")
7926 (source (origin
7927 (method url-fetch)
7928 (uri (string-append "https://elpa.gnu.org/packages/easy-kill-"
7929 version ".tar"))
7930 (sha256
7931 (base32
7932 "17nw0mglmg877axwg1d0gs03yc0p04lzmd3pl0nsnqbh3303fnqb"))))
7933 (build-system emacs-build-system)
7934 (home-page "https://github.com/leoliu/easy-kill")
7935 (synopsis "Kill and mark things easily in Emacs")
7936 (description
7937 "This package provides commands @code{easy-kill} and @code{easy-mark} to
7938let users kill or mark things easily.")
7939 (license license:gpl3+)))
9faa46ee
MC
7940
7941(define-public emacs-csv-mode
7942 (package
7943 (name "emacs-csv-mode")
7944 (version "1.7")
7945 (source
7946 (origin
7947 (method url-fetch)
7948 (uri (string-append "http://elpa.gnu.org/packages/csv-mode-"
7949 version ".el"))
7950 (sha256
7951 (base32
7952 "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
7953 (build-system emacs-build-system)
7954 (home-page
7955 "http://elpa.gnu.org/packages/csv-mode.html")
7956 (synopsis
7957 "Major mode for editing comma/char separated values")
7958 (description
7959 "This Emacs package implements CSV mode, a major mode for editing records
7960in a generalized CSV (character-separated values) format.")
7961 (license license:gpl3+)))
3fe4c9dc
OP
7962
7963(define-public emacs-transmission
7964 (package
7965 (name "emacs-transmission")
5ad13e6c 7966 (version "0.12.1")
3fe4c9dc
OP
7967 (source (origin
7968 (method url-fetch)
7969 (uri (string-append
7970 "https://github.com/holomorph/transmission/archive/"
7971 version ".tar.gz"))
7972 (file-name (string-append name "-" version ".tar.gz"))
7973 (sha256
7974 (base32
5ad13e6c 7975 "1rrlgn96gi1ljfwbwvlyyxbq75xzamlbdhq1bpyadxxmxcvlmk3n"))))
3fe4c9dc
OP
7976 (build-system emacs-build-system)
7977 (home-page "https://github.com/holomorph/transmission")
7978 (synopsis "Emacs interface to a Transmission session")
7979 (description "This package provides an Emacs interface to interact with a
7980running session of the Transmission Bittorrent client.
7981
7982Features:
7983
7984@itemize
7985@item List, add, start/stop, verify, remove torrents.
7986@item Set speed limits, ratio limits, bandwidth priorities, trackers.
7987@item Navigate to the corresponding file list, torrent info, peer info
7988contexts.
7989@item Toggle downloading and set priorities for individual files.
7990@end itemize\n")
7991 (license license:gpl3+)))
a6d02fc1 7992
c46e654f 7993(define-public emacs-polymode
56dc27d6
RW
7994 (package
7995 (name "emacs-polymode")
7996 (version "0.1.5")
7997 (source (origin
7998 (method git-fetch)
7999 (uri (git-reference
8000 (url "https://github.com/vspinu/polymode.git")
8001 (commit (string-append "v" version))))
8002 (file-name (git-file-name name version))
8003 (sha256
8004 (base32
8005 "0wwphs54jx48a3ca6x1qaz56j3j9bg4mv8g2akkffrzbdcb8sbc7"))))
8006 (build-system emacs-build-system)
8007 (arguments
8008 `(#:include (cons* "^modes/.*\\.el$" %default-include)
8009 #:phases
8010 (modify-phases %standard-phases
8011 (add-after 'set-emacs-load-path 'add-modes-subdir-to-load-path
8012 (lambda _
8013 (setenv "EMACSLOADPATH"
8014 (string-append (getenv "EMACSLOADPATH")
8015 ":" (getcwd) "/modes" ":")))))))
8016 (home-page "https://github.com/vspinu/polymode")
8017 (synopsis "Framework for multiple Emacs modes based on indirect buffers")
8018 (description "Polymode is an Emacs package that offers generic support
c46e654f
RW
8019for multiple major modes inside a single Emacs buffer. It is lightweight,
8020object oriented and highly extensible. Creating a new polymode typically
8021takes only a few lines of code. Polymode also provides extensible facilities
8022for external literate programming tools for exporting, weaving and tangling.")
56dc27d6 8023 (license license:gpl3+)))
c46e654f 8024
bc3ece7d
OP
8025(define-public emacs-polymode-ansible
8026 (let ((commit "b26094d029e25dc797b94254f797e7807a57e4c8"))
8027 (package
8028 (name "emacs-polymode-ansible")
8029 ;; No upstream version release yet.
8030 (version (git-version "0.1" "1" commit))
8031 (source
8032 (origin
8033 (method git-fetch)
8034 (uri (git-reference
8035 (url "https://gitlab.com/mavit/poly-ansible")
8036 (commit commit)))
8037 (file-name (git-file-name name version))
8038 (sha256
8039 (base32
8040 "055shddqibib3hx2ykwdz910nrqws40cd407mq946l2bf6v87gj6"))))
8041 (build-system emacs-build-system)
8042 (propagated-inputs
8043 `(("emacs-ansible-doc" ,emacs-ansible-doc)
8044 ("emacs-jinja2-mode" ,emacs-jinja2-mode)
8045 ("emacs-polymode" ,emacs-polymode)
8046 ("emacs-yaml-mode" ,emacs-yaml-mode)))
8047 (properties '((upstream-name . "poly-ansible")))
8048 (home-page "https://gitlab.com/mavit/poly-ansible/")
8049 (synopsis "Polymode for Ansible - Jinja2 in YAML")
8050 (description
8051 "Edit YAML files for Ansible containing embedded Jinja2 templating.")
8052 (license license:gpl3+))))
8053
a6d02fc1
OP
8054(define-public eless
8055 (package
8056 (name "eless")
8057 (version "0.3")
8058 (source (origin
8059 (method url-fetch)
8060 (uri (string-append
8061 "https://github.com/kaushalmodi/eless/archive/"
8062 "v" version ".tar.gz"))
8063 (file-name (string-append name "-" version ".tar.gz"))
8064 (sha256
8065 (base32
8066 "0gjnnhgw5xs1w3qfnkvwa2nv44gnxr8pkhx3c7qig45p8nh1461h"))))
8067 (build-system trivial-build-system)
8068 (inputs
8069 `(("bash" ,bash)))
8070 (native-inputs
8071 `(("tar" ,tar)
8072 ("gzip" ,gzip)))
8073 (arguments
8074 `(#:modules ((guix build utils))
8075 #:builder
8076 (begin
8077 (use-modules (guix build utils))
8078 (setenv "PATH" (string-append
8079 (assoc-ref %build-inputs "tar") "/bin" ":"
8080 (assoc-ref %build-inputs "gzip") "/bin"))
e3cfef22 8081 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
a6d02fc1
OP
8082 (chdir (string-append "eless" "-" ,version))
8083 (substitute* "eless" (("/usr/bin/env bash")
8084 (string-append (assoc-ref %build-inputs "bash")
8085 "/bin/bash")))
8086 (install-file "eless" (string-append %output "/bin"))
8087 (install-file "doc/eless.info" (string-append %output "/share/info"))
8088 #t)))
8089 (home-page "https://github.com/kaushalmodi/eless")
8090 (synopsis "Use Emacs as a paginator")
8091 (description "@code{eless} provides a combination of Bash script
8092and a minimal Emacs view-mode.
8093
8094Feautures:
8095
8096@itemize
8097@item Independent of a user’s Emacs config.
8098@item Customizable via the @code{(locate-user-emacs-file \"elesscfg\")} config.
8099@item Not require an Emacs server to be already running.
8100@item Syntax highlighting.
8101@item Org-mode file rendering.
8102@item @code{man} page viewer.
8103@item Info viewer.
8104@item Dired, wdired, (batch edit symbolic links).
8105@item Colored diffs, git diff, git log, ls with auto ANSI detection.
8106@item Filter log files lines matching a regexp.
8107@item Auto-revert log files similar to @code{tail -f}.
8108@item Quickly change frame and font sizes.
8109@end itemize\n")
8110 (license license:expat)))
491cbd35
MG
8111
8112(define-public emacs-evil-matchit
8113 (package
8114 (name "emacs-evil-matchit")
9a910133 8115 (version "2.2.6")
491cbd35
MG
8116 (source
8117 (origin
8118 (method url-fetch)
8119 (uri (string-append
8120 "https://github.com/redguardtoo/evil-matchit/archive/"
8121 version ".tar.gz"))
8122 (file-name (string-append name "-" version ".tar.gz"))
8123 (sha256
8124 (base32
9a910133 8125 "1yp9sl6542317mn1060ri90zyf6bs6qylagndhqy02p368q31rhi"))))
491cbd35 8126 (build-system emacs-build-system)
80c4aabb
MC
8127 (propagated-inputs
8128 `(("emacs-evil" ,emacs-evil)))
491cbd35
MG
8129 (home-page "https://github.com/redguardtoo/evil-matchit")
8130 (synopsis "Vim matchit ported into Emacs")
8131 (description
8132 "@code{evil-matchit} is a minor mode for jumping between matching tags in
8133evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.")
8134 (license license:gpl3+)))
ab8a4a78
AI
8135
8136(define-public emacs-evil-smartparens
8137 (package
8138 (name "emacs-evil-smartparens")
8139 (version "0.4.0")
8140 (source
8141 (origin
8142 (method url-fetch)
8143 (uri (string-append
8144 "https://github.com/expez/evil-smartparens/archive/"
8145 version ".tar.gz"))
8146 (file-name (string-append name "-" version ".tar.gz"))
8147 (sha256
8148 (base32
8149 "1bwzdd3054d407d5j4m3njsbvmc9r8zzp33m32pj3b3irxrl68q0"))))
8150 (build-system emacs-build-system)
8151 (propagated-inputs
8152 `(("emacs-evil" ,emacs-evil)
8153 ("emacs-smartparens" ,emacs-smartparens)))
8154 (home-page "https://github.com/expez/evil-smartparens")
8155 (synopsis "Emacs Evil integration for Smartparens")
8156 (description "@code{emacs-evil-smartparens} is an Emacs minor mode which
8157makes Evil play nice with Smartparens. Evil is an Emacs minor mode that
8158emulates Vim features and provides Vim-like key bindings.")
8159 (license license:gpl3+)))
2891ea39
AI
8160
8161(define-public emacs-evil-quickscope
8162 (package
8163 (name "emacs-evil-quickscope")
8164 (version "0.1.4")
8165 (source
8166 (origin
8167 (method url-fetch)
8168 (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v"
8169 version ".tar.gz"))
8170 (file-name (string-append name "-" version ".tar.gz"))
8171 (sha256
8172 (base32
8173 "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma"))))
8174 (build-system emacs-build-system)
8175 (propagated-inputs
8176 `(("emacs-evil" ,emacs-evil)))
8177 (arguments
d1d41db6
MC
8178 `(#:tests? #t
8179 #:test-command '("emacs" "--batch"
8180 "-l" "evil-quickscope-tests.el"
8181 "-f" "ert-run-tests-batch-and-exit")))
2891ea39
AI
8182 (home-page "https://github.com/blorbx/evil-quickscope")
8183 (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands")
8184 (description "@code{emacs-evil-quickscope} highlights targets for Evil
8185mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a
8186port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim
8187features and provides Vim-like key bindings.")
8188 (license license:gpl3+)))
2a67ff1f
MO
8189
8190(define-public emacs-bongo
8191 (package
8192 (name "emacs-bongo")
8193 (version "1.0")
8194 (source
8195 (origin
8196 (method url-fetch)
8197 (uri (string-append
8198 "https://github.com/dbrock/bongo/archive/"
8199 version ".tar.gz"))
8200 (file-name (string-append name "-" version ".tar.gz"))
8201 (sha256
8202 (base32
8203 "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
8204 (build-system emacs-build-system)
8205 (home-page "https://github.com/dbrock/bongo")
8206 (synopsis "Media player for Emacs")
8207 (description
8208 "This package provides a flexible media player for Emacs. @code{Bongo}
8209supports multiple backends such as @code{vlc}, @code{mpg123},
8210@code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
8211@code{afplay}.")
8212 (license license:gpl2+)))
548cc74c 8213
5c8031ff 8214(define-public emacs-groovy-modes
548cc74c 8215 (package
5c8031ff 8216 (name "emacs-groovy-modes")
548cc74c
CB
8217 (version "2.0")
8218 (source (origin
8219 (method url-fetch)
8220 (uri (string-append
06619128 8221 "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes"
548cc74c
CB
8222 "/archive/" version ".tar.gz"))
8223 (file-name (string-append name "-" version ".tar.gz"))
8224 (sha256
8225 (base32
8226 "15j0hnkx9nppjzda5cqsxxz5f3bq9hc4xfyjcdypzqiypcvmpa39"))))
8227 (build-system emacs-build-system)
8228 (propagated-inputs
8229 `(("emacs-s" ,emacs-s)))
8230 (home-page "https://github.com/Groovy-Emacs-Modes/groovy-emacs-modes")
8231 (synopsis "Groovy related modes for Emacs")
8232 (description
8233 "This package provides @code{groovy-mode} for syntax highlighing in
8234Groovy source files, REPL integration with run-groovy and Grails project
8235navigation with the grails mode.")
8236 (license license:gpl3+)))
02267798 8237
5c8031ff
PN
8238(define-public groovy-emacs-modes
8239 (deprecated-package "groovy-emacs-modes" emacs-groovy-modes))
8240
8241(define-public emacs-org-tree-slide
02267798
LC
8242 (let ((commit "dff8f1a4a64c8dd0a1fde0b0131e2fe186747134")
8243 (revision "0"))
8244 (package
8245 (name "emacs-org-tree-slide")
8246 (version (git-version "0.1" revision commit))
8247 (home-page "https://github.com/takaxp/org-tree-slide")
8248 (source (origin
8249 (method git-fetch)
8250 (uri (git-reference (url home-page) (commit commit)))
8251 (sha256
8252 (base32
8253 "153bg0x7ypla11pq51jmsgzfjklwwnrq56xgpbfhk1j16xwz9hyf"))
8254 (file-name (git-file-name name version))))
8255 (build-system emacs-build-system)
8256 (synopsis "Presentation tool for org-mode")
8257 (description
8258 "Org-tree-slide provides a slideshow mode to view org-mode files. Use
8259@code{org-tree-slide-mode} to enter the slideshow mode, and then @kbd{C->} and
8260@kbd{C-<} to jump to the next and previous slide.")
8261 (license license:gpl3+))))
ac07b94a
OP
8262
8263(define-public emacs-scratch-el
8264 (let ((commit "2cdf2b841ce7a0987093f65b0cc431947549f897")
8265 (revision "1"))
8266 (package
8267 (name "emacs-scratch-el")
8268 (version (git-version "1.2" revision commit))
8269 (source (origin
8270 (method git-fetch)
8271 (uri (git-reference
8272 (url "https://github.com/ieure/scratch-el.git")
8273 (commit commit)))
8274 (file-name (git-file-name name version))
8275 (sha256
8276 (base32
8277 "0wscsndynjmnliajqaz28r1ww81j8wh84zwaaswx51abhwgl0idf"))))
8278 (build-system emacs-build-system)
8279 (native-inputs
8280 `(("texinfo" ,texinfo)))
8281 (arguments
8282 '(#:phases
8283 (modify-phases %standard-phases
8284 (add-after 'install 'install-doc
8285 (lambda* (#:key outputs #:allow-other-keys)
8286 (unless (invoke "makeinfo" "scratch.texi")
8287 (error "makeinfo failed"))
8288 (install-file "scratch.info"
8289 (string-append (assoc-ref outputs "out")
8290 "/share/info"))
8291 #t)))))
8292 (home-page "https://github.com/ieure/scratch-el/")
8293 (synopsis "Create scratch buffers with the same mode as current buffer")
8294 (description "Scratch is an extension to Emacs that enables one to create
8295scratch buffers that are in the same mode as the current buffer. This is
8296notably useful when working on code in some language; you may grab code into a
8297scratch buffer, and, by virtue of this extension, do so using the Emacs
8298formatting rules for that language.")
8299 (license license:bsd-2))))
5b238292 8300
62950ec7
MC
8301(define-public emacs-kv
8302 (package
8303 (name "emacs-kv")
8304 (version "0.0.19")
8305 (source
8306 (origin
8307 (method git-fetch)
8308 (uri (git-reference
8309 (url "https://github.com/nicferrier/emacs-kv.git")
8310 (commit "721148475bce38a70e0b678ba8aa923652e8900e")))
8311 (file-name (string-append name "-" version "-checkout"))
8312 (sha256
8313 (base32
8314 "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"))))
8315 (build-system emacs-build-system)
8316 (arguments
8317 `(#:tests? #t
8318 #:test-command '("emacs" "--batch" "-l" "kv-tests.el"
8319 "-f" "ert-run-tests-batch-and-exit")))
8320 (home-page "https://github.com/nicferrier/emacs-kv")
8321 (synopsis "Key/Value data structures library for Emacs Lisp")
8322 (description "@code{emacs-kv} is a collection of tools for dealing with
8323key/value data structures such as plists, alists and hash-tables in Emacs
8324Lisp.")
8325 (license license:gpl3+)))
8326
8d899214
RW
8327(define-public emacs-esxml
8328 (package
8329 (name "emacs-esxml")
8330 (version "0.3.4")
8331 (source (origin
8332 (method git-fetch)
8333 (uri (git-reference
8334 (url "https://github.com/tali713/esxml.git")
8335 (commit version)))
8336 (file-name (git-file-name name version))
8337 (sha256
8338 (base32
8339 "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"))))
8340 (build-system emacs-build-system)
9835a71d
MC
8341 (arguments
8342 `(#:phases
8343 (modify-phases %standard-phases
8344 (add-after 'unpack 'fix-sources
8345 (lambda _
8346 ;; See: https://github.com/tali713/esxml/pull/28.
8347 (substitute* "css-lite.el"
8348 ((";;; main interface")
8349 (string-append ";;; main interface\n"
8350 "(require 'cl-lib)"))
8351 (("mapcan")
8352 "cl-mapcan")
8353 (("',\\(cl-mapcan #'process-css-rule rules\\)")
8354 "(cl-mapcan #'process-css-rule ',rules)"))
8355 (substitute* "esxml-form.el"
8356 ((",esxml-form-field-defn")
8357 "#'esxml-form-field-defn"))
8358 ;; See: https://github.com/tali713/esxml/issues/25
8359 (delete-file "esxpath.el")
8360 #t)))))
8361 (propagated-inputs
8362 `(("emacs-kv" ,emacs-kv)))
8d899214
RW
8363 (home-page "https://github.com/tali713/esxml/")
8364 (synopsis "SXML for EmacsLisp")
8365 (description "This is XML/XHTML done with S-Expressions in EmacsLisp.
8366Simply, this is the easiest way to write HTML or XML in Lisp. This library
8367uses the native form of XML representation as used by many libraries already
8368included within Emacs. See @code{esxml-to-xml} for a concise description of
8369the format.")
8370 (license license:gpl3+)))
8371
5f78ce49
RW
8372(define-public emacs-nov-el
8373 (package
8374 (name "emacs-nov-el")
b4237a6e 8375 (version "0.2.6")
5f78ce49
RW
8376 (source (origin
8377 (method git-fetch)
8378 (uri (git-reference
8379 (url "https://github.com/wasamasa/nov.el.git")
8380 (commit version)))
8381 (file-name (git-file-name name version))
8382 (sha256
8383 (base32
b4237a6e 8384 "188h5gzn1zf443g0b7q5bpmvvpr6ds5h8aci8vxc92py56rhyrvc"))))
5f78ce49
RW
8385 (build-system emacs-build-system)
8386 (arguments
8387 `(#:phases
8388 (modify-phases %standard-phases
8389 (add-after 'unpack 'embed-path-to-unzip
8390 (lambda _
8391 (substitute* "nov.el"
8392 (("\\(executable-find \"unzip\"\\)")
8393 (string-append "\"" (which "unzip") "\"")))
8394 #t)))))
8395 (propagated-inputs
8396 `(("emacs-dash" ,emacs-dash)
8397 ("emacs-esxml" ,emacs-esxml)))
8398 (inputs
8399 `(("unzip" ,unzip)))
8400 (home-page "https://github.com/wasamasa/nov.el/")
8401 (synopsis "Major mode for reading EPUBs in Emacs")
8402 (description "@code{nov.el} provides a major mode for reading EPUB
8403documents.
8404
8405Features:
8406
8407@itemize
8408@item Basic navigation (jump to TOC, previous/next chapter)
8409@item Remembering and restoring the last read position
8410@item Jump to next chapter when scrolling beyond end
8411@item Renders EPUB2 (@code{.ncx}) and EPUB3 (@code{<nav>}) TOCs
8412@item Hyperlinks to internal and external targets
8413@item Supports textual and image documents
8414@item View source of document files
8415@item Metadata display
8416@item Image rescaling
8417@end itemize
8418")
8419 (license license:gpl3+)))
8420
5b238292
OP
8421(define-public epipe
8422 (package
8423 (name "epipe")
8424 (version "0.1.0")
8425 (source
8426 (origin
8427 (method url-fetch)
8428 (uri (string-append "https://github.com/cute-jumper/epipe/archive/"
8429 version ".tar.gz"))
8430 (file-name (string-append name "-" version ".tar.gz"))
8431 (sha256
8432 (base32
8433 "05a036852g4j63k1mhvyfrcsgkl9lczayi7x61570ysw3cli5wp5"))))
8434 (build-system trivial-build-system)
8435 (inputs
8436 `(("bash" ,bash)
8437 ("perl" ,perl)))
8438 (native-inputs
8439 `(("tar" ,tar)
8440 ("gzip" ,gzip)))
8441 (arguments
8442 `(#:modules
8443 ((guix build utils))
8444 #:builder
8445 (begin
8446 (use-modules (guix build utils))
8447 ;; Extract source
8448 (setenv "PATH" (string-append
8449 (assoc-ref %build-inputs "tar") "/bin" ":"
8450 (assoc-ref %build-inputs "gzip") "/bin"))
e3cfef22 8451 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
5b238292
OP
8452 (chdir (string-append ,name "-" ,version))
8453 ;; Patch shebangs
8454 (substitute* "epipe"
8455 (("/usr/bin/env bash")
8456 (string-append (assoc-ref %build-inputs "bash") "/bin/bash")))
8457 (patch-shebang "epipe.pl"
8458 (list (string-append (assoc-ref %build-inputs "perl")
8459 "/bin")))
8460 ;; Installation
8461 (for-each (lambda (file)
8462 (install-file file (string-append %output "/bin")))
8463 '("epipe" "epipe.pl"))
8464 #t)))
8465 (home-page "https://github.com/cute-jumper/epipe")
8466 (synopsis "Pipe to the @code{emacsclient}")
8467 (description "@code{epipe} provides an utility to use your editor in
8468the pipeline, featuring the support for running @code{emacsclient}.")
8469 (license license:gpl3+)))
dc97f7e2
CB
8470
8471(define-public emacs-hcl-mode
8472 (package
8473 (name "emacs-hcl-mode")
8474 (version "0.03")
8475 (source
8476 (origin
8477 (method url-fetch)
8478 (uri (string-append
8479 "https://github.com/syohex/emacs-hcl-mode/archive/"
8480 version ".tar.gz"))
8481 (file-name (string-append name "-" version ".tar.gz"))
8482 (sha256
8483 (base32
8484 "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x"))))
8485 (build-system emacs-build-system)
8486 (home-page "https://github.com/syohex/emacs-hcl-mode")
8487 (synopsis "Major mode for the Hashicorp Configuration Language")
8488 (description
8489 "@code{emacs-hcl-mode} provides an Emacs major mode for working with
8490@acronym{HCL, Hashicorp Configuration Language}. It provides syntax
8491highlighting and indentation support.")
8492 (license license:gpl3+)))
68d70f6a
CB
8493
8494(define-public emacs-terraform-mode
8495 (package
8496 (name "emacs-terraform-mode")
8497 (version "0.06")
8498 (source
8499 (origin
8500 (method url-fetch)
8501 (uri (string-append
8502 "https://github.com/syohex/emacs-terraform-mode/archive/"
8503 version ".tar.gz"))
8504 (file-name (string-append name "-" version ".tar.gz"))
8505 (sha256
8506 (base32
8507 "0h9267ifdjmcin4sj8slxydbacx4bqicbvg8pa1qq2l72h9m5381"))))
8508 (build-system emacs-build-system)
8509 (propagated-inputs
8510 `(("emacs-hcl-mode" ,emacs-hcl-mode)))
8511 (home-page "https://github.com/syohex/emacs-terraform-mode")
8512 (synopsis "Major mode for Terraform")
8513 (description
8514 "@code{emacs-terraform-mode} provides a major mode for working with
8515@uref{https://www.terraform.io/, Terraform} configuration files. Most of the
8516functionality is inherited from @code{hcl-mode}.")
8517 (license license:gpl3+)))
22d62814
KH
8518
8519(define-public emacs-exec-path-from-shell
8520 (package
8521 (name "emacs-exec-path-from-shell")
8522 (version "1.11")
8523 (source
8524 (origin
8525 (method url-fetch)
8526 (uri (string-append
8527 "https://stable.melpa.org/packages/exec-path-from-shell-"
8528 version ".el"))
8529 (sha256
8530 (base32
8531 "03qjgb81cq1l3j54lvlf98r75vmmgd06mj6qh5wa6mz4xzp4w26r"))))
8532 (build-system emacs-build-system)
8533 (home-page "https://github.com/purcell/exec-path-from-shell")
8534 (synopsis "Get environment variables such as @var{PATH} from the shell")
8535 (description
8536 "This library allows the user to set Emacs @var{exec-path} and @var{PATH}
8537from the shell @var{PATH}, so that @code{shell-command}, @code{compile} and
8538the like work as expected on systems on which Emacs is not guaranteed to
8539inherit a login shell's environment variables. It also allows other
8540environment variables to be retrieved from the shell, so that Emacs will see
8541the same values you get in a terminal.")
8542 (license license:gpl3+)))
5d818b35
KH
8543
8544(define-public emacs-deft
8545 (package
8546 (name "emacs-deft")
8547 (version "0.8")
8548 (source
8549 (origin
8550 (method url-fetch)
8551 (uri (string-append "https://stable.melpa.org/packages/deft-"
8552 version ".el"))
8553 (sha256
8554 (base32
8555 "1vb9cjxskc7c0yyf9pvxy1fzypg1vrcgwnjz0m3hslinsgdyig58"))))
8556 (build-system emacs-build-system)
8557 (home-page "https://jblevins.org/projects/deft/")
8558 (synopsis "Quickly browse, filter, and edit plain text notes")
8559 (description
8560 "Deft is an Emacs mode for quickly browsing, filtering, and editing
8561directories of plain text notes, inspired by Notational Velocity.")
8562 (license license:bsd-3)))
62d1105c
SB
8563
8564(define-public emacs-anzu
8565 (package
8566 (name "emacs-anzu")
8567 (version "0.62")
8568 (source
8569 (origin
8570 (method url-fetch)
2d11acb6
SB
8571 (uri (string-append "https://github.com/syohex/emacs-anzu/archive/"
8572 version ".tar.gz"))
8573 (file-name (string-append name "-" version ".tar.gz"))
62d1105c
SB
8574 (sha256
8575 (base32
2d11acb6 8576 "16cg3897x5znbmgk7sdy0qyd0fbic9dmmz0dchq2vz5z29yhg4cz"))))
62d1105c
SB
8577 (build-system emacs-build-system)
8578 (home-page "https://github.com/syohex/emacs-anzu")
8579 (synopsis "Show number of matches in mode-line while searching")
8580 (description
8581 "Anzu provides a minor mode which displays \"current match/total
8582matches\" in the mode line in various search modes. This is an Emacs port of
8583Anzu.zim.")
8584 (license license:gpl3+)))
c3581ef9
ML
8585
8586(define-public emacs-emmet-mode
8587 (package
8588 (name "emacs-emmet-mode")
8589 (version "1.0.8")
8590 (source (origin
8591 (method url-fetch)
8592 (uri (string-append "https://github.com/smihica/emmet-mode"
8593 "/archive/" version ".tar.gz"))
8594 (file-name (string-append name "-" version ".tar.gz"))
8595 (sha256
8596 (base32
8597 "0g3p22yabfcp98cfv9dgl9il2m2pd53isq2q11vb3s7qyn31f7zj"))))
8598 (build-system emacs-build-system)
8599 (home-page "https://github.com/smihica/emmet-mode")
8600 (synopsis "Unofficial Emmet's support for Emacs")
8601 (description
8602 "Unfold CSS-selector-like expressions to markup. It is intended to be
8603used with SGML-like languages: XML, HTML, XHTML, XSL, etc.")
8604 (license license:gpl3+)))
03efe78c 8605
82bead75
RW
8606(define-public emacs-ergoemacs-mode
8607 (let ((commit "3ce23bba3cb50562693860f87f3528c471d603ba")
8608 (revision "1"))
8609 (package
8610 (name "emacs-ergoemacs-mode")
8611 (version (git-version "5.16.10.12" revision commit))
8612 (source
8613 (origin
8614 (method git-fetch)
8615 (uri (git-reference
8616 (url "https://github.com/ergoemacs/ergoemacs-mode.git")
8617 (commit commit)))
8618 (sha256
8619 (base32
8620 "1s3b9bridl78hh1mxmdk9nqlmqhibbaxk0a1cixmsf23s06w8w6l"))))
8621 (build-system emacs-build-system)
8622 (propagated-inputs
8623 `(("emacs-undo-tree" ,emacs-undo-tree)))
8624 (home-page "https://ergoemacs.github.io/")
8625 (synopsis "Emacs mode based on common modern interface and ergonomics")
8626 (description
8627 "This package provides an efficient Emacs keybinding set based on
8628statistics of command frequency, and supports common shortcuts for open,
8629close, copy, cut, paste, undo, redo.")
8630 (license license:gpl3+))))
8631
03efe78c
KH
8632(define-public emacs-password-store
8633 (package
8634 (name "emacs-password-store")
43726c52 8635 (version "1.7.3")
03efe78c
KH
8636 (source (origin
8637 (method url-fetch)
8638 (uri
8639 (string-append "https://git.zx2c4.com/password-store/snapshot/"
8640 "password-store-" version ".tar.xz"))
8641 (sha256
8642 (base32
43726c52 8643 "1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b"))))
03efe78c
KH
8644 (build-system emacs-build-system)
8645 (arguments
8646 `(#:phases
8647 (modify-phases %standard-phases
8648 (add-after 'unpack 'extract-el-file
8649 (lambda _
8650 (copy-file "contrib/emacs/password-store.el" "password-store.el")
8651 (delete-file-recursively "contrib")
8652 (delete-file-recursively "man")
8653 (delete-file-recursively "src")
8654 (delete-file-recursively "tests"))))))
8655 (propagated-inputs
8656 `(("emacs-f" ,emacs-f)
8657 ("emacs-s" ,emacs-s)
43fa2397 8658 ("emacs-with-editor" ,emacs-with-editor)
03efe78c
KH
8659 ("password-store" ,password-store)))
8660 (home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
8661 (synopsis "Password store (pass) support for Emacs")
8662 (description
8663 "This package provides functions for working with pass (\"the
8664standard Unix password manager\").")
8665 (license license:gpl2+)))
8666
ab4d1c26
KH
8667(define-public emacs-pass
8668 (package
8669 (name "emacs-pass")
8670 (version "1.7")
8671 (source (origin
8672 (method url-fetch)
8673 (uri (string-append
8674 "https://github.com/NicolasPetton/pass/archive/"
8675 version ".tar.gz"))
8676 (sha256
8677 (base32
8678 "0zlx9v6z0q3w9qhq9bq6vb7sli4c9x7qccm2wq55j0nw7bwy2yvj"))
8679 (file-name (string-append name "-" version ".tar.gz"))))
8680 (build-system emacs-build-system)
8681 (propagated-inputs
8682 `(("emacs-password-store" ,emacs-password-store)
8683 ("emacs-f" ,emacs-f)))
8684 (home-page "https://github.com/NicolasPetton/pass")
8685 (synopsis "Major mode for @file{password-store.el}")
8686 (description "This is a major mode for managing password-store (pass)
8687keychains. The keychain entries are displayed in a directory-like structure
8688and can be consulted and modified.")
8689 (license license:gpl3+)))
8690
d4bb4551
SB
8691(define-public emacs-evil-anzu
8692 (package
8693 (name "emacs-evil-anzu")
8694 (version "0.03")
8695 (source
8696 (origin
8697 (method url-fetch)
8698 (uri (string-append "https://github.com/syohex/emacs-evil-anzu"
8699 "/archive/" version ".tar.gz"))
8700 (file-name (string-append name "-" version ".tar.gz"))
8701 (sha256
8702 (base32 "032hh2946z529cizqsg8pm6cpn5qdj8lfk3qskmx6xv3g2ra56ns"))))
8703 (build-system emacs-build-system)
8704 (propagated-inputs
8705 `(("emacs-evil" ,emacs-evil)
8706 ("emacs-anzu" ,emacs-anzu)))
8707 (home-page "https://github.com/syohex/emacs-evil-anzu")
8708 (synopsis "Anzu for evil-mode")
8709 (description "@code{anzu} provides a minor mode that displays the current
8710match and total match information in the mode-line in various search modes.")
8711 (license license:gpl3+)))
086bfb37
OP
8712
8713(define-public emacs-pg
8714 (let ((commit "4f6516ec3946d95dcef49abb6703cc89ecb5183d"))
8715 (package
8716 (name "emacs-pg")
8717 (version (git-version "0.1" "1" commit))
8718 (source (origin
8719 (method git-fetch)
8720 (uri (git-reference (url "https://github.com/cbbrowne/pg.el")
8721 (commit commit)))
8722 (file-name (git-file-name name version))
8723 (sha256
8724 (base32
8725 "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"))))
8726 (build-system emacs-build-system)
8727 (home-page "https://github.com/cbbrowne/pg.el")
8728 (synopsis "Emacs Lisp interface for PostgreSQL")
8729 (description
8730 "This package provides an Emacs Lisp interface for PostgreSQL.")
8731 (license license:gpl3+))))
5b6d6747
OP
8732
8733(define-public emacs-cl-generic
8734 (package
8735 (name "emacs-cl-generic")
8736 (version "0.3")
8737 (source
8738 (origin
8739 (method url-fetch)
8740 (uri (string-append "https://elpa.gnu.org/packages/cl-generic-"
8741 version ".el"))
8742 (sha256
8743 (base32
8744 "0vb338bhjpsnrf60qgxny4z5rjrnifahnrv9axd4shay89d894zq"))))
8745 (build-system emacs-build-system)
8746 (home-page "https://elpa.gnu.org/packages/seq.html")
8747 (synopsis
8748 "Forward @code{cl-generic} compatibility for Emacs before version 25")
8749 (description "This package provides a subset of the features of the
8750@code{cl-generic} package introduced in Emacs-25, for use on previous
8751@code{emacsen}.")
8752 (license license:gpl3+)))
6c92b440
OP
8753
8754(define-public emacs-finalize
8755 (package
8756 (name "emacs-finalize")
8757 (version "2.0.0")
8758 (source
8759 (origin
8760 (method url-fetch)
8761 (uri (string-append "https://github.com/skeeto/elisp-finalize/archive/"
8762 version ".tar.gz"))
8763 (file-name (string-append name "-" version ".tar.gz"))
8764 (sha256
8765 (base32
8766 "077fycy3i5f0kjw5z3rhf4kld5lbk2idz690nkwhkz04vppk4q4x"))))
8767 (build-system emacs-build-system)
8768 (propagated-inputs
8769 `(("emacs-cl-generic" ,emacs-cl-generic)))
8770 (home-page "https://github.com/skeeto/elisp-finalize")
8771 (synopsis "Finalizers for Emacs Lisp")
8772 (description
8773 "This package will allows to immediately run a callback (a finalizer)
8774after its registered lisp object has been garbage collected. This allows for
8775extra resources, such as buffers and processes, to be cleaned up after the
8776object has been freed.")
8777 (license license:unlicense)))
4d089b5e
OP
8778
8779(define-public emacs-emacsql
8780 (package
8781 (name "emacs-emacsql")
8782 (version "2.0.3")
8783 (source
8784 (origin
8785 (method url-fetch)
8786 (uri (string-append "https://github.com/skeeto/emacsql/archive/"
8787 version ".tar.gz"))
8788 (file-name (string-append name "-" version ".tar.gz"))
8789 (sha256
8790 (base32
8791 "04hfjdgl1zc7jysgjc7d7d3xqpr7q1q9gsmzffjd91ii3hpqjgx6"))))
8792 (build-system emacs-build-system)
8793 (arguments
8794 `(#:modules ((guix build emacs-build-system)
8795 (guix build utils)
8796 (guix build emacs-utils)
8797 (srfi srfi-26))
8798 #:phases
8799 (modify-phases %standard-phases
8800 (delete 'build) ;‘build-emacsql-sqlite’ compiles ‘*.el’ files.
8801 (add-before 'install 'patch-elisp-shell-shebangs
8802 (lambda _
8803 (substitute* (find-files "." "\\.el")
8804 (("/bin/sh") (which "sh")))
8805 #t))
8806 (add-after 'patch-elisp-shell-shebangs 'setenv-shell
8807 (lambda _
8808 (setenv "SHELL" "sh")))
8809 (add-after 'setenv-shell 'build-emacsql-sqlite
8810 (lambda _
8811 (invoke "make" "binary" "CC=gcc")))
8812 (add-after 'build-emacsql-sqlite 'install-emacsql-sqlite
8813 ;; This build phase installs emacs-emacsql binary.
8814 (lambda* (#:key outputs #:allow-other-keys)
8815 (install-file "sqlite/emacsql-sqlite"
8816 (string-append (assoc-ref outputs "out")
8817 "/bin"))
8818 #t))
8819 (add-after 'install-emacsql-sqlite 'patch-emacsql-sqlite.el
8820 ;; This build phase removes interactive prompts
8821 ;; and makes sure Emacs look for binaries in the right places.
8822 (lambda* (#:key outputs #:allow-other-keys)
8823 (let ((file "emacsql-sqlite.el"))
8824 (chmod file #o644)
8825 (emacs-substitute-sexps file
8826 ;; Avoid interactive prompts.
8827 ("(defvar emacsql-sqlite-user-prompted" 't)
8828 ;; Make sure Emacs looks for ‘GCC’ binary in the right place.
8829 ("(executable-find" (which "gcc"))
8830 ;; Make sure Emacs looks for ‘emacsql-sqlite’ binary
8831 ;; in the right place.
8832 ("(defvar emacsql-sqlite-executable"
8833 (string-append (assoc-ref outputs "out")
8834 "/bin/emacsql-sqlite"))))))
8835 (replace 'install
8836 (lambda* (#:key outputs #:allow-other-keys)
8837 (let* ((out (assoc-ref outputs "out")))
8838 (install-file "sqlite/emacsql-sqlite"
8839 (string-append out "/bin"))
8840 (for-each (cut install-file <>
8841 (string-append out "/share/emacs/site-lisp/guix.d/"
8842 "emacsql" "-" ,version))
8843 (find-files "." "\\.elc*$")))
8844 #t)))))
8845 (inputs
8846 `(("emacs-minimal" ,emacs-minimal)
e0cc7f66 8847 ("mariadb" ,mariadb)
4d089b5e
OP
8848 ("postgresql" ,postgresql)))
8849 (propagated-inputs
8850 `(("emacs-finalize" ,emacs-finalize)
8851 ("emacs-pg" ,emacs-pg)))
8852 (home-page "https://github.com/skeeto/emacsql")
8853 (synopsis "Emacs high-level SQL database front-end")
8854 (description "Any readable Lisp value can be stored as a value in EmacSQL,
8855including numbers, strings, symbols, lists, vectors, and closures. EmacSQL
8856has no concept of @code{TEXT} values; it's all just Lisp objects. The Lisp
8857object @code{nil} corresponds 1:1 with @code{NULL} in the database.")
8858 (license license:gpl3+)))
93aba854
OP
8859
8860(define-public emacs-closql
8861 (package
8862 (name "emacs-closql")
8863 (version "0.5.1")
8864 (source
8865 (origin
8866 (method url-fetch)
8867 (uri (string-append "https://github.com/emacscollective/closql/archive/"
8868 "v" version ".tar.gz"))
8869 (file-name (string-append name "-" version ".tar.gz"))
8870 (sha256
8871 (base32
8872 "0wa6r0kgbb7f19039p5f3di4dvrvxfgpd8bkam94fca7jvzj536c"))))
8873 (build-system emacs-build-system)
8874 (propagated-inputs
8875 `(("emacs-emacsql" ,emacs-emacsql)))
8876 (home-page "https://github.com/emacscollective/closql")
8877 (synopsis "Store EIEIO objects using EmacSQL")
8878 (description
8879 "This package allows to store uniform EIEIO objects in an EmacSQL
8880database. SQLite is used as backend. This library imposes some restrictions
8881on what kind of objects can be stored; it isn't intended to store arbitrary
8882objects. All objects have to share a common superclass and subclasses cannot
8883add any additional instance slots.")
8884 (license license:gpl3)))
452454e3
OP
8885
8886(define-public emacs-epkg
8887 ;; The release version is to old for the current database scheme.
8888 (let ((commit "432312b9583ed7b88ad9644fd1bf2183765a892e"))
8889 (package
8890 (name "emacs-epkg")
8891 (version (git-version "3.0.0" "1" commit))
8892 (source
8893 (origin
8894 (method git-fetch)
8895 (uri (git-reference
8896 (url "https://github.com/emacscollective/epkg.git")
8897 (commit commit)))
8898 (file-name (git-file-name name version))
8899 (sha256
8900 (base32
8901 "0d882kahn7a0vri7a9r15lvmfx1zn2hsga6jfcc6jv0hqbswlb2k"))))
8902 (build-system emacs-build-system)
8903 (propagated-inputs
8904 `(("emacs-closql" ,emacs-closql)
8905 ("emacs-dash" ,emacs-dash)))
8906 (home-page "https://emacsmirror.net")
8907 (synopsis "Browse the Emacsmirror package database")
8908 (description "This package provides access to a local copy of the
8909Emacsmirror package database. It provides low-level functions for querying
8910the database and a @file{package.el} user interface for browsing the database.
8911Epkg itself is not a package manager.
8912
8913Getting a local copy:
8914
8915@example
8916git clone https://github.com/emacsmirror/epkgs.git ~/.emacs.d/epkgs
8917cd ~/.emacs.d/epkgs
8918git submodule init
8919git config --global url.https://github.com/.insteadOf git@@github.com:
8920git submodule update
8921@end example
8922
8923Some submodule may be missing. In this case Git will prompt for a GitHub user
8924name and password. To skip it press a @key{Return} key.
8925
8926You could get a Epkg package list by invoking @code{epkg-list-packages} in
8927Emacs.")
8928 (license license:gpl3+))))
c51e592d
KH
8929
8930(define-public emacs-elisp-slime-nav
8931 (package
8932 (name "emacs-elisp-slime-nav")
8933 (version "0.9")
8934 (source
8935 (origin
8936 (method url-fetch)
8937 (uri (string-append "https://github.com/purcell/elisp-slime-nav/archive/"
8938 version ".tar.gz"))
8939 (file-name (string-append name "-" version ".tar.gz"))
8940 (sha256
8941 (base32
8942 "1vq7ym1q47p97gxrv45c9gm96d23xbp237vkmakikj6grngxjfb2"))))
8943 (build-system emacs-build-system)
8944 (home-page "https://github.com/purcell/elisp-slime-nav")
8945 (synopsis "Make @code{M-.} and @code{M-,} work for elisp like they do in SLIME")
8946 (description
8947 "This package provides SLIME's convenient @code{M-.}and @code{M-,} navigation
8948in @code{emacs-lisp-mode}, together with an elisp equivalent of
8949@code{slime-describe-symbol}.")
8950 (license license:gpl3+)))
4f95a118
CM
8951
8952(define-public emacs-dedicated
8953 (package
8954 (name "emacs-dedicated")
8955 (version "1.0.0")
8956 (source (origin
8957 (method url-fetch)
8958 (uri (string-append
8959 "https://github.com/emacsorphanage/dedicated/archive/"
8960 version
8961 ".tar.gz"))
8962 (sha256
8963 (base32
8964 "0nhbkp278cvcznb5rp3jp9ii3mjgb79zx8iwfrw7zfk3yg8688ni"))
8965 (file-name (string-append name "-" version ".tar.gz"))))
8966 (build-system emacs-build-system)
8967 (home-page "https://github.com/emacsorphanage/dedicated")
8968 (synopsis "Emacs minor mode for toggling a windows's \"dedicated\" flag")
8969 (description
8970 "This simple Emacs minor mode allows you to toggle a window's
8971\"dedicated\" flag. When a window is \"dedicated\", Emacs will not select
8972files into that window. This can be quite handy since many commands will use
8973another window to show results (compilation mode, starting info, and so on).
8974A dedicated window won't be used for such a purpose. For details, please read
8975the source file.")
8976 (license license:gpl2+)))
59dc661f
OP
8977
8978(define-public emacs-nnreddit
8979 (let ((commit "9843f99d01fd8f1eea2fc685965a7c7f4eeb187a")
8980 (revision "1"))
8981 (package
8982 (name "emacs-nnreddit")
8983 (version (string-append "0.0.1-" revision "."
8984 (string-take commit 7)))
8985 (source (origin
8986 (method git-fetch)
8987 (uri (git-reference
8988 (url "https://github.com/paul-issartel/nnreddit.git")
8989 (commit commit)))
8990 (file-name (string-append name "-" version "-checkout"))
8991 (sha256
8992 (base32
8993 "0j4h3bnga640250jdq8bwyja49r41ssrsjd6lba4gzzllqk02nbn"))))
8994 (build-system emacs-build-system)
8995 (home-page "https://github.com/paul-issartel/nnreddit")
8996 (synopsis "Reddit backend for the Gnus newsreader")
8997 (description "@url{https://www.reddit.com} backend for the Gnus
8998newsreader.")
8999 (license license:gpl3+))))
63e6c4ad
OP
9000
9001(define-public emacs-makey
9002 (package
9003 (name "emacs-makey")
9004 (version "0.3")
9005 (source
9006 (origin
9007 (method url-fetch)
9008 (uri (string-append "https://github.com/mickeynp/makey/archive/"
9009 version ".tar.gz"))
9010 (file-name (string-append name "-" version ".tar.gz"))
9011 (sha256
9012 (base32
9013 "0kzl4q1wf2zhkx9nrymxa67n99iq0bj7zqhpaz4byksna1hsxfmv"))))
9014 (build-system emacs-build-system)
9015 (home-page "https://github.com/mickeynp/makey")
9016 (synopsis "Emacs interactive command-line mode")
9017 (description
9018 "This package provides an Emacs interactive command-line mode.")
9019 (license license:gpl3+)))
a34d562a
OP
9020
9021(define-public emacs-outorg
9022 (let ((commit "78b0695121fb974bc4e971eb4ef7f8afd6d89d64"))
9023 (package
9024 (name "emacs-outorg")
9025 (version (git-version "2.0" "1" commit))
9026 (source
9027 (origin
9028 (method git-fetch)
9029 (uri (git-reference
9030 (url "https://github.com/alphapapa/outorg")
9031 (commit commit)))
9032 (file-name (git-file-name name version))
9033 (sha256
9034 (base32
9035 "03aclh4m3f7rb821gr9pwvnqkkl91px3qxdcarpf3ypa1x4fxvlj"))))
9036 (build-system emacs-build-system)
9037 (home-page "https://github.com/alphapapa/outorg")
9038 (synopsis "Org-style comment editing")
9039 (description "Outorg is for editing comment-sections of source-code
9040files in temporary Org-mode buffers. It turns conventional
9041literate-programming upside-down in that the default mode is the
9042programming-mode, and special action has to be taken to switch to the
9043text-mode (i.e. Org-mode).")
9044 (license license:gpl3+))))
c47c3779
OP
9045
9046(define-public emacs-outshine
9047 (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6"))
9048 (package
9049 (name "emacs-outshine")
9050 (version (git-version "2.0" "1" commit))
9051 (source (origin
9052 (method git-fetch)
9053 (uri (git-reference
9054 (url "https://github.com/alphapapa/outshine.git")
9055 (commit commit)))
9056 (file-name (git-file-name name version))
9057 (sha256
9058 (base32
9059 "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv"))))
9060 (build-system emacs-build-system)
9061 (propagated-inputs
9062 `(("emacs-outorg" ,emacs-outorg)))
9063 (home-page "https://github.com/alphapapa/outshine")
9064 (synopsis "Emacs outline with outshine")
9065 (description "Outshine attempts to bring the look and feel of
9066@code{org-mode} to an Emacs outside of the Org major-mode. It is an extension
9067of @code{outline-minor-mode} (@code{org-mode} itself derives from
9068outline-mode), so there is no such thing like an outshine mode, only
9069@code{outline-minor-mode} with outshine extensions loaded.")
9070 (license license:gpl3+))))
de8d9912
OP
9071
9072(define-public emacs-parsebib
9073 (package
9074 (name "emacs-parsebib")
9075 (version "2.3.1")
9076 (source
9077 (origin
9078 (method url-fetch)
9079 (uri (string-append "https://github.com/joostkremers/parsebib/archive/"
9080 version ".tar.gz"))
9081 (file-name (string-append name "-" version ".tar.gz"))
9082 (sha256
9083 (base32
9084 "0cxagnmc5ab6idmb26axpizhr4sqglkncc59768yavn3p04jyq63"))))
9085 (build-system emacs-build-system)
9086 (home-page "https://github.com/joostkremers/parsebib")
9087 (synopsis "Library for parsing bib files")
9088 (description
9089 "This package provides an Emacs library for parsing bib files.")
9090 (license license:gpl3+)))
55d53210
OP
9091
9092(define-public emacs-biblio
9093 (package
9094 (name "emacs-biblio")
9095 (version "0.1")
9096 (source
9097 (origin
9098 (method url-fetch)
9099 (uri (string-append "https://github.com/cpitclaudel/biblio.el/archive/"
9100 version ".tar.gz"))
9101 (file-name (string-append name "-" version ".tar.gz"))
9102 (sha256
9103 (base32
9104 "109fvivsb4r0rbqljngqrmxqvbnbkqlivczx6brrvlr7ci625lhf"))))
9105 (build-system emacs-build-system)
98668259
TG
9106 (propagated-inputs
9107 `(("emacs-seq" ,emacs-seq)
9108 ("emacs-dash" ,emacs-dash)
9109 ("emacs-let-alist" ,emacs-let-alist)))
55d53210
OP
9110 (home-page "https://github.com/cpitclaudel/biblio.el")
9111 (synopsis "Browse and import bibliographic references")
9112 (description "This package provides an extensible Emacs package for
9113browsing and fetching references.
9114
9115@file{biblio.el} makes it easy to browse and gather bibliographic references
9116and publications from various sources, by keywords or by DOI. References are
9117automatically fetched from well-curated sources, and formatted as BibTeX.")
9118 (license license:gpl3+)))
f063e18c
OP
9119
9120(define-public emacs-helm-bibtex
9121 (let ((commit "8ed898fb5a68f18e9bb9973832a5c1f8abcfc463")
9122 (revision "1"))
9123 (package
9124 (name "emacs-helm-bibtex")
9125 (version (string-append "2.0.0" "-" revision "."
9126 (string-take commit 7)))
9127 (source
9128 (origin
9129 (method git-fetch)
9130 (uri (git-reference
9131 (url "https://github.com/tmalsburg/helm-bibtex.git")
9132 (commit commit)))
9133 (file-name (string-append name "-" version "-checkout"))
9134 (sha256
9135 (base32
9136 "14lyx0vbqr97p3anzrsp7m3q0kqclyjcdwplpraim403fcklzbnz"))))
9137 (build-system emacs-build-system)
9138 (propagated-inputs
9139 `(("emacs-helm" ,emacs-helm)
9140 ("emacs-parsebib" ,emacs-parsebib)
9141 ("emacs-s" ,emacs-s)
9142 ("emacs-dash" ,emacs-dash)
9143 ("emacs-f" ,emacs-f)
814bb816
JL
9144 ("emacs-biblio" ,emacs-biblio)
9145 ("emacs-ivy" ,emacs-ivy)))
f063e18c
OP
9146 (home-page "https://github.com/tmalsburg/helm-bibtex")
9147 (synopsis "Bibliography manager based on Helm")
9148 (description "This package provides bibliography manager for Emacs,
9149based on Helm and the bibtex-completion backend.
9150
9151Key features:
9152
9153@itemize
9154@item Quick access to your bibliography from within Emacs
9155@item Powerful search capabilities
9156@item Provides instant search results as you type
9157@item Tightly integrated with LaTeX authoring, emails, Org mode, etc.
9158@item Open the PDFs, URLs, or DOIs associated with an entry
9159@item Insert LaTeX cite commands, Ebib links, or Pandoc citations,
9160BibTeX entries, or plain text references at point, attach PDFs to emails
9161@item Support for note taking
9162@item Quick access to online bibliographic databases such as Pubmed,
9163arXiv, Google Scholar, Library of Congress, etc.
9164@item Imports BibTeX entries from CrossRef and other sources.
9165@end itemize\n")
9166 (license license:gpl3+))))
f445c75d
OP
9167
9168(define-public emacs-ewmctrl
84960cb7 9169 (let ((commit "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"))
f445c75d
OP
9170 (package
9171 (name "emacs-ewmctrl")
84960cb7 9172 (version (git-version "0.0.1" "1" commit))
f445c75d
OP
9173 (source
9174 (origin
9175 (method git-fetch)
9176 (uri (git-reference
9177 (url "https://github.com/flexibeast/ewmctrl.git")
9178 (commit commit)))
84960cb7 9179 (file-name (git-file-name name version))
f445c75d
OP
9180 (sha256
9181 (base32
9182 "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"))))
9183 (build-system emacs-build-system)
0bcb9258
OP
9184 (arguments
9185 '(#:phases
9186 (modify-phases %standard-phases
9187 (add-after 'unpack 'patch-ewmctrl
9188 ;; This build phase makes sure ‘ewmctrl’ looks
9189 ;; for ‘wmctrl’ in the right place.
9190 (lambda _
9191 (let ((file "ewmctrl.el"))
9192 (chmod file #o644)
9193 (emacs-substitute-sexps file
9194 ("(defcustom ewmctrl-wmctrl-path" (which "wmctrl")))))))))
9195 (inputs
9196 `(("wmctrl" ,wmctrl)))
f445c75d
OP
9197 (home-page "https://github.com/flexibeast/ewmctrl")
9198 (synopsis "Emacs interface to @code{wmctrl}")
9199 (description "@code{ewmctrl} provides an Emacs interface to
9200@code{wmctrl} command-line window-management program.")
9201 (license license:gpl3+))))
707ff555
OP
9202
9203(define-public emacs-helm-gtags
9204 (package
9205 (name "emacs-helm-gtags")
9206 (version "1.5.6")
9207 (source (origin
9208 (method url-fetch)
9209 (uri (string-append
9210 "https://github.com/syohex/emacs-helm-gtags/archive/"
9211 version ".tar.gz"))
9212 (file-name (string-append name "-" version ".tar.gz"))
9213 (sha256
9214 (base32
9215 "1a10snhg6nnnan6w9a7mcziy26vxbsr3c35i0gcarnkdp2yqng36"))))
9216 (build-system emacs-build-system)
d848f55e
OP
9217 (propagated-inputs
9218 `(("emacs-helm" ,emacs-helm)))
707ff555
OP
9219 (home-page "https://github.com/syohex/emacs-helm-gtags")
9220 (synopsis "Emacs Helm interface to GNU Global")
9221 (description
9222 "@code{emacs-helm-gtags} provides a Emacs Helm interface to GNU Global.")
9223 (license license:gpl3+)))
53d4090b
OP
9224
9225(define-public emacs-list-utils
9226 (package
9227 (name "emacs-list-utils")
9228 (version "0.4.4")
9229 (source
9230 (origin
9231 (method url-fetch)
9232 (uri (string-append "https://github.com/rolandwalker/list-utils/archive/"
9233 "v" version ".tar.gz"))
9234 (file-name (string-append name "-" version ".tar.gz"))
9235 (sha256
9236 (base32
9237 "1xc1xh8c82h5gdjbgpdsdclgwxkxbb7h3x3a2bscpm41g8pnan4p"))))
9238 (build-system emacs-build-system)
9239 (home-page "https://github.com/rolandwalker/list-utils")
9240 (synopsis "List-manipulation utility functions")
9241 (description "This package provides a list manipulation library for Emacs.")
9242 (license license:gpl3+)))
fb3aeaf7
OP
9243
9244(define-public emacs-move-text
9245 (package
9246 (name "emacs-move-text")
9247 (version "2.0.8")
9248 (source
9249 (origin
9250 (method url-fetch)
9251 (uri (string-append "https://github.com/emacsfodder/move-text/archive/"
9252 version ".tar.gz"))
9253 (file-name (string-append name "-" version ".tar.gz"))
9254 (sha256
9255 (base32
9256 "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
9257 (build-system emacs-build-system)
9258 (home-page "https://github.com/emacsfodder/move-text")
9259 (synopsis "Move current line or region with M-up or M-down")
9260 (description "This package provide functions to move the current line
9261using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
9262region instead.")
9263 (license license:gpl3+)))
dc586337
OP
9264
9265(define-public emacs-validate
9266 (package
9267 (name "emacs-validate")
9268 (version "1.0.5")
9269 (source (origin
9270 (method url-fetch)
9271 (uri (string-append "https://github.com/Malabarba/validate.el"
9272 "/archive/" version ".tar.gz"))
9273 (file-name (string-append name "-" version ".tar.gz"))
9274 (sha256
9275 (base32
9276 "125mbd111f1h1baw0z3fzm48y1bvaigljyzvvnqgrn0shxbj0khg"))))
9277 (build-system emacs-build-system)
9278 (home-page "https://github.com/Malabarba/validate.el")
9279 (synopsis "Emacs library for scheme validation")
9280 (description "This Emacs library provides two functions that perform
9281schema validation.")
9282 (license license:gpl3+)))
f8a88f22 9283
d7403c12
OP
9284(define-public emacs-rainbow-blocks
9285 (let ((commit "dd435d7bb34ff6f162a5f315df308b90b7e9f842"))
9286 (package
9287 (name "emacs-rainbow-blocks")
9288 (version (git-version "1.0.0" "1" commit))
9289 (source (origin
9290 (method git-fetch)
9291 (uri (git-reference
9292 (url "https://github.com/istib/rainbow-blocks.git")
9293 (commit commit)))
9294 (file-name (git-file-name name version))
9295 (sha256
9296 (base32
9297 "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"))))
9298 (build-system emacs-build-system)
9299 (home-page "https://github.com/istib/rainbow-blocks")
9300 (synopsis "Highlight sexp blocks")
9301 (description "Rainbow-blocks is an Emacs mode that highlights blocks
9302made of parentheses, brackets, and braces according to their depth. Each
9303successive level is highlighted in a different color. This makes it easy to
9304orient yourself in the code, and tell which statements are at a given level.")
9305 (license license:gpl3+))))
20b5b16e
OP
9306
9307(define-public emacs-hierarchy
9308 (package
9309 (name "emacs-hierarchy")
9310 (version "0.7.0")
9311 (source
9312 (origin
9313 (method url-fetch)
9314 (uri (string-append
9315 "https://github.com/DamienCassou/hierarchy/archive/"
9316 "v" version ".tar.gz"))
9317 (file-name (string-append name "-" version ".tar.gz"))
9318 (sha256
9319 (base32
9320 "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
9321 (build-system emacs-build-system)
9322 (home-page "https://github.com/DamienCassou/hierarchy")
9323 (synopsis "Library to create and display hierarchy structures")
9324 (description "This package provides an Emacs library to create, query,
9325navigate and display hierarchy structures.")
9326 (license license:gpl3+)))
0acfc481
OP
9327
9328(define-public emacs-tree-mode
9329 (let ((commit "b06078826d5875d74b0e7b7ac47b0d0917610534")
9330 (revision "1"))
9331 (package
9332 (name "emacs-tree-mode")
9333 (version (string-append "0.0.1" "-" revision "."
9334 (string-take commit 7)))
9335 (source
9336 (origin
9337 (method git-fetch)
9338 (uri (git-reference
9339 (url "https://github.com/emacsorphanage/tree-mode.git")
9340 (commit commit)))
9341 (file-name (string-append name "-" version "-checkout"))
9342 (sha256
9343 (base32
9344 "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"))))
9345 (build-system emacs-build-system)
9346 (home-page "https://github.com/emacsorphanage/tree-mode")
9347 (synopsis "Emacs mode to manage tree widgets")
9348 (description
9349 "This package provides an Emacs library to manage tree widgets.")
9350 (license license:gpl3+))))
74b2f745
OP
9351
9352(define-public emacs-md4rd
9353 (let ((commit "be0fc4951b2d1f5194ffa1fcaac706dbac560500")
9354 (revision "1"))
9355 (package
9356 (name "emacs-md4rd")
9357 (version (string-append "0.0.1" "-" revision "."
9358 (string-take commit 7)))
9359 (source (origin
9360 (method git-fetch)
9361 (uri (git-reference
9362 (url "https://github.com/ahungry/md4rd.git")
9363 (commit commit)))
9364 (file-name (string-append name "-" version "-checkout"))
9365 (sha256
9366 (base32
9367 "1i93shx5x192gd7cl2r6gvcvhhwyi1k08abi5w3izv1hn3pmksgq"))))
9368 (propagated-inputs
9369 `(("emacs-hierarchy" ,emacs-hierarchy)
9370 ("emacs-request" ,emacs-request)
9371 ("emacs-dash" ,emacs-dash)
9372 ("emacs-s" ,emacs-s)
9373 ("emacs-tree-mode" ,emacs-tree-mode)))
9374 (build-system emacs-build-system)
9375 (home-page "https://github.com/ahungry/md4rd")
9376 (synopsis "Emacs Mode for Reddit")
9377 (description
9378 "This package allows to read Reddit from within Emacs interactively.")
9379 (license license:gpl3+))))
b8f91043
OP
9380
9381(define-public emacs-pulseaudio-control
9f2adb2f
PN
9382 (let ((commit "1da372ec79f5d2fb901d1f9f0679fee8848fd011")
9383 (revision "2"))
b8f91043
OP
9384 (package
9385 (name "emacs-pulseaudio-control")
9f2adb2f 9386 (version (git-version "0.0.1" revision commit))
b8f91043
OP
9387 (source
9388 (origin
9389 (method git-fetch)
9390 (uri (git-reference
9391 (url "https://github.com/flexibeast/pulseaudio-control.git")
9392 (commit commit)))
9f2adb2f 9393 (file-name (git-file-name name version))
b8f91043
OP
9394 (sha256
9395 (base32
9f2adb2f 9396 "02xrsms2pjqdk6327midi61i5vg2h9cq5jwaxv43ldm68wl7hi6k"))))
b8f91043 9397 (build-system emacs-build-system)
a14a80da
LC
9398 (arguments
9399 '(#:phases (modify-phases %standard-phases
9400 (add-after 'unpack 'patch-file-name
9401 (lambda* (#:key inputs #:allow-other-keys)
9402 (let ((pulseaudio (assoc-ref inputs "pulseaudio")))
9403 (chmod "pulseaudio-control.el" #o600)
9404 (emacs-substitute-variables "pulseaudio-control.el"
9405 ("pulseaudio-control-pactl-path"
9406 (string-append pulseaudio "/bin/pactl")))
9407 #t))))))
9408 (inputs `(("pulseaudio" ,pulseaudio)))
b8f91043
OP
9409 (home-page "https://github.com/flexibeast/pulseaudio-control")
9410 (synopsis "Control @code{pulseaudio} from Emacs")
9411 (description
9412 "This package allows to control @code{pulseaudio} from Emacs.")
9413 (license license:gpl3+))))
5746ca13
OP
9414
9415(define-public emacs-datetime
9416 (package
9417 (name "emacs-datetime")
9418 (version "0.3")
9419 (source (origin
9420 (method url-fetch)
9421 (uri (string-append
9422 "https://github.com/doublep/datetime/archive/"
9423 version ".tar.gz"))
9424 (file-name (string-append name "-" version ".tar.gz"))
9425 (sha256
9426 (base32
9427 "12wqpj67rjij2ki7nmw38rz3k2bsq68pk6zswknlcn9qhp1zd9w9"))))
9428 (build-system emacs-build-system)
9429 (home-page "https://github.com/doublep/datetime/")
9430 (synopsis "Library to work with dates in Emacs")
9431 (description "Parsing, formatting, matching and recoding
9432timestamps and date-time format strings library for Emacs.")
9433 (license license:gpl3+)))
a3a876c2
OP
9434
9435(define-public emacs-org-mind-map
9436 (let ((commit "9d6e262bedd94daf9de269f4d56de277275677cb")
9437 (revision "1"))
9438 (package
9439 (name "emacs-org-mind-map")
9440 (version (string-append "0.0.1" "-" revision "."
9441 (string-take commit 7)))
9442 (source
9443 (origin
9444 (method git-fetch)
9445 (uri (git-reference
9446 (url "https://github.com/theodorewiles/org-mind-map.git")
9447 (commit commit)))
9448 (file-name (string-append name "-" version "-checkout"))
9449 (sha256
9450 (base32
9451 "0jgkkgq7g64zckrmjib0hvz0qy3ynz5vz13qbmlpf096l3bb65wn"))))
9452 (propagated-inputs
9453 `(("emacs-dash" ,emacs-dash)))
9454 (build-system emacs-build-system)
9455 (home-page "https://github.com/theodorewiles/org-mind-map")
9456 (synopsis "Create Graphviz directed graphs from Org files")
9457 (description
9458 "This package creates Graphviz directed graphs from Org files.")
9459 (license license:gpl3+))))
8d907999
OP
9460
9461(define-public emacs-npm-mode
9462 (package
9463 (name "emacs-npm-mode")
9464 (version "0.6.0")
9465 (source
9466 (origin
9467 (method url-fetch)
9468 (uri (string-append "https://github.com/mojochao/npm-mode/archive/"
9469 version ".tar.gz"))
9470 (file-name (string-append name "-" version ".tar.gz"))
9471 (sha256
9472 (base32
9473 "1kq1ww22dwf8c2i2b4z2ldbbmnihj65kb7n5vzvwkch9h4hxpqh5"))))
9474 (build-system emacs-build-system)
9475 (home-page "https://github.com/mojochao/npm-mode")
9476 (synopsis "Minor mode for working with @code{npm} projects")
9477 (description
9478 "@code{npm-mode} provides a minor mode to work with @code{npm} projects.")
9479 (license license:gpl3+)))
b12fb29e
OP
9480
9481(define-public emacs-seq
9482 (package
9483 (name "emacs-seq")
9484 (version "2.20")
9485 (source
9486 (origin
9487 (method url-fetch)
9488 (uri (string-append "http://elpa.gnu.org/packages/seq-" version ".tar"))
9489 (sha256
9490 (base32
9491 "0vrpx6nnyjb0gsypknzagimlhvcvi5y1rcdkpxyqr42415zr8d0n"))))
9492 (build-system emacs-build-system)
9493 (home-page "http://elpa.gnu.org/packages/seq.html")
9494 (synopsis "Sequence manipulation functions")
9495 (description "Sequence-manipulation functions that complement basic
9496functions provided by @file{subr.el}.")
9497 (license license:gpl3+)))
be3cf803
OP
9498
9499(define-public emacs-itail
9500 (let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
9501 (revision "1"))
9502 (package
9503 (name "emacs-itail")
9504 (version (string-append "0.0.1" "-" revision "."
9505 (string-take commit 7)))
9506 (source
9507 (origin
9508 (method git-fetch)
9509 (uri (git-reference
9510 (url "https://github.com/re5et/itail.git")
9511 (commit commit)))
9512 (file-name (string-append name "-" version "-checkout"))
9513 (sha256
9514 (base32
9515 "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
9516 (build-system emacs-build-system)
9517 (home-page "https://github.com/re5et/itail")
9518 (synopsis "Interactive @code{tail} Emacs mode")
9519 (description "@code{itail} provides interactive @code{tail} mode
9520that allows you to filter the tail with unix pipes and highlight the
9521contents of the tailed file. Works locally or on remote files using
9522tramp.")
9523 (license license:gpl3+))))
b836c650
OP
9524
9525(define-public emacs-loop
9526 (package
9527 (name "emacs-loop")
9528 (version "1.3")
9529 (source
9530 (origin
9531 (method url-fetch)
9532 (uri (string-append "https://github.com/Wilfred/loop.el/archive/"
9533 version ".tar.gz"))
9534 (file-name (string-append name "-" version ".tar.gz"))
9535 (sha256
9536 (base32
9537 "1z3rhh3zyjabz36410yz0lp4a0qwwj0387as662wvx3z9y54jia9"))))
9538 (build-system emacs-build-system)
9539 (home-page "https://github.com/Wilfred/loop.el")
9540 (synopsis "Imperative loop structures for Emacs")
9541 (description "Loop structures familiar to users of other languages. This
9542library adds a selection of popular loop structures as well as break and
9543continue.")
9544 (license license:gpl3+)))
1bd3400d
OP
9545
9546(define-public emacs-elisp-refs
9547 (package
9548 (name "emacs-elisp-refs")
351b6463 9549 (version "1.3")
1bd3400d
OP
9550 (source
9551 (origin
9552 (method url-fetch)
9553 (uri (string-append "https://github.com/Wilfred/elisp-refs/archive/"
9554 version ".tar.gz"))
9555 (file-name (string-append name "-" version ".tar.gz"))
9556 (sha256
9557 (base32
351b6463 9558 "02nzcn3v14n7mp7q32j5r4wdlpsw3zixzh6cf0cdyarfir6dly3p"))))
1bd3400d
OP
9559 (build-system emacs-build-system)
9560 (propagated-inputs
9561 `(("emacs-dash" ,emacs-dash)
9562 ("emacs-f" ,emacs-f)
9563 ("emacs-list-utils" ,emacs-list-utils)
9564 ("emacs-loop" ,emacs-loop)
351b6463
KH
9565 ("emacs-s" ,emacs-s)
9566 ("emacs-shut-up" ,emacs-shut-up)))
1bd3400d
OP
9567 (home-page "https://github.com/Wilfred/elisp-refs")
9568 (synopsis "Find callers of elisp functions or macros")
9569 (description "Find references to functions, macros or variables. Unlike a
9570dumb text search, @code{elisp-refs} actually parses the code, so it's never
9571confused by comments or @code{foo-bar} matching @code{foo}.")
9572 (license license:gpl3+)))
08ff4fd1
OP
9573
9574(define-public emacs-crux
9575 (let ((commit "4f5c8fefd5a6aa52e128c4a0401cc86410d6ac8f")
9576 (revision "1"))
9577 (package
9578 (name "emacs-crux")
9579 (version (string-append "0.3.0" "-" revision "."
9580 (string-take commit 7)))
9581 (source
9582 (origin
9583 (method git-fetch)
9584 (uri (git-reference
9585 (url "https://github.com/bbatsov/crux.git")
9586 (commit commit)))
9587 (file-name (string-append name "-" version "-checkout"))
9588 (sha256
9589 (base32
9590 "1fdxvv25cs01sg6fmvmzxpzvs50i6v8n2jya60lbavxqqhi0sbxd"))))
9591 (build-system emacs-build-system)
9592 (home-page "https://github.com/bbatsov/crux")
9593 (synopsis "Collection of useful functions for Emacs")
9594 (description
9595 "@code{crux} provides a collection of useful functions for Emacs.")
9596 (license license:gpl3+))))
3677e5ee
OP
9597
9598(define-public emacs-edit-server
9599 (package
9600 (name "emacs-edit-server")
9601 (version "1.13")
9602 (source
9603 (origin
9604 (method url-fetch)
9605 (uri (string-append "https://github.com/stsquad/emacs_chrome/archive/"
9606 "v" version ".tar.gz"))
9607 (file-name (string-append name "-" version ".tar.gz"))
9608 (sha256
9609 (base32
9610 "1r92kqggslqasza718z4ka883mqfbnibdm43f0j9gaipk0msm2wf"))))
9611 (build-system emacs-build-system)
9612 (arguments
9613 `(#:phases
9614 (modify-phases %standard-phases
9615 (add-after 'unpack 'chdir-elisp
9616 ;; Elisp directory is not in root of the source.
9617 (lambda _
9618 (chdir "servers"))))))
9619 (home-page "https://github.com/stsquad/emacs_chrome")
9620 (synopsis "Server that responds to edit requests from Chromium")
9621 (description
9622 "This package provides an edit server to respond to requests from Emacs.")
9623 (license license:gpl3+)))
40246075
OP
9624
9625(define-public emacs-m-buffer-el
9626 (package
9627 (name "emacs-m-buffer-el")
9628 (version "0.15")
9629 (source
9630 (origin
9631 (method url-fetch)
9632 (uri (string-append "https://github.com/phillord/m-buffer-el"
9633 "/archive/" "v" version ".tar.gz"))
9634 (file-name (string-append name "-" version ".tar.gz"))
9635 (sha256
9636 (base32
9637 "17vdcc8q37q9db98jyww1c0ivinmwfcw4l04zccfacalra63a214"))))
9638 (arguments
9639 `(#:phases
9640 (modify-phases %standard-phases
9641 (add-before 'install 'check
9642 (lambda* (#:key inputs #:allow-other-keys)
d4c68d32
TGR
9643 (invoke "emacs" "--batch" "-L" "."
9644 "-l" "test/m-buffer-test.el"
9645 "-l" "test/m-buffer-at-test.el"
9646 "-f" "ert-run-tests-batch-and-exit"))))))
40246075
OP
9647 (build-system emacs-build-system)
9648 (home-page "https://github.com/phillord/m-buffer-el")
9649 (synopsis "List oriented buffer operations for Emacs")
9650 (description "@code{m-buffer} provides a set of list-orientated functions
9651for operating over the contents of Emacs buffers.")
9652 (license license:gpl3+)))
15d56833
OP
9653
9654(define-public emacs-let-alist
9655 (package
9656 (name "emacs-let-alist")
9657 (version "1.0.5")
9658 (source
9659 (origin
9660 (method url-fetch)
9661 (uri (string-append
9662 "https://elpa.gnu.org/packages/let-alist-" version ".el"))
9663 (sha256
9664 (base32
9665 "0r7b9jni50la1m79kklml11syg8d2fmdlr83pv005sv1wh02jszw"))))
9666 (build-system emacs-build-system)
9667 (home-page "https://elpa.gnu.org/packages/let-alist.html")
9668 (synopsis "Easily let-bind values of an assoc-list by their names")
9669 (description "This package offers a single macro, @code{let-alist}. This
9670macro takes a first argument (whose value must be an alist) and a body.")
9671 (license license:gpl3+)))
ddc56b80
OP
9672
9673(define-public emacs-esup
9674 (let ((commit "a589005a9a888537deef94d6fe38a9b8790c97c7")
9675 (revision "1"))
9676 (package
9677 (name "emacs-esup")
9678 (version (string-append "0.6" "-" revision "."
9679 (string-take commit 7)))
9680 (source
9681 (origin
9682 (method git-fetch)
9683 (uri (git-reference
9684 (url "https://github.com/jschaf/esup.git")
9685 (commit commit)))
9686 (file-name (string-append name "-" version "-checkout"))
9687 (sha256
9688 (base32
9689 "04lxmd0h7mfjjl0qghrycgff0vcv950j1wqv0dbkr61jxp64n5fv"))))
9690 ;; TODO: Add tests
9691 (build-system emacs-build-system)
9692 (home-page "https://github.com/jschaf/esup")
9693 (synopsis "Emacs start up profiler")
9694 (description "Benchmark Emacs Startup time without ever leaving
9695your Emacs.")
9696 (license license:gpl2+))))
e33dba15
OP
9697
9698(define-public emacs-sourcemap
9699 (package
9700 (name "emacs-sourcemap")
9701 (version "0.03")
9702 (source
9703 (origin
9704 (method url-fetch)
9705 (uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
9706 version ".tar.gz"))
9707 (file-name (string-append name "-" version ".tar.gz"))
9708 (sha256
9709 (base32
9710 "0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
9711 (build-system emacs-build-system)
9712 (home-page "https://github.com/syohex/emacs-sourcemap")
9713 (synopsis "Sourcemap parser")
9714 (description "Sourcemap parser")
9715 (license license:gpl3+)))
9968e444
OP
9716
9717(define-public emacs-macrostep
9718 (let ((commit "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"))
9719 (package
9720 (name "emacs-macrostep")
9721 (version (git-version "0.9" "1" commit))
9722 (source (origin
9723 (method git-fetch)
9724 (uri (git-reference
9725 (url "https://github.com/joddie/macrostep.git")
9726 (commit commit)))
9727 (file-name (string-append name "-" version "-checkout"))
9728 (sha256
9729 (base32
9730 "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"))))
9731 (build-system emacs-build-system)
9732 (arguments
9733 '(#:phases
9734 (modify-phases %standard-phases
9735 (add-before 'check 'remove-test
9736 ;; Fails because of requirement ‘/bin/sh’.
9737 (lambda _
9738 (let ((file "macrostep-test.el"))
9739 (chmod file #o644)
9740 (emacs-batch-edit-file file
9741 `(progn (progn (goto-char (point-min))
9742 (re-search-forward
9743 "(ert-deftest macrostep-expand-c-macros")
9744 (beginning-of-line)
9745 (kill-sexp))
9746 (basic-save-buffer))))))
9747 (add-before 'install 'check
9748 (lambda _
9749 (invoke "emacs" "--batch" "-L" "."
9750 "-l" "macrostep-test.el"
9751 "-f" "ert-run-tests-batch-and-exit"))))))
9752 (home-page "https://github.com/joddie/macrostep")
9753 (synopsis "Interactive macro-expander for Emacs")
9754 (description "@code{macrostep} is an Emacs minor mode for interactively
9755stepping through the expansion of macros in Emacs Lisp source code. It lets
9756you see exactly what happens at each step of the expansion process by
9757pretty-printing the expanded forms inline in the source buffer, which is
9758temporarily read-only while macro expansions are visible. You can expand and
9759collapse macro forms one step at a time, and evaluate or instrument the
9760expansions for debugging with Edebug as normal (but see “Bugs and known
9761limitations”, below). Single-stepping through the expansion is particularly
9762useful for debugging macros that expand into another macro form. These can be
9763difficult to debug with Emacs’ built-in macroexpand, which continues expansion
9764until the top-level form is no longer a macro call.")
9765 (license license:gpl3+))))
02999382
OP
9766
9767(define-public emacs-parent-mode
9768 (package
9769 (name "emacs-parent-mode")
9770 (version "2.3")
9771 (source
9772 (origin
9773 (method url-fetch)
9774 (uri (string-append "https://github.com/Fanael/parent-mode/archive/"
9775 version ".tar.gz"))
9776 (file-name (string-append name "-" version ".tar.gz"))
9777 (sha256
9778 (base32
9779 "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
9780 (build-system emacs-build-system)
9781 (home-page "https://github.com/Fanael/parent-mode")
9782 (synopsis "Get major mode's parent modes")
9783 (description "Get major mode's parent modes")
9784 (license license:gpl3+)))
045f6b7c
OP
9785
9786(define-public emacs-lacarte
9787 (package
9788 (name "emacs-lacarte")
9789 (version "0.1")
9790 (source (origin
9791 (method url-fetch)
9792 (uri "https://www.emacswiki.org/emacs/download/lacarte.el")
9793 (sha256
9794 (base32
9795 "1sbmk37ljq5j7dsw5c37sbxvlfgdqswh7bi4dknyjzfxlq50f4am"))))
9796 (build-system emacs-build-system)
9797 (home-page "https://www.emacswiki.org/emacs/lacarte.el")
9798 (synopsis "Execute menu items as commands, with completion")
9799 (description "Execute menu items as commands, with completion.")
9800 (license license:gpl3)))
b8ddef4b
OP
9801
9802(define-public emacs-company-lua
9803 (let ((commit "0be8122f3adf57ad27953bf4b03545d6298d3da4"))
9804 (package
9805 (name "emacs-company-lua")
9806 (version (git-version "0.1" "1" commit))
9807 (source
9808 (origin
9809 (method git-fetch)
9810 (uri (git-reference
9811 (url "https://github.com/ptrv/company-lua.git")
9812 (commit commit)))
9813 (file-name (git-file-name name version))
9814 (sha256
9815 (base32
9816 "1d9i165apgmwns7b2fd5wcpjpkah3dyj20v5sb8ynvz6qhhr5r9c"))))
9817 (build-system emacs-build-system)
9818 (propagated-inputs
9819 `(("emacs-company" ,emacs-company)
9820 ("emacs-s" ,emacs-s)
9821 ("emacs-f" ,emacs-f)
9822 ("emacs-lua-mode" ,emacs-lua-mode)))
9823 (home-page "https://github.com/ptrv/company-lua")
9824 (synopsis "Company backend for Lua")
9825 (description
9826 "This package provides Company backend for Lua programming language.")
9827 (license license:gpl3+))))
f61ecb85
OP
9828
9829(define-public emacs-beginend
9830 (package
9831 (name "emacs-beginend")
9832 (version "2.0.0")
9833 (source
9834 (origin
9835 (method url-fetch)
9836 (uri (string-append "https://github.com/DamienCassou/beginend/archive/"
9837 "v" version ".tar.gz"))
9838 (file-name (string-append name "-" version ".tar.gz"))
9839 (sha256
9840 (base32
9841 "0z4rbwffh9vxfvcrlvym4p73z7gf72q0b5iv33llbpcpbijknnrq"))))
9842 ;; TODO: Run tests.
9843 (build-system emacs-build-system)
9844 (inputs
9845 `(("emacs-undercover" ,emacs-undercover))) ; For tests.
9846 (home-page "https://github.com/DamienCassou/beginend")
9847 (synopsis "Redefine @code{M-<} and @code{M->} for Emacs modes")
9848 (description "@code{beginend} redefines @code{M-<} and @code{M->}
9849keybindings for Emacs modes so that point moves to meaningful
9850locations. Redefined keys are still accessible by pressing the same
9851key again.")
9852 (license license:gpl3+)))
666e5617
OP
9853
9854(define-public emacs-mbsync
9855 (let ((commit "42077e83ae2db778ce0f8e22f8357b40355526b3")
9856 (revision "1"))
9857 (package
9858 (name "emacs-mbsync")
9859 (version (string-append "0.0.1" "-" revision "."
9860 (string-take commit 7)))
9861 (source
9862 (origin
9863 (method git-fetch)
9864 (uri (git-reference
9865 (url "https://github.com/dimitri/mbsync-el.git")
9866 (commit commit)))
9867 (file-name (string-append name "-" version "-checkout"))
9868 (sha256
9869 (base32
9870 "0yj93y2mpxlir8x73znlg1slxlv4blm1vjv5h2w3j8lxg8bxvmn6"))))
9871 (build-system emacs-build-system)
9872 (home-page "https://github.com/dimitri/mbsync-el")
9873 (synopsis "Interface to mbsync for Emacs")
9874 (description "This package allows to call the @code{mbsync} from
9875within Emacs.")
9876 (license license:gpl3+))))
60bf9265
OP
9877
9878(define-public emacs-ibuffer-projectile
9879 (let ((commit "c18ac540ee46cb759fc5df18747f6e8d23563011")
9880 (revision "1"))
9881 (package
9882 (name "emacs-ibuffer-projectile")
9883 (version (string-append "0.2" "-" revision "."
9884 (string-take commit 7)))
9885 (source
9886 (origin
9887 (method git-fetch)
9888 (uri (git-reference
9889 (url "https://github.com/purcell/ibuffer-projectile.git")
9890 (commit commit)))
9891 (file-name (string-append name "-" version "-checkout"))
9892 (sha256
9893 (base32
9894 "1nd26cwwdpnwj0g4w393rd59klpyr6wqrnyr6scmwb5d06bsm44n"))))
9895 (build-system emacs-build-system)
9896 (propagated-inputs
9897 `(("emacs-projectile" ,emacs-projectile)))
9898 (home-page "https://github.com/purcell/ibuffer-projectile")
9899 (synopsis "Group ibuffer's list by projectile root")
9900 (description "Adds functionality to Emacs @code{ibuffer} for
9901grouping buffers by their projectile root directory.")
9902 (license license:gpl3+))))
295513c6
OP
9903
9904(define-public emacs-helm-mode-manager
9905 (package
9906 (name "emacs-helm-mode-manager")
9907 (version "1.0.0")
9908 (source
9909 (origin
9910 (method url-fetch)
9911 (uri (string-append "https://github.com/istib/helm-mode-manager/"
9912 "archive/" version ".tar.gz"))
9913 (file-name (string-append name "-" version ".tar.gz"))
9914 (sha256
9915 (base32
9916 "0wllj321z16hgrx0ddwzk5wz4mnnx5am7w5nclqclfc5dfdn92wm"))))
9917 (build-system emacs-build-system)
9918 (propagated-inputs
9919 `(("emacs-helm" ,emacs-helm)))
9920 (home-page "https://github.com/istib/helm-mode-manager/")
9921 (synopsis "Switch and toggle Emacs major and minor modes using Helm")
9922 (description "This package provides a Helm interface for toggling Emacs
9923major or minor mode.
9924
9925@itemize
9926@item @code{helm-switch-major-mode} list of all major modes
9927@item @code{helm-enable-minor-mode} list of all inactive minor modes
9928@item @code{helm-disable-minor-mode} list of all ACTIVE minor modes
9929@end itemize\n
9930
9931Hitting @code{RET} enables the mode, @code{C-z} shows the mode
9932documentation.")
9933 (license license:gpl3+)))
4cdfc9ef
OP
9934
9935(define-public emacs-hy-mode
9936 (package
9937 (name "emacs-hy-mode")
67fd64a4 9938 (version "1.0.3")
4cdfc9ef
OP
9939 (source
9940 (origin
9941 (method url-fetch)
9942 (uri (string-append "https://github.com/hylang/hy-mode/archive/"
9943 "v" version ".tar.gz"))
9944 (file-name (string-append name "-" version ".tar.gz"))
9945 (sha256
9946 (base32
67fd64a4 9947 "0b4pvbr2hf77bq2vsyfsv653q0dab7qzq85wc7kdziw7687jdf2z"))))
4cdfc9ef
OP
9948 (build-system emacs-build-system)
9949 (propagated-inputs
9950 `(("emacs-dash" ,emacs-dash)
9951 ("emacs-s" ,emacs-s)))
9952 (home-page "https://github.com/hylang/hy-mode")
9953 (synopsis "Major mode for Hylang")
9954 (description "This package provides a major mode for Hylang.")
9955 (license license:gpl3+)))
8aab3d06
OP
9956
9957(define-public emacs-web-beautify
9958 (package
9959 (name "emacs-web-beautify")
9960 (version "0.3.2")
9961 (source
9962 (origin
9963 (method url-fetch)
9964 (uri (string-append "https://github.com/yasuyk/web-beautify/archive/"
9965 version ".tar.gz"))
9966 (file-name (string-append name "-" version ".tar.gz"))
9967 (sha256
9968 (base32
9969 "1j57hwid74id4swkx2g0iljfawx0k9c7qjrwqc0mv657x9p78hcs"))))
9970 (build-system emacs-build-system)
9971 (home-page "https://github.com/yasuyk/web-beautify")
9972 (synopsis "Format HTML, CSS and JavaScript, JSON")
9973 (description "This package provides an Emacs functions to format HTML,
9974CSS, JavaScript, JSON.")
9975 (license license:gpl3+)))
c1b9d72c
OP
9976
9977(define-public emacs-helm-shell-history
9978 (let ((commit "110d3c35c52fe4b89b29e79ea4c8626bce7266a1"))
9979 (package
9980 (name "emacs-helm-shell-history")
9981 (version (git-version "0.1" "1" commit))
9982 (source
9983 (origin
9984 (method git-fetch)
9985 (uri (git-reference
9986 (url "https://github.com/yuutayamada/helm-shell-history.git")
9987 (commit commit)))
9988 (file-name (git-file-name name version))
9989 (sha256
9990 (base32
9991 "18fkjcz69g4dyaxhf9j8svr5x6dhsdnglddwisis8hdn504scpfj"))))
9992 (build-system emacs-build-system)
9993 (arguments
9994 '(#:phases
9995 (modify-phases %standard-phases
9996 (add-before 'check 'patch-helm-shell-history-file
9997 (lambda _
9998 (let ((file "helm-shell-history.el"))
9999 (chmod file #o644)
10000 (emacs-substitute-sexps file
10001 ("(defvar helm-shell-history-file"
10002 `(expand-file-name "~/.bash_history"))))
10003 #t)))))
f1f6f227
OP
10004 (propagated-inputs
10005 `(("emacs-helm" ,emacs-helm)))
c1b9d72c
OP
10006 (home-page "https://github.com/yuutayamada/helm-shell-history")
10007 (synopsis "Find shell history with Emacs Helm")
10008 (description "This package provides an Emacs Helm interface to search
10009throw a shell history.")
10010 (license license:gpl3+))))
2c63f724
OP
10011
10012(define-public emacs-discover-my-major
10013 (package
10014 (name "emacs-discover-my-major")
10015 (version "1.0")
10016 (source
10017 (origin
10018 (method url-fetch)
10019 (uri
10020 (string-append "https://github.com/steckerhalter/discover-my-major"
10021 "/archive/" version ".tar.gz"))
10022 (file-name (string-append name "-" version ".tar.gz"))
10023 (sha256
10024 (base32
10025 "0nah41f92rrl2l405kpqr6iaks11jyclgl4z7ilfymbr4ifmsiyl"))))
10026 (build-system emacs-build-system)
10027 (propagated-inputs
10028 `(("emacs-makey" ,emacs-makey)))
10029 (home-page "https://github.com/steckerhalter/discover-my-major")
10030 (synopsis "Discover key bindings for the current Emacs major mode")
10031 (description "This package provides allows to discover key bindings and
10032their meaning for the current Emacs major-mode.")
10033 (license license:gpl3+)))
21a3de58
OP
10034
10035(define-public emacs-org-ref
10036 (let ((commit "8c9b5d7efb9f0c1ad5186b8203bdd017f4249129")
10037 (revision "1"))
10038 (package
10039 (name "emacs-org-ref")
10040 (version (string-append "1.1.1" "-" revision "."
10041 (string-take commit 7)))
10042 (source
10043 (origin
10044 (method git-fetch)
10045 (uri (git-reference
10046 (url "https://github.com/jkitchin/org-ref.git")
10047 (commit commit)))
10048 (file-name (string-append name "-" version "-checkout"))
10049 (sha256
10050 (base32
10051 "1rxz0bjdsayk0slv23i07d9xhj2m7s4hsc81wc2d1cs52dkr5zmz"))))
10052 (build-system emacs-build-system)
10053 (propagated-inputs
10054 `(("emacs-dash" ,emacs-dash)
10055 ("emacs-helm" ,emacs-helm)
10056 ("emacs-helm-bibtex" ,emacs-helm-bibtex)
10057 ("emacs-ivy" ,emacs-ivy)
10058 ("emacs-hydra" ,emacs-hydra)
10059 ("emacs-key-chord" ,emacs-key-chord)
10060 ("emacs-s" ,emacs-s)
10061 ("emacs-f" ,emacs-f)
10062 ("emacs-pdf-tools" ,emacs-pdf-tools)))
10063 (home-page "https://github.com/jkitchin/org-ref")
10064 (synopsis "Citations, cross-references and bibliographies in org-mode")
10065 (description
10066 "Lisp code to setup bibliography, cite, ref and label org-mode links.
10067Also sets up reftex and helm for org-mode citations. The links are
10068clickable and do things that are useful.
10069
10070The default setup uses helm-bibtex.
10071
10072You should really read org-ref.org in this package for details.")
10073 (license license:gpl3+))))
56e90e31 10074
f309671c
MC
10075(define-public emacs-org-reveal
10076 (package
10077 (name "emacs-org-reveal")
10078 ;; There are no proper tag, so we use the latest commit of the stable
10079 ;; branch, as does MELPA.
10080 (version "20161027.926")
10081 (source (origin
10082 (method git-fetch)
10083 (uri (git-reference
10084 (url "https://github.com/yjwen/org-reveal.git")
10085 (commit "001567cc12d50ba07612edd1718b86a12e8c2547")))
10086 (file-name (string-append name "-" version "-checkout"))
10087 (sha256
10088 (base32
10089 "18rma8smjrskbjyna076zhvx79zs5r5vinb537h8mw13pfxd6cm8"))))
10090 (build-system emacs-build-system)
10091 (home-page "https://github.com/yjwen/org-reveal")
10092 (synopsis "Org and Reveal.js powered HTML presentation tool")
10093 (description "Org-Reveal is a command@{org-mode} extension that allows to
10094create beautiful presentations (slides) with 3D effects from simple but
10095powerful Org contents.")
10096 (license license:gpl3+)))
10097
56e90e31
OP
10098(define-public emacs-add-hooks
10099 (package
10100 (name "emacs-add-hooks")
10101 (version "3.1.1")
10102 (source (origin
10103 (method url-fetch)
10104 (uri (string-append
10105 "https://github.com/nickmccurdy/add-hooks/archive/"
10106 version ".tar.gz"))
10107 (file-name (string-append name "-" version ".tar.gz"))
10108 (sha256
10109 (base32
10110 "03a28gb3298g7pc2qji9hi44p4d99ljp5mpi9cmg42ldv8fl6549"))))
10111 (build-system emacs-build-system)
10112 (home-page "https://github.com/nickmccurdy/add-hooks/")
10113 (synopsis "Emacs function for setting multiple hooks")
10114 (description "This package provides a @code{add-hooks} function tidies up
10115duplicate hook and function names further into a single declarative call.")
10116 (license license:gpl3+)))
58b50580
OP
10117
10118(define-public emacs-fancy-narrow
10119 (package
10120 (name "emacs-fancy-narrow")
10121 (version "0.9.5")
10122 (source
10123 (origin
10124 (method url-fetch)
10125 (uri (string-append "https://github.com/Malabarba/fancy-narrow/archive/"
10126 version ".tar.gz"))
10127 (file-name (string-append name "-" version ".tar.gz"))
10128 (sha256
10129 (base32
10130 "0rf2rnzg82pdqch041yyx3f9ddixffkk9s2ydzg8hwy66sg3385n"))))
10131 (build-system emacs-build-system)
10132 (home-page "https://github.com/Malabarba/fancy-narrow/releases")
cfcfc6ab
TGR
10133 (synopsis "Imitate @code{narrow-to-region} with more eye candy")
10134 (description
10135 "Unlike @code{narrow-to-region}, which completely hides text outside
10136the narrowed region, this package simply de-emphasizes the text, makes it
10137read-only, and makes it unreachable. This leads to a much more natural
10138feeling where the region stays static (instead of being brutally moved to a
58b50580
OP
10139blank slate) and is clearly highlighted with respect to the rest of the
10140buffer.")
10141 (license license:gpl2+)))
9b876c69
OP
10142
10143(define-public emacs-know-your-http-well
10144 (package
10145 (name "emacs-know-your-http-well")
10146 (version "0.5.0")
10147 (source
10148 (origin
10149 (method url-fetch)
10150 (uri (string-append
10151 "https://github.com/for-GET/know-your-http-well/archive/"
10152 "v" version ".tar.gz"))
10153 (file-name (string-append name "-" version ".tar.gz"))
10154 (sha256
10155 (base32
10156 "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj"))))
10157 (arguments
10158 `(#:phases
10159 (modify-phases %standard-phases
10160 (add-after 'unpack 'install-json-files
10161 (lambda* (#:key outputs #:allow-other-keys)
10162 (for-each (lambda (directory)
10163 (copy-recursively directory
10164 (string-append
10165 (assoc-ref outputs "out")
10166 directory)))
10167 '("js" "json"))))
10168 (add-after 'unpack 'chdir-elisp
10169 ;; Elisp directory is not in root of the source.
10170 (lambda _
10171 (chdir "emacs"))))))
10172 (build-system emacs-build-system)
10173 (home-page "https://github.com/for-GET/know-your-http-well")
10174 (synopsis "Meaning of HTTP headers codes")
10175 (description "Meaning of HTTP headers codes.")
10176 (license license:gpl3+)))
9f2b572e
OP
10177
10178(define-public emacs-navi-mode
10179 (let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
10180 (package
10181 (name "emacs-navi-mode")
10182 (version (git-version "2.0" "1" commit))
10183 (source
10184 (origin
10185 (method git-fetch)
10186 (uri (git-reference
10187 (url "https://github.com/alphapapa/navi.git")
10188 (commit commit)))
10189 (file-name (git-file-name name version))
10190 (sha256
10191 (base32
10192 "0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
10193 (build-system emacs-build-system)
10194 (propagated-inputs
10195 `(("emacs-outshine" ,emacs-outshine)
10196 ("emacs-outorg" ,emacs-outorg)))
10197 (home-page "https://github.com/alphapapa/navi")
10198 (synopsis "Emacs major-mode for easy buffer-navigation")
10199 (description
10200 "This package provides an Emacs major-mode for easy buffer-navigation")
10201 (license license:gpl3+))))
2f28093e
OP
10202
10203(define-public emacs-download-region
10204 (let ((commit "eb9e557529a73b4cfc8281c70dd0d95db333fffa")
10205 (revision "1"))
10206 (package
10207 (name "emacs-download-region")
10208 (version (string-append "0.0.1" "-" revision "."
10209 (string-take commit 7)))
10210 (source
10211 (origin
10212 (method git-fetch)
10213 (uri (git-reference
10214 (url "https://github.com/zk-phi/download-region.git")
10215 (commit commit)))
10216 (file-name (string-append name "-" version "-checkout"))
10217 (sha256
10218 (base32
10219 "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"))))
10220 (build-system emacs-build-system)
10221 (home-page "https://github.com/zk-phi/download-region")
10222 (synopsis "In buffer download manager for Emacs")
10223 (description "@code{download-region} provides in buffer
10224downloading manager for Emacs.")
10225 (license license:gpl3+))))
8bc8efc7 10226
b2bf4f54
OP
10227(define-public emacs-helpful
10228 (package
10229 (name "emacs-helpful")
b21a55a9 10230 (version "0.13")
b2bf4f54
OP
10231 (source (origin
10232 (method url-fetch)
10233 (uri (string-append
10234 "https://github.com/Wilfred/helpful/archive/"
10235 version ".tar.gz"))
10236 (file-name (string-append name "-" version ".tar.gz"))
10237 (sha256
10238 (base32
b21a55a9 10239 "11kj04y1fa3vnw2991cyqf6adz6bb3hlrdkvypjnmpb0s64q64b6"))))
b2bf4f54
OP
10240 (build-system emacs-build-system)
10241 (propagated-inputs
10242 `(("emacs-elisp-refs" ,emacs-elisp-refs)))
10243 (home-page "https://github.com/Wilfred/helpful")
10244 (synopsis "More contextual information in Emacs help")
10245 (description "@code{helpful} is an alternative to the built-in Emacs help
10246that provides much more contextual information.
10247
10248@itemize
10249@item Show the source code for interactively defined functions (unlike the
10250built-in Help).
10251@item Fall back to the raw sexp if no source is available.
10252@item Show where a function is being called.
10253@item Docstrings will Highlight the summary (the first sentence), include
10254cross-references, hide superfluous puncuation.
10255@item Show you the properties that have been applied to the current
10256symbol. This provides visibility of features like edebug or byte-code
10257optimisation.
10258@item Provide a separate @code{helpful-command} function to view interactive
10259functions.
10260@item Display any keybindings that apply to interactive functions.
10261@item Trace, disassemble functions from inside Helpful. This is discoverable
10262and doesn't require memorisation of commands.
10263@end itemize\n")
10264 (license license:gpl3+)))
1024dadd
OP
10265
10266(define-public emacs-logview
10267 (package
10268 (name "emacs-logview")
10269 (version "0.9")
10270 (source (origin
10271 (method url-fetch)
10272 (uri (string-append
10273 "https://github.com/doublep/logview/archive/"
10274 version ".tar.gz"))
10275 (file-name (string-append name "-" version ".tar.gz"))
10276 (sha256
10277 (base32
10278 "1vd11ppm46ldqsiwhqgw91p34gbjh1y82r9mxcn9r2gj65nvhxcp"))))
10279 (propagated-inputs
10280 `(("emacs-datetime" ,emacs-datetime)))
10281 (build-system emacs-build-system)
10282 (home-page "https://github.com/doublep/logview/")
10283 (synopsis "Emacs mode for viewing log files")
10284 (description "@code{logview} provides an Emacs mode to view log files.")
10285 (license license:gpl3+)))
0bc5a32a
OP
10286
10287(define-public emacs-suggest
10288 (package
10289 (name "emacs-suggest")
10290 (version "0.4")
10291 (source
10292 (origin
10293 (method url-fetch)
10294 (uri (string-append "https://github.com/Wilfred/suggest.el/archive/"
10295 version ".tar.gz"))
10296 (file-name (string-append name "-" version ".tar.gz"))
10297 (sha256
10298 (base32
10299 "1760fm3j19w8xxcawq6s859h86q1rdg69pg9yz48n76kwfk3vlgp"))))
10300 (build-system emacs-build-system)
10301 (propagated-inputs
10302 `(("emacs-loop" ,emacs-loop)
10303 ("emacs-dash" ,emacs-dash)
10304 ("emacs-s" ,emacs-s)
10305 ("emacs-f" ,emacs-f)))
10306 (home-page "https://github.com/Wilfred/suggest.el")
10307 (synopsis "Suggest Elisp functions that give the output requested")
10308 (description "Suggest.el will find functions that give the output
10309requested. It's a great way of exploring list, string and arithmetic
10310functions.")
10311 (license license:gpl3+)))
c43c0823
OP
10312
10313(define-public emacs-benchmark-init
10314 (package
10315 (name "emacs-benchmark-init")
10316 (version "1.0")
10317 (source (origin
10318 (method url-fetch)
10319 (uri (string-append
10320 "https://github.com/dholm/benchmark-init-el/archive/"
10321 version ".tar.gz"))
10322 (file-name (string-append name "-" version ".tar.gz"))
10323 (sha256
10324 (base32
10325 "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
10326 (build-system emacs-build-system)
10327 (home-page "https://github.com/dholm/benchmark-init-el")
10328 (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
10329 (description "@code{benchmark-init} provides a way to keep track of where
10330time is being spent during Emacs startup in order to optimize startup time.")
10331 (license license:gpl3+)))
c25dda7e
OP
10332
10333(define-public emacs-emms-player-simple-mpv
4b1b834e 10334 ;; A new mpv backend is included in Emms from 5.0.
5c8031ff 10335 (deprecated-package "emacs-emms-player-simple-mpv" emacs-emms))
26165a79
OP
10336
10337(define-public emacs-magit-org-todos-el
10338 (let ((commit "df206287737b9671f2e36ae7b1474ebbe9940d2a"))
10339 (package
10340 (name "emacs-magit-org-todos-el")
10341 (version (git-version "0.1.1" "1" commit))
10342 (source
10343 (origin
10344 (method git-fetch)
10345 (uri (git-reference
10346 (url "https://github.com/danielma/magit-org-todos.el.git")
10347 (commit commit)))
10348 (file-name (git-file-name name version))
10349 (sha256
10350 (base32
10351 "0kdp7k7jnnrkhsg0xh1c3h7iz0vgi120gf5xwl1hxy61avivnxrn"))))
ec6f4bda 10352 (propagated-inputs
5c8031ff 10353 `(("magit" ,emacs-magit)))
26165a79
OP
10354 (build-system emacs-build-system)
10355 (home-page "https://github.com/danielma/magit-org-todos.el")
10356 (synopsis "Get todo.org into Emacs Magit status")
10357 (description "This package allows you to get @file{todo.org} into your
10358magit status.
10359
10360If you have a @file{todo.org} file with @code{TODO} items in the root of your
10361repository, @code{magit-org-todos} will create a section in your Magit status
10362buffer with each of your todos.")
10363 (license license:gpl3+))))
f4dc59a2
OP
10364
10365(define-public emacs-f3
10366 (package
10367 (name "emacs-f3")
10368 (version "0.1")
10369 (source
10370 (origin
10371 (method url-fetch)
10372 (uri (string-append "https://github.com/cosmicexplorer/f3/archive/"
10373 version ".tar.gz"))
10374 (file-name (string-append name "-" version ".tar.gz"))
10375 (sha256
10376 (base32
10377 "06b8i1jvklm5k3k90n65f197l1miq1xlxqkqpbppw4h3rhl4y98h"))))
10378 (build-system emacs-build-system)
10379 (propagated-inputs
10380 `(("emacs-helm" ,emacs-helm)))
10381 (home-page "https://github.com/cosmicexplorer/f3")
10382 (synopsis "Fantastic File Finder for Emacs")
10383 (description
10384 "The Fantastic File Finder for Emacs. Find files fast, using helm.")
10385 (license license:gpl3+)))
89378bb8 10386
6d6d9acc
OP
10387(define-public emacs-lice-el
10388 (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
10389 (package
10390 (name "emacs-lice-el")
10391 (version (git-version "0.2" "1" commit))
10392 (source (origin
10393 (method git-fetch)
10394 (uri (git-reference
10395 (url "https://github.com/buzztaiki/lice-el.git")
10396 (commit commit)))
10397 (file-name (git-file-name name version))
10398 (sha256
10399 (base32
10400 "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
10401 (build-system emacs-build-system)
10402 (home-page "https://github.com/buzztaiki/lice-el")
10403 (synopsis "License and header template for Emacs")
10404 (description "@code{lice.el} provides following features:
10405
10406@itemize
10407@item License template management.
10408@item File header insertion.
10409@end itemize\n")
10410 (license license:gpl3+))))
fc86ea63
OP
10411
10412(define-public emacs-academic-phrases
10413 (let ((commit "0823ed8c24b26c32f909b896a469833ec4d7b656"))
10414 (package
10415 (name "emacs-academic-phrases")
10416 (version (git-version "0.1" "1" commit))
10417 (source
10418 (origin
10419 (method git-fetch)
10420 (uri (git-reference
10421 (url "https://github.com/nashamri/academic-phrases.git")
10422 (commit commit)))
10423 (file-name (string-append name "-" version "-checkout"))
10424 (sha256
10425 (base32
10426 "0qfzsq8jh05w4zkr0cvq3i1hdn97bq344vcqjg46sib26x3wpz6r"))))
10427 (build-system emacs-build-system)
10428 (propagated-inputs
10429 `(("emacs-dash" ,emacs-dash)
10430 ("emacs-s" ,emacs-s)
10431 ("emacs-ht" ,emacs-ht)))
10432 (home-page "https://github.com/nashamri/academic-phrases")
10433 (synopsis "Bypass that mental block when writing your papers")
10434 (description
10435 "When writing your academic paper, you might get stuck trying to find
10436the right phrase that captures your intention. This package tries to
10437alleviate that problem by presenting you with a list of phrases organized by
10438the topic or by the paper section that you are writing. This package has
10439around 600 phrases so far.
10440
10441Using this package is easy, just call @code{academic-phrases} to get a list of
10442phrases organized by topic, or call @code{academic-phrases-by-section} to
10443browse the phrases by the paper section and fill-in the blanks if required.")
10444 (license license:gpl3+))))
75a87807
OP
10445
10446(define-public emacs-auto-yasnippet
10447 (let ((commit "d1ccfea87312c6dd8cf8501ab5b71b1d3d44d95b"))
10448 (package
10449 (name "emacs-auto-yasnippet")
10450 (version (git-version "0.3.0" "1" commit))
10451 (source (origin
10452 (method git-fetch)
10453 (uri (git-reference
10454 (url "https://github.com/abo-abo/auto-yasnippet.git")
10455 (commit commit)))
10456 (file-name (string-append name "-" version "-checkout"))
10457 (sha256
10458 (base32
10459 "1i8k2qiyzd5rq0zplk4xb5nfa5mp0ibxbzwqj6c7877waq7244xk"))))
10460 (build-system emacs-build-system)
10461 (arguments
10462 '(#:phases
10463 (modify-phases %standard-phases
10464 (add-before 'install 'check
10465 (lambda _
10466 (invoke "emacs" "--batch"
10467 "-l" "auto-yasnippet.el"
10468 "-l" "auto-yasnippet-test.el"
10469 "-f" "ert-run-tests-batch-and-exit"))))))
10470 (propagated-inputs
10471 `(("emacs-yasnippet" ,emacs-yasnippet)))
10472 (home-page "https://github.com/abo-abo/auto-yasnippet/")
10473 (synopsis "Quickly create disposable yasnippets")
10474 (description "This package provides a hybrid of keyboard macros and
10475yasnippet. You create the snippet on the go, usually to be used just in the
10476one place. It's fast, because you're not leaving the current buffer, and all
10477you do is enter the code you'd enter anyway, just placing ~ where you'd like
10478yasnippet fields and mirrors to be.")
10479 (license license:gpl3+))))
a79cf99c
OP
10480
10481(define-public emacs-highlight-numbers
10482 (package
10483 (name "emacs-highlight-numbers")
10484 (version "0.2.3")
10485 (source
10486 (origin
10487 (method url-fetch)
10488 (uri (string-append
10489 "https://github.com/Fanael/highlight-numbers/archive/"
10490 version ".tar.gz"))
10491 (file-name (string-append name "-" version ".tar.gz"))
10492 (sha256
10493 (base32
10494 "030v5p11d4n0581ncv499l1fqrmfziy756q6378x2bv22ixghqqp"))))
10495 (build-system emacs-build-system)
10496 (propagated-inputs
10497 `(("emacs-parent-mode" ,emacs-parent-mode)))
10498 (home-page "https://github.com/Fanael/highlight-numbers")
10499 (synopsis "Highlight numbers in source code")
10500 (description "@code{highlight-numbers-mode} provides a minor mode for
10501syntax highlighting of numeric literals in source code.
10502
10503It s customizable: it's easy to add or redefine what exactly consitutes a
10504\"number\" in given major mode. See @code{highlight-numbers-modelist}.")
10505 (license license:gpl3+)))
6e28f15c
OP
10506
10507(define-public emacs-darkroom
10508 (package
10509 (name "emacs-darkroom")
10510 (version "0.1")
10511 (source (origin
10512 (method url-fetch)
10513 (uri (string-append "https://elpa.gnu.org/packages/darkroom-"
10514 version ".el"))
10515 (sha256
10516 (base32
10517 "0fif8fm1h7x7g16949shfnaik5f5488clsvkf8bi5izpqp3vi6ak"))))
10518 (build-system emacs-build-system)
10519 (home-page "https://elpa.gnu.org/packages/darkroom.html")
10520 (synopsis "Remove visual distractions and focus on writing")
10521 (description "@code{darkroom-mode} makes visual distractions disappear.
10522The mode-line is temporarily elided, text is enlarged and margins are adjusted
10523so that it's centered on the window.
10524
10525@code{darkroom-tentative-mode} is similar, but it doesn't immediately turn-on
10526@code{darkroom-mode}, unless the current buffer lives in the sole window of
10527the Emacs frame (i.e. all other windows are deleted). Whenever the frame is
10528split to display more windows and more buffers, the buffer exits
10529@code{darkroom-mode}. Whenever they are deleted, the buffer re-enters
10530@code{darkroom-mode}.")
10531 (license license:gpl3+)))
bf8300de
OP
10532
10533(define-public emacs-rsw-elisp
10534 (package
10535 (name "emacs-rsw-elisp")
10536 (version "1.0.5")
10537 (source (origin
10538 (method url-fetch)
10539 (uri (string-append "https://github.com/rswgnu/rsw-elisp"
10540 "/archive/" version ".tar.gz"))
10541 (file-name (string-append name "-" version ".tar.gz"))
10542 (sha256
10543 (base32
10544 "1jnn7xfwl3wxc87v44ccsf1wwp80par3xgcvfb1icd6zchjmlcps"))))
10545 (build-system emacs-build-system)
10546 (home-page "https://github.com/rswgnu/rsw-elisp")
10547 (synopsis "Improved expressions that interactively evaluate Emacs Lisp")
10548 (description "This package improves and replaces the GNU Emacs commands
10549that interactively evaluate Emacs Lisp expressions. The new commands replace
5e5bcc80
RW
10550standard key bindings and are all prefixed with @code{rsw-elisp-}. They work
10551the same way as the old commands when called non-interactively; only the
bf8300de
OP
10552interactive behavior should be different.")
10553 (license license:gpl3+)))
192a9a20
OP
10554
10555(define-public emacs-default-text-scale
10556 (let ((commit "968e985e219235f3e744d6d967e592acbaf6e0a8")
10557 (revision "1"))
10558 (package
10559 (name "emacs-default-text-scale")
10560 (version (string-append "0.1" "-" revision "."
10561 (string-take commit 7)))
10562 (source (origin
10563 (method git-fetch)
10564 (uri (git-reference
10565 (url "https://github.com/purcell/default-text-scale")
10566 (commit commit)))
10567 (file-name (string-append name "-" version "-checkout"))
10568 (sha256
10569 (base32
10570 "0zds01c3q5yny6ab1fxfkzzgn1kgl3q23lxxap905f4qd70v922h"))))
10571 (build-system emacs-build-system)
10572 (home-page "https://github.com/purcell/default-text-scale")
10573 (synopsis "Adjust the font size in all Emacs frames")
10574 (description "This package provides commands for increasing or
10575decreasing the default font size in all GUI Emacs frames.")
10576 (license license:gpl3+))))
2f9e1378
OP
10577
10578(define-public emacs-visual-regexp
10579 (package
10580 (name "emacs-visual-regexp")
10581 (version "1.1.1")
10582 (source
10583 (origin
10584 (method url-fetch)
10585 (uri (string-append "https://github.com/benma/visual-regexp.el/archive/"
10586 "v" version ".tar.gz"))
10587 (file-name (string-append name "-" version ".tar.gz"))
10588 (sha256
10589 (base32
10590 "1czmhvcivlcdyz7rfm0vd4a3xsgmy4qbvbl6yjxc217wrxqflr92"))))
10591 (build-system emacs-build-system)
10592 (home-page "https://github.com/benma/visual-regexp.el/")
10593 (synopsis "Regexp command with interactive visual feedback")
10594 (description "This package provides an Emacs regexp command with
10595interactive visual feedback.")
10596 (license license:gpl3+)))
6f83725f
OP
10597
10598(define-public emacs-faceup
10599 (let ((commit "6c92dad56a133e14e7b27831e1bcf9b3a71ff154")
10600 (revision "1"))
10601 (package
10602 (name "emacs-faceup")
10603 (version (string-append "0.0.1" "-" revision "."
10604 (string-take commit 7)))
10605 (source
10606 (origin
10607 (method git-fetch)
10608 (uri (git-reference
10609 (url "https://github.com/Lindydancer/faceup.git")
10610 (commit commit)))
10611 (file-name (string-append name "-" version "-checkout"))
10612 (sha256
10613 (base32
10614 "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"))))
10615 (build-system emacs-build-system)
10616 (home-page "https://github.com/Lindydancer/faceup")
10617 (synopsis "Markup language for faces and font-lock regression testing")
10618 (description "Emacs is capable of highlighting buffers based on
10619language-specific @code{font-lock} rules. This package makes it possible to
10620perform regression test for packages that provide font-lock rules.")
10621 (license license:gpl3+))))
f52b635b
OP
10622
10623(define-public emacs-racket-mode
477dde61
CLW
10624 (let ((commit "b977873e6128f8399432dcd60cc39f6a6f803d9c")
10625 (revision "2"))
f52b635b
OP
10626 (package
10627 (name "emacs-racket-mode")
565af91a 10628 (version (string-append "0.0.2" "-" revision "."
f52b635b
OP
10629 (string-take commit 7)))
10630 (source
10631 (origin
10632 (method git-fetch)
10633 (uri (git-reference
10634 (url "https://github.com/greghendershott/racket-mode")
10635 (commit commit)))
10636 (file-name (string-append name "-" version "-checkout"))
10637 (sha256
10638 (base32
477dde61 10639 "0vp4bbbplqvmnhjpl6ajrlydmrhqzil56cfbs18m5c5fddx0zlh7"))))
f52b635b 10640 (build-system emacs-build-system)
565af91a
KH
10641 (arguments
10642 `(#:include '("\\.el$" "\\.rkt$")))
f52b635b
OP
10643 (propagated-inputs
10644 `(("emacs-faceup" ,emacs-faceup)
10645 ("emacs-s" ,emacs-s)))
10646 (home-page "https://github.com/greghendershott/racket-mode")
10647 (synopsis "Major mode for Racket language")
10648 (description "@code{racket-mode} provides:
10649
10650@itemize
10651@item Focus on Racket (not various Schemes).
10652@item Follow DrRacket concepts where applicable.
10653@item Thorough font-lock and indent.
10654@end itemize\n")
10655 (license license:gpl3+))))
8f052df2
OP
10656
10657(define-public emacs-grep-context
10658 (let ((commit "a17c57e66687a54e195e08afe776bdd60cb6c0a7"))
10659 (package
10660 (name "emacs-grep-context")
10661 (version (git-version "0.1" "1" commit))
10662 (source
10663 (origin
10664 (method git-fetch)
10665 (uri (git-reference
10666 (url "https://github.com/mkcms/grep-context.git")
10667 (commit commit)))
10668 (file-name (string-append name "-" version "-checkout"))
10669 (sha256
10670 (base32
10671 "1nqfa6kjzjshww4hnwg1c0vcr90bdjihy3kmixq3c3jkvxg99b62"))))
10672 (build-system emacs-build-system)
10673 (propagated-inputs
10674 `(("emacs-dash" ,emacs-dash)))
10675 (home-page "https://github.com/nashamri/academic-phrases")
10676 (synopsis "Increase context in compilation and grep buffers")
10677 (description
10678 "This package provides an Emacs package for more context in
10679compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
10680@code{ivy}.")
10681 (license license:gpl3+))))
d3f7e533
OP
10682
10683(define-public emacs-helm-firefox
10684 (let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
10685 (revision "1"))
10686 (package
10687 (name "emacs-helm-firefox")
10688 (version (string-append "0.0.1" "-" revision "."
10689 (string-take commit 7)))
10690 (source
10691 (origin
10692 (method git-fetch)
10693 (uri (git-reference
10694 (url "https://github.com/emacs-helm/helm-firefox.git")
10695 (commit commit)))
10696 (file-name (string-append name "-" version "-checkout"))
10697 (sha256
10698 (base32
10699 "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
0715a9e6
OP
10700 (propagated-inputs
10701 `(("emacs-helm" ,emacs-helm)))
d3f7e533
OP
10702 (build-system emacs-build-system)
10703 (home-page "https://github.com/emacs-helm/helm-firefox")
10704 (synopsis "Display firefox bookmarks with Emacs Helm interface")
10705 (description "Display firefox bookmarks with Emacs Helm interface")
10706 (license license:gpl3+))))
b268bf18
OP
10707
10708(define-public emacs-interactive-align
10709 (package
10710 (name "emacs-interactive-align")
10711 (version "0.1.0")
10712 (source
10713 (origin
10714 (method url-fetch)
10715 (uri (string-append "https://github.com/mkcms/interactive-align/"
10716 "archive/" "v" version ".tar.gz"))
10717 (file-name (string-append name "-" version ".tar.gz"))
10718 (sha256
10719 (base32
10720 "0sibpgb4lp6yy3pziak8f3hz4b28yj0dqy2nzh51z3d0b63h528m"))))
10721 (build-system emacs-build-system)
10722 (home-page "https://github.com/mkcms/interactive-align/")
10723 (synopsis "Interactive align-regexp command in Emacs")
10724 (description "Interactive align-regexp command in Emacs")
10725 (license license:gpl3+)))
fcd8d4f7
OP
10726
10727(define-public emacs-shift-number
10728 (package
10729 (name "emacs-shift-number")
10730 (version "0.1")
10731 (source
10732 (origin
10733 (method url-fetch)
10734 (uri (string-append "https://github.com/alezost/shift-number.el"
10735 "/archive/" "v" version ".tar.gz"))
10736 (file-name (string-append name "-" version ".tar.gz"))
10737 (sha256
10738 (base32
10739 "1g79m0hqn9jgpm565vvh8pdfzndc4vw7xisnh5qysj55qfg8cb1x"))))
10740 (build-system emacs-build-system)
10741 (home-page "https://github.com/alezost/shift-number.el")
10742 (synopsis "Increase or decrease the number at point")
10743 (description "@code{emacs-shift-number} provides commands
10744@code{shift-number-up} to increase and @code{shift-number-down} to
10745decrease the number at point.")
10746 (license license:gpl3+)))
b91e1724
OP
10747
10748(define-public emacs-highlight-defined
10749 (package
10750 (name "emacs-highlight-defined")
10751 (version "0.1.5")
10752 (source
10753 (origin
10754 (method url-fetch)
10755 (uri (string-append
10756 "https://github.com/Fanael/highlight-defined/archive/"
10757 version ".tar.gz"))
10758 (file-name (string-append name "-" version ".tar.gz"))
10759 (sha256
10760 (base32
10761 "1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
10762 (build-system emacs-build-system)
10763 (home-page "https://github.com/Fanael/highlight-defined")
10764 (synopsis "Syntax highlighting of known Elisp symbols")
10765 (description "Minor mode providing syntax highlighting of known Emacs Lisp
10766symbols. Currently the code distinguishes Lisp functions, built-in functions,
10767macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
10768 (license license:gpl3+)))
8a2ab51a
OP
10769
10770(define-public emacs-parinfer-mode
10771 (package
10772 (name "emacs-parinfer-mode")
10773 (version "0.4.10")
10774 (source
10775 (origin
10776 (method url-fetch)
10777 (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/"
10778 "v" version ".tar.gz"))
10779 (file-name (string-append name "-" version ".tar.gz"))
10780 (sha256
10781 (base32
10782 "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv"))))
10783 (propagated-inputs
10784 `(("emacs-dash" ,emacs-dash)
10785 ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters)
10786 ("emacs-company" ,emacs-company)))
10787 (build-system emacs-build-system)
10788 (home-page "https://github.com/DogLooksGood/parinfer-mode/")
10789 (synopsis "Lisp structure editing mode")
10790 (description "@code{parinfer-mode} is a proof-of-concept editor
10791mode for Lisp programming languages. It will infer some changes to
10792keep Parens and Indentation inline with one another.")
10793 (license license:gpl3+)))
abe8ef7f
OP
10794
10795(define-public emacs-helm-eww
b7d4247d 10796 (let ((commit "9d36acc433bcf689598b1b4d7d47c9aeb84d6b44"))
abe8ef7f
OP
10797 (package
10798 (name "emacs-helm-eww")
b7d4247d 10799 (version (git-version "0.1" "3" commit))
abe8ef7f
OP
10800 (source (origin
10801 (method git-fetch)
10802 (uri (git-reference
10803 (url "https://github.com/emacs-helm/helm-eww.git")
10804 (commit commit)))
10805 (file-name (string-append name "-" version "-checkout"))
10806 (sha256
10807 (base32
b7d4247d 10808 "06gnf84gx6qbhcw1h5jhjnvcdxkdpv0npm53x3pgqybbll5rn5dy"))))
9e2529e1
OP
10809 (propagated-inputs
10810 `(("emacs-helm" ,emacs-helm)))
abe8ef7f
OP
10811 (build-system emacs-build-system)
10812 (home-page "https://github.com/emacs-helm/helm-eww/")
10813 (synopsis "Helm interface to EWW")
10814 (description "This package provides a Helm interface for EWW buffers,
10815bookmarks and history.")
10816 (license license:gpl3+))))
b870ee10
OP
10817
10818(define-public emacs-stumpwm-mode
10819 (let ((commit "8fbe071d2c6c040794060a354eb377218dc10b35")
10820 (revision "1"))
10821 (package
10822 (name "emacs-stumpwm-mode")
10823 (version (string-append "0.0.1-" revision "."
10824 (string-take commit 7)))
10825 (source (origin
10826 (method git-fetch)
10827 (uri (git-reference
10828 (url "https://github.com/stumpwm/stumpwm-contrib.git")
10829 (commit commit)))
10830 (file-name (string-append name "-" version "-checkout"))
10831 (sha256
10832 (base32
10833 "1dfwsvz1c8w6j4jp0kzaz78ml3f5dp0a5pvf090kwpbpg176r7iq"))))
10834 (build-system emacs-build-system)
10835 (arguments
10836 `(#:phases
10837 (modify-phases %standard-phases
10838 (add-after 'unpack 'chdir-elisp
10839 ;; Elisp directory is not in root of the source.
10840 (lambda _
10841 (chdir "util/swm-emacs"))))))
10842 (home-page "https://github.com/stumpwm/stumpwm-contrib")
10843 (synopsis "Emacs minor-mode for Stumpwm")
10844 (description "Emacs minor-mode for Stumpwm")
10845 (license license:gpl3+))))
dbbd6e89
OP
10846
10847(define-public emacs-irfc
10848 (package
10849 (name "emacs-irfc")
10850 (version "20130824.507")
10851 (source
10852 (origin
10853 (method url-fetch)
10854 (uri "https://www.emacswiki.org/emacs/download/irfc.el")
10855 (file-name (string-append "irfc-" version ".el"))
10856 (sha256
10857 (base32
10858 "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"))))
10859 (build-system emacs-build-system)
10860 (home-page "https://www.emacswiki.org/emacs/download/irfc.el")
10861 (synopsis "Interface for IETF RFC document")
10862 (description
10863 "This package provides an Emacs interface for IETF RFC document.")
10864 (license license:gpl3+)))
0e087b70
OP
10865
10866(define-public emacs-ido-vertical-mode
10867 (package
10868 (name "emacs-ido-vertical-mode")
10869 (version "0.1.6")
10870 (source
10871 (origin
10872 (method url-fetch)
10873 (uri (string-append
10874 "https://github.com/creichert/ido-vertical-mode.el/archive/"
10875 "v" version ".tar.gz"))
10876 (file-name (string-append name "-" version ".tar.gz"))
10877 (sha256
10878 (base32
10879 "0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
10880 (build-system emacs-build-system)
10881 (home-page "https://github.com/creichert/ido-vertical-mode.el")
10882 (synopsis "Makes ido-mode display vertically")
10883 (description "Makes ido-mode display prospects vertically.")
10884 (license license:gpl3+)))
ca0e2ab0
OP
10885
10886(define-public emacs-wordgen
10887 (package
10888 (name "emacs-wordgen")
10889 (version "0.1.4")
10890 (source
10891 (origin
10892 (method url-fetch)
10893 (uri (string-append "https://github.com/Fanael/wordgen.el/archive/"
10894 version ".tar.gz"))
10895 (file-name (string-append name "-" version ".tar.gz"))
10896 (sha256
10897 (base32
10898 "1h2iyixdm49h53pwj9ics9gb9h3g6wa4hainpnjg6mfarf49jkmg"))))
10899 (build-system emacs-build-system)
10900 (home-page "https://github.com/Fanael/wordgen.el")
10901 (synopsis "Random word generator")
10902 (description "This package provides functions to generate random words
10903using user-provided rules.")
10904 (license license:gpl3+)))
47667501
OP
10905
10906(define-public emacs-on-screen
10907 (package
10908 (name "emacs-on-screen")
10909 (version "1.3.2")
10910 (source
10911 (origin
10912 (method url-fetch)
10913 (uri (string-append
10914 "http://elpa.gnu.org/packages/on-screen-" version ".el"))
10915 (file-name (string-append name "-" version ".el"))
10916 (sha256
10917 (base32
10918 "15d18mjgv1pnwl6kf3pr5w64q1322p1l1qlfvnckglwmzy5sl2qv"))))
10919 (build-system emacs-build-system)
10920 (home-page
10921 "https://github.com/michael-heerdegen/on-screen.el")
10922 (synopsis "Guide your eyes while scrolling")
10923 (description
10924 "Scrolling can be distracting because your eyes may lose
10925orientation. This library implements a minor mode that highlights
10926the previously visible buffer part after each scroll.")
10927 (license license:gpl3+)))
cfeefca9
OP
10928
10929(define-public emacs-highlight-escape-sequences
10930 (let ((commit "08d846a7aa748209d65fecead2b6a766c3e5cb41")
10931 (revision "1"))
10932 (package
10933 (name "emacs-highlight-escape-sequences")
10934 (version (string-append "0.0.1" "-" revision "."
10935 (string-take commit 7)))
10936 (source
10937 (origin
10938 (method git-fetch)
10939 (uri (git-reference
10940 (url "https://github.com/dgutov/highlight-escape-sequences.git")
10941 (commit commit)))
10942 (file-name (string-append name "-" version "-checkout"))
10943 (sha256
10944 (base32
10945 "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"))))
10946 (build-system emacs-build-system)
10947 (home-page "https://github.com/dgutov/highlight-escape-sequences")
10948 (synopsis "Highlight escape sequences in Emacs")
10949 (description "@code{highlight-escape-sequences} provides an
10950Emacs minor mode to escape sequences in code.")
10951 (license license:gpl3+))))
99092bd9
OP
10952
10953(define-public emacs-dashboard
10954 (package
10955 (name "emacs-dashboard")
10956 (version "1.2.4")
10957 (source
10958 (origin
10959 (method url-fetch)
10960 (uri (string-append
10961 "https://github.com/rakanalh/emacs-dashboard/archive/"
10962 version ".tar.gz"))
10963 (file-name (string-append name "-" version ".tar.gz"))
10964 (sha256
10965 (base32
10966 "1738lmbgq6gk24hcwic0qjyajr21l5xzhya4pv58dw1bhd6vxv9g"))))
10967 (build-system emacs-build-system)
10968 (propagated-inputs
10969 `(("emacs-page-break-lines" ,emacs-page-break-lines)))
10970 (arguments '(#:include '("\\.el$" "\\.txt$" "\\.png$")))
10971 (home-page "https://github.com/rakanalh/emacs-dashboard")
10972 (synopsis "Startup screen extracted from Spacemacs")
10973 (description "This package provides an extensible Emacs dashboard, with
10974sections for bookmarks, projectil projects, org-agenda and more. ")
10975 (license license:gpl3+)))
37fa904f
OP
10976
10977(define-public emacs-slime-company
10978 (package
10979 (name "emacs-slime-company")
10980 (version "1.1")
10981 (source
10982 (origin
10983 (method url-fetch)
10984 (uri (string-append "https://github.com/anwyn/slime-company/archive/"
10985 "v" version ".tar.gz"))
10986 (sha256
10987 (base32
10988 "1myl79pxj501xfr5qc5a24qddsn2l5iaamg7rf7fpny7mr9v70ar"))
10989 (file-name (string-append name "-" version ".tar.gz"))))
10990 (build-system emacs-build-system)
10991 (propagated-inputs
10992 `(("emacs-slime" ,emacs-slime)
10993 ("emacs-company" ,emacs-company)))
10994 (home-page "https://company-mode.github.io")
10995 (synopsis "SLIME completion backend for @code{company-mode}")
10996 (description
10997 "This is a backend implementation for the completion package
10998@code{company-mode} which supports the normal and the fuzzy completion
10999modes of SLIME.")
11000 (license license:gpl3+)))
1a73164d
OP
11001
11002(define-public emacs-sml-mode
11003 (package
11004 (name "emacs-sml-mode")
11005 (version "6.8")
11006 (source
11007 (origin
11008 (method url-fetch)
11009 (uri (string-append "http://elpa.gnu.org/packages/sml-mode-"
11010 version ".el"))
11011 (sha256
11012 (base32
11013 "105fcrz5qp95f2n3fdm3awr6z58sbrjihjss6qnrg4lz2ggbc328"))))
11014 (build-system emacs-build-system)
11015 (home-page "http://elpa.gnu.org/packages/sml-mode.html")
11016 (synopsis "Major mode for editing (Standard) ML")
11017 (description "SML-MODE is a major Emacs mode for editing Standard ML.
11018It provides syntax highlighting and automatic indentation and
11019comes with sml-proc which allows interaction with an inferior SML
11020interactive loop.")
11021 (license license:gpl3+)))
c498ff56
OP
11022
11023(define-public emacs-eros
11024 (let ((commit "a42e45c9b2397156c684330b0fc90ee0eba773f5")
11025 (revision "1"))
11026 (package
11027 (name "emacs-eros")
11028 (version (string-append "0.0.1" "-" revision "."
11029 (string-take commit 7)))
11030 (source
11031 (origin
11032 (method git-fetch)
11033 (uri (git-reference
11034 (url "https://github.com/xiongtx/eros.git")
11035 (commit commit)))
11036 (file-name (string-append name "-" version "-checkout"))
11037 (sha256
11038 (base32
11039 "0whlsq90v13fz69k3wjrwcwb9gkpfxqjd75mg3nrp85j9nwhb5i4"))))
11040 (build-system emacs-build-system)
11041 (home-page "https://github.com/xiongtx/eros")
11042 (synopsis "Evaluation result overlays")
11043 (description "@code{eros} provides evaluation result overlays.")
11044 (license license:gpl3+))))
6673bbef
OP
11045
11046(define-public emacs-stickyfunc-enhance
11047 (let ((commit "13bdba51fcd83ccbc3267959d23afc94d458dcb0")
11048 (revision "1"))
11049 (package
11050 (name "emacs-stickyfunc-enhance")
11051 (version "0.1")
11052 (source
11053 (origin
11054 (method git-fetch)
11055 (uri (git-reference
11056 (url "https://github.com/tuhdo/semantic-stickyfunc-enhance.git")
11057 (commit commit)))
11058 (file-name (string-append name "-" version "-checkout"))
11059 (sha256
11060 (base32
11061 "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"))))
11062 (build-system emacs-build-system)
11063 (home-page "https://github.com/tuhdo/semantic-stickyfunc-enhance")
11064 (synopsis "Enhancement to stock @code{semantic-stickyfunc-mode}")
11065 (description
11066 "@code{semantic-stickyfunc-mode} shows the function point is currently
11067in at the first line of the current buffer. This is useful when you have a
11068very long function that spreads more than a screen, and you don't have to
11069scroll up to read the function name and then scroll down to original position.")
11070 (license license:gpl3+))))
c9efc229
OP
11071
11072(define-public emacs-git-auto-commit-mode
11073 (package
11074 (name "emacs-git-auto-commit-mode")
11075 (version "4.4.0")
11076 (source
11077 (origin
11078 (method url-fetch)
11079 (uri (string-append
11080 "https://github.com/ryuslash/git-auto-commit-mode/archive/"
11081 version ".tar.gz"))
11082 (file-name (string-append name "-" version ".tar.gz"))
11083 (sha256
11084 (base32
11085 "04avxmalsl3b7zi2vipfw9rb4wrwysnipsbch96skviql9axk870"))))
11086 (build-system emacs-build-system)
11087 (home-page "https://github.com/ryuslash/git-auto-commit-mode")
11088 (synopsis "Emacs Minor mode to automatically commit and push")
11089 (description "@code{git-auto-commit-mode} is an Emacs minor mode that
11090tries to commit changes to a file after every save.
11091
11092When @code{gac-automatically-push-p} is non-nil, it also tries to push to
11093the current upstream.")
11094 (license license:gpl3+)))
deef6d7c
OP
11095
11096(define-public emacs-company-restclient
11097 (package
11098 (name "emacs-company-restclient")
11099 (version "0.1.0")
11100 (source
11101 (origin
11102 (method url-fetch)
11103 (uri (string-append
11104 "https://github.com/iquiw/company-restclient/archive/"
11105 "v" version ".tar.gz"))
11106 (file-name (string-append name "-" version ".tar.gz"))
11107 (sha256
11108 (base32
11109 "1kr3f0wgqlk7r171bvb2kinv7fanwj2md01wdpx04qkgwcr1as00"))))
11110 (build-system emacs-build-system)
11111 (propagated-inputs
11112 `(("emacs-company" ,emacs-company)
11113 ("emacs-know-your-http-well" ,emacs-know-your-http-well)
11114 ("emacs-restclient" ,emacs-restclient)))
11115 (home-page "https://github.com/iquiw/company-restclient")
11116 (synopsis "Company-mode completion back-end for restclient-mode")
11117 (description "@code{company-mode} back-end for
11118@code{restclient-mode}.
11119
11120It provides auto-completion for HTTP methods and headers in
11121@code{restclient-mode}. Completion source is given by
11122@code{know-your-http-well}.")
11123 (license license:gpl3+)))
51eda974
SB
11124
11125(define-public emacs-noflet
11126 (let ((version "20170629")
11127 (revision "1")
11128 (commit "7ae84dc3257637af7334101456dafe1759c6b68a"))
11129 (package
11130 (name "emacs-noflet")
11131 (version (git-version version revision commit))
11132 (source
11133 (origin
11134 (method git-fetch)
11135 (uri (git-reference
11136 (url "https://github.com/nicferrier/emacs-noflet")
11137 (commit commit)))
11138 (file-name (string-append name "-" version "-checkout"))
11139 (sha256
11140 (base32
11141 "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"))))
11142 (build-system emacs-build-system)
11143 (arguments
11144 `(#:phases
11145 (modify-phases %standard-phases
11146 (add-after 'unpack 'require-dash
11147 ;; noflet.el uses -map from dash, but (require 'dash) is
11148 ;; missing. So, add it.
11149 (lambda _
11150 (substitute* "noflet.el"
11151 ((";;; Code:") ";;; Code:\n(require 'dash)"))
11152 #t)))))
11153 (propagated-inputs
11154 `(("emacs-dash" ,emacs-dash)))
11155 (home-page "https://github.com/nicferrier/emacs-noflet")
11156 (synopsis "Locally override functions")
11157 (description "@code{emacs-noflet} let's you locally override functions,
11158in the manner of @command{flet}, but with access to the original function
11159through the symbol: @command{this-fn}.")
11160 (license license:gpl3+))))
b36f9a80
SB
11161
11162(define-public emacs-dumb-jump
11163 (package
11164 (name "emacs-dumb-jump")
11165 (version "0.5.2")
11166 (source
11167 (origin
11168 (method url-fetch)
11169 (uri (string-append
11170 "https://github.com/jacktasia/dumb-jump/archive/v"
11171 version ".tar.gz"))
11172 (file-name (string-append name "-" version ".tar.gz"))
11173 (sha256
11174 (base32
11175 "07n0xjgpxjpf3vp9gxchkjpydyj0zm166930as0kwiwkhjlsirsf"))))
11176 (build-system emacs-build-system)
11177 (arguments
11178 `(#:tests? #f ; FIXME: Tests freeze when run.
11179 #:test-command '("ert-runner")
11180 #:phases
11181 (modify-phases %standard-phases
11182 (add-after 'unpack 'set-shell
11183 (lambda _
11184 ;; Setting the SHELL environment variable is required for the
11185 ;; tests to find sh.
11186 (setenv "SHELL" (which "sh"))
11187 #t)))))
11188 (native-inputs
11189 `(("emacs-el-mock" ,emacs-el-mock)
11190 ("emacs-noflet" ,emacs-noflet)
11191 ("emacs-undercover" ,emacs-undercover)
5c8031ff 11192 ("ert-runner" ,emacs-ert-runner)))
b36f9a80
SB
11193 (propagated-inputs
11194 `(("emacs-f" ,emacs-f)
11195 ("emacs-popup" ,emacs-popup)))
11196 (home-page "https://github.com/jacktasia/dumb-jump")
11197 (synopsis "Jump to definition for multiple languages without configuration")
11198 (description "Dumb Jump is an Emacs \"jump to definition\" package with
11199support for multiple programming languages that favors \"just working\" over
11200speed or accuracy. This means minimal --- and ideally zero --- configuration
11201with absolutely no stored indexes (tags) or persistent background processes.
11202Dumb Jump performs best with The Silver Searcher @command{ag} or ripgrep
11203@command{rg} installed.")
11204 (license license:gpl3+)))
563ab27b
MO
11205
11206(define-public emacs-dts-mode
11207 (let ((commit "9ee0854446dcc6c53d2b8d2941051768dba50344")
11208 (revision "1"))
11209 (package
11210 (name "emacs-dts-mode")
11211 (version (string-append "0.1.0-" revision "." (string-take commit 7)))
11212 (source
11213 (origin
11214 (method git-fetch)
11215 (uri (git-reference
11216 (url "https://github.com/bgamari/dts-mode.git")
11217 (commit commit)))
11218 (file-name (string-append name "-" version "-checkout"))
11219 (sha256
11220 (base32
11221 "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"))))
11222 (build-system emacs-build-system)
11223 (home-page "https://github.com/bgamari/dts-mode.git")
11224 (synopsis "Emacs minor mode for editing device tree files")
11225 (description
11226 "This package provides an Emacs minor mode for highlighting
11227device tree files.")
11228 (license license:gpl3+))))
bdadf855
PN
11229
11230(define-public emacs-daemons
11231 (package
11232 (name "emacs-daemons")
11233 (version "1.2.0")
11234 (source
11235 (origin
11236 (method git-fetch)
11237 (uri (git-reference
11238 (url "https://github.com/cbowdon/daemons.el")
11239 (commit version)))
11240 (file-name (string-append name "-" version "-checkout"))
11241 (sha256
11242 (base32
11243 "00ijgm22ck76gw0x79krl05yy0m8a502yfakazfy5xhpn1zi6ab7"))))
11244 (build-system emacs-build-system)
11245 (home-page "https://github.com/cbowdon/daemons.el")
11246 (synopsis "Emacs UI for managing init system services")
11247 (description
11248 "This is an Emacs mode to give you a UI for managing init system
11249daemons (services) for those getting tired of typing out @code{sudo service
35d43843 11250my_thing reload} all the time. It offers a consistent UI over different init
bdadf855
PN
11251systems.")
11252 (license license:gpl3+)))
71d35215
PN
11253
11254(define-public emacs-esh-autosuggest
11255 (package
11256 (name "emacs-esh-autosuggest")
11257 (version "2.0.0")
11258 (source
11259 (origin
11260 (method git-fetch)
11261 (uri (git-reference
11262 (url "https://github.com/dieggsy/esh-autosuggest")
11263 (commit version)))
11264 (file-name (string-append name "-" version "-checkout"))
11265 (sha256
11266 (base32
11267 "116pdjgpjy9b0psm5kzwkwy7dq8vn0p6dy75dl1zsy2xrjf1iqdw"))))
11268 (build-system emacs-build-system)
11269 (propagated-inputs `(("emacs-company" ,emacs-company)))
11270 (home-page "https://github.com/dieggsy/esh-autosuggest")
11271 (synopsis "Fish-like autosuggestions in Eshell")
11272 (description
11273 "This package assumes you use something other than company for eshell
11274completion (e.g. @code{eshell-pcomplete}, @code{completion-at-point},
11275@code{helm-esh-pcomplete}). @code{company-mode} is used solely as a mechanism
11276for history autosuggestions.
11277
11278Unless you're using @code{use-package}'s hook keyword, you can enable the
11279autosuggestions with:
11280@code{(add-hook 'eshell-mode-hook #'esh-autosuggest-mode)}")
11281 (license license:gpl3+)))
fd29faa8
RW
11282
11283(define-public emacs-desktop-environment
11284 (package
11285 (name "emacs-desktop-environment")
11286 (version "0.2.0")
11287 (source
11288 (origin
11289 (method git-fetch)
11290 (uri (git-reference
11291 (url "https://github.com/DamienCassou/desktop-environment.git")
11292 (commit (string-append "v" version))))
11293 (file-name (string-append name "-" version "-checkout"))
11294 (sha256
11295 (base32
11296 "1fal3yfmqg10cb53qsf5gsq2gvyz9w16wmlpnpjwjzwnjfn6l73r"))))
11297 (build-system emacs-build-system)
11298 (home-page "https://gitlab.petton.fr/DamienCassou/desktop-environment")
11299 (synopsis "Control your GNU/Linux desktop environment from Emacs")
11300 (description
11301 "This package helps you control your GNU/Linux desktop from Emacs.
11302With @code{desktop-environment}, you can control the brightness and volume as
11303well as take screenshots and lock your screen. The package depends on the
11304availability of shell commands to do the hard work for us. These commands can
11305be changed by customizing the appropriate variables.")
11306 (license license:gpl3+)))
45dca193
KH
11307
11308(define-public emacs-org-caldav
11309 (package
11310 (name "emacs-org-caldav")
11311 (version "20180403")
11312 (source
11313 (origin
11314 (method url-fetch)
11315 (uri (string-append
11316 "https://github.com/dengste/org-caldav/raw/"
11317 "8d3492c27a09f437d2d94f2736c56d7652e87aa0"
11318 "/org-caldav.el"))
11319 (sha256
11320 (base32
11321 "1fh4gh68ddj0is99z2ccyh97v6psnyda61n2dsadzqhcxn51amlc"))))
11322 (build-system emacs-build-system)
11323 (propagated-inputs `(("emacs-org" ,emacs-org)))
11324 (home-page "https://github.com/dengste/org-caldav")
11325 (synopsis
11326 "Sync Org files with external calendars via the CalDAV protocol")
11327 (description
11328 "Synchronize between events in Org-mode files and a CalDAV calendar.
11329This code is still alpha.")
11330 (license license:gpl3+)))
555ab085
KH
11331
11332(define-public emacs-zotxt
11333 (package
11334 (name "emacs-zotxt")
11335 (version "20180518")
11336 (source
11337 (origin
11338 (method url-fetch)
11339 (uri (string-append
11340 "https://github.com/egh/zotxt-emacs/archive/"
11341 "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"
11342 ".tar.gz"))
11343 (sha256
11344 (base32
11345 "1qlibaciqgsva6fc7vv9krssjq00bi880396jk7llbi3c52q9n1y"))))
11346 (build-system emacs-build-system)
11347 (propagated-inputs
11348 `(("emacs-deferred" ,emacs-deferred)
11349 ("emacs-request" ,emacs-request)))
11350 (home-page "https://github.com/egh/zotxt-emacs")
11351 (synopsis "Integrate Emacs with Zotero")
11352 (description "This package provides two integration features between Emacs
11353and the Zotero research assistant: Insertion of links to Zotero items into an
11354Org-mode file, and citations of Zotero items in Pandoc Markdown files.")
11355 (license license:gpl3+)))
22deb034
PN
11356
11357(define-public emacs-evil-ediff
1e5fb529
PN
11358 ;; Evil-Ediff is included in Evil Collection from 20180617.
11359 (deprecated-package "emacs-evil-ediff" emacs-evil-collection))
c6c1f0bf
PN
11360
11361(define-public emacs-evil-magit
11362 (let ((commit "dbf5a646a7ce1c35c229dfdc423bd5ecd927a3a8"))
11363 (package
11364 (name "emacs-evil-magit")
11365 (version (git-version "0.4.2" "1" commit))
11366 (source
11367 (origin
11368 (method git-fetch)
11369 (uri (git-reference
11370 (url "https://github.com/emacs-evil/evil-magit")
11371 (commit commit)))
11372 (file-name (string-append name "-" version "-checkout"))
11373 (sha256
11374 (base32
11375 "0ya0dkviq4pi92ab69a4j674y5r1hc1x3x7r7hlm97ag3a6zfkav"))))
11376 (build-system emacs-build-system)
11377 (propagated-inputs
11378 `(("emacs-evil" ,emacs-evil)
5c8031ff 11379 ("magit" ,emacs-magit)))
c6c1f0bf
PN
11380 (home-page
11381 "https://github.com/emacs-evil/evil-magit")
11382 (synopsis "Evil-based key bindings for Magit")
11383 (description
11384 "This Emacs library configures Magit and Evil to play well with each other.
11385For some background see @url{https://github.com/magit/evil-magit/issues/1}.
11386See the README at @url{https://github.com/justbur/evil-magit} for a table
11387describing the key binding changes.")
11388 (license license:gpl3+))))
e1e09bcb
PN
11389
11390(define-public emacs-evil-mu4e
5a74886e
PN
11391 ;; Evil-mu4e is included in Evil Collection from 20180617.
11392 (deprecated-package "emacs-evil-mu4e" emacs-evil-collection))
ac85107c
PN
11393
11394(define-public emacs-evil-multiedit
11395 (let ((commit "ea3d9177b74ab0bc65e55df9cc0a0b42e4ef815d"))
11396 (package
11397 (name "emacs-evil-multiedit")
11398 (version (git-version "1.3.9" "1" commit))
11399 (source
11400 (origin
11401 (method git-fetch)
11402 (uri (git-reference
11403 (url "https://github.com/hlissner/evil-multiedit")
11404 (commit commit)))
11405 (file-name (string-append name "-" version "-checkout"))
11406 (sha256
11407 (base32
11408 "17zm35r474z8ras4xy7124pcb972d385pbdv4jxyj5vq042vq07w"))))
11409 (build-system emacs-build-system)
11410 (propagated-inputs
11411 `(("emacs-evil" ,emacs-evil)
11412 ("emacs-iedit" ,emacs-iedit)))
11413 (home-page
11414 "https://github.com/hlissner/evil-multiedit")
11415 (synopsis "Multiple cursors for Evil mode")
11416 (description
11417 "This plugin was an answer to the lack of proper multiple cursor support
11418in Emacs+Evil. It allows you to select and edit matches interactively,
11419integrating @code{iedit-mode} into Evil mode with an attempt at sensible
11420defaults.")
11421 (license license:gpl3+))))
e3740109
PN
11422
11423(define-public emacs-evil-org
11424 (let ((commit "b6d652a9163d3430a9e0933a554bdbee5244bbf6"))
11425 (package
11426 (name "emacs-evil-org")
11427 (version (git-version "0.1.1" "1" commit))
11428 (source
11429 (origin
11430 (method git-fetch)
11431 (uri (git-reference
11432 (url "https://github.com/Somelauw/evil-org-mode")
11433 (commit commit)))
11434 (file-name (string-append name "-" version "-checkout"))
11435 (sha256
11436 (base32
11437 "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"))))
11438 (build-system emacs-build-system)
11439 (propagated-inputs `(("emacs-evil" ,emacs-evil)))
11440 (home-page
11441 "https://github.com/Somelauw/evil-org-mode")
11442 (synopsis "Evil keybindings for Org mode")
11443 (description
11444 "This package adds supplemental Evil mode key-bindings to Emacs
11445Org-mode. It features:
11446@itemize
11447@item normal, visual and insert mode bindings;
11448@item key bindings organised in key themes;
11449@item operators like > and < to work on headings;
11450@item text objects;
11451@item table support;
11452@item calendar (date selection) support;
11453@item agenda support.
11454@end itemize\n")
11455 (license license:gpl3+))))
15dcd292
PN
11456
11457(define-public emacs-fish-completion
3348e9f3
PN
11458 (let ((commit "bac15fda1392a891070574dfe5d2d50b10831e8b"))
11459 (package
11460 (name "emacs-fish-completion")
11461 (version (git-version "20180616" "1" commit))
11462 (source
11463 (origin
11464 (method url-fetch)
11465 (uri (string-append
11466 "https://gitlab.com/Ambrevar/emacs-fish-completion/repository/"
11467 "archive.tar.gz?ref="
11468 commit))
11469 (sha256
11470 (base32
11471 "093qzdrbkl7dhjk16zq8i13kh1phyigkblcfrbgbrxjqd2ndrfdi"))))
11472 (build-system emacs-build-system)
11473 (inputs `(("fish" ,fish)))
11474 (arguments
11475 `(#:phases
11476 (modify-phases %standard-phases
11477 (add-after 'unpack 'configure
11478 (lambda* (#:key inputs outputs #:allow-other-keys)
11479 (let ((fish (assoc-ref inputs "fish")))
11480 ;; Specify the absolute file names of the various
11481 ;; programs so that everything works out-of-the-box.
11482 (emacs-substitute-variables
11483 "fish-completion.el"
11484 ("fish-completion-command"
11485 (string-append fish "/bin/fish")))))))))
11486 (home-page
11487 "https://gitlab.com/Ambrevar/emacs-fish-completion")
11488 (synopsis "Fish completion for Emacs pcomplete")
11489 (description
11490 "This package provides completion for the Fish shell to pcomplete (used
15dcd292
PN
11491by shell and Eshell). You can set it up globally with:
11492
11493@example
11494(when (and (executable-find \"fish\")
11495 (require 'fish-completion nil t))
11496 (global-fish-completion-mode))
11497@end example
11498
11499Alternatively, you can call the @code{fish-completion-mode} manually or in
11500shell/Eshell mode hook.
11501
11502The package @code{emacs-bash-completion} is an optional dependency: if available,
11503@code{fish-completion-complete} can be configured to fall back on bash to further
11504try completing. See @code{fish-completion-fallback-on-bash-p}.")
3348e9f3 11505 (license license:gpl3+))))
a62d872f
PN
11506
11507(define-public emacs-gif-screencast
a749040a 11508 (let ((commit "12b25442b97b84abae74ecb5190a9d14ff7cfe5a"))
a62d872f
PN
11509 (package
11510 (name "emacs-gif-screencast")
a749040a 11511 (version (git-version "20180616" "1" commit))
a62d872f
PN
11512 (source
11513 (origin
11514 (method url-fetch)
11515 (uri (string-append
a749040a
PN
11516 "https://gitlab.com/Ambrevar/emacs-gif-screencast/"
11517 "repository/archive.tar.gz?ref="
11518 commit))
a62d872f
PN
11519 (sha256
11520 (base32
a749040a 11521 "0lc457i78xjkn5idr2aaiadkh76zcsksj84z0qh80a9y775syrgh"))))
a62d872f
PN
11522 (build-system emacs-build-system)
11523 (inputs
11524 `(("scrot" ,scrot)
11525 ("imagemagick" ,imagemagick)
11526 ("gifsicle" ,gifsicle)))
11527 (arguments
11528 `(#:phases
11529 (modify-phases %standard-phases
11530 (add-after 'unpack 'configure
11531 (lambda* (#:key inputs outputs #:allow-other-keys)
11532 (let ((scrot (assoc-ref inputs "scrot"))
11533 (imagemagick (assoc-ref inputs "imagemagick"))
11534 (gifsicle (assoc-ref inputs "gifsicle")))
11535 ;; Specify the absolute file names of the various
11536 ;; programs so that everything works out-of-the-box.
11537 (emacs-substitute-variables
11538 "gif-screencast.el"
11539 ("gif-screencast-program"
11540 (string-append scrot "/bin/scrot"))
11541 ("gif-screencast-convert-program"
11542 (string-append imagemagick "/bin/convert"))
11543 ("gif-screencast-cropping-program"
11544 (string-append imagemagick "/bin/mogrify"))
11545 ("gif-screencast-optimize-program"
11546 (string-append imagemagick "/bin/gifsicle")))))))))
11547 (home-page
a749040a 11548 "https://gitlab.com/Ambrevar/emacs-gif-screencast")
a62d872f
PN
11549 (synopsis "One-frame-per-action GIF recording")
11550 (description
11551 "Call @code{gif-screencast} to start a recording.
11552A screenshot is taken for every user action. Call
11553@code{gif-screencast-stop} (<f9> by default) to finish recording and create
11554the GIF result.")
11555 (license license:gpl3+))))
2dcea9b4
PN
11556
11557(define-public emacs-google-translate
f8e0d27c
ML
11558 (package
11559 (name "emacs-google-translate")
6837deb7 11560 (version "0.11.16")
f8e0d27c
ML
11561 (source
11562 (origin
11563 (method url-fetch)
11564 (uri (string-append "https://github.com/atykhonov/google-translate/"
11565 "archive/v" version ".tar.gz"))
11566 (file-name (string-append name "-" version ".tar.gz"))
11567 (sha256
11568 (base32
6837deb7 11569 "01n9spj1d0gjfj39x526rl3m9c28wnx9afipmf5s8y77cx3mfwhl"))))
f8e0d27c
ML
11570 (build-system emacs-build-system)
11571 (home-page "https://github.com/atykhonov/google-translate")
11572 (synopsis "Emacs interface to Google Translate")
11573 (description
11574 "This packages provides an Emacs interface to the Google Translate
2dcea9b4 11575on-line service.")
f8e0d27c 11576 (license license:gpl3+)))
3540c6eb
PN
11577
11578(define-public emacs-helm-company
11579 (let ((commit "acc9c7901e094c1591327a0db1ec7a439f67a84d"))
11580 (package
11581 (name "emacs-helm-company")
11582 (version (git-version "0.2.2" "1" commit))
11583 (source
11584 (origin
11585 (method git-fetch)
11586 (uri (git-reference
11587 (url "https://github.com/Sodel-the-Vociferous/helm-company")
11588 (commit commit)))
11589 (file-name (string-append name "-" version "-checkout"))
11590 (sha256
11591 (base32
11592 "1d4q9clp0q56br80c21a4wz1gc4jw3mdy97z9mq07x9i8rhlppzs"))))
11593 (build-system emacs-build-system)
11594 (propagated-inputs
11595 `(("emacs-helm" ,emacs-helm)
11596 ("emacs-company" ,emacs-company)))
11597 (home-page "https://github.com/Sodel-the-Vociferous/helm-company")
11598 (synopsis "Helm interface for company-mode")
11599 (description
11600 "This is a Helm interface to company-mode, a text completion
11601framework.")
11602 (license license:gpl3+))))
0b4e4efe
PN
11603
11604(define-public emacs-helm-descbinds
11605 (let ((commit "033be73f21778633813264ce1634a6e1ad873d8e"))
11606 (package
11607 (name "emacs-helm-descbinds")
11608 (version (git-version "1.13" "1" commit))
11609 (source
11610 (origin
11611 (method git-fetch)
11612 (uri (git-reference
11613 (url "https://github.com/emacs-helm/helm-descbinds")
11614 (commit commit)))
11615 (file-name (string-append name "-" version "-checkout"))
11616 (sha256
11617 (base32
11618 "1n89p56qwa243w1c85i5awnaf7piwjsvfi7nmnsrwm33hix5dknk"))))
11619 (build-system emacs-build-system)
11620 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11621 (home-page "https://github.com/emacs-helm/helm-descbinds")
11622 (synopsis "Convenient @code{describe-bindings} with Helm")
11623 (description
11624 "This package is a replacement of @code{describe-bindings} for Helm.
11625@code{describe-bindings} is replaced with @code{helm-descbinds}. As usual,
11626type @code{C-h b}, or any incomplete key sequence plus @code{C-h}, to run
11627@code{helm-descbinds}. The bindings are presented in a similar way as
11628@code{describe-bindings} does, but you can use completion to find the command
11629you searched for and execute it, or view its documentation.")
11630 (license license:gpl3+))))
5a949f5b
PN
11631
11632(define-public emacs-helm-emms
11633 (let ((commit "d3f9bdef8ff0d093eaf6e26af50ea905ab53fdec"))
11634 (package
11635 (name "emacs-helm-emms")
11636 (version (git-version "1.3" "1" commit))
11637 (source
11638 (origin
11639 (method git-fetch)
11640 (uri (git-reference
11641 (url "https://github.com/emacs-helm/helm-emms")
11642 (commit commit)))
11643 (file-name (string-append name "-" version "-checkout"))
11644 (sha256
11645 (base32
11646 "0bdb8xp0yp3gijpa9i2rc17gfzjhzlm92vdzw93i10qpd1xhj4aa"))))
11647 (build-system emacs-build-system)
11648 (propagated-inputs
11649 `(("emacs-helm" ,emacs-helm)
5c8031ff 11650 ("emacs-emms" ,emacs-emms)))
5a949f5b
PN
11651 (home-page
11652 "https://github.com/emacs-helm/helm-emms")
11653 (synopsis "Emms for Helm")
11654 (description "Helm interface for Emms to browse all tracks and all folders
11655from @code{emms-source-file-default-directory}.")
11656 (license license:gpl3+))))
49fd0392
PN
11657
11658(define-public emacs-helm-exwm
22c0bef6 11659 (let ((commit "56266f261ba3b3d2753b374b50da20eb768c06f5"))
49fd0392
PN
11660 (package
11661 (name "emacs-helm-exwm")
22c0bef6 11662 (version (git-version "20180703" "2" commit))
49fd0392
PN
11663 (source
11664 (origin
11665 (method url-fetch)
11666 (uri (string-append
11667 "https://github.com/emacs-helm/helm-exwm/archive/"
11668 commit
11669 ".tar.gz"))
11670 (sha256
11671 (base32
22c0bef6 11672 "0n7hdiajw5vxl8ha2r9r4cl4i7crza25348825wb6acwhhzijxcj"))))
49fd0392
PN
11673 (build-system emacs-build-system)
11674 (propagated-inputs
11675 `(("emacs-helm" ,emacs-helm)
11676 ("emacs-exwm" ,emacs-exwm)))
11677 (home-page
11678 "https://github.com/emacs-helm/helm-exwm")
11679 (synopsis "Helm for EXWM buffers")
11680 (description
11681 "@code{helm-exwm} runs a Helm session over the list of EXWM buffers.
11682@code{helm-exwm-switch} is a convenience X application launcher using Helm to
11683switch between the various windows of one or several specific applications.
11684See @code{helm-exwm-switch-browser} for an example.")
11685 (license license:gpl3+))))
daa9e89d
PN
11686
11687(define-public emacs-helm-flycheck
11688 (let ((commit "3cf7d3bb194acacc6395f88360588013d92675d6"))
11689 (package
11690 (name "emacs-helm-flycheck")
11691 (version (git-version "0.4" "1" commit))
11692 (source
11693 (origin
11694 (method git-fetch)
11695 (uri (git-reference
11696 (url "https://github.com/yasuyk/helm-flycheck")
11697 (commit commit)))
11698 (file-name (string-append name "-" version "-checkout"))
11699 (sha256
11700 (base32
11701 "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4"))))
11702 (build-system emacs-build-system)
11703 (propagated-inputs
11704 `(("emacs-dash" ,emacs-dash)
5c8031ff 11705 ("emacs-flycheck" ,emacs-flycheck)
daa9e89d
PN
11706 ("emacs-helm" ,emacs-helm)))
11707 (home-page "https://github.com/yasuyk/helm-flycheck")
11708 (synopsis "Show Flycheck errors with Helm")
11709 (description
11710 "This integrates Flycheck with Helm.")
11711 (license license:gpl3+))))
1e758526
PN
11712
11713(define-public emacs-helm-ls-git
11714 (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
11715 (package
11716 (name "emacs-helm-ls-git")
11717 (version (git-version "1.9.1" "1" commit))
11718 (source
11719 (origin
11720 (method git-fetch)
11721 (uri (git-reference
11722 (url "https://github.com/emacs-helm/helm-ls-git")
11723 (commit commit)))
11724 (file-name (string-append name "-" version "-checkout"))
11725 (sha256
11726 (base32
11727 "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
11728 (build-system emacs-build-system)
11729 (propagated-inputs `(("emacs-helm" ,emacs-helm)))
11730 (home-page "https://github.com/emacs-helm/helm-ls-git")
11731 (synopsis "Helm interface for listing the files in a Git repository")
11732 (description
11733 "This package provides a Helm interface for Git files.
11734@itemize
11735@item Display the open buffers in project.
11736@item Display a status source showing state of project (modified files etc.).
11737@item Display a list of all files in project under git control.
11738@item Quickly look at diffs of modified files.
11739@item Allow switching to @code{git status} with your preferred frontend
11740(vc-dir, Magit,etc.).
11741@item Full integration of git-grep, also allow usage of @code{helm-grep} (you
11742can use ack-grep instead of grep).
11743@item Integrate usage of gid from id-utils.
11744@item Full integration with @code{helm-find-files}, allow you to browse
11745projects unrelated to current-buffer.
11746@item In addition, all actions of type files and buffers are provided.
11747@end itemize\n")
11748 (license license:gpl3+))))
2f3aa1d3
PN
11749
11750(define-public emacs-helm-mu
11751 (let ((commit "77e6fea24e01481418738421dbcfe28ef1bd63cf"))
11752 (package
11753 (name "emacs-helm-mu")
11754 (version (git-version "20180513" "1" commit))
11755 (source
11756 (origin
11757 (method url-fetch)
11758 (uri (string-append
11759 "https://github.com/emacs-helm/helm-mu/archive/"
11760 commit
11761 ".tar.gz"))
11762 (sha256
11763 (base32
11764 "0qm4xi3i957scm50nar398pv4x8y03si10l77jb9ckjaviyq2hj9"))))
11765 (build-system emacs-build-system)
11766 (propagated-inputs
11767 `(("emacs-helm" ,emacs-helm)
11768 ("mu" ,mu)))
11769 (home-page
11770 "https://github.com/emacs-helm/helm-mu")
11771 (synopsis
11772 "Helm sources for searching emails and contacts")
11773 (description
11774 "Helm sources for searching emails and contacts using @code{mu} and
11775@code{mu4e}. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for
11776Emacs build on top of mu. Mu is highly efficient making it possible to get
11777instant results even for huge maildirs. It also provides search operators,
11778e.g: @code{from:Peter to:Anne flag:attach search term}.")
11779 (license license:gpl3+))))
bdfebc4b
PN
11780
11781(define-public emacs-helm-pass
11782 (let ((commit "ebcbef1a962795a36e3491ae926e2a4b8a8b0ebb"))
11783 (package
11784 (name "emacs-helm-pass")
11785 (version (git-version "20180416" "1" commit))
11786 (source
11787 (origin
11788 (method url-fetch)
11789 (uri (string-append
11790 "https://github.com/jabranham/helm-pass/archive/"
11791 commit
11792 ".tar.gz"))
11793 (sha256
11794 (base32
11795 "1pgq4hj9wvz7z2fyxwsvbh6rmc1akya84v382nx26rr76iavz6wi"))))
11796 (build-system emacs-build-system)
11797 (propagated-inputs
11798 `(("emacs-helm" ,emacs-helm)
11799 ("emacs-password-store" ,emacs-password-store)))
11800 (home-page
11801 "https://github.com/jabranham/helm-pass")
11802 (synopsis "Helm interface to pass, the standard Unix password manager")
11803 (description
11804 "Users of @code{helm-pass} may also be interested in functionality
11805provided by other Emacs packages dealing with pass:
11806@itemize
11807@item @code{emacs-password-store}, which @code{helm-pass} relies on.
11808@item @code{emacs-pass}, a major mode for @code{pass}.
11809@item @code{auth-source-pass.el}: integration of Emacs' auth-source with
11810@code{pass}, included in Emacs 26+).
11811@end itemize\n")
11812 (license license:gpl3+))))
00f37740
PN
11813
11814(define-public emacs-image+
11815 (let ((commit "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"))
11816 (package
11817 (name "emacs-image+")
11818 (version (git-version "0.6.2" "1" commit))
11819 (source
11820 (origin
11821 (method git-fetch)
11822 (uri (git-reference
11823 (url "https://github.com/mhayashi1120/Emacs-imagex")
11824 (commit commit)))
11825 (file-name (string-append name "-" version "-checkout"))
11826 (sha256
11827 (base32
11828 "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"))))
11829 (build-system emacs-build-system)
92d581a0
PN
11830 (inputs `(("imagemagick" ,imagemagick)))
11831 (arguments
11832 `(#:phases
11833 (modify-phases %standard-phases
11834 (add-after 'unpack 'configure
11835 (lambda* (#:key inputs outputs #:allow-other-keys)
11836 (let ((imagemagick (assoc-ref inputs "imagemagick")))
11837 ;; Specify the absolute file names of the various
11838 ;; programs so that everything works out-of-the-box.
11839 (chmod "image+.el" #o666)
11840 (emacs-substitute-variables
11841 "image+.el"
11842 ("imagex-convert-command"
11843 (string-append imagemagick "/bin/convert"))
11844 ("imagex-identify-command"
11845 (string-append imagemagick "/bin/identify")))))))))
00f37740
PN
11846 (home-page "https://github.com/mhayashi1120/Emacs-imagex")
11847 (synopsis "Image manipulation extensions for Emacs")
11848 (description
11849 "Image+ provides keybindings allowing you to zoom in or zoom out of an
11850image, rotate it, save modified images, and more.")
11851 (license license:gpl3+))))
50a1f926
PN
11852
11853(define-public emacs-package-lint
11854 (let ((commit "69bb89d00ba212b734c676ad056aa793c450b288"))
11855 (package
11856 (name "emacs-package-lint")
11857 (version (git-version "0.5" "1" commit))
11858 (source
11859 (origin
11860 (method git-fetch)
11861 (uri (git-reference
11862 (url "https://github.com/purcell/package-lint")
11863 (commit commit)))
11864 (file-name (string-append name "-" version "-checkout"))
11865 (sha256
11866 (base32
11867 "1hfricsgmy3x9snnd2p4xq6vnnv94qdsxxnxp07b3hqc9bhw31rq"))))
11868 (build-system emacs-build-system)
11869 (home-page "https://github.com/purcell/package-lint")
11870 (synopsis "Linting library for elisp package authors")
11871 (description
11872 "This provides a list of issues with the Emacs package metadata of a file,
11873e.g. the package dependencies it requires. See function
11874@code{package-lint-buffer}. Checks will currently be enabled only if a
11875\"Package-Requires:\" or \"Package-Version:\" header is present in the
11876file.")
11877 (license license:gpl3+))))
8bf7f741 11878
1bf75876 11879(define-public emacs-picpocket
332443d4
AV
11880 (let ((version "40")
11881 (commit "6fd88b8711c4370662c0f9c462170187d092a046"))
1bf75876
AV
11882 (package
11883 (name "emacs-picpocket")
11884 (version version)
11885 (source
11886 (origin
11887 (method git-fetch)
11888 (uri (git-reference
11889 (url "https://github.com/johanclaesson/picpocket")
11890 (commit commit)))
11891 (file-name (git-file-name name version))
11892 (sha256
332443d4 11893 (base32 "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw"))))
1bf75876
AV
11894 (build-system emacs-build-system)
11895 (arguments ; needed for running tests
11896 `(#:tests? #t
11897 #:emacs ,emacs
11898 #:test-command '("emacs" "--batch"
11899 "-l" "picpocket-test.el"
11900 "-f" "ert-run-tests-batch-and-exit")))
11901 (home-page "https://github.com/johanclaesson/picpocket")
11902 (synopsis "Image viewer for Emacs")
11903 (description
11904 "Picpocket is an image viewer for GNU Emacs. It has commands for:
11905
11906@itemize
11907@item File operations on the picture files (delete, move, copy, hardlink).
11908@item Scale and rotate the picture.
11909@item Associate pictures with tags which are saved to disk.
11910@item Filter pictures according to tags.
11911@item Customizing keystrokes for quick tagging and file operations.
11912@item Undo and browse history of undoable commands.
11913@end itemize")
11914 (license license:gpl3+))))
11915
8bf7f741 11916(define-public emacs-wgrep-helm
1ce4f555
PN
11917 ;; `emacs-wgrep-helm' was mistakenly added.
11918 (deprecated-package "emacs-wgrep-helm" emacs-wgrep))
addda2ee
PN
11919
11920(define-public emacs-mu4e-conversation
8757209e 11921 (let ((commit "e7d4bfcb0d392b0aed1f705ccac2419a168d1f5e"))
addda2ee
PN
11922 (package
11923 (name "emacs-mu4e-conversation")
8757209e 11924 (version (git-version "20181126" "4" commit))
addda2ee
PN
11925 (source
11926 (origin
11927 (method url-fetch)
11928 (uri (string-append
11929 "https://gitlab.com/Ambrevar/mu4e-conversation/"
11930 "repository/archive.tar.gz?ref="
11931 commit))
11932 (file-name (string-append name "-" version "-checkout"))
11933 (sha256
11934 (base32
8757209e 11935 "0b52hf9rm2afba9pvgink9bwqm705sk0y5qikp0ff5sk53wqvy29"))))
addda2ee
PN
11936 (build-system emacs-build-system)
11937 (propagated-inputs
11938 `(("mu" ,mu)))
11939 (home-page
11940 "https://gitlab.com/Ambrevar/mu4e-conversation")
11941 (synopsis
11942 "Show a complete thread in a single buffer")
11943 (description
eacb5dc4
TGR
11944 "This package offers an alternate view to mu4e's e-mail display. It
11945shows all e-mails of a thread in a single view, where each correspondent has
addda2ee
PN
11946their own face. Threads can be displayed linearly (in which case e-mails are
11947displayed in chronological order) or as an Org document where the node tree
11948maps the thread tree.")
11949 (license license:gpl3+))))
b1f9fc0d
PN
11950
11951(define-public emacs-pinentry
11952 (let ((commit "dcc9ba03252ee5d39e03bba31b420e0708c3ba0c")
11953 (revision "1"))
11954 (package
11955 (name "emacs-pinentry")
11956 (version (git-version "0.1" revision commit))
11957 (source
11958 (origin
11959 (method url-fetch)
11960 (uri (string-append
11961 "http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain"
11962 "/packages/pinentry/pinentry.el?id=" commit))
11963 (file-name (string-append "pinentry.el"))
11964 (sha256
11965 (base32
11966 "1lf30q6r8nz5cjzclbb9bbymsk2y75nskvb55hnjdv93gr3j0sik"))))
11967 (build-system emacs-build-system)
11968 (propagated-inputs
11969 `(("gnupg" ,gnupg)))
11970 (home-page "https://elpa.gnu.org/packages/pinentry.html")
11971 (synopsis "GnuPG Pinentry server implementation")
11972 (description
11973 "This package allows GnuPG passphrase to be prompted through the
11974minibuffer instead of graphical dialog.
11975
11976To use, add @code{allow-emacs-pinentry} to @code{~/.gnupg/gpg-agent.conf},
11977reload the configuration with @code{gpgconf --reload gpg-agent}, and start the
11978server with @code{M-x pinentry-start}.")
11979 (license license:gpl3+))))
a586d1d2
VD
11980
11981(define-public emacs-org-brain
11982 (package
11983 (name "emacs-org-brain")
11984 (version "0.5")
11985 (source
11986 (origin
11987 (method git-fetch)
11988 (uri (git-reference
11989 (url "https://github.com/Kungsgeten/org-brain.git")
11990 (commit "3faf9303af3f2356e3444e69c22dc6c5774047d1")))
11991 (file-name (git-file-name name version))
11992 (sha256
11993 (base32
11994 "1ad681zk6kckw2zbk0r4iaj4bw8cfqrbd1s3gdwgdjlzq81q9mmj"))))
11995 (build-system emacs-build-system)
11996 (home-page "https://github.com/Kungsgeten/org-brain")
11997 (synopsis "Org-mode wiki and concept-mapping for Emacs")
11998 (description "@code{emacs-org-brain} implements a variant of concept
11999mapping in Emacs, using @code{org-mode}. An org-brain is a network of
12000org-mode entries, where each entry is a file or a headline, and you can get a
12001visual overview of the relationships between the entries: parents, children,
12002siblings and friends. This visual overview can also be used to browse your
12003entries. You can think of entries as nodes in a mind map, or pages in a
12004wiki.")
12005 (license license:expat)))
36adbc43
LC
12006
12007(define-public emacs-recent-addresses
64daf217
LC
12008 (let ((commit "afbbfdc43b81e620acf827ca20d297e0c517b6eb")
12009 (revision "1"))
36adbc43
LC
12010 (package
12011 (name "emacs-recent-addresses")
12012 (home-page "http://nschum.de/src/emacs/recent-addresses/")
12013 (version (git-version "0.1" revision commit))
12014 (source (origin
12015 (method git-fetch)
12016 (uri (git-reference
64daf217
LC
12017 ;; Note: Use a branch that works with Helm. Submitted
12018 ;; at <https://github.com/nschum/recent-addresses.el/pull/1>.
12019 (url "https://github.com/civodul/recent-addresses.el")
36adbc43
LC
12020 (commit commit)))
12021 (sha256
12022 (base32
64daf217 12023 "0ajrq0galjmdyjdjyxazykjyax3gh6hvfk4s7l657pi11g0q5zax"))
36adbc43
LC
12024 (file-name (git-file-name name version))))
12025 (build-system emacs-build-system)
12026 (synopsis "Record recently-used email addressed and auto-complete them")
12027 (description
8a9e0b6e
KM
12028 "@code{recent-addresses} is an Emacs package that allows you to quickly
12029look up previously used email addresses. It can be used alongside the Gnus
12030email client.")
36adbc43 12031 (license license:gpl2+))))
d1f90b9b
LC
12032
12033(define-public emacs-fold-dwim
12034 (let ((commit "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b")
12035 (revision "0"))
12036 (package
12037 (name "emacs-fold-dwim")
12038 (version (git-version "1.2" revision commit))
12039 (home-page "https://github.com/emacsattic/fold-dwim")
12040 (source (origin
12041 (method git-fetch)
12042 (uri (git-reference (url home-page) (commit commit)))
12043 (sha256
12044 (base32
12045 "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"))
12046 (file-name (git-file-name name version))))
12047 (build-system emacs-build-system)
12048 (synopsis "Unified user interface for Emacs folding modes")
12049 (description
12050 "DWIM stands for \"do what I mean\", as in the idea that one keystroke
12051can do different things depending on the context. In this package, it means
12052that, if the cursor is in a currently hidden folded construction, we want to
12053show it; if it's not, we want to hide whatever fold the cursor is in.")
12054 (license license:gpl2+))))
5691898f
JH
12055
12056(define-public emacs-markup-faces
12057 (package
12058 (name "emacs-markup-faces")
12059 (version "1.0.0")
12060 (source
12061 (origin
12062 (method url-fetch)
12063 (uri (string-append "https://stable.melpa.org/packages/markup-faces-"
12064 version ".el"))
12065 (sha256
12066 (base32
12067 "124dxbaa25fwxnpwsygpz7pw6da6dnnw7y2lic3jf8rgz7lw4v32"))))
12068 (build-system emacs-build-system)
12069 (home-page "https://github.com/sensorflo/markup-faces")
12070 (synopsis "Collection of Emacs faces for markup language modes")
12071 (description "emacs-markup-faces is like font-lock-faces, but tailored for
12072markup languages instead programming languages. The sub group markup-faces-text
12073is also intended for 'text viewing modes' such as info or (wo)man. This gives a
12074common look and feel, or let's say theme, across different markup language modes
12075and 'text viewing modes' respectively.")
12076 (license license:gpl3+)))
36a71ce0
JH
12077
12078(define-public emacs-adoc-mode
12079 (package
12080 (name "emacs-adoc-mode")
12081 (version "0.6.6")
12082 (source
12083 (origin
12084 (method url-fetch)
12085 (uri (string-append "https://stable.melpa.org/packages/adoc-mode-"
12086 version ".el"))
12087 (sha256
12088 (base32
12089 "1c6hrgxxsnl2c19rgjykpm7r4xg9lp6bmk5z6bi7g8pqlrgwffcy"))))
12090 (build-system emacs-build-system)
12091 (propagated-inputs
12092 `(("emacs-markup-faces" ,emacs-markup-faces)))
12093 (home-page "https://github.com/sensorflo/adoc-mode/wiki")
12094 (synopsis "AsciiDoc mode for Emacs")
12095 (description "This package provides an Emacs major mode for editing AsciiDoc
12096files. It focuses on highlighting the document to improve readability.")
12097 (license license:gpl2+)))
661e8a62
PAR
12098
12099(define-public emacs-rust-mode
12100 (let ((commit
12101 ;; Last release is old (2016), use more recent commit to get bug
12102 ;; fixes.
12103 "64b4a2450e4d4c47f6307851c9b2598cd2254d68")
12104 (revision "0"))
12105 (package
12106 (name "emacs-rust-mode")
12107 (version (git-version "0.3.0" revision commit))
12108 (source (origin
12109 (method git-fetch)
12110 (uri
12111 (git-reference
12112 (url "https://github.com/rust-lang/rust-mode")
12113 (commit commit)))
12114 (file-name (git-file-name name version))
12115 (sha256
12116 (base32
12117 "0pbz36lljgb7bdgx3h3g0pq1nss1kvn8mhk1l3mknsmynd6w4nd8"))))
12118 (build-system emacs-build-system)
12119 (arguments
12120 `(#:phases
12121 (modify-phases %standard-phases
12122 (replace 'check
12123 (lambda _
12124 (invoke "sh" "run_rust_emacs_tests.sh"))))))
12125 (home-page "https://github.com/rust-lang/rust-mode")
12126 (synopsis "Major Emacs mode for editing Rust source code")
12127 (description "This package provides a major Emacs mode for editing Rust
12128source code.")
12129 (license (list license:expat
12130 license:asl2.0)))))
a86866f4
PN
12131
12132(define-public emacs-ztree
12133 (let ((commit "c54425a094353ec40a8179f9eab3596f76c6cf94"))
12134 (package
12135 (name "emacs-ztree")
12136 (version (git-version "1.0.5" "1" commit))
12137 (source
12138 (origin
12139 (method git-fetch)
12140 (uri (git-reference
12141 (url "https://github.com/fourier/ztree")
12142 (commit commit)))
12143 (file-name (git-file-name name version))
12144 (sha256
12145 (base32
12146 "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0"))))
12147 (build-system emacs-build-system)
12148 (home-page "https://github.com/fourier/ztree")
12149 (synopsis "Directory tree comparison mode for Emacs")
12150 (description "Ztree is a project dedicated to implementation of several
12151text-tree applications inside GNU Emacs. It consists of 2 subprojects:
12152@command{ztree-diff} and @command{ztree-dir} (the basis of
12153@command{ztree-diff}).")
12154 (license license:gpl3))))
5f005932
PN
12155
12156(define-public emacs-helm-org-contacts
12157 (let ((commit "0af703bd9a43032b89fdf5559673151d1ac2fffc"))
12158 (package
12159 (name "emacs-helm-org-contacts")
12160 (version (git-version "20180707" "1" commit))
12161 (source
12162 (origin
12163 (method git-fetch)
12164 (uri (git-reference
12165 (url "https://github.com/tmalsburg/helm-org-contacts")
12166 (commit commit)))
12167 (file-name (git-file-name name version))
12168 (sha256
12169 (base32
12170 "1cl7cm2ic9pg4vc9cdh84vzjj1x2lpd5ymimiva8h4l17kiphk4s"))))
12171 (build-system emacs-build-system)
12172 (propagated-inputs
12173 `(("emacs-dash" ,emacs-dash)
12174 ("emacs-helm" ,emacs-helm)
12175 ("emacs-s" ,emacs-s)))
12176 (home-page "https://github.com/tmalsburg/helm-org-contacts")
12177 (synopsis "Helm source for org-contacts")
12178 (description "This Helm source can be used to search contacts stored in
12179org-contacts format. There are actions for inserting postal addresses, email
12180addresses, and phone numbers in the buffer where @command{helm-org-contacts}
12181was called.")
12182 (license license:gpl3))))
e968542d
PN
12183
12184(define-public emacs-dired-du
12185 (package
12186 (name "emacs-dired-du")
46c8f53b 12187 (version "0.5.1")
e968542d
PN
12188 (source
12189 (origin
12190 (method url-fetch)
12191 (uri (string-append
12192 "https://elpa.gnu.org/packages/dired-du-"
12193 version ".tar"))
12194 (sha256
12195 (base32
46c8f53b 12196 "1091scnrjh0a4gja4z6jxic6ghy1yryv46qk9c76pmh50cpw6766"))))
e968542d
PN
12197 (build-system emacs-build-system)
12198 (home-page "http://elpa.gnu.org/packages/dired-du.html")
12199 (synopsis "Dired with recursive directory sizes")
12200 (description
12201 "Display the recursive size of directories in Dired.
12202This file defines a minor mode @command{dired-du-mode} to show the recursive
12203size of directories in Dired buffers. If @command{du} program is available,
12204then the directory sizes are obtained with it. Otherwise, the directory sizes
12205are obtained with Lisp. The former is faster and provide a more precise
12206value. For directories where the user doesn't have read permission, the
12207recursive size is not obtained. Once this mode is enabled, every new Dired
12208buffer displays recursive dir sizes.")
12209 (license license:gpl3+)))
d5af41cd
PN
12210
12211(define-public emacs-pcre2el
12212 ;; Last release is very old so we get the latest commit.
12213 (let ((commit "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"))
12214 (package
12215 (name "emacs-pcre2el")
12216 (version (git-version "1.8" "1" commit))
12217 (source
12218 (origin
12219 (method git-fetch)
12220 (uri (git-reference
12221 (url "https://github.com/joddie/pcre2el")
12222 (commit commit)))
12223 (file-name (git-file-name name version))
12224 (sha256
12225 (base32
12226 "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"))))
12227 (build-system emacs-build-system)
12228 (home-page "https://github.com/joddie/pcre2el")
12229 (synopsis "Convert between PCRE, Emacs and rx regexp syntax")
12230 (description "@code{pcre2el} or @code{rxt} (RegeXp Translator or RegeXp
12231Tools) is a utility for working with regular expressions in Emacs, based on a
12232recursive-descent parser for regexp syntax. In addition to converting (a
12233subset of) PCRE syntax into its Emacs equivalent, it can do the following:
12234
12235@itemize
12236@item convert Emacs syntax to PCRE
12237@item convert either syntax to @code{rx}, an S-expression based regexp syntax
12238@item untangle complex regexps by showing the parse tree in @code{rx} form and
12239highlighting the corresponding chunks of code
12240@item show the complete list of strings (productions) matching a regexp,
12241provided the list is finite
12242@item provide live font-locking of regexp syntax (so far only for Elisp
12243buffers – other modes on the TODO list).
12244@end itemize\n")
12245 (license license:gpl3))))
9805ee0a
PN
12246
12247(define-public emacs-magit-todos
ac9e3077
PN
12248 (package
12249 (name "emacs-magit-todos")
12250 (version "1.1")
12251 (source
12252 (origin
12253 (method git-fetch)
12254 (uri (git-reference
12255 (url "https://github.com/alphapapa/magit-todos")
12256 (commit version)))
12257 (file-name (git-file-name name version))
12258 (sha256
12259 (base32
12260 "1mvzbxshr6zjdim3jd368ar1hy5l7n22i03cpvzdmrw83kkwdyhd"))))
12261 (build-system emacs-build-system)
12262 (propagated-inputs
12263 `(("emacs-async" ,emacs-async)
12264 ("emacs-dash" ,emacs-dash)
12265 ("emacs-f" ,emacs-f)
12266 ("emacs-hl-todo" ,emacs-hl-todo)
5c8031ff 12267 ("magit" ,emacs-magit)
ac9e3077
PN
12268 ("emacs-pcre2el" ,emacs-pcre2el)
12269 ("emacs-s" ,emacs-s)))
12270 (home-page "https://github.com/alphapapa/magit-todos")
12271 (synopsis "Show source files' TODOs (and FIXMEs, etc) in Magit status buffer")
12272 (description "This package displays keyword entries from source code
9805ee0a
PN
12273comments and Org files in the Magit status buffer. Activating an item jumps
12274to it in its file. By default, it uses keywords from @code{hl-todo}, minus a
12275few (like NOTE).")
ac9e3077 12276 (license license:gpl3)))
bff861ec
KM
12277
12278(define-public emacs-git-annex
12279 ;; Unreleased version has a fontification fix.
12280 (let ((commit "ebdb44aef1883f1b2b8058e05d30fb9315b03707")
12281 (revision "1"))
12282 (package
12283 (name "emacs-git-annex")
12284 (version (string-append "1.1-" revision "." (string-take commit 8)))
12285 (source
12286 (origin
12287 (method git-fetch)
12288 (uri (git-reference
12289 (url "https://github.com/jwiegley/git-annex-el")
12290 (commit commit)))
12291 (file-name (string-append name "-" version "-checkout"))
12292 (sha256
12293 (base32
12294 "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"))))
12295 (build-system emacs-build-system)
12296 (home-page "https://github.com/jwiegley/git-annex-el")
12297 (synopsis "Emacs integration for git-annex")
12298 (description "Enhances Dired and buffers visiting annex files with
12299git-annex functionality. In Dired, the names of annex files are shortened by
12300hiding the symbolic links and fontified based on whether content is present.
12301Commands for performing some common operations (e.g., unlocking and adding
12302files) are provided.")
12303 (license license:gpl2+))))
ee0d1845
PN
12304
12305(define-public emacs-hackernews
12306 (let ((commit "d8c450bbc76d6bb65ec5cdb6c3b888a23f3769e9"))
12307 (package
12308 (name "emacs-hackernews")
12309 (version (git-version "0.4.0" "1" commit))
12310 (source
12311 (origin
12312 (method git-fetch)
12313 (uri (git-reference
12314 (url "https://github.com/clarete/hackernews.el")
12315 (commit commit)))
12316 (file-name (git-file-name name version))
12317 (sha256
12318 (base32
12319 "06mp4n6c300jv5lhwf50ircfjckzr2p1zd38s4mqnxxjlf1maim7"))))
12320 (build-system emacs-build-system)
12321 (home-page "https://github.com/clarete/hackernews.el")
12322 (synopsis "Hacker News client for Emacs")
12323 (description "The @command{hackernews} package is able to fetch stories
12324from six different Hacker News feeds, namely top, new, best, ask, show and job
12325stories. The default feed is top stories, which corresponds to the Hacker
12326News homepage.")
12327 (license license:gpl3))))
9c208f38
PN
12328
12329(define-public emacs-youtube-dl
12330 (let ((commit "7c9d7a7d05b72a7d1b1257a36c5e2b2567b185dd"))
12331 (package
12332 (name "emacs-youtube-dl")
12333 (version (git-version "1.0" "1" commit))
12334 (source
12335 (origin
12336 (method git-fetch)
12337 (uri (git-reference
12338 (url "https://github.com/skeeto/youtube-dl-emacs/")
12339 (commit commit)))
12340 (file-name (git-file-name name version))
12341 (sha256
12342 (base32
12343 "0mh4s089a4x8s380agzb2306kdp1hl204px1n5rrrrdcls7imnh6"))))
12344 (build-system emacs-build-system)
12345 (inputs
12346 `(("youtube-dl" ,youtube-dl)))
12347 (arguments
12348 `(#:phases
12349 (modify-phases %standard-phases
12350 (add-after 'unpack 'configure
12351 (lambda* (#:key inputs #:allow-other-keys)
12352 (let ((youtube-dl (assoc-ref inputs "youtube-dl")))
12353 ;; .el is read-only in git.
12354 (chmod "youtube-dl.el" #o644)
12355 ;; Specify the absolute file names of the various
12356 ;; programs so that everything works out-of-the-box.
12357 (emacs-substitute-variables
12358 "youtube-dl.el"
12359 ("youtube-dl-program"
12360 (string-append youtube-dl "/bin/youtube-dl")))))))))
12361 (home-page "https://github.com/skeeto/youtube-dl-emacs/")
12362 (synopsis "Emacs youtube-dl download manager")
12363 (description "This package manages a video download queue for
12364@command{youtube-dl}, which serves as the back end. It manages a single
12365@command{youtube-dl} subprocess, downloading one video at a time. New videos
12366can be queued at any time.")
12367 (license license:unlicense))))
320105ea
PN
12368
12369(define-public emacs-org-web-tools
12370 (package
12371 (name "emacs-org-web-tools")
12372 (version "1.0")
12373 (source
12374 (origin
12375 (method git-fetch)
12376 (uri (git-reference
12377 (url "https://github.com/alphapapa/org-web-tools")
12378 (commit version)))
12379 (file-name (git-file-name name version))
12380 (sha256
12381 (base32
12382 "0kak9h5ny00d39gnwspv53nadnag01brw2fq9zk5wpfc91h9bjng"))))
12383 (build-system emacs-build-system)
12384 (propagated-inputs
12385 `(("emacs-dash" ,emacs-dash)
12386 ("emacs-esxml" ,emacs-esxml)
12387 ("emacs-s" ,emacs-s)))
12388 (inputs
12389 `(("pandoc" ,ghc-pandoc)))
12390 (arguments
12391 `(#:phases
12392 (modify-phases %standard-phases
12393 (add-after 'unpack 'patch-exec-paths
12394 (lambda* (#:key inputs #:allow-other-keys)
12395 (let ((pandoc (assoc-ref inputs "pandoc")))
12396 (substitute* "org-web-tools.el"
12397 (("\"pandoc\"") (string-append "\"" pandoc "/bin/pandoc\"")))
12398 #t))))))
12399 (home-page "https://github.com/alphapapa/org-web-tools")
12400 (synopsis "Display/Process web page as Org-mode content")
12401 (description "This package contains library functions and commands useful
12402for retrieving web page content and processing it into Org-mode content.
12403
12404For example, you can copy a URL to the clipboard or kill-ring, then run a
12405command that downloads the page, isolates the “readable” content with
12406@command{eww-readable}, converts it to Org-mode content with Pandoc, and
12407displays it in an Org-mode buffer. Another command does all of that but
12408inserts it as an Org entry instead of displaying it in a new buffer.")
12409 (license license:gpl3+)))
b002809f
PN
12410
12411(define-public emacs-blimp
12412 (let ((commit "e420763d6d18b5d1be552cdbc47f91418343db03"))
12413 (package
12414 (name "emacs-blimp")
12415 (version (git-version "0.0.0" "1" commit))
12416 (source
12417 (origin
12418 (method git-fetch)
12419 (uri (git-reference
12420 (url "https://github.com/walseb/blimp")
12421 (commit commit)))
12422 (file-name (git-file-name name version))
12423 (sha256
12424 (base32
12425 "09wmhpym516b81dfq8smdmysh1fn610dzlyvyl2rkx8600f0fizd"))))
12426 (build-system emacs-build-system)
12427 (propagated-inputs
12428 `(("emacs-eimp" ,emacs-eimp)))
12429 (home-page "https://github.com/walseb/blimp")
12430 (synopsis "Emacs wrapper around all Imagemagick commands")
12431 (description "Blimp (Bustling Image Manipulation Package) is a complete
12432wrapper around all Imagemagick commands with descriptions, autocompletion (for
12433some commands) and hints displayed in prompt using @command{eimp.el} to
12434execute its commands and resize images.")
12435 (license license:gpl3+))))
e10bf496
PN
12436
12437(define-public emacs-synosaurus
12438 (let ((commit "8bf95b935976ec0a1964cf175ed57cc5f6f93bdb"))
12439 (package
12440 (name "emacs-synosaurus")
12441 (version (git-version "0.1.0" "1" commit))
12442 (source
12443 (origin
12444 (method git-fetch)
12445 (uri (git-reference
12446 (url "https://github.com/hpdeifel/synosaurus")
12447 (commit commit)))
12448 (file-name (git-file-name name version))
12449 (sha256
12450 (base32
12451 "15by9jccab6kyplxa6k0glzaivxkqdigl33gl2qi2cvy6f2q7gva"))))
12452 (build-system emacs-build-system)
12453 (propagated-inputs
12454 `(("wordnet" ,wordnet)))
12455 (arguments
12456 `(#:phases
12457 (modify-phases %standard-phases
12458 (add-after 'unpack 'configure
12459 (lambda* (#:key inputs outputs #:allow-other-keys)
12460 (let ((wn (assoc-ref inputs "wordnet")))
12461 ;; .el is read-only in git.
12462 (chmod "synosaurus-wordnet.el" #o644)
12463 ;; Specify the absolute file names of the various
12464 ;; programs so that everything works out-of-the-box.
12465 (emacs-substitute-variables
12466 "synosaurus-wordnet.el"
12467 ("wordnet-command"
12468 (string-append wn "/bin/wn")))))))))
12469 (home-page "https://github.com/hpdeifel/synosaurus")
12470 (synopsis "Extensible thesaurus mode for Emacs")
12471 (description "Synosaurus is a thesaurus fontend for Emacs with pluggable
12472backends, including the @command{wordnet} offline backend.")
12473 (license license:gpl3+))))
6f2a2bd6
NG
12474
12475(define-public emacs-all-the-icons
12476 (package
12477 (name "emacs-all-the-icons")
12478 (version "3.2.0")
12479 (source
12480 (origin
12481 (method git-fetch)
12482 (uri (git-reference
12483 (url "https://github.com/domtronn/all-the-icons.el.git")
12484 (commit version)))
12485 (file-name (git-file-name name version))
12486 (sha256
12487 (base32
12488 "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"))))
12489 (build-system emacs-build-system)
12490 (arguments
12491 `(#:include '("\\.el$" "^data/" "^fonts/")
12492 ;; Compiling "test/" fails with "Symbol’s value as variable is void:
12493 ;; all-the-icons--root-code". Ignoring tests.
12494 #:exclude '("^test/")
12495 #:tests? #f))
12496 (propagated-inputs
12497 `(("f" ,emacs-f)
12498 ("memoize" ,emacs-memoize)))
12499 (home-page "https://github.com/domtronn/all-the-icons.el")
12500 (synopsis "Collect icon fonts and propertize them within Emacs")
12501 (description "All-the-icons is a utility package to collect various icon
12502fonts and propertize them within Emacs. Icon fonts allow you to propertize
12503and format icons the same way you would normal text. This enables things such
12504as better scaling of and anti aliasing of the icons.")
12505 ;; Package is released under Expat license. Elisp files are licensed
12506 ;; under GPL3+. Fonts come with various licenses: Expat for
12507 ;; "all-the-icons.ttf" and "file-icons.ttf", Apache License 2.0 for
12508 ;; "material-design-icons.ttf", and SIL OFL 1.1 for "fontawesome.ttf",
12509 ;; "ocitcons.ttf" and "weathericons.ttf".
12510 (license
12511 (list license:expat license:gpl3+ license:silofl1.1 license:asl2.0))))
12512
d406dcc0
NG
12513(define-public emacs-powerline
12514 (package
12515 (name "emacs-powerline")
12516 (version "2.4")
12517 (source
12518 (origin
12519 (method git-fetch)
12520 (uri (git-reference
12521 (url "https://github.com/milkypostman/powerline.git")
12522 (commit version)))
12523 (file-name (git-file-name name version))
12524 (sha256
12525 (base32
12526 "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"))))
12527 (build-system emacs-build-system)
12528 (home-page "https://github.com/milkypostman/powerline/")
12529 (synopsis "Mode-line plugin for Emacs")
12530 (description "Powerline is a utility plugin which allows you to create
12531a better-looking, more functional Emacs mode-line. A collection of predefined
12532themes comes with the package.")
12533 (license license:gpl3+)))
12534
0c1fd6f8
NG
12535(define-public emacs-spaceline
12536 (package
12537 (name "emacs-spaceline")
12538 (version "2.0.1")
12539 (source
12540 (origin
12541 (method git-fetch)
12542 (uri (git-reference
12543 (url "https://github.com/TheBB/spaceline.git")
12544 (commit (string-append "v" version))))
12545 (file-name (git-file-name name version))
12546 (sha256
12547 (base32
12548 "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"))))
12549 (build-system emacs-build-system)
12550 (propagated-inputs
12551 `(("dash" ,emacs-dash)
12552 ("powerline" ,emacs-powerline)
12553 ("s" ,emacs-s)))
12554 (home-page "https://github.com/TheBB/spaceline")
12555 (synopsis "Powerline theme from Spacemacs")
12556 (description "Spaceline provides Spacemacs' mode-line theme.
12557This package provides features for three kinds of users.
12558
12559@itemize
12560@item You just want to use the Spacemacs mode-line theme and forget about it.
12561@item You want to use something similar to the Spacemacs mode-line theme, but
12562with a handful of easy tweaks.
12563@item You want an easy-to-use library for building your own mode-line from
12564scratch, and you think the Spacemacs theme looks good.
12565@end itemize")
12566 (license license:gpl3+)))
df2d77c4
TW
12567
12568(define-public emacs-column-marker
12569 (package
12570 (name "emacs-column-marker")
12571 (version "9")
12572 (source
12573 (origin
12574 (method url-fetch)
12575 (uri "https://www.emacswiki.org/emacs/download/column-marker.el")
12576 (sha256 (base32 "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
12577 (build-system emacs-build-system)
12578 (home-page "https://www.emacswiki.org/emacs/ColumnMarker")
12579 (synopsis "Emacs mode for highlighting columns")
12580 (description
12581 "With @code{column-marker.el} you can highlight any number of text columns.
12582Three such highlight column markers are provided by default. This is
12583especially useful for languages like COBOL or Fortran where certain columns
12584have special meaning. It is also handy for aligning text across long vertical
12585distances. Multi-column characters, such as @kbd{TAB} are treated
12586correctly.")
12587 (license license:gpl2+)))
673364cd
PN
12588
12589(define-public emacs-slime-repl-ansi-color
12590 (let ((commit "ad03263f5d4de473bc173b64a6fc3dc1106393d7"))
12591 (package
12592 (name "emacs-slime-repl-ansi-color")
12593 (version (git-version "0.0.0" "1" commit))
12594 (source (origin
12595 (method git-fetch)
12596 (uri (git-reference
12597 (url "https://github.com/deadtrickster/slime-repl-ansi-color")
12598 (commit commit)))
12599 (file-name (git-file-name name version))
12600 (sha256
12601 (base32
12602 "0bpg7gxz310x7bnlg324c507sxc5gxwwz6h64h6kdq141r73vbi4"))))
12603 (build-system emacs-build-system)
12604 (home-page "https://github.com/deadtrickster/slime-repl-ansi-color")
12605 (synopsis "Color ANSI codes in the REPL of SLIME")
12606 (description "Color ANSI codes in the REPL of SLIME")
12607 (license license:gpl2+))))
695db2f9
PN
12608
12609(define-public emacs-helm-slime
12610 (let ((commit "9980925f3e5f6ac5a30369d2a544e82006a79c76"))
12611 (package
12612 (name "emacs-helm-slime")
12613 (version (git-version "0.0.0" "1" commit))
12614 (source (origin
12615 (method git-fetch)
12616 (uri (git-reference
12617 (url "https://github.com/emacs-helm/helm-slime")
12618 (commit commit)))
12619 (file-name (git-file-name name version))
12620 (sha256
12621 (base32
12622 "0xa07gpfkzwn522x9573mq5mfxvbawdgd0m93gqj6w5a14wk8zzh"))))
12623 (build-system emacs-build-system)
12624 (propagated-inputs
12625 `(("emacs-helm" ,emacs-helm)
12626 ("emacs-slime" ,emacs-slime)))
12627 (home-page "https://github.com/emacs-helm/helm-slime")
12628 (synopsis "Helm for SLIME, the Superior Lisp Interaction Mode for Emacs")
12629 (description "Helm-SLIME defines a few new commands:
12630
12631@itemize
12632@item helm-slime-complete: Select a symbol from the SLIME completion systems.
12633@item helm-slime-list-connections: Yet another slime-list-connections with Helm.
12634@item: helm-slime-apropos: Yet another slime-apropos with Helm.
12635@item helm-slime-repl-history: Select an input from the SLIME REPL history and insert it.
12636@end itemize\n")
12637 (license license:gpl3+))))
2705780f 12638
ddd925f6
PN
12639(define-public emacs-gtk-look
12640 (package
12641 (name "emacs-gtk-look")
12642 (version "29")
12643 (source (origin
12644 (method url-fetch)
12645 (uri "https://download.tuxfamily.org/user42/gtk-look.el")
12646 (sha256
12647 (base32
12648 "14p2nwrd51cr1v06fxbjjn6jdrkf9d6vcxhmscm0kl677s25ypsp"))))
12649 (build-system emacs-build-system)
12650 (arguments
12651 `(#:phases
12652 (modify-phases %standard-phases
12653 (add-after 'unpack 'configure
12654 (lambda _
12655 ;; File is read-only.
12656 (chmod "gtk-look.el" #o644)
12657 (emacs-substitute-variables "gtk-look.el"
12658 ("gtk-lookup-devhelp-indices"
12659 '(list (expand-file-name "~/.guix-profile/share/gtk-doc/html/*/*.devhelp*"))))
12660 #t)))))
12661 (home-page "http://user42.tuxfamily.org/gtk-look/index.html")
12662 (synopsis "Find and display HTML documentation for GTK, GNOME and Glib")
12663 (description "@command{gtk-look} finds and displays HTML documentation for
12664GTK, GNOME and Glib functions and variables in Emacs, similar to what
12665info-lookup-symbol does for info files (C-h S). The documentation is expected
12666to be devhelp indexes with HTML files. The location of the indexes can be
12667customized. In addition to C code development @command{gtk-look} is good for
12668
12669@itemize
12670@item @command{perl-gtk2}, recognising class funcs like
12671@command{Gtk2::Label->new} and bare method names like @command{set_text}.
12672@item @command{guile-gnome}, recognising methods like @command{set-text} and
12673classes like @command{<gtk-window>}.
12674@end itemize\n")
12675 (license license:gpl3+)))
87470116
NG
12676
12677(define-public emacs-ov
12678 (package
12679 (name "emacs-ov")
12680 (version "1.0.6")
12681 (source (origin
12682 (method git-fetch)
12683 (uri (git-reference
12684 (url "https://github.com/ShingoFukuyama/ov.el.git")
12685 (commit version)))
12686 (file-name (git-file-name name version))
12687 (sha256
12688 (base32
12689 "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"))))
12690 (build-system emacs-build-system)
12691 (home-page "https://github.com/ShingoFukuyama/ov.el")
12692 (synopsis "Overlay library for Emacs Lisp")
12693 (description "@code{ov.el} provides a simple way to manipulate overlays in
12694Emacs.")
12695 (license license:gpl3+)))
f12f70b1
NG
12696
12697(define-public emacs-matrix-client
12698 (let ((commit "3eab4c28280feff18ee1ddd7db66ada4f135cbf8"))
12699 (package
12700 (name "emacs-matrix-client")
12701 (version (git-version "0.0.0" "1" commit))
12702 (source (origin
12703 (method git-fetch)
12704 (uri (git-reference
12705 (url "https://github.com/jgkamat/matrix-client-el.git")
12706 (commit commit)))
12707 (file-name (git-file-name name version))
12708 (sha256
12709 (base32
12710 "1k6721jz0m22vpb78881k087mpx8hf3s2219ic75v5mhgx355f7m"))))
12711 (build-system emacs-build-system)
12712 (propagated-inputs
12713 `(("a" ,emacs-a)
12714 ("dash" ,emacs-dash)
12715 ("esxml" ,emacs-esxml)
12716 ("f" ,emacs-f)
12717 ("ht" ,emacs-ht)
12718 ("ov" ,emacs-ov)
12719 ("request" ,emacs-request)
12720 ("s" ,emacs-s)
12721 ("tracking" ,emacs-tracking)))
12722 (home-page "https://github.com/jgkamat/matrix-client-el")
12723 (synopsis "Matrix client for Emacs")
12724 (description "@code{matrix-client} is a simple chat UI to Matrix.org
12725rooms. It also provides an API which allows Emacs to seamlessly create
12726RPC channels with users and other software.")
12727 (license license:gpl3+))))