gnu: Use HTTPS for almost all gnu.org HOME-PAGEs.
[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>
38cb4766 3;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
846b2534 4;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
cfb9026a 5;;; Copyright © 2014, 2015, 2016, 2017 Alex Kost <alezost@gmail.com>
78395334 6;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
ce9701fb 7;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
4670f70a 8;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
11e4c1fd 9;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
9576cc72 10;;; Copyright © 2016 humanitiesNerd <catonano@gmail.com>
0985f526 11;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
c5c08f1b 12;;; Copyright © 2016 David Thompson <davet@gnu.org>
ae609001 13;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
d95e8e01 14;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
899bcad3 15;;; Copyright © 2016, 2017 ng0 <contact.ng0@cryptolab.net>
46bd4515 16;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
cf95bd3a 17;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr>
e7761186 18;;; Copyright © 2016 Alex Vong <alexvong1995@gmail.com>
55fa5349 19;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
cf006d2e 20;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
1e523180 21;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
60b57c3d 22;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
4d3d3bd2 23;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
6bd4a889 24;;; Copyright © 2017 Kyle Meyer <kyle@kyleam.com>
468bdabb
LC
25;;;
26;;; This file is part of GNU Guix.
27;;;
28;;; GNU Guix is free software; you can redistribute it and/or modify it
29;;; under the terms of the GNU General Public License as published by
30;;; the Free Software Foundation; either version 3 of the License, or (at
31;;; your option) any later version.
32;;;
33;;; GNU Guix is distributed in the hope that it will be useful, but
34;;; WITHOUT ANY WARRANTY; without even the implied warranty of
35;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36;;; GNU General Public License for more details.
37;;;
38;;; You should have received a copy of the GNU General Public License
39;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
40
1ffa7090 41(define-module (gnu packages emacs)
f61e0e79 42 #:use-module ((guix licenses) #:prefix license:)
468bdabb
LC
43 #:use-module (guix packages)
44 #:use-module (guix download)
f906d30c 45 #:use-module (guix git-download)
e5045f30
FB
46 #:use-module (guix gexp)
47 #:use-module (guix monads)
48 #:use-module (guix store)
468bdabb 49 #:use-module (guix build-system gnu)
78395334 50 #:use-module (guix build-system emacs)
71f57158 51 #:use-module (guix build-system glib-or-gtk)
fe4163f3 52 #:use-module (guix build-system trivial)
59a43334 53 #:use-module (gnu packages)
cf006d2e 54 #:use-module (gnu packages code)
f906d30c 55 #:use-module (gnu packages guile)
7abe1965 56 #:use-module (gnu packages gtk)
8ba4dc63 57 #:use-module (gnu packages gnome)
1ffa7090 58 #:use-module (gnu packages ncurses)
41184943 59 #:use-module (gnu packages tex)
1ffa7090 60 #:use-module (gnu packages texinfo)
a7fd7b68 61 #:use-module (gnu packages tls)
4f028c8f 62 #:use-module (gnu packages pkg-config)
50efa797
LC
63 #:use-module (gnu packages xorg)
64 #:use-module (gnu packages lesstif)
e55354b8 65 #:use-module (gnu packages image)
504a83af 66 #:use-module (gnu packages linux)
9a4c9715 67 #:use-module (gnu packages version-control)
18d26210
MW
68 #:use-module (gnu packages imagemagick)
69 #:use-module (gnu packages w3m)
89925972 70 #:use-module (gnu packages wget)
18d26210 71 #:use-module (gnu packages autotools)
be379ee7 72 #:use-module (gnu packages base)
f61e0e79 73 #:use-module (gnu packages compression)
50efa797 74 #:use-module (gnu packages xml)
4a3e602c 75 #:use-module (gnu packages glib)
388fd01b 76 #:use-module (gnu packages acl)
13fe4891 77 #:use-module (gnu packages package-management)
77c9286d 78 #:use-module (gnu packages perl)
ec9825d6 79 #:use-module (gnu packages pdf)
58a7dc13 80 #:use-module (gnu packages scheme)
41184943 81 #:use-module (gnu packages statistics)
77c9286d
LC
82 #:use-module (gnu packages xiph)
83 #:use-module (gnu packages mp3)
154c71e0 84 #:use-module (gnu packages gettext)
a80b60f4
AI
85 #:use-module (gnu packages fribidi)
86 #:use-module (gnu packages gd)
87 #:use-module (gnu packages fontutils)
4a3e602c
TUBK
88 #:use-module (guix utils)
89 #:use-module (srfi srfi-1))
468bdabb
LC
90
91(define-public emacs
92 (package
93 (name "emacs")
846b2534 94 (version "25.1")
468bdabb
LC
95 (source (origin
96 (method url-fetch)
97 (uri (string-append "mirror://gnu/emacs/emacs-"
3be9f724 98 version ".tar.xz"))
468bdabb
LC
99 (sha256
100 (base32
846b2534 101 "0cwgyiyymnx4xdg99dm2drfxcyhy2jmyf0rkr9fwj9mwwf77kwhr"))
fc1adab1 102 (patches (search-patches "emacs-exec-path.patch"
4509ec72 103 "emacs-fix-scheme-indent-function.patch"
486f36eb
AK
104 "emacs-source-date-epoch.patch"))
105 (modules '((guix build utils)))
106 (snippet
107 ;; Delete the bundled byte-compiled elisp files and
108 ;; generated autoloads.
109 '(with-directory-excursion "lisp"
110 (for-each delete-file
111 (append (find-files "." "\\.elc$")
112 (find-files "." "loaddefs\\.el$")
113 ;; This is the only "autoloads" file that
114 ;; does not have "*loaddefs.el" name.
dc701091
LC
115 '("eshell/esh-groups.el")))
116
117 ;; Make sure Tramp looks for binaries in the right places on
118 ;; remote GuixSD machines, where 'getconf PATH' returns
119 ;; something bogus.
120 (substitute* "net/tramp-sh.el"
121 ;; Patch the line after "(defcustom tramp-remote-path".
122 (("\\(tramp-default-remote-path")
123 (format #f "(tramp-default-remote-path ~s ~s ~s ~s "
124 "~/.guix-profile/bin" "~/.guix-profile/sbin"
125 "/run/current-system/profile/bin"
126 "/run/current-system/profile/sbin")))))))
71f57158 127 (build-system glib-or-gtk-build-system)
468bdabb 128 (arguments
13fe4891
FB
129 `(#:phases
130 (modify-phases %standard-phases
131 (add-before 'configure 'fix-/bin/pwd
132 (lambda _
133 ;; Use `pwd', not `/bin/pwd'.
134 (substitute* (find-files "." "^Makefile\\.in$")
135 (("/bin/pwd")
136 "pwd"))))
13fe4891 137 (add-after 'install 'install-site-start
59d04f63
AK
138 ;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
139 ;; provided by Guix and installed in
13fe4891
FB
140 ;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
141 ;; automatically found.
142 (lambda* (#:key inputs outputs #:allow-other-keys)
59d04f63
AK
143 (let* ((out (assoc-ref outputs "out"))
144 (lisp-dir (string-append out "/share/emacs/site-lisp")))
145 (copy-file (assoc-ref inputs "guix-emacs.el")
146 (string-append lisp-dir "/guix-emacs.el"))
13fe4891
FB
147 (with-output-to-file (string-append lisp-dir "/site-start.el")
148 (lambda ()
9bd94544
AK
149 (display
150 (string-append "(when (require 'guix-emacs nil t)\n"
151 " (guix-emacs-autoload-packages))\n"))))
13fe4891 152 #t))))))
468bdabb 153 (inputs
c4c4cc05 154 `(("gnutls" ,gnutls)
468bdabb
LC
155 ("ncurses" ,ncurses)
156
157 ;; TODO: Add the optional dependencies.
fa275717 158 ("libx11" ,libx11)
0a9e9a63 159 ("gtk+" ,gtk+)
fa275717 160 ("libxft" ,libxft)
50efa797 161 ("libtiff" ,libtiff)
504a83af 162 ("giflib" ,giflib)
50efa797 163 ("libjpeg" ,libjpeg-8)
388fd01b 164 ("acl" ,acl)
50efa797
LC
165
166 ;; When looking for libpng `configure' links with `-lpng -lz', so we
167 ;; must also provide zlib as an input.
168 ("libpng" ,libpng)
f61e0e79 169 ("zlib" ,zlib)
50efa797 170
8ba4dc63 171 ("librsvg" ,librsvg)
fa275717 172 ("libxpm" ,libxpm)
50efa797 173 ("libxml2" ,libxml2)
504a83af
MW
174 ("libice" ,libice)
175 ("libsm" ,libsm)
176 ("alsa-lib" ,alsa-lib)
13fe4891 177 ("dbus" ,dbus)
01c5c21a
AI
178
179 ;; multilingualization support
180 ("libotf" ,libotf)
181 ("m17n-lib" ,m17n-lib)))
c4c4cc05 182 (native-inputs
59d04f63
AK
183 `(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
184 ("pkg-config" ,pkg-config)
c4c4cc05 185 ("texinfo" ,texinfo)))
64c98347
LC
186
187 (native-search-paths
188 (list (search-path-specification
189 (variable "INFOPATH")
190 (files '("share/info")))))
191
6fd52309 192 (home-page "https://www.gnu.org/software/emacs/")
f50d2669 193 (synopsis "The extensible, customizable, self-documenting text editor")
468bdabb 194 (description
79c311b8
LC
195 "GNU Emacs is an extensible and highly customizable text editor. It is
196based on an Emacs Lisp interpreter with extensions for text editing. Emacs
197has been extended in essentially all areas of computing, giving rise to a
198vast array of packages supporting, e.g., email, IRC and XMPP messaging,
199spreadsheets, remote server editing, and much more. Emacs includes extensive
200documentation on all aspects of the system, from basic editing to writing
201large Lisp programs. It has full Unicode support for nearly all human
202languages.")
f61e0e79 203 (license license:gpl3+)))
4f028c8f 204
b2eaf7ba 205(define-public emacs-minimal
4fd540b7
LC
206 ;; This is the version that you should use as an input to packages that just
207 ;; need to byte-compile .el files.
b2eaf7ba
AK
208 (package (inherit emacs)
209 (name "emacs-minimal")
210 (synopsis "The extensible text editor (used only for byte-compilation)")
211 (build-system gnu-build-system)
212 (arguments
213 (substitute-keyword-arguments (package-arguments emacs)
214 ((#:phases phases)
215 `(modify-phases ,phases
216 (delete 'install-site-start)))))
217 (inputs
218 `(("ncurses" ,ncurses)))
219 (native-inputs
220 `(("pkg-config" ,pkg-config)))))
221
222(define-public emacs-no-x
4fd540b7 223 (package (inherit emacs)
4fd540b7
LC
224 (name "emacs-no-x")
225 (synopsis "The extensible, customizable, self-documenting text
226editor (console only)")
227 (build-system gnu-build-system)
228 (inputs (fold alist-delete
229 (package-inputs emacs)
230 '("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
8ba4dc63 231 "libpng" "librsvg" "libxpm" "libice" "libsm"
4fd540b7
LC
232
233 ;; D-Bus depends on libx11, so remove it as well.
234 "dbus")))))
235
4a3e602c
TUBK
236(define-public emacs-no-x-toolkit
237 (package (inherit emacs)
238 (name "emacs-no-x-toolkit")
239 (synopsis "The extensible, customizable, self-documenting text
240editor (without an X toolkit)" )
71f57158 241 (build-system gnu-build-system)
388fd01b
MW
242 (inputs (append `(("inotify-tools" ,inotify-tools))
243 (alist-delete "gtk+" (package-inputs emacs))))
244 (arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
245 (package-arguments emacs)))))
4a3e602c 246
f906d30c
CAW
247(define-public guile-emacs
248 (package (inherit emacs)
249 (name "guile-emacs")
250 (version "20150512.41120e0")
251 (source (origin
252 (method git-fetch)
253 (uri (git-reference
254 (url "git://git.hcoop.net/git/bpt/emacs.git")
255 (commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
256 (sha256
257 (base32
258 "0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
259 (native-inputs
260 `(("autoconf" ,autoconf)
261 ("automake" ,automake)
262 ("guile" ,guile-for-guile-emacs)
263 ,@(package-native-inputs emacs)))
264 (arguments
265 (substitute-keyword-arguments `(;; Build fails if we allow parallel build.
266 #:parallel-build? #f
267 ;; Tests aren't passing for now.
268 #:tests? #f
269 ,@(package-arguments emacs))
270 ((#:phases phases)
271 `(modify-phases ,phases
272 (add-after 'unpack 'autogen
273 (lambda _
274 (zero? (system* "sh" "autogen.sh"))))))))))
275
4f028c8f
LC
276\f
277;;;
278;;; Emacs hacking.
279;;;
280
281(define-public geiser
282 (package
283 (name "geiser")
113e23e0 284 (version "0.9")
4f028c8f
LC
285 (source (origin
286 (method url-fetch)
cf8f58b2
LC
287 (uri (string-append "mirror://savannah/geiser/" version
288 "/geiser-" version ".tar.gz"))
4f028c8f 289 (sha256
1f8ad12a 290 (base32
a9c61335 291 "0phz9d8wjk4p13vqannv0003fwh8qqrp0gfzcs2hgq1mrmv1srss"))))
4f028c8f 292 (build-system gnu-build-system)
d51cafb0
AK
293 (arguments
294 '(#:phases (alist-cons-after
295 'install 'post-install
296 (lambda* (#:key outputs #:allow-other-keys)
297 (symlink "geiser-install.el"
298 (string-append (assoc-ref outputs "out")
299 "/share/emacs/site-lisp/"
300 "geiser-autoloads.el")))
301 %standard-phases)))
6aaf3899 302 (inputs `(("guile" ,guile-2.0)))
b8fc3622 303 (native-inputs `(("emacs" ,emacs-minimal)))
4f028c8f
LC
304 (home-page "http://nongnu.org/geiser/")
305 (synopsis "Collection of Emacs modes for Guile and Racket hacking")
306 (description
9586011d
LC
307 "Geiser is a collection of Emacs major and minor modes that conspire with
308one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
309continuously running Scheme interpreter takes the center of the stage in
310Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
311implementation, Emacs and, ultimately, the schemer, giving them access to live
312metadata.")
f61e0e79 313 (license license:bsd-3)))
9a4c9715 314
11e4c1fd 315(define-public geiser-next
a9c61335
AK
316 ;; This has become "geiser".
317 (deprecated-package "geiser-next" geiser))
11e4c1fd 318
fe4163f3
MW
319(define-public paredit
320 (package
967cfd18 321 (name "emacs-paredit")
c181b870 322 (version "24")
fe4163f3 323 (source (origin
c181b870
AK
324 (method url-fetch)
325 (uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
326 version ".el"))
327 (sha256
328 (base32
329 "0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
fe4163f3 330 (build-system trivial-build-system)
b8fc3622 331 (native-inputs `(("emacs" ,emacs-minimal)))
fe4163f3
MW
332 (arguments
333 `(#:modules ((guix build utils)
334 (guix build emacs-utils))
335 #:builder
336 (begin
337 (use-modules (guix build utils))
338 (use-modules (guix build emacs-utils))
339
340 (let* ((emacs (string-append (assoc-ref %build-inputs "emacs")
341 "/bin/emacs"))
342 (source (assoc-ref %build-inputs "source"))
343 (lisp-dir (string-append %output
344 "/share/emacs/site-lisp"))
345 (target (string-append lisp-dir "/paredit.el")))
346 (mkdir-p lisp-dir)
347 (copy-file source target)
348 (with-directory-excursion lisp-dir
349 (parameterize ((%emacs emacs))
d51cafb0 350 (emacs-generate-autoloads ,name lisp-dir)
fe4163f3
MW
351 (emacs-batch-eval '(byte-compile-file "paredit.el"))))))))
352 (home-page "http://mumble.net/~campbell/emacs/paredit/")
353 (synopsis "Emacs minor mode for editing parentheses")
354 (description
355 "ParEdit (paredit.el) is a minor mode for performing structured editing
356of S-expression data. The typical example of this would be Lisp or Scheme
357source code.
358
359ParEdit helps **keep parentheses balanced** and adds many keys for moving
360S-expressions and moving around in S-expressions. Its behavior can be jarring
361for those who may want transient periods of unbalanced parentheses, such as
362when typing parentheses directly or commenting out code line by line.")
f61e0e79 363 (license license:gpl3+)))
fe4163f3 364
967cfd18
LC
365(define-public paredit/old-name
366 (deprecated-package "paredit" paredit))
367
2f910ef6
LC
368(define-public git-modes
369 (package
370 (name "git-modes")
846344d0 371 (version "1.2.4")
2f910ef6
LC
372 (source (origin
373 (method url-fetch)
374 (uri (string-append
375 "https://github.com/magit/git-modes/archive/"
376 version ".tar.gz"))
8fd3c1ff 377 (file-name (string-append name "-" version ".tar.gz"))
2f910ef6
LC
378 (sha256
379 (base32
846344d0 380 "0xxrmf0jnyljxvllc22qa0v8lgi4k1ldnayjm5hf68m25jsr378l"))))
2f910ef6
LC
381 (build-system gnu-build-system)
382 (arguments
383 `(#:modules ((guix build gnu-build-system)
384 (guix build emacs-utils)
385 (guix build utils))
386 #:imported-modules (,@%gnu-build-system-modules
387 (guix build emacs-utils))
388
389 #:make-flags (list (string-append "PREFIX="
390 (assoc-ref %outputs "out"))
391 ;; Don't put .el files in a 'git-modes'
392 ;; sub-directory.
393 (string-append "LISPDIR="
394 (assoc-ref %outputs "out")
395 "/share/emacs/site-lisp"))
89949e8f 396 #:tests? #f ; no check target
2f910ef6
LC
397 #:phases (modify-phases %standard-phases
398 (delete 'configure)
399 (add-after 'install 'emacs-autoloads
400 (lambda* (#:key outputs #:allow-other-keys)
401 (let* ((out (assoc-ref outputs "out"))
402 (lisp (string-append
403 out "/share/emacs/site-lisp/")))
404 (emacs-generate-autoloads ,name lisp)))))))
b8fc3622 405 (native-inputs `(("emacs" ,emacs-minimal)))
2f910ef6
LC
406 (home-page "https://github.com/magit/git-modes")
407 (synopsis "Emacs major modes for Git configuration files")
408 (description
409 "This package provides Emacs major modes for editing various Git
410configuration files, such as .gitattributes, .gitignore, and .git/config.")
411 (license license:gpl3+)))
412
2b0e4300
AK
413(define-public emacs-with-editor
414 (package
415 (name "emacs-with-editor")
3e275818 416 (version "2.5.10")
2b0e4300
AK
417 (source (origin
418 (method url-fetch)
419 (uri (string-append
420 "https://github.com/magit/with-editor/archive/v"
421 version ".tar.gz"))
422 (file-name (string-append name "-" version ".tar.gz"))
423 (sha256
424 (base32
3e275818 425 "0lsxa1hghybkzvqhqvvym3hxbyp9vjcnnpb9j800z0vyhbnlka67"))))
2b0e4300
AK
426 (build-system emacs-build-system)
427 (propagated-inputs
428 `(("emacs-dash" ,emacs-dash)))
429 (home-page "https://github.com/magit/with-editor")
430 (synopsis "Emacs library for using Emacsclient as EDITOR")
431 (description
432 "This package provides an Emacs library to use the Emacsclient as
433@code{$EDITOR} of child processes, making sure they know how to call home.
434For remote processes a substitute is provided, which communicates with Emacs
435on stdout instead of using a socket as the Emacsclient does.")
436 (license license:gpl3+)))
437
9a4c9715
MW
438(define-public magit
439 (package
440 (name "magit")
2617050b 441 (version "2.10.3")
9a4c9715
MW
442 (source (origin
443 (method url-fetch)
fac8b30b
MW
444 (uri (string-append
445 "https://github.com/magit/magit/releases/download/"
446 version "/" name "-" version ".tar.gz"))
9a4c9715 447 (sha256
7e4871ba 448 (base32
2617050b 449 "03ln65ss420gc3h4pi56dayd1p163xfxrxrd9fkb9xnkl8mjglqk"))))
9a4c9715 450 (build-system gnu-build-system)
2c047b4a 451 (native-inputs `(("texinfo" ,texinfo)
b8fc3622 452 ("emacs" ,emacs-minimal)))
46bd4515
AG
453 (inputs
454 `(("git" ,git)
455 ("perl" ,perl)))
3db5ed11
AK
456 (propagated-inputs
457 `(("dash" ,emacs-dash)
458 ("with-editor" ,emacs-with-editor)))
9a4c9715
MW
459 (arguments
460 `(#:modules ((guix build gnu-build-system)
461 (guix build utils)
462 (guix build emacs-utils))
8ff3df5b 463 #:imported-modules (,@%gnu-build-system-modules
9a4c9715 464 (guix build emacs-utils))
7e4871ba
LC
465
466 #:test-target "test"
55f29c39 467 #:tests? #f ; tests are not included in the release
7e4871ba 468
55f29c39
AK
469 #:make-flags
470 (list (string-append "PREFIX=" %output)
471 ;; Don't put .el files in a sub-directory.
472 (string-append "lispdir=" %output "/share/emacs/site-lisp")
473 (string-append "DASH_DIR="
474 (assoc-ref %build-inputs "dash")
475 "/share/emacs/site-lisp/guix.d/dash-"
3db5ed11
AK
476 ,(package-version emacs-dash))
477 (string-append "WITH_EDITOR_DIR="
478 (assoc-ref %build-inputs "with-editor")
479 "/share/emacs/site-lisp/guix.d/with-editor-"
480 ,(package-version emacs-with-editor)))
d41a8a07 481
9a4c9715 482 #:phases
c466bfd1 483 (modify-phases %standard-phases
55f29c39 484 (delete 'configure)
c466bfd1
LC
485 (add-before
486 'build 'patch-exec-paths
487 (lambda* (#:key inputs #:allow-other-keys)
46bd4515
AG
488 (let ((git (assoc-ref inputs "git"))
489 (perl (assoc-ref inputs "perl")))
55f29c39
AK
490 (emacs-substitute-variables "lisp/magit-git.el"
491 ("magit-git-executable" (string-append git "/bin/git")))
46bd4515
AG
492 (substitute* "lisp/magit-sequence.el"
493 (("perl") (string-append perl "/bin/perl")))
55f29c39 494 #t))))))
9a4c9715
MW
495 (home-page "http://magit.github.io/")
496 (synopsis "Emacs interface for the Git version control system")
497 (description
498 "With Magit, you can inspect and modify your Git repositories with Emacs.
499You can review and commit the changes you have made to the tracked files, for
500example, and you can browse the history of past changes. There is support for
501cherry picking, reverting, merging, rebasing, and other common Git
502operations.")
f61e0e79 503 (license license:gpl3+)))
18d26210 504
97cc51f8
LC
505(define-public magit-svn
506 (package
507 (name "magit-svn")
b7f16845 508 (version "2.1.1")
97cc51f8 509 (source (origin
be379ee7
AK
510 (method url-fetch)
511 (uri (string-append
512 "https://github.com/magit/magit-svn/archive/"
513 version ".tar.gz"))
514 (file-name (string-append name "-" version ".tar.gz"))
97cc51f8
LC
515 (sha256
516 (base32
b7f16845 517 "04y88j7q9h8xjbx5dbick6n5nr1522sn9i1znp0qwk3vjb4b5mzz"))))
97cc51f8 518 (build-system trivial-build-system)
b8fc3622 519 (native-inputs `(("emacs" ,emacs-minimal)
be379ee7
AK
520 ("tar" ,tar)
521 ("gzip" ,gzip)))
522 (propagated-inputs `(("dash" ,emacs-dash)
523 ("magit" ,magit)))
97cc51f8
LC
524 (arguments
525 `(#:modules ((guix build utils)
526 (guix build emacs-utils))
527
528 #:builder
529 (begin
530 (use-modules (guix build utils)
531 (guix build emacs-utils))
532
be379ee7
AK
533 (let* ((tar (string-append (assoc-ref %build-inputs "tar")
534 "/bin/tar"))
535 (PATH (string-append (assoc-ref %build-inputs "gzip")
536 "/bin"))
537 (emacs (string-append (assoc-ref %build-inputs "emacs")
97cc51f8
LC
538 "/bin/emacs"))
539 (magit (string-append (assoc-ref %build-inputs "magit")
540 "/share/emacs/site-lisp"))
be379ee7
AK
541 (dash (string-append (assoc-ref %build-inputs "dash")
542 "/share/emacs/site-lisp/guix.d/dash-"
543 ,(package-version emacs-dash)))
97cc51f8
LC
544 (source (assoc-ref %build-inputs "source"))
545 (lisp-dir (string-append %output "/share/emacs/site-lisp")))
be379ee7
AK
546 (setenv "PATH" PATH)
547 (system* tar "xvf" source)
96c46210
LC
548
549 (install-file (string-append ,name "-" ,version "/magit-svn.el")
550 lisp-dir)
97cc51f8
LC
551
552 (with-directory-excursion lisp-dir
553 (parameterize ((%emacs emacs))
554 (emacs-generate-autoloads ,name lisp-dir)
555 (setenv "EMACSLOADPATH"
be379ee7 556 (string-append ":" magit ":" dash))
97cc51f8
LC
557 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))))))
558 (home-page "https://github.com/magit/magit-svn")
559 (synopsis "Git-SVN extension to Magit")
560 (description
561 "This package is an extension to Magit, the Git Emacs mode, providing
562support for Git-SVN.")
563 (license license:gpl3+)))
564
c1562e3d
AK
565(define-public emacs-magit-popup
566 (package
567 (name "emacs-magit-popup")
568 (version (package-version magit))
569 (source (origin
570 (method url-fetch)
571 (uri (string-append
572 "https://raw.githubusercontent.com/magit/magit/"
573 version "/lisp/magit-popup.el"))
574 (file-name (string-append "magit-popup-" version ".el"))
575 (sha256
576 (base32
7f86a97c 577 "08b6ypfiq8zavjfq0wcdh26xziwq7rqvvv3lfpib9101146kzx6d"))))
c1562e3d
AK
578 (build-system emacs-build-system)
579 (propagated-inputs
580 `(("emacs-dash" ,emacs-dash)))
581 (home-page "https://github.com/magit/magit")
582 (synopsis "Define prefix-infix-suffix command combos")
583 (description
584 "This library implements a generic interface for toggling switches and
585setting options and then invoking an Emacs command which does something with
586these arguments. The prototypical use is for the command to call an external
587process, passing on the arguments as command line arguments.")
588 (license license:gpl3+)))
589
00f4bd50
FB
590(define-public haskell-mode
591 (package
592 (name "haskell-mode")
08fc0d68 593 (version "16.1")
00f4bd50
FB
594 (source (origin
595 (method url-fetch)
596 (file-name (string-append name "-" version ".tar.gz"))
597 (uri (string-append
598 "https://github.com/haskell/haskell-mode/archive/v"
599 version ".tar.gz"))
600 (sha256
08fc0d68
FB
601 (base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))))
602 (inputs
603 `(("emacs-el-search" ,emacs-el-search) ; for tests
604 ("emacs-stream" ,emacs-stream))) ; for tests
605 (propagated-inputs
606 `(("emacs-dash" ,emacs-dash)))
00f4bd50 607 (native-inputs
b8fc3622 608 `(("emacs" ,emacs-minimal)
6aaf3899 609 ("texinfo" ,texinfo)))
00f4bd50
FB
610 (build-system gnu-build-system)
611 (arguments
612 `(#:make-flags (list (string-append "EMACS="
613 (assoc-ref %build-inputs "emacs")
614 "/bin/emacs"))
08fc0d68
FB
615 #:modules ((ice-9 match)
616 (srfi srfi-26)
617 ,@%gnu-build-system-modules)
00f4bd50
FB
618 #:phases
619 (modify-phases %standard-phases
620 (delete 'configure)
621 (add-before
622 'build 'pre-build
623 (lambda* (#:key inputs #:allow-other-keys)
08fc0d68
FB
624 (define (el-dir store-dir)
625 (match (find-files store-dir)
626 ((f1 f2 ...) (dirname f1))
627 (_ "")))
628
00f4bd50 629 (let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
08fc0d68
FB
630 (define emacs-prefix? (cut string-prefix? "emacs-" <>))
631
00f4bd50 632 (setenv "SHELL" "sh")
08fc0d68
FB
633 (setenv "EMACSLOADPATH"
634 (string-concatenate
635 (map (match-lambda
636 (((? emacs-prefix? name) . dir)
637 (string-append (el-dir dir) ":"))
638 (_ ""))
639 inputs)))
00f4bd50 640 (substitute* (find-files "." "\\.el") (("/bin/sh") sh))
08fc0d68
FB
641 (substitute* "tests/haskell-code-conventions.el"
642 ;; Function name recently changed in "emacs-el-search".
643 (("el-search--search-pattern") "el-search-forward")
644 ;; Don't contact home.
645 (("\\(when \\(>= emacs-major-version 25\\)")
646 "(require 'el-search) (when nil"))
00f4bd50
FB
647 #t)))
648 (replace
649 'install
650 (lambda* (#:key outputs #:allow-other-keys)
651 (let* ((out (assoc-ref outputs "out"))
652 (el-dir (string-append out "/share/emacs/site-lisp"))
653 (doc (string-append
654 out "/share/doc/haskell-mode-" ,version))
655 (info (string-append out "/share/info")))
656 (define (copy-to-dir dir files)
96c46210
LC
657 (for-each (lambda (f)
658 (install-file f dir))
659 files))
00f4bd50
FB
660
661 (with-directory-excursion "doc"
662 (unless (zero? (system* "makeinfo" "haskell-mode.texi"))
663 (error "makeinfo failed"))
96c46210 664 (install-file "haskell-mode.info" info))
00f4bd50
FB
665 (copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
666 (copy-to-dir el-dir (find-files "." "\\.elc?"))
08fc0d68 667 ;; These are part of other packages.
00f4bd50 668 (with-directory-excursion el-dir
08fc0d68 669 (for-each delete-file '("dash.el" "ert.el")))
00f4bd50
FB
670 #t))))))
671 (home-page "https://github.com/haskell/haskell-mode")
672 (synopsis "Haskell mode for Emacs")
673 (description
674 "This is an Emacs mode for editing, debugging and developing Haskell
675programs.")
676 (license license:gpl3+)))
677
1defd8cd
LC
678(define-public let-alist
679 (package
680 (name "emacs-let-alist")
681 (version "1.0.4")
682 (source (origin
683 (method url-fetch)
f32ffa04 684 (uri (string-append "https://elpa.gnu.org/packages/let-alist-"
1defd8cd
LC
685 version ".el"))
686 (sha256
687 (base32
688 "07312bvvyz86lf64vdkxg2l1wgfjl25ljdjwlf1bdzj01c4hm88x"))))
689 (build-system trivial-build-system)
690 (arguments
691 `(#:modules ((guix build utils)
692 (guix build emacs-utils))
693
694 #:builder (begin
695 (use-modules (guix build emacs-utils)
696 (guix build utils))
697
698 (let* ((out (assoc-ref %outputs "out"))
699 (lispdir (string-append out
700 "/share/emacs/site-lisp/"
701 "guix.d/let-alist-"
702 ,version))
703 (emacs (assoc-ref %build-inputs "emacs")))
704
705 (mkdir-p lispdir)
706 (copy-file (assoc-ref %build-inputs "source")
707 (string-append lispdir "/let-alist.el"))
708
709 (setenv "PATH" (string-append emacs "/bin"))
710 (emacs-byte-compile-directory lispdir)
711 #t))))
b8fc3622 712 (native-inputs `(("emacs" ,emacs-minimal)))
f32ffa04 713 (home-page "https://elpa.gnu.org/packages/let-alist.html")
1defd8cd
LC
714 (synopsis "Easily let-bind values of an assoc-list by their names")
715 (description
716 "This package offers a single Emacs Lisp macro, @code{let-alist}. This
717macro takes a first argument, whose value must be an alist (association list),
718and a body.
719
720The macro expands to a let form containing the body, where each dotted symbol
721inside body is let-bound to their cdrs in the alist. Only those present in
722the body are let-bound and this search is done at compile time.")
723 (license license:gpl3+)))
724
6e3fdbbe
LC
725(define-public flycheck
726 (package
727 (name "emacs-flycheck")
afb6fdaa 728 (version "28")
6e3fdbbe
LC
729 (source (origin
730 (method url-fetch)
0b928076
AK
731 (uri (string-append
732 "https://github.com/flycheck/flycheck/releases/download/"
733 version "/flycheck-" version ".tar"))
6e3fdbbe
LC
734 (sha256
735 (base32
afb6fdaa 736 "1yjxivk11d7w39zfhj2xr4h6xhwx1aj6yhyzd63rjrad7xpjfl86"))))
6e3fdbbe
LC
737 (build-system emacs-build-system)
738 (propagated-inputs
739 `(("emacs-dash" ,emacs-dash)
bdff55ea
LC
740 ("emacs-let-alist" ,let-alist)
741 ("emacs-seq" ,emacs-seq)))
6e3fdbbe
LC
742 (home-page "https://www.flycheck.org")
743 (synopsis "On-the-fly syntax checking")
744 (description
745 "This package provides on-the-fly syntax checking for GNU Emacs. It is a
746replacement for the older Flymake extension which is part of GNU Emacs, with
747many improvements and additional features.
748
749Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
750checking for over 30 programming and markup languages with more than 70
751different tools. It highlights errors and warnings inline in the buffer, and
752provides an optional IDE-like error list.")
753 (license license:gpl3+))) ;+GFDLv1.3+ for the manual
754
18d26210
MW
755\f
756;;;
757;;; Web browsing.
758;;;
759
760(define-public emacs-w3m
761 (package
762 (name "emacs-w3m")
2e74b9f4 763 (version "1.4.538+0.20141022")
18d26210
MW
764 (source (origin
765 (method url-fetch)
766 (uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_"
767 version ".orig.tar.gz"))
768 (sha256
2e74b9f4
AK
769 (base32
770 "0zfxmq86pwk64yv0426gnjrvhjrgrjqn08sdcdhmmjmfpmqvm79y"))))
18d26210 771 (build-system gnu-build-system)
6aaf3899 772 (native-inputs `(("autoconf" ,autoconf)
b8fc3622 773 ("emacs" ,emacs-minimal)))
18d26210 774 (inputs `(("w3m" ,w3m)
6aaf3899 775 ("imagemagick" ,imagemagick)))
18d26210 776 (arguments
caaf1933 777 `(#:modules ((guix build gnu-build-system)
18d26210
MW
778 (guix build utils)
779 (guix build emacs-utils))
8ff3df5b 780 #:imported-modules (,@%gnu-build-system-modules
18d26210
MW
781 (guix build emacs-utils))
782 #:configure-flags
783 (let ((out (assoc-ref %outputs "out")))
784 (list (string-append "--with-lispdir="
785 out "/share/emacs/site-lisp")
786 (string-append "--with-icondir="
2e74b9f4
AK
787 out "/share/images/emacs-w3m")
788 ;; Leave .el files uncompressed, otherwise GC can't
789 ;; identify run-time dependencies. See
790 ;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
791 "--without-compress-install"))
18d26210
MW
792 #:tests? #f ; no check target
793 #:phases
932ece65
AK
794 (modify-phases %standard-phases
795 (add-after 'unpack 'autoconf
796 (lambda _
797 (zero? (system* "autoconf"))))
798 (add-before 'build 'patch-exec-paths
799 (lambda* (#:key inputs outputs #:allow-other-keys)
800 (let ((out (assoc-ref outputs "out"))
801 (w3m (assoc-ref inputs "w3m"))
802 (imagemagick (assoc-ref inputs "imagemagick"))
803 (coreutils (assoc-ref inputs "coreutils")))
804 (emacs-substitute-variables "w3m.el"
805 ("w3m-command" (string-append w3m "/bin/w3m"))
806 ("w3m-touch-command"
807 (string-append coreutils "/bin/touch"))
808 ("w3m-image-viewer"
809 (string-append imagemagick "/bin/display"))
810 ("w3m-icon-directory"
811 (string-append out "/share/images/emacs-w3m")))
812 (emacs-substitute-variables "w3m-image.el"
813 ("w3m-imagick-convert-program"
814 (string-append imagemagick "/bin/convert"))
815 ("w3m-imagick-identify-program"
816 (string-append imagemagick "/bin/identify")))
817 #t)))
818 (replace 'install
819 (lambda* (#:key outputs #:allow-other-keys)
820 (and (zero? (system* "make" "install" "install-icons"))
821 (with-directory-excursion
822 (string-append (assoc-ref outputs "out")
823 "/share/emacs/site-lisp")
824 (for-each delete-file '("ChangeLog" "ChangeLog.1"))
825 (symlink "w3m-load.el" "w3m-autoloads.el")
826 #t)))))))
18d26210
MW
827 (home-page "http://emacs-w3m.namazu.org/")
828 (synopsis "Simple Web browser for Emacs based on w3m")
829 (description
35b9e423 830 "Emacs-w3m is an emacs interface for the w3m web browser.")
f61e0e79 831 (license license:gpl2+)))
89925972
MW
832
833(define-public emacs-wget
834 (package
835 (name "emacs-wget")
836 (version "0.5.0")
837 (source (origin
838 (method url-fetch)
839 (uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
840 version ".orig.tar.gz"))
841 (sha256
842 (base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
843 (build-system gnu-build-system)
6aaf3899 844 (inputs `(("wget" ,wget)))
b8fc3622 845 (native-inputs `(("emacs" ,emacs-minimal)))
89925972 846 (arguments
caaf1933 847 `(#:modules ((guix build gnu-build-system)
89925972
MW
848 (guix build utils)
849 (guix build emacs-utils))
caaf1933 850 #:imported-modules (,@%gnu-build-system-modules
89925972
MW
851 (guix build emacs-utils))
852 #:tests? #f ; no check target
853 #:phases
854 (alist-replace
855 'configure
856 (lambda* (#:key outputs #:allow-other-keys)
857 (substitute* "Makefile"
858 (("/usr/local") (assoc-ref outputs "out"))
859 (("/site-lisp/emacs-wget") "/site-lisp")))
860 (alist-cons-before
861 'build 'patch-exec-paths
862 (lambda* (#:key inputs outputs #:allow-other-keys)
863 (let ((wget (assoc-ref inputs "wget")))
864 (emacs-substitute-variables "wget.el"
865 ("wget-command" (string-append wget "/bin/wget")))))
d51cafb0
AK
866 (alist-cons-after
867 'install 'post-install
868 (lambda* (#:key outputs #:allow-other-keys)
869 (emacs-generate-autoloads
870 "wget" (string-append (assoc-ref outputs "out")
871 "/share/emacs/site-lisp/")))
872 %standard-phases)))))
89925972 873 (home-page "http://www.emacswiki.org/emacs/EmacsWget")
ae2189a9 874 (synopsis "Simple file downloader for Emacs based on wget")
89925972 875 (description
35b9e423 876 "Emacs-wget is an emacs interface for the wget file downloader.")
f61e0e79 877 (license license:gpl2+)))
77c9286d
LC
878
879\f
880;;;
881;;; Multimedia.
882;;;
883
884(define-public emms
885 (package
d06d4d7b 886 (name "emacs-emms")
c3a10d30 887 (version "4.2")
77c9286d
LC
888 (source (origin
889 (method url-fetch)
890 (uri (string-append "mirror://gnu/emms/emms-"
891 version ".tar.gz"))
892 (sha256
893 (base32
c3a10d30 894 "1xa9y64g5z8gfnxk1c2rf3plfjhqn4r6j8dpiygnfs6w4giysn22"))
77c9286d
LC
895 (modules '((guix build utils)))
896 (snippet
897 '(substitute* "Makefile"
898 (("/usr/bin/install-info")
899 ;; No need to use 'install-info' since it would create a
900 ;; useless 'dir' file.
901 "true")
902 (("^INFODIR=.*")
903 ;; Install Info files to $out/share/info, not $out/info.
904 "INFODIR := $(PREFIX)/share/info\n")
905 (("/site-lisp/emms")
906 ;; Install directly in share/emacs/site-lisp, not in a
907 ;; sub-directory.
908 "/site-lisp")
909 (("^all: (.*)\n" _ rest)
910 ;; Build 'emms-print-metadata'.
911 (string-append "all: " rest " emms-print-metadata\n"))))))
912 (build-system gnu-build-system)
913 (arguments
caaf1933 914 `(#:modules ((guix build gnu-build-system)
77c9286d
LC
915 (guix build utils)
916 (guix build emacs-utils))
caaf1933 917 #:imported-modules (,@%gnu-build-system-modules
77c9286d
LC
918 (guix build emacs-utils))
919
2fe176be
EF
920 #:phases
921 (modify-phases %standard-phases
922 (replace 'configure
923 (lambda* (#:key inputs outputs #:allow-other-keys)
924 (let ((out (assoc-ref outputs "out"))
925 (vorbis (assoc-ref inputs "vorbis-tools"))
926 (alsa (assoc-ref inputs "alsa-utils"))
927 (mpg321 (assoc-ref inputs "mpg321"))
928 (mp3info (assoc-ref inputs "mp3info")))
929 ;; Specify the installation directory.
930 (substitute* "Makefile"
931 (("PREFIX=.*$")
932 (string-append "PREFIX := " out "\n")))
933
934 (setenv "SHELL" (which "sh"))
935 (setenv "CC" "gcc")
936
937 ;; Specify the absolute file names of the various
938 ;; programs so that everything works out-of-the-box.
939 (with-directory-excursion "lisp"
940 (emacs-substitute-variables
941 "emms-player-mpg321-remote.el"
942 ("emms-player-mpg321-remote-command"
943 (string-append mpg321 "/bin/mpg321")))
944 (substitute* "emms-player-simple.el"
945 (("\"ogg123\"")
946 (string-append "\"" vorbis "/bin/ogg123\"")))
947 (emacs-substitute-variables "emms-info-ogginfo.el"
948 ("emms-info-ogginfo-program-name"
949 (string-append vorbis "/bin/ogginfo")))
950 (emacs-substitute-variables "emms-info-libtag.el"
951 ("emms-info-libtag-program-name"
952 (string-append out "/bin/emms-print-metadata")))
953 (emacs-substitute-variables "emms-info-mp3info.el"
954 ("emms-info-mp3info-program-name"
955 (string-append mp3info "/bin/mp3info")))
956 (substitute* "emms-volume-amixer.el"
957 (("\"amixer\"")
958 (string-append "\"" alsa "/bin/amixer\"")))
959 (substitute* "emms-tag-editor.el"
960 (("\"mp3info\"")
961 (string-append "\"" mp3info "/bin/mp3info\"")))))))
962 (add-before 'install 'pre-install
963 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 964 ;; The 'install' rule expects the target directories to exist.
2fe176be 965 (let* ((out (assoc-ref outputs "out"))
c3a10d30 966 (bin (string-append out "/bin"))
2fe176be 967 (man1 (string-append out "/share/man/man1")))
c3a10d30 968 (mkdir-p bin)
2fe176be
EF
969 (mkdir-p man1)
970 #t)))
971 (add-after 'install 'post-install
972 (lambda* (#:key outputs #:allow-other-keys)
c3a10d30 973 (let ((out (assoc-ref outputs "out")))
2fe176be
EF
974 (symlink "emms-auto.el"
975 (string-append out "/share/emacs/site-lisp/"
c3a10d30 976 "emms-autoloads.el"))))))
77c9286d 977 #:tests? #f))
b8fc3622 978 (native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
77c9286d 979 ("texinfo" ,texinfo)))
c72aed6d 980 (inputs `(("alsa-utils" ,alsa-utils)
77c9286d
LC
981 ("vorbis-tools" ,vorbis-tools)
982 ("mpg321" ,mpg321)
983 ("taglib" ,taglib)
984 ("mp3info" ,mp3info)))
38cb4766 985 (properties '((upstream-name . "emms")))
77c9286d
LC
986 (synopsis "Emacs Multimedia System")
987 (description
988 "EMMS is the Emacs Multimedia System. It is a small front-end which
989can control one of the supported external players. Thus, it supports
990whatever formats are supported by your music player. It also
991supports tagging and playlist management, all behind a clean and
992light user interface.")
6fd52309 993 (home-page "https://www.gnu.org/software/emms/")
f61e0e79 994 (license license:gpl3+)))
c7e553a3 995
1095bd1d
RW
996(define-public emacs-emms-player-mpv
997 (package
998 (name "emacs-emms-player-mpv")
f9875807 999 (version "0.0.10")
1095bd1d
RW
1000 (source
1001 (origin
1002 (method url-fetch)
1003 (uri (string-append "https://github.com/dochang/emms-player-mpv/archive/"
1004 version ".tar.gz"))
1005 (file-name (string-append name "-" version ".tar.gz"))
1006 (sha256
1007 (base32
f9875807 1008 "1q81fpmwr8hpdgq71vbdai2nml4yyqbmk4ffdyl4irlwph8gfjyq"))))
1095bd1d
RW
1009 (build-system emacs-build-system)
1010 (propagated-inputs
1011 `(("emms" ,emms)))
1012 (home-page "https://github.com/dochang/emms-player-mpv/")
1013 (synopsis "Mpv support for EMMS")
1014 (description
1015 "This package provides an EMMS player that uses mpv. It supports pause
1016and seeking.")
1017 (license license:gpl3+)))
1018
2316078a
RW
1019(define-public emacs-emms-mode-line-cycle
1020 (package
1021 (name "emacs-emms-mode-line-cycle")
1022 (version "0.2.5")
1023 (source
1024 (origin
1025 (method url-fetch)
1026 (uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
1027 "/archive/" version ".tar.gz"))
1028 (file-name (string-append name "-" version ".tar.gz"))
1029 (sha256
1030 (base32
1031 "0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
1032 (build-system emacs-build-system)
1033 (propagated-inputs
1034 `(("emms" ,emms)))
1035 (home-page "https://github.com/momomo5717/emms-mode-line-cycle")
1036 (synopsis "Display the EMMS mode line as a ticker")
1037 (description
1038 "This is a minor mode for updating the EMMS mode-line string cyclically
1039within a specified width. It is useful for displaying long track titles.")
1040 (license license:gpl3+)))
1041
c7e553a3
LC
1042\f
1043;;;
1044;;; Miscellaneous.
1045;;;
1046
1047(define-public bbdb
1048 (package
1049 (name "bbdb")
1050 (version "3.1.2")
1051 (source (origin
1052 (method url-fetch)
1053 (uri (string-append "mirror://savannah/bbdb/bbdb-"
1054 version ".tar.gz"))
1055 (sha256
1056 (base32
1057 "1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
1058 (modules '((guix build utils)))
1059 (snippet
1060 ;; We don't want to build and install the PDF.
1061 '(substitute* "doc/Makefile.in"
1062 (("^doc_DATA = .*$")
1063 "doc_DATA =\n")))))
1064 (build-system gnu-build-system)
1065 (arguments
1066 '(#:phases (alist-cons-after
1067 'install 'post-install
1068 (lambda* (#:key outputs #:allow-other-keys)
1069 ;; Add an autoloads file with the right name for guix.el.
1070 (let* ((out (assoc-ref outputs "out"))
1071 (site (string-append out "/share/emacs/site-lisp")))
1072 (with-directory-excursion site
1073 (symlink "bbdb-loaddefs.el" "bbdb-autoloads.el"))))
1074 %standard-phases)))
b8fc3622 1075 (native-inputs `(("emacs" ,emacs-minimal)))
c7e553a3
LC
1076 (home-page "http://savannah.nongnu.org/projects/bbdb/")
1077 (synopsis "Contact management utility for Emacs")
1078 (description
1079 "BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
1080an address book for email and snail mail addresses, phone numbers and the
1081like. It can be linked with various Emacs mail clients (Message and Mail
1082mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
f61e0e79 1083 (license license:gpl3+)))
78395334 1084
4d3d3bd2
VD
1085(define-public emacs-aggressive-indent
1086 (package
1087 (name "emacs-aggressive-indent")
1088 (version "1.8.3")
1089 (source (origin
1090 (method url-fetch)
1091 (uri (string-append "https://elpa.gnu.org/packages/"
1092 "aggressive-indent-" version ".el"))
1093 (sha256
1094 (base32
1095 "0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
1096 (build-system emacs-build-system)
1097 (home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
1098 (synopsis "Minor mode to aggressively keep your code always indented")
1099 (description
1100 "@code{aggressive-indent-mode} is a minor mode that keeps your code
1101always indented. It reindents after every change, making it more reliable
1102than @code{electric-indent-mode}.")
1103 (license license:gpl2+)))
1104
cf006d2e
CB
1105(define-public emacs-ag
1106 (package
1107 (name "emacs-ag")
1108 (version "0.47")
1109 (source (origin
1110 (method url-fetch)
1111 (uri (string-append
1112 "https://github.com/Wilfred/ag.el/archive/"
1113 version ".tar.gz"))
1114 (file-name (string-append name "-" version ".tar.gz"))
1115 (sha256
1116 (base32
1117 "1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
1118 (build-system emacs-build-system)
1119 (arguments
1120 `(#:phases
1121 (modify-phases %standard-phases
1122 (add-before 'install 'patch-exec-paths
1123 (lambda* (#:key inputs #:allow-other-keys)
1124 (emacs-substitute-variables "ag.el"
1125 ("ag-executable"
1126 (string-append (assoc-ref inputs "the-silver-searcher")
1127 "/bin/ag")))
1128 #t)))))
1129 (inputs
1130 `(("the-silver-searcher" ,the-silver-searcher)))
1131 (propagated-inputs
1132 `(("dash" ,emacs-dash)
1133 ("s" ,emacs-s)))
1134 (home-page "https://github.com/Wilfred/ag.el")
1135 (synopsis "Front-end for ag (the-silver-searcher) for Emacs")
1136 (description "This package provides the ability to use the silver
1137searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
1138include version control system awareness, use of Perl compatible regular
1139expressions, editing the search results directly and searching file names
1140rather than the contents of files.")
1141 (license license:gpl3+)))
1142
b654de6d
AK
1143(define-public emacs-async
1144 (package
1145 (name "emacs-async")
a8ce82ac 1146 (version "1.9")
b654de6d
AK
1147 (source (origin
1148 (method url-fetch)
f32ffa04 1149 (uri (string-append "https://elpa.gnu.org/packages/async-"
b654de6d
AK
1150 version ".tar"))
1151 (sha256
1152 (base32
a8ce82ac 1153 "1ip5nc8xyln5szvqwp6wqva9xr84pn8ssn3nnphrszr19y4js2bm"))))
b654de6d 1154 (build-system emacs-build-system)
f32ffa04 1155 (home-page "https://elpa.gnu.org/packages/async.html")
b654de6d
AK
1156 (synopsis "Asynchronous processing in Emacs")
1157 (description
1158 "This package provides the ability to call asynchronous functions and
1159processes. For example, it can be used to run dired commands (for copying,
1160moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
1161as a library for other Emacs packages.")
1162 (license license:gpl3+)))
1163
78395334
FB
1164(define-public emacs-auctex
1165 (package
1166 (name "emacs-auctex")
6b7f909f 1167 (version "11.90.0")
78395334
FB
1168 (source
1169 (origin
1170 (method url-fetch)
1171 (uri (string-append
f32ffa04 1172 "https://elpa.gnu.org/packages/auctex-"
78395334
FB
1173 version
1174 ".tar"))
1175 (sha256
1176 (base32
6b7f909f 1177 "04nsndwcf0dimgc2p1yzzrymc36amzdnjg0158nxplmjkzdp28gy"))))
78395334 1178 (build-system emacs-build-system)
a6eafbed
AK
1179 ;; We use 'emacs' because AUCTeX requires dbus at compile time
1180 ;; ('emacs-minimal' does not provide dbus).
1181 (arguments `(#:emacs ,emacs))
78395334
FB
1182 (native-inputs
1183 `(("perl" ,perl)))
6fd52309 1184 (home-page "https://www.gnu.org/software/auctex/")
78395334
FB
1185 (synopsis "Integrated environment for TeX")
1186 (description
1187 "AUCTeX is a comprehensive customizable integrated environment for
1188writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
1189or XEmacs.")
1190 (license license:gpl3+)))
85ef742c
FB
1191
1192(define-public emacs-mmm-mode
1193 (package
1194 (name "emacs-mmm-mode")
1195 (version "0.5.4")
1196 (source
1197 (origin
1198 (method url-fetch)
1199 (uri (string-append
0c909c05
AK
1200 "https://github.com/purcell/mmm-mode/archive/"
1201 version ".tar.gz"))
1202 (file-name (string-append name "-" version ".tar.gz"))
85ef742c
FB
1203 (sha256
1204 (base32
0c909c05
AK
1205 "10kwslnflbjqm62wkrq420crqzdqalzfflp9pqk1i12zm6dm4mfv"))))
1206 (build-system gnu-build-system)
1207 (arguments
1208 '(#:phases
1209 (modify-phases %standard-phases
1210 (add-after 'unpack 'autogen
1211 (lambda _
1212 (zero? (system* "sh" "autogen.sh")))))))
1213 (native-inputs
1214 `(("autoconf" ,autoconf)
1215 ("automake" ,automake)
b8fc3622 1216 ("emacs" ,emacs-minimal)
0c909c05 1217 ("texinfo" ,texinfo)))
85ef742c 1218 (home-page "https://github.com/purcell/mmm-mode")
0c909c05 1219 (synopsis "Allow multiple major modes in an Emacs buffer")
85ef742c 1220 (description
0c909c05 1221 "MMM Mode is a minor mode that allows multiple major modes to coexist in a
85ef742c
FB
1222single buffer.")
1223 (license license:gpl3+)))
ec9825d6
RW
1224
1225(define-public emacs-pdf-tools
1226 (package
1227 (name "emacs-pdf-tools")
eccd0b57 1228 (version "0.70")
ec9825d6
RW
1229 (source (origin
1230 (method url-fetch)
1231 (uri (string-append
1232 "https://github.com/politza/pdf-tools/archive/v"
1233 version ".tar.gz"))
1234 (file-name (string-append name "-" version ".tar.gz"))
1235 (sha256
1236 (base32
eccd0b57 1237 "1m0api6wiawswyk46bdsyk6r5rg3b86a4paar6nassm6x6c6vr77"))))
ec9825d6
RW
1238 (build-system gnu-build-system)
1239 (arguments
1240 `(#:tests? #f ; there are no tests
1241 #:modules ((guix build gnu-build-system)
1bcae5c5 1242 ((guix build emacs-build-system) #:prefix emacs:)
ec9825d6
RW
1243 (guix build utils)
1244 (guix build emacs-utils))
1245 #:imported-modules (,@%gnu-build-system-modules
1bcae5c5 1246 (guix build emacs-build-system)
ec9825d6
RW
1247 (guix build emacs-utils))
1248 #:phases
1249 (modify-phases %standard-phases
1bcae5c5
AK
1250 ;; Build server side using 'gnu-build-system'.
1251 (add-after 'unpack 'enter-server-dir
1252 (lambda _ (chdir "server") #t))
1253 (add-before 'configure 'autogen
1254 (lambda _
1255 (zero? (system* "bash" "autogen.sh"))))
1256
1257 ;; Build emacs side using 'emacs-build-system'.
1258 (add-after 'compress-documentation 'enter-lisp-dir
1259 (lambda _ (chdir "../lisp") #t))
1260 (add-after 'enter-lisp-dir 'emacs-patch-variables
1261 (lambda* (#:key outputs #:allow-other-keys)
1262 ;; Set path to epdfinfo program.
1263 (emacs-substitute-variables "pdf-info.el"
1264 ("pdf-info-epdfinfo-program"
1265 (string-append (assoc-ref outputs "out")
1266 "/bin/epdfinfo")))
1267 ;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
1268 ;; upgrading" that pdf-tools tries to perform.
1269 (emacs-substitute-variables "pdf-tools.el"
1270 ("pdf-tools-handle-upgrades" '()))))
1271 (add-after 'emacs-patch-variables 'emacs-install
1272 (assoc-ref emacs:%standard-phases 'install))
1273 (add-after 'emacs-install 'emacs-build
1274 (assoc-ref emacs:%standard-phases 'build))
1275 (add-after 'emacs-install 'emacs-make-autoloads
1276 (assoc-ref emacs:%standard-phases 'make-autoloads)))))
ec9825d6
RW
1277 (native-inputs `(("autoconf" ,autoconf)
1278 ("automake" ,automake)
1279 ("pkg-config" ,pkg-config)
b8fc3622 1280 ("emacs" ,emacs-minimal)))
e6527d64
AK
1281 (propagated-inputs
1282 `(("let-alist" ,let-alist)))
ec9825d6
RW
1283 (inputs `(("poppler" ,poppler)
1284 ("cairo" ,cairo)
1285 ("glib" ,glib)
1286 ("libpng" ,libpng)
1287 ("zlib" ,zlib)))
1288 (synopsis "Emacs support library for PDF files")
1289 (description
1290 "PDF Tools is, among other things, a replacement of DocView for PDF
1291files. The key difference is that pages are not pre-rendered by
1292e.g. ghostscript and stored in the file-system, but rather created on-demand
1293and stored in memory.")
1294 (home-page "https://github.com/politza/pdf-tools")
1295 (license license:gpl3+)))
d4dbf10e
FB
1296
1297(define-public emacs-dash
1298 (package
1299 (name "emacs-dash")
a31a79bc 1300 (version "2.13.0")
d4dbf10e
FB
1301 (source (origin
1302 (method url-fetch)
1303 (uri (string-append
1304 "https://github.com/magnars/dash.el/archive/"
1305 version ".tar.gz"))
1306 (file-name (string-append name "-" version ".tar.gz"))
1307 (sha256
1308 (base32
a31a79bc 1309 "1pjlkrzr8n45bnp3xs3dybvy0nz3gwamrfc7vsi1nhpkkw99ihhb"))))
d4dbf10e
FB
1310 (build-system emacs-build-system)
1311 (arguments
1312 `(#:phases
1313 (modify-phases %standard-phases
1314 (add-before 'install 'check
1315 (lambda _
1316 (zero? (system* "./run-tests.sh")))))))
1317 (home-page "https://github.com/magnars/dash.el")
1318 (synopsis "Modern list library for Emacs")
1319 (description "This package provides a modern list API library for Emacs.")
1320 (license license:gpl3+)))
85777fe5 1321
753baf77
AK
1322(define-public emacs-bui
1323 (package
1324 (name "emacs-bui")
f6b1dd23 1325 (version "1.1.0")
753baf77
AK
1326 (source (origin
1327 (method url-fetch)
1328 (uri (string-append
1329 "https://github.com/alezost/bui.el/archive/v"
1330 version ".tar.gz"))
1331 (file-name (string-append name "-" version ".tar.gz"))
1332 (sha256
1333 (base32
f6b1dd23 1334 "112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
753baf77
AK
1335 (build-system emacs-build-system)
1336 (propagated-inputs
1337 `(("dash" ,emacs-dash)))
1338 (home-page "https://github.com/alezost/bui.el")
1339 (synopsis "Buffer interface library for Emacs")
1340 (description
1341 "BUI (Buffer User Interface) is a library for making @code{list} and
1342@code{info} interfaces to display an arbitrary data of the same
1343type, for example: packages, buffers, files, etc.")
1344 (license license:gpl3+)))
1345
64e43c67
AK
1346(define-public emacs-guix
1347 (package
1348 (name "emacs-guix")
b4905fc1 1349 (version "0.3")
64e43c67
AK
1350 (source (origin
1351 (method url-fetch)
1352 (uri (string-append "https://github.com/alezost/guix.el"
1353 "/releases/download/v" version
1354 "/emacs-guix-" version ".tar.gz"))
1355 (sha256
1356 (base32
b4905fc1 1357 "1327zp140c7acckk0ajl88cgwr0lk9j3mb67nsq2janxrkwmj6br"))))
64e43c67
AK
1358 (build-system gnu-build-system)
1359 (arguments
1360 `(#:configure-flags
1361 (let ((guix (assoc-ref %build-inputs "guix"))
1362 (geiser (assoc-ref %build-inputs "geiser"))
1363 (dash (assoc-ref %build-inputs "dash"))
1364 (bui (assoc-ref %build-inputs "bui"))
1365 (magit-popup (assoc-ref %build-inputs "magit-popup"))
1366 (site-lisp "/share/emacs/site-lisp"))
1367 (list (string-append "--with-guix-site-dir="
1368 guix "/share/guile/site/2.0")
1369 (string-append "--with-geiser-lispdir=" geiser site-lisp)
1370 (string-append "--with-dash-lispdir="
1371 dash site-lisp "/guix.d/dash-"
1372 ,(package-version emacs-dash))
1373 (string-append "--with-bui-lispdir="
1374 bui site-lisp "/guix.d/bui-"
1375 ,(package-version emacs-bui))
1376 (string-append "--with-popup-lispdir="
1377 magit-popup site-lisp "/guix.d/magit-popup-"
1378 ,(package-version emacs-magit-popup))))))
1379 (native-inputs
1380 `(("pkg-config" ,pkg-config)
1381 ("emacs" ,emacs-minimal)))
1382 (inputs
1383 `(("guile" ,guile-2.0)
1384 ("guix" ,guix)))
1385 (propagated-inputs
1386 `(("geiser" ,geiser)
1387 ("dash" ,emacs-dash)
1388 ("bui" ,emacs-bui)
1389 ("magit-popup" ,emacs-magit-popup)))
1390 (home-page "https://github.com/alezost/guix.el")
1391 (synopsis "Emacs interface for GNU Guix")
1392 (description
b2f1f7b0
AK
1393 "Emacs-Guix provides a visual interface, tools and features for the GNU
1394Guix package manager. Particularly, it allows you to do various package
1395management tasks from Emacs. To begin with, run @code{M-x guix-about} or
1396@code{M-x guix-help} command.")
64e43c67
AK
1397 (license license:gpl3+)))
1398
d6e5de1e
RJ
1399(define-public emacs-d-mode
1400 (package
1401 (name "emacs-d-mode")
1402 (version "2.0.8")
1403 (source (origin
1404 (method url-fetch)
1405 (uri (string-append
1406 "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
1407 "archive/" version ".tar.gz"))
1408 (sha256
1409 (base32
1410 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0"))))
1411 (build-system emacs-build-system)
1412 (propagated-inputs
1413 `(("emacs-undercover" ,emacs-undercover)))
1414 (home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
1415 (synopsis "Emacs major mode for editing D code")
1416 (description "This package provides an Emacs major mode for highlighting
1417code written in the D programming language. This mode is currently known to
1418work with Emacs 24 and 25.")
1419 (license license:gpl2+)))
1420
7f7b38af
VD
1421(define-public emacs-keyfreq
1422 (package
1423 (name "emacs-keyfreq")
1424 (version "20160516.716")
1425 (source
1426 (origin
1427 (method url-fetch)
1428 (uri (string-append "http://melpa.org/packages/keyfreq-"
1429 version ".el"))
1430 (sha256
1431 (base32
1432 "008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
1433 (build-system emacs-build-system)
1434 (home-page "https://github.com/dacap/keyfreq")
1435 (synopsis "Track Emacs command frequencies")
1436 (description "@code{emacs-keyfeq} tracks and shows how many times you used
1437a command.")
1438 (license license:gpl3+)))
1439
1075b437
DB
1440(define-public emacs-undo-tree
1441 (package
1442 (name "emacs-undo-tree")
1443 (version "0.6.4")
1444 (source (origin
1445 (method git-fetch)
1446 (uri (git-reference
1447 (url "http://dr-qubit.org/git/undo-tree.git")
1448 (commit "release/0.6.4")))
1449 (file-name (string-append name "-" version "-checkout"))
1450 (sha256
1451 (base32
1452 "0b6hnv6bq1g5np5q2yw9r9aj1cxpp14akm21br7vpb7wp01fv4b3"))))
1453 (build-system emacs-build-system)
1454 (home-page "http://www.dr-qubit.org/emacs.php")
1455 (synopsis "Treat undo history as a tree")
1456 (description "Tree-like interface to Emacs undo system, providing
1457graphical tree presentation of all previous states of buffer that
1458allows easily move between them.")
1459 (license license:gpl3+)))
1460
85777fe5
FB
1461(define-public emacs-s
1462 (package
1463 (name "emacs-s")
48e28c69 1464 (version "1.11.0")
85777fe5
FB
1465 (source (origin
1466 (method url-fetch)
1467 (uri (string-append
1468 "https://github.com/magnars/s.el/archive/"
1469 version ".tar.gz"))
1470 (file-name (string-append name "-" version ".tar.gz"))
1471 (sha256
1472 (base32
48e28c69 1473 "0krq5nz3llfx0vwdqn18pmq777ja0fac185w0h9qymppb1j1hvc2"))))
85777fe5
FB
1474 (build-system emacs-build-system)
1475 (arguments
1476 `(#:phases
1477 (modify-phases %standard-phases
1478 (add-before 'install 'check
1479 (lambda _
1480 (zero? (system* "./run-tests.sh")))))))
1481 (home-page "https://github.com/magnars/s.el")
a124bbd2 1482 (synopsis "Emacs string manipulation library")
85777fe5
FB
1483 (description "This package provides an Emacs library for manipulating
1484strings.")
1485 (license license:gpl3+)))
cf9ce01f 1486
070e1fe9
VD
1487(define-public emacs-symon
1488 (package
1489 (name "emacs-symon")
1490 (version "20170224.33")
1491 (source
1492 (origin
1493 (method url-fetch)
1494 (uri (string-append "http://melpa.org/packages/symon-"
1495 version ".el"))
1496 (sha256
1497 (base32
1498 "109jd7yjhdrrf5jqpqyv543nb28g7065z58bji9pvxanzi4zl2iz"))))
1499 (build-system emacs-build-system)
1500 (home-page "http://hins11.yu-yake.com/")
1501 (synopsis "Tiny graphical system monitor")
1502 (description
1503 "Tiny graphical system monitor for the Emacs minibuffer when idle.")
1504 (license license:gpl2+)))
1505
899bcad3 1506(define-public emacs-sx
1507 (package
1508 (name "emacs-sx")
1509 (version "0.4")
1510 (source (origin
1511 (method url-fetch)
1512 (uri (string-append "https://github.com/vermiculus/sx.el/"
1513 "archive/v" version ".tar.gz"))
1514 (file-name (string-append name "-" version ".tar.gz"))
1515 (sha256
1516 (base32
1517 "1w0xghfljqg31axcnv8gzlrd8pw25nji6idnrhflq0af9qh1dw03"))))
1518 (build-system emacs-build-system)
1519 (propagated-inputs
1520 `(("emacs-markdown-mode" ,emacs-markdown-mode)
1521 ("let-alist" ,let-alist)))
1522 (home-page "https://github.com/vermiculus/sx.el/")
1523 (synopsis "Emacs StackExchange client")
1524 (description
1525 "Emacs StackExchange client. Ask and answer questions on
1526Stack Overflow, Super User, and other StackExchange sites.")
1527 (license license:gpl3+)))
1528
cf9ce01f
FB
1529(define-public emacs-f
1530 (package
1531 (name "emacs-f")
ad5d899e 1532 (version "0.18.2")
cf9ce01f
FB
1533 (source (origin
1534 (method url-fetch)
1535 (uri (string-append
1536 "https://github.com/rejeep/f.el/archive/v"
1537 version ".tar.gz"))
1538 (file-name (string-append name "-" version ".tar.gz"))
1539 (sha256
1540 (base32
ad5d899e 1541 "1926shh2ymdsgz05c6q181mzzz1rci99ch568j151xi865jinyg5"))))
cf9ce01f
FB
1542 (build-system emacs-build-system)
1543 (propagated-inputs
1544 `(("emacs-s" ,emacs-s)
1545 ("emacs-dash" ,emacs-dash)))
1546 (home-page "http://github.com/rejeep/f.el")
1547 (synopsis "Emacs API for working with files and directories")
1548 (description "This package provides an Emacs library for working with
1549files and directories.")
1550 (license license:gpl3+)))
48dbeef7 1551
0916dc52
CB
1552(define-public emacs-git-gutter
1553 (package
1554 (name "emacs-git-gutter")
1555 (version "0.90")
1556 (source (origin
1557 (method url-fetch)
1558 (uri (string-append
1559 "https://github.com/syohex/" name "/archive/"
1560 version ".tar.gz"))
1561 (file-name (string-append name "-" version ".tar.gz"))
1562 (sha256
1563 (base32
1564 "1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
1565 (build-system emacs-build-system)
1566 (home-page "https://github.com/syohex/emacs-git-gutter")
1567 (synopsis "See and manage hunks of text in a version control system")
1568 (description
1569 "This package is an Emacs minor mode for displaying and interacting with
1570hunks of text managed in a version control system. Added modified and deleted
1571areas can be indicated with symbols on the edge of the buffer, and commands
1572can be used to move between and perform actions on these hunks.
1573
1574Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
1575display and behaviour is easily customisable.")
1576 (license license:gpl3+)))
1577
0b35f11d
RW
1578(define-public emacs-git-timemachine
1579 (package
1580 (name "emacs-git-timemachine")
1581 (version "3.0")
1582 (source
1583 (origin
1584 (method url-fetch)
1585 (uri (string-append "https://github.com/pidu/git-timemachine/"
1586 "archive/" version ".tar.gz"))
1587 (file-name (string-append name "-" version ".tar.gz"))
1588 (sha256
1589 (base32
1590 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa"))))
1591 (build-system emacs-build-system)
1592 (home-page "https://github.com/pidu/git-timemachine")
1593 (synopsis "Step through historic versions of Git-controlled files")
1594 (description "This package enables you to step through historic versions
1595of files under Git version control from within Emacs.")
1596 (license license:gpl3+)))
1597
1c32830b
RW
1598(define-public emacs-el-mock
1599 (package
1600 (name "emacs-el-mock")
1601 (version "1.25.1")
1602 (source
1603 (origin
1604 (method url-fetch)
1605 (uri (string-append "https://github.com/rejeep/el-mock.el/"
1606 "archive/v" version ".tar.gz"))
1607 (file-name (string-append name "-" version ".tar.gz"))
1608 (sha256
1609 (base32
1610 "16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
1611 (build-system emacs-build-system)
1612 (home-page "http://github.com/rejeep/el-mock.el")
1613 (synopsis "Tiny mock and stub framework in Emacs Lisp")
1614 (description
1615 "Emacs Lisp Mock is a library for mocking and stubbing using readable
1616syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
1617Expectations, but it can be used in other contexts.")
1618 (license license:gpl3+)))
1619
0c5d837c
RW
1620(define-public emacs-espuds
1621 (package
1622 (name "emacs-espuds")
1623 (version "0.3.3")
1624 (source
1625 (origin
1626 (method url-fetch)
1627 (uri (string-append "https://github.com/ecukes/espuds/"
1628 "archive/v" version ".tar.gz"))
1629 (file-name (string-append name "-" version ".tar.gz"))
1630 (sha256
1631 (base32
1632 "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
1633 (build-system emacs-build-system)
1634 (propagated-inputs
1635 `(("emacs-s" ,emacs-s)
1636 ("emacs-dash" ,emacs-dash)
1637 ("emacs-f" ,emacs-f)))
1638 (home-page "http://github.com/ecukes/espuds")
1639 (synopsis "Common step definitions for Ecukes")
1640 (description "Espuds is a collection of the most commonly used step
1641definitions for testing with the Ecukes framework.")
1642 (license license:gpl3+)))
1643
8bebe734
CB
1644(define-public emacs-es-mode
1645 (package
1646 (name "emacs-es-mode")
1647 (version "4.2.0")
1648 (source (origin
1649 (method url-fetch)
1650 (uri (string-append
1651 "https://github.com/dakrone/es-mode/archive/"
1652 version ".tar.gz"))
1653 (file-name (string-append name "-" version ".tar.gz"))
1654 (sha256
1655 (base32
1656 "02as82clm553yss7jfjac888308zr1h2229cch4z1yij70j25c8y"))))
1657 (build-system emacs-build-system)
1658 (propagated-inputs
1659 ;; The version of org in Emacs 24.5 is not sufficient, and causes tables
1660 ;; to be rendered incorrectly
1661 `(("emacs-org" ,emacs-org)))
1662 (home-page "https://github.com/dakrone/es-mode")
1663 (synopsis "Major mode for editing Elasticsearch queries")
1664 (description "@code{es-mode} includes highlighting, completion and
1665indentation support for Elasticsearch queries. Also supported are
1666@code{es-mode} blocks in @code{org-mode}, for which the results of queries can
1667be processed through @code{jq}, or in the case of aggregations, can be
1668rendered in to a table. In addition, there is an @code{es-command-center}
1669mode, which displays information about Elasticsearch clusters.")
1670 (license license:gpl3+)))
1671
d0e43782
RW
1672(define-public emacs-expand-region
1673 (package
1674 (name "emacs-expand-region")
61c71171 1675 (version "0.11.0")
d0e43782
RW
1676 (source
1677 (origin
1678 (method url-fetch)
1679 (uri (string-append "https://github.com/magnars/expand-region.el"
1680 "/archive/" version ".tar.gz"))
1681 (file-name (string-append name "-" version ".tar.gz"))
1682 (sha256
1683 (base32
61c71171 1684 "08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
d0e43782
RW
1685 (build-system emacs-build-system)
1686 (home-page "https://github.com/magnars/expand-region.el")
1687 (synopsis "Increase selected region by semantic units")
1688 (description
1689 "Expand region increases the selected region by semantic units. Just
1690keep pressing the key until it selects what you want. There's also
1691@code{er/contract-region} if you expand too far.")
1692 (license license:gpl3+)))
1693
65568446
RW
1694(define-public emacs-fill-column-indicator
1695 (package
1696 (name "emacs-fill-column-indicator")
1697 (version "1.81")
1698 (source
1699 (origin
1700 (method url-fetch)
1701 (uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
1702 "/archive/v" version ".tar.gz"))
1703 (file-name (string-append name "-" version ".tar.gz"))
1704 (sha256
1705 (base32
1706 "1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
1707 (build-system emacs-build-system)
1708 (home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
1709 (synopsis "Graphically indicate the fill column")
1710 (description
1711 "Fill-column-indicator graphically indicates the location of the fill
1712column by drawing a thin line down the length of the editing window.")
1713 (license license:gpl3+)))
1714
7b9769b0
RW
1715(define-public emacs-znc
1716 (package
1717 (name "emacs-znc")
1718 (version "0.0.2")
1719 (source
1720 (origin
1721 (method url-fetch)
1722 (uri (string-append "https://marmalade-repo.org/packages/znc-"
1723 version ".el"))
1724 (sha256
1725 (base32
1726 "1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
1727 (build-system emacs-build-system)
1728 (home-page "https://github.com/sshirokov/ZNC.el")
1729 (synopsis "Make ERC and ZNC get along better")
1730 (description
1731 "This is a thin wrapper around @code{erc} that enables one to use the ZNC
1732IRC bouncer with ERC.")
1733 (license license:expat)))
1734
1f9a7097
RW
1735(define-public emacs-shut-up
1736 (package
1737 (name "emacs-shut-up")
1738 (version "0.3.2")
1739 (source
1740 (origin
1741 (method url-fetch)
1742 (uri (string-append "https://github.com/cask/shut-up/"
1743 "archive/v" version ".tar.gz"))
1744 (file-name (string-append name "-" version ".tar.gz"))
1745 (sha256
1746 (base32
1747 "09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
1748 (build-system emacs-build-system)
1749 (home-page "https://github.com/cask/shut-up")
1750 (synopsis "Silence Emacs")
1751 (description "This package silences most output of Emacs when running an
1752Emacs shell script.")
1753 (license license:expat)))
1754
dbe38a3a
RW
1755(define-public emacs-undercover
1756 (package
1757 (name "emacs-undercover")
1758 (version "0.6.0")
1759 (source
1760 (origin
1761 (method url-fetch)
1762 (uri (string-append "https://github.com/sviridov/undercover.el/"
1763 "archive/v" version ".tar.gz"))
1764 (file-name (string-append name "-" version ".tar.gz"))
1765 (sha256
1766 (base32
1767 "0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
1768 (build-system emacs-build-system)
1769 (propagated-inputs
1770 `(("emacs-dash" ,emacs-dash)
1771 ("emacs-shut-up" ,emacs-shut-up)))
1772 (home-page "https://github.com/sviridov/undercover.el")
1773 (synopsis "Test coverage library for Emacs Lisp")
1774 (description
1775 "Undercover is a test coverage library for software written in Emacs
1776Lisp.")
1777 (license license:expat)))
1778
07046e5f
RW
1779(define-public emacs-paren-face
1780 (package
1781 (name "emacs-paren-face")
1782 (version "1.0.0")
1783 (source
1784 (origin
1785 (method url-fetch)
1786 (uri (string-append "https://github.com/tarsius/paren-face/archive/"
1787 version ".tar.gz"))
1788 (file-name (string-append name "-" version ".tar.gz"))
1789 (sha256
1790 (base32
1791 "0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
1792 (build-system emacs-build-system)
1793 (home-page "http://github.com/tarsius/paren-face")
1794 (synopsis "Face for parentheses in lisp modes")
1795 (description
1796 "This library defines a face named @code{parenthesis} used just for
1797parentheses. The intended purpose of this face is to make parentheses less
1798visible in Lisp code by dimming them. Lispers probably don't need to be
1799constantly made aware of the existence of the parentheses. Dimming them might
1800be even more useful for people new to lisp who have not yet learned to
1801subconsciously blend out the parentheses.")
1802 (license license:gpl3+)))
1803
a46e3c0d
RW
1804(define-public emacs-page-break-lines
1805 (package
1806 (name "emacs-page-break-lines")
1807 (version "0.11")
1808 (source
1809 (origin
1810 (method url-fetch)
1811 (uri (string-append "https://github.com/purcell/page-break-lines/"
1812 "archive/" version ".tar.gz"))
1813 (file-name (string-append name "-" version ".tar.gz"))
1814 (sha256
1815 (base32
1816 "1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
1817 (build-system emacs-build-system)
1818 (home-page "https://github.com/purcell/page-break-lines")
1819 (synopsis "Display page breaks as tidy horizontal lines")
1820 (description
1821 "This library provides a global mode which displays form feed characters
1822as horizontal rules.")
1823 (license license:gpl3+)))
1824
1f8a951b
RW
1825(define-public emacs-simple-httpd
1826 (package
1827 (name "emacs-simple-httpd")
1828 (version "1.4.6")
1829 (source
1830 (origin
1831 (method url-fetch)
1832 (uri (string-append "https://github.com/skeeto/emacs-web-server/"
1833 "archive/" version ".tar.gz"))
1834 (file-name (string-append name "-" version ".tar.gz"))
1835 (sha256
1836 (base32
1837 "01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
1838 (build-system emacs-build-system)
1839 (home-page "https://github.com/skeeto/emacs-http-server")
1840 (synopsis "HTTP server in pure Emacs Lisp")
1841 (description
1842 "This package provides a simple HTTP server written in Emacs Lisp to
1843serve files and directory listings.")
1844 (license license:unlicense)))
1845
6c04acaa
RW
1846(define-public emacs-skewer-mode
1847 (package
1848 (name "emacs-skewer-mode")
1849 (version "1.6.2")
1850 (source
1851 (origin
1852 (method url-fetch)
1853 (uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
1854 version ".tar.gz"))
1855 (file-name (string-append name "-" version ".tar.gz"))
1856 (sha256
1857 (base32
1858 "07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
1859 (build-system emacs-build-system)
1860 (propagated-inputs
1861 `(("emacs-simple-httpd" ,emacs-simple-httpd)
1862 ("emacs-js2-mode" ,emacs-js2-mode)))
1863 (home-page "https://github.com/skeeto/skewer-mode")
1864 (synopsis "Live web development in Emacs")
1865 (description
1866 "Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
1867a web browser. Expressions are sent on-the-fly from an editing buffer to be
1868evaluated in the browser, just like Emacs does with an inferior Lisp process
1869in Lisp modes.")
1870 (license license:unlicense)))
1871
ce9701fb
RW
1872(define-public emacs-stripe-buffer
1873 (package
1874 (name "emacs-stripe-buffer")
1875 (version "0.2.5")
1876 (source
1877 (origin
1878 (method url-fetch)
1879 (uri (string-append "https://github.com/sabof/stripe-buffer/"
1880 "archive/" version ".tar.gz"))
1881 (file-name (string-append name "-" version ".tar.gz"))
1882 (sha256
1883 (base32
1884 "1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
1885 (build-system emacs-build-system)
1886 (home-page "https://github.com/sabof/stripe-buffer/")
1887 (synopsis "Add stripes to list buffers")
1888 (description
1889 "This Emacs package adds faces to add stripes to list buffers and org
1890tables.")
1891 (license license:gpl2+)))
1892
8d810163
RW
1893(define-public emacs-rich-minority
1894 (package
1895 (name "emacs-rich-minority")
1896 (version "1.0.1")
1897 (source
1898 (origin
1899 (method url-fetch)
1900 (uri (string-append "https://github.com/Malabarba/rich-minority/"
1901 "archive/" version ".tar.gz"))
1902 (file-name (string-append name "-" version ".tar.gz"))
1903 (sha256
1904 (base32
1905 "1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
1906 (build-system emacs-build-system)
1907 (home-page "https://github.com/Malabarba/rich-minority")
1908 (synopsis "Clean-up and beautify the list of minor modes")
1909 (description
1910 "This Emacs package hides and/or highlights minor modes in the
1911mode-line.")
1912 (license license:gpl2+)))
1913
b33f913d
RW
1914(define-public emacs-smart-mode-line
1915 (package
1916 (name "emacs-smart-mode-line")
1917 (version "2.10.1")
1918 (source
1919 (origin
1920 (method url-fetch)
1921 (uri (string-append "https://github.com/Malabarba/smart-mode-line/"
1922 "archive/" version ".tar.gz"))
1923 (file-name (string-append name "-" version ".tar.gz"))
1924 (sha256
1925 (base32
1926 "0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
1927 (build-system emacs-build-system)
1928 (propagated-inputs
1929 `(("emacs-rich-minority" ,emacs-rich-minority)))
1930 (home-page "http://github.com/Malabarba/smart-mode-line")
66e07664 1931 (synopsis "Color-coded smart mode-line")
b33f913d
RW
1932 (description
1933 "Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
1934read from small to large monitors by using colors, a prefix feature, and smart
1935truncation.")
1936 (license license:gpl2+)))
1937
3bcb304e
RW
1938(define-public emacs-shell-switcher
1939 (package
1940 (name "emacs-shell-switcher")
1941 (version "1.0.1")
1942 (source
1943 (origin
1944 (method url-fetch)
1945 (uri (string-append "https://github.com/DamienCassou/shell-switcher"
1946 "/archive/v" version ".tar.gz"))
1947 (file-name (string-append name "-" version ".tar.gz"))
1948 (sha256
1949 (base32
1950 "1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
1951 (build-system emacs-build-system)
1952 (home-page "https://github.com/DamienCassou/shell-switcher")
1953 (synopsis "Provide fast switching between shell buffers")
1954 (description
1955 "This package provides commands to quickly switch between shell buffers.")
1956 (license license:gpl3+)))
1957
48dbeef7
FB
1958(define-public emacs-ob-ipython
1959 (package
1960 (name "emacs-ob-ipython")
1961 (version "20150704.8807064693")
1962 (source (origin
1963 (method git-fetch)
1964 (uri (git-reference
698bd297 1965 (commit "880706469338ab59b5bb7dbe8460016f89755364")
48dbeef7
FB
1966 (url "https://github.com/gregsexton/ob-ipython.git")))
1967 (sha256
1968 (base32
1969 "1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
1970 (build-system emacs-build-system)
1971 (propagated-inputs
1972 `(("emacs-f" ,emacs-f)))
1973 (home-page "http://www.gregsexton.org")
1974 (synopsis "Org-Babel functions for IPython evaluation")
1975 (description "This package adds support to Org-Babel for evaluating Python
1976source code using IPython.")
1977 (license license:gpl3+)))
6fd66b6c
LC
1978
1979(define-public emacs-debbugs
1980 (package
1981 (name "emacs-debbugs")
21f828e0 1982 (version "0.12")
6fd66b6c
LC
1983 (source (origin
1984 (method url-fetch)
f32ffa04 1985 (uri (string-append "https://elpa.gnu.org/packages/debbugs-"
6fd66b6c
LC
1986 version ".tar"))
1987 (sha256
1988 (base32
21f828e0 1989 "1swi4d7fhahimid9j12cypmkz7dlqgffrnhfxy5ra44y3j2b35ph"))))
6fd66b6c 1990 (build-system emacs-build-system)
32e16112
AK
1991 (propagated-inputs
1992 `(("emacs-async" ,emacs-async)))
f32ffa04 1993 (home-page "https://elpa.gnu.org/packages/debbugs.html")
6fd66b6c
LC
1994 (synopsis "Access the Debbugs bug tracker in Emacs")
1995 (description
1996 "This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
1997Tracker} from within Emacs.
1998
1999For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
2000and the command @code{M-x debbugs-gnu-search} for bug searching. If you
2001prefer the listing of bugs as TODO items of @code{org-mode}, you could use
2002@code{M-x debbugs-org} and related commands.
2003
2004A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
2005Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
2006 (license license:gpl3+)))
3ffe36f5
LC
2007
2008(define-public emacs-deferred
2009 (package
2010 (name "emacs-deferred")
2011 (version "0.3.2")
2012 (home-page "https://github.com/kiwanami/emacs-deferred")
2013 (source (origin
2014 (method git-fetch)
2015 (uri (git-reference
2016 (url home-page)
2017 (commit (string-append "v" version))))
2018 (sha256
2019 (base32
2020 "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr"))
2021 (file-name (string-append name "-" version))))
2022 (build-system emacs-build-system)
2023 ;; FIXME: Would need 'el-expectations' to actually run tests.
2024 (synopsis "Simple asynchronous functions for Emacs Lisp")
2025 (description
2026 "The @code{deferred.el} library provides support for asynchronous tasks.
2027The API is almost the same as that of
2028@uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
2029for asynchronous tasks.")
2030 (license license:gpl3+)))
d001bb5a
LC
2031
2032(define-public butler
2033 (package
2034 (name "emacs-butler")
2035 (version "0.2.4")
2036 (home-page "https://github.com/AshtonKem/Butler")
2037 (source (origin
2038 (method git-fetch)
2039 (uri (git-reference
2040 (url home-page)
2041 (commit version)))
2042 (sha256
2043 (base32
2044 "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
2045 (file-name (string-append name "-" version))))
2046 (build-system emacs-build-system)
2047 (propagated-inputs
2048 `(("emacs-deferred" ,emacs-deferred)))
2049 (synopsis "Emacs client for Jenkins")
2050 (description
2051 "Butler provides an interface to connect to Jenkins continuous
2052integration servers. Users can specify a list of server in the
2053@code{butler-server-list} variable and then use @code{M-x butler-status} to
2054view the build status of those servers' build jobs, and possibly to trigger
2055build jobs.")
2056 (license license:gpl3+)))
2d1db448 2057
d1dbeddd
RW
2058(define-public emacs-company
2059 (package
2060 (name "emacs-company")
2061 (version "0.8.12")
2062 (source
2063 (origin
2064 (method url-fetch)
2065 (uri (string-append "https://github.com/company-mode/company-mode/archive/"
2066 version ".tar.gz"))
2067 (file-name (string-append name "-" version ".tar.gz"))
2068 (sha256
2069 (base32
2070 "1vwmbqm7h4lrszv2qxy6fqzznm9raigi84cadx982c9m7shp0zzz"))))
2071 (build-system emacs-build-system)
2072 (home-page "http://company-mode.github.io/")
2073 (synopsis "Modular text completion framework")
2074 (description
2075 "Company is a modular completion mechanism. Modules for retrieving
2076completion candidates are called back-ends, modules for displaying them are
2077front-ends. Company comes with many back-ends, e.g. @code{company-elisp}.
2078These are distributed in separate files and can be used individually.")
2079 (license license:gpl3+)))
2080
7c438099
RW
2081(define-public emacs-multiple-cursors
2082 (package
2083 (name "emacs-multiple-cursors")
2084 (version "1.4.0")
2085 (source
2086 (origin
2087 (method url-fetch)
2088 (uri (string-append "https://github.com/magnars/multiple-cursors.el/"
2089 "archive/" version ".tar.gz"))
2090 (file-name (string-append name "-" version ".tar.gz"))
2091 (sha256
2092 (base32
2093 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
2094 (build-system emacs-build-system)
2095 (home-page "https://github.com/magnars/multiple-cursors.el")
2096 (synopsis "Multiple cursors for Emacs")
2097 (description
2098 "This package adds support to Emacs for editing text with multiple
2099simultaneous cursors.")
2100 (license license:gpl3+)))
2101
2d1db448
LC
2102(define-public typo
2103 (package
2104 (name "emacs-typo")
2105 (version "1.1")
2106 (home-page "https://github.com/jorgenschaefer/typoel")
2107 (source (origin
2108 (method git-fetch)
2109 (uri (git-reference
2110 (url home-page)
2111 (commit (string-append "v" version))))
2112 (sha256
2113 (base32
2114 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"))
2115 (file-name (string-append name "-" version))))
2116 (build-system emacs-build-system)
2117 (synopsis "Minor mode for typographic editing")
2118 (description
2119 "This package provides two Emacs modes, @code{typo-mode} and
2120@code{typo-global-mode}. These modes automatically insert Unicode characters
2121for quotation marks, dashes, and ellipses. For example, typing @kbd{\"}
2122automatically inserts a Unicode opening or closing quotation mark, depending
2123on context.")
2124 (license license:gpl3+)))
e037a09f
FB
2125
2126(define-public emacs-scheme-complete
2127 (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5"))
2128 (package
2129 (name "emacs-scheme-complete")
2130 (version (string-append "20151223." (string-take commit 8)))
2131 (source
2132 (origin
2133 (file-name (string-append name "-" version))
2134 (method git-fetch)
2135 (uri (git-reference
2136 (url "https://github.com/ashinn/scheme-complete.git")
2137 (commit commit)))
2138 (sha256
2139 (base32
2140 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x"))
2141 (patches
fc1adab1 2142 (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch"))))
e037a09f
FB
2143 (build-system emacs-build-system)
2144 (home-page "https://github.com/ashinn/scheme-complete")
2145 (synopsis "Smart tab completion for Scheme in Emacs")
2146 (description
2147 "This file provides a single function, @code{scheme-smart-complete},
2148which you can use for intelligent, context-sensitive completion for any Scheme
2149implementation in Emacs. To use it just load this file and bind that function
2150to a key in your preferred mode.")
2151 (license license:public-domain))))
58a7dc13
FB
2152
2153(define-public emacs-mit-scheme-doc
2154 (package
2155 (name "emacs-mit-scheme-doc")
2156 (version "20140203")
2157 (source
2158 (origin
2159 (modules '((guix build utils)))
2160 (snippet
2161 ;; keep only file of interest
2162 '(begin
2163 (for-each delete-file '("dot-emacs.el" "Makefile"))
f3860753 2164 (install-file "6.945-config/mit-scheme-doc.el" ".")
58a7dc13
FB
2165 (delete-file-recursively "6.945-config")))
2166 (file-name (string-append name "-" version ".tar.bz2"))
2167 (method url-fetch)
2168 (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/"
2169 "6.945/dont-panic/emacs-basic-config.tar.bz2"))
2170 (sha256
2171 (base32
2172 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1"))))
2173 (build-system emacs-build-system)
2174 (inputs `(("mit-scheme" ,mit-scheme)))
2175 (arguments
2176 `(#:phases
2177 (modify-phases %standard-phases
2178 (add-after 'unpack 'configure-doc
2179 (lambda* (#:key inputs #:allow-other-keys)
2180 (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme"))
2181 (doc-dir (string-append mit-scheme-dir "/share/doc/"
2182 "mit-scheme-"
2183 ,(package-version mit-scheme))))
2184 (substitute* "mit-scheme-doc.el"
2185 (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/")
2186 (string-append "file:" doc-dir "/mit-scheme-ref/")))))))))
2187 (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/")
2188 (synopsis "MIT-Scheme documentation lookup for Emacs")
2189 (description
2190 "This package provides a set of Emacs functions to search definitions of
2191identifiers in the MIT-Scheme documentation.")
2192 (license license:gpl2+)))
e5045f30 2193
e5045f30
FB
2194(define-public emacs-constants
2195 (package
2196 (name "emacs-constants")
f99f3f24 2197 (version "2.6")
a9e41d2f 2198 (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants")
e5045f30
FB
2199 (source
2200 (origin
37dbfc50 2201 (file-name (string-append name "-" version ".tar.gz"))
f99f3f24
FB
2202 (method url-fetch)
2203 (uri (string-append "https://github.com/fedeinthemix/emacs-constants"
2204 "/archive/v" version ".tar.gz"))
e5045f30
FB
2205 (sha256
2206 (base32
f99f3f24 2207 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n"))))
e5045f30 2208 (build-system emacs-build-system)
e5045f30
FB
2209 (synopsis "Enter definition of constants into an Emacs buffer")
2210 (description
2211 "This package provides functions for inserting the definition of natural
2212constants and units into an Emacs buffer.")
2213 (license license:gpl2+)))
85960693 2214
e203221f
RW
2215(define-public emacs-tagedit
2216 (package
2217 (name "emacs-tagedit")
2218 (version "1.4.0")
2219 (source
2220 (origin
2221 (method url-fetch)
2222 (uri (string-append "https://github.com/magnars/tagedit/"
2223 "archive/" version ".tar.gz"))
2224 (file-name (string-append name "-" version ".tar.gz"))
2225 (sha256
2226 (base32
2227 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq"))))
2228 (build-system emacs-build-system)
2229 (propagated-inputs
2230 `(("emacs-s" ,emacs-s)
2231 ("emacs-dash" ,emacs-dash)))
2232 (home-page "https://github.com/magnars/tagedit")
2233 (synopsis "Some paredit-like features for html-mode")
2234 (description
2235 "This package provides a collection of paredit-like functions for editing
2236in @code{html-mode}.")
2237 (license license:gpl3+)))
2238
85960693
FB
2239(define-public emacs-slime
2240 (package
2241 (name "emacs-slime")
b6bd9a79 2242 (version "2.19")
85960693
FB
2243 (source
2244 (origin
2245 (file-name (string-append name "-" version ".tar.gz"))
2246 (method url-fetch)
2247 (uri (string-append
2248 "https://github.com/slime/slime/archive/v"
2249 version ".tar.gz"))
2250 (sha256
2251 (base32
b6bd9a79 2252 "1jhaq5cn89k45nzyl0jd12gmjxnh1bq9jlfwrxba342agxsscb0p"))))
85960693
FB
2253 (build-system emacs-build-system)
2254 (native-inputs
2255 `(("texinfo" ,texinfo)))
2256 (arguments
2257 `(#:phases
2258 (modify-phases %standard-phases
2259 (add-before 'install 'configure
2260 (lambda* _
2261 (emacs-substitute-variables "slime.el"
2262 ("inferior-lisp-program" "sbcl"))
2263 #t))
2264 (add-before 'install 'install-doc
2265 (lambda* (#:key outputs #:allow-other-keys)
2266 (let* ((out (assoc-ref outputs "out"))
2267 (info-dir (string-append out "/share/info"))
2268 (doc-dir (string-append out "/share/doc/"
2269 ,name "-" ,version))
2270 (doc-files '("doc/slime-refcard.pdf"
2271 "README.md" "NEWS" "PROBLEMS"
2272 "CONTRIBUTING.md")))
2273 (with-directory-excursion "doc"
2274 (substitute* "Makefile"
2275 (("infodir=/usr/local/info")
2276 (string-append "infodir=" info-dir)))
2277 (system* "make" "html/index.html")
2278 (system* "make" "slime.info")
2279 (install-file "slime.info" info-dir)
2280 (copy-recursively "html" (string-append doc-dir "/html")))
2281 (for-each (lambda (f)
2282 (install-file f doc-dir)
2283 (delete-file f))
2284 doc-files)
2285 (delete-file-recursively "doc")
2286 #t))))))
2287 (home-page "https://github.com/slime/slime")
2288 (synopsis "Superior Lisp Interaction Mode for Emacs")
2289 (description
2290 "SLIME extends Emacs with support for interactive programming in
2291Common Lisp. The features are centered around @{slime-mode}, an Emacs
2292minor mode that complements the standard @{lisp-mode}. While lisp-mode
2293supports editing Lisp source files, @{slime-mode} adds support for
2294interacting with a running Common Lisp process for compilation,
2295debugging, documentation lookup, and so on.")
2296 (license license:gpl2+)))
e11d14fe 2297
2298(define-public emacs-popup
2299 (package
2300 (name "emacs-popup")
2301 (version "0.5.3")
2302 (source (origin
2303 (method url-fetch)
2304 (uri (string-append
2305 "https://github.com/auto-complete/popup-el/archive/v"
2306 version ".tar.gz"))
2307 (file-name (string-append name "-" version ".tar.gz"))
2308 (sha256
2309 (base32
2310 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0"))))
2311 (build-system emacs-build-system)
e11d14fe 2312 (home-page "https://github.com/auto-complete/popup-el")
2313 (synopsis "Visual Popup User Interface for Emacs")
2314 (description
2315 "Popup.el is a visual popup user interface library for Emacs.
2316This provides a basic API and common UI widgets such as popup tooltips
2317and popup menus.")
2318 (license license:gpl3+)))
48766ea8
RW
2319
2320(define-public emacs-god-mode
2321 (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964")
2322 (revision "1"))
2323 (package
2324 (name "emacs-god-mode")
2325 (version (string-append "20151005.925."
2326 revision "-" (string-take commit 9)))
2327 (source
2328 (origin
2329 (method git-fetch)
2330 (uri (git-reference
2331 (url "https://github.com/chrisdone/god-mode.git")
2332 (commit commit)))
2333 (file-name (string-append name "-" version "-checkout"))
2334 (sha256
2335 (base32
2336 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"))))
2337 (build-system emacs-build-system)
2338 (home-page "https://github.com/chrisdone/god-mode")
2339 (synopsis "Minor mode for entering commands without modifier keys")
2340 (description
2341 "This package provides a global minor mode for entering Emacs commands
2342without modifier keys. It's similar to Vim's separation of commands and
2343insertion mode. When enabled all keys are implicitly prefixed with
2344@samp{C-} (among other helpful shortcuts).")
2345 (license license:gpl3+))))
4670f70a
CM
2346
2347(define-public emacs-rfcview
2348 (package
2349 (name "emacs-rfcview")
2350 (version "0.13")
2351 (home-page "http://www.loveshack.ukfsn.org/emacs")
2352 (source (origin
02736daa 2353 (method url-fetch)
4670f70a
CM
2354 (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el")
2355 (sha256
2356 (base32
2357 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz"))))
2358 (build-system emacs-build-system)
4670f70a
CM
2359 (synopsis "Prettify Request for Comments (RFC) documents")
2360 (description "The Internet Engineering Task Force (IETF) and the Internet
2361Society (ISOC) publish various Internet-related protocols and specifications
2362as \"Request for Comments\" (RFC) documents and Internet Standard (STD)
2363documents. RFCs and STDs are published in a simple text form. This package
2364provides an Emacs major mode, rfcview-mode, which makes it more pleasant to
2365read these documents in Emacs. It prettifies the text and adds
2366hyperlinks/menus for easier navigation. It also provides functions for
2367browsing the index of RFC documents and fetching them from remote servers or
2368local directories.")
2369 (license license:gpl3+)))
2370
9e9c71eb
CM
2371(define-public emacs-ffap-rfc-space
2372 (package
2373 (name "emacs-ffap-rfc-space")
2374 (version "12")
2375 (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html")
2376 (source (origin
02736daa 2377 (method url-fetch)
9e9c71eb
CM
2378 (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el")
2379 (sha256
2380 (base32
2381 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck"))))
2382 (build-system emacs-build-system)
9e9c71eb
CM
2383 (synopsis "Make ffap recognize an RFC with a space before its number")
2384 (description "The Internet Engineering Task Force (IETF) and the
2385Internet Society (ISOC) publish various Internet-related protocols and
2386specifications as \"Request for Comments\" (RFC) documents. The
2387built-in Emacs module \"ffap\" (Find File at Point) has the ability to
2388recognize names at point which look like \"RFC1234\" and \"RFC-1234\"
2389and load the appropriate RFC from a remote server. However, it fails
2390to recognize a name like \"RFC 1234\". This package enhances ffap so
2391that it correctly finds RFCs even when a space appears before the
2392number.")
2393 (license license:gpl3+)))
9576cc72 2394
db1a4960
RW
2395(define-public emacs-org-bullets
2396 (package
2397 (name "emacs-org-bullets")
2398 (version "0.2.4")
2399 (source
2400 (origin
2401 (method url-fetch)
2402 (uri (string-append "https://github.com/sabof/org-bullets/archive/"
2403 version ".tar.gz"))
2404 (file-name (string-append name "-" version ".tar.gz"))
2405 (sha256
2406 (base32
2407 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh"))))
2408 (build-system emacs-build-system)
2409 (home-page "https://github.com/sabof/org-bullets")
2410 (synopsis "Show bullets in org-mode as UTF-8 characters")
2411 (description
2412 "This package provides an Emacs minor mode causing bullets in
2413@code{org-mode} to be rendered as UTF-8 characters.")
2414 (license license:gpl3+)))
2415
ed8bc028
RJ
2416(define-public emacs-org-trello
2417 (package
2418 (name "emacs-org-trello")
2419 (version "0.7.9")
2420 (source (origin
2421 (method url-fetch)
2422 (uri (string-append
2423 "https://github.com/org-trello/org-trello/archive/"
2424 version ".tar.gz"))
2425 (file-name (string-append name "-" version ".tar.gz"))
2426 (sha256
2427 (base32
2428 "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf"))))
2429 (build-system emacs-build-system)
2430 (propagated-inputs
2431 `(("emacs-deferred" ,emacs-deferred)
2432 ("emacs-request" ,emacs-request)
2433 ("emacs-dash" ,emacs-dash)
2434 ("emacs-s" ,emacs-s)))
2435 (home-page "https://org-trello.github.io")
2436 (synopsis "Emacs minor mode for interacting with Trello")
2437 (description "This package provides an Emacs minor mode to extend
2438@code{org-mode} with Trello abilities. Trello is an online project
2439organizer.")
2440 (license license:gpl3+)))
2441
9576cc72
AP
2442(define-public emacs-zenburn-theme
2443 (package
2444 (name "emacs-zenburn-theme")
2445 (version "2.4")
2446 (source (origin
2447 (method url-fetch)
2448 (uri (string-append
2449 "https://github.com/bbatsov/zenburn-emacs/archive/v"
2450 version ".tar.gz"))
2451 (file-name (string-append name "-" version ".tar.gz"))
2452 (sha256
2453 (base32
2454 "0lyi84bm8sa7vj40n6zg6rlbsmi53mi1y9xn6gkjj29s5zbcnlg7"))))
2455 (build-system emacs-build-system)
2456 (home-page "http://github.com/bbatsov/zenburn-emacs")
2457 (synopsis "Low contrast color theme for Emacs")
2458 (description
2459 "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs.
2460It is built on top of the custom theme support in Emacs 24 or later.")
2461 (license license:gpl3+)))
2462
012c8b35
RW
2463(define-public emacs-solarized-theme
2464 (package
2465 (name "emacs-solarized-theme")
2466 (version "1.2.2")
2467 (source (origin
2468 (method url-fetch)
2469 (uri (string-append "https://github.com/bbatsov/solarized-emacs/"
2470 "archive/v" version ".tar.gz"))
2471 (file-name (string-append name "-" version ".tar.gz"))
2472 (sha256
2473 (base32
2474 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx"))))
2475 (build-system emacs-build-system)
2476 (propagated-inputs
090bdb9e 2477 `(("emacs-dash" ,emacs-dash)))
012c8b35
RW
2478 (home-page "http://github.com/bbatsov/solarized-emacs")
2479 (synopsis "Port of the Solarized theme for Emacs")
2480 (description
2481 "Solarized for Emacs is a port of the Solarized theme for Vim. This
2482package provides a light and a dark variant.")
2483 (license license:gpl3+)))
2484
e7761186
AV
2485(define-public emacs-ahungry-theme
2486 (package
2487 (name "emacs-ahungry-theme")
2488 (version "1.3.0")
2489 (source
2490 (origin (method url-fetch)
f32ffa04 2491 (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-"
e7761186
AV
2492 version ".tar"))
2493 (sha256
2494 (base32
2495 "1p2zaq0s4bbl5cx6wyab24wamw7m0mysb0v47dqjmnvfc25z84rq"))))
2496 (build-system emacs-build-system)
2497 (home-page "https://github.com/ahungry/color-theme-ahungry")
2498 (synopsis "Ahungry color theme for Emacs")
2499 (description "Ahungry theme for Emacs provides bright and bold colors.
2500If you load it from a terminal, you will be able to make use of the
2501transparent background. If you load it from a GUI, it will default to a
2502dark background.")
2503 (license license:gpl3+)))
2504
5c447e28
AP
2505(define-public emacs-smartparens
2506 (package
2507 (name "emacs-smartparens")
ec14d215 2508 (version "1.9.0")
5c447e28
AP
2509 (source (origin
2510 (method url-fetch)
2511 (uri (string-append
2512 "https://github.com/Fuco1/smartparens/archive/"
2513 version ".tar.gz"))
2514 (file-name (string-append name "-" version ".tar.gz"))
2515 (sha256
2516 (base32
ec14d215 2517 "12065r7h1s9v8lnq5mk3654dkw4cq60ky8aniqq5n2ivv6qd2d4q"))))
5c447e28
AP
2518 (build-system emacs-build-system)
2519 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
2520 (home-page "https://github.com/Fuco1/smartparens")
2521 (synopsis "Paredit-like insertion, wrapping and navigation with user
2522defined pairs")
2523 (description
2524 "Smartparens is a minor mode for Emacs that deals with parens pairs
2525and tries to be smart about it. It started as a unification effort to
2526combine functionality of several existing packages in a single,
2527compatible and extensible way to deal with parentheses, delimiters, tags
2528and the like. Some of these packages include autopair, textmate,
2529wrap-region, electric-pair-mode, paredit and others. With the basic
2530features found in other packages it also brings many improvements as
2531well as completely new features.")
2532 (license license:gpl3+)))
8eeb301d 2533
8f82641a
RJ
2534(define-public emacs-hl-todo
2535 (package
2536 (name "emacs-hl-todo")
4e0d9fce 2537 (version "1.7.4")
8f82641a
RJ
2538 (source (origin
2539 (method url-fetch)
2540 (uri (string-append
2541 "https://raw.githubusercontent.com/tarsius/hl-todo/"
2542 version "/hl-todo.el"))
0e7c4089 2543 (file-name (string-append "hl-todo-" version ".el"))
8f82641a
RJ
2544 (sha256
2545 (base32
4e0d9fce 2546 "016ivl4s0ysrm1xbfi86j5xcs759fcb0mkspxw81x8mpi3yb46ya"))))
8f82641a
RJ
2547 (build-system emacs-build-system)
2548 (home-page "https://github.com/tarsius/hl-todo")
2549 (synopsis "Emacs mode to highlight TODO and similar keywords")
2550 (description
2551 "This package provides an Emacs mode to highlight TODO and similar
2552keywords in comments and strings. This package also provides commands for
2553moving to the next or previous keyword and to invoke @code{occur} with a
2554regexp that matches all known keywords.")
2555 (license license:gpl3+)))
2556
480f7350
RW
2557(define-public emacs-perspective
2558 (package
2559 (name "emacs-perspective")
2560 (version "1.12")
2561 (source
2562 (origin
2563 (method url-fetch)
2564 (uri (string-append "https://github.com/nex3/perspective-el/"
2565 "archive/" version ".tar.gz"))
2566 (file-name (string-append name "-" version ".tar.gz"))
2567 (sha256
2568 (base32
2569 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic"))))
2570 (build-system emacs-build-system)
2571 (home-page "http://github.com/nex3/perspective-el")
2572 (synopsis "Switch between named \"perspectives\"")
2573 (description
2574 "This package provides tagged workspaces in Emacs, similar to workspaces in
2575windows managers such as Awesome and XMonad. @code{perspective.el} provides
2576multiple workspaces (or \"perspectives\") for each Emacs frame. Each
2577perspective is composed of a window configuration and a set of buffers.
2578Switching to a perspective activates its window configuration, and when in a
2579perspective only its buffers are available by default.")
2580 ;; This package is released under the same license as Emacs (GPLv3+) or
2581 ;; the Expat license.
2582 (license license:gpl3+)))
2583
36e5d103
RJ
2584(define-public emacs-request
2585 (package
2586 (name "emacs-request")
2587 (version "0.2.0")
2588 (source (origin
2589 (method url-fetch)
2590 (uri (string-append
2591 "https://github.com/tkf/emacs-request/archive/v"
2592 version ".tar.gz"))
2593 (file-name (string-append name "-" version ".tar.gz"))
2594 (sha256
2595 (base32 "0sll9g9x15jxrdr58pdxx4iz74rnjd43q521iqm890i6hmkrgwap"))))
2596 (build-system emacs-build-system)
2597 (home-page "https://github.com/tkf/emacs-request")
2598 (synopsis "Package for speaking HTTP in Emacs Lisp")
2599 (description "This package provides a HTTP request library with multiple
2600backends. It supports url.el which is shipped with Emacs and the curl command
2601line program.")
2602 (license license:gpl3+)))
2603
f1b61e26 2604(define-public emacs-rudel
2605 (package
2606 (name "emacs-rudel")
2607 (version "0.3.1")
2608 (source
2609 (origin
2610 (method url-fetch)
2611 (uri (string-append "http://elpa.gnu.org/packages/rudel-"
2612 version ".tar"))
2613 (sha256
2614 (base32
2615 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz"))))
2616 (build-system emacs-build-system)
2617 (home-page "http://rudel.sourceforge.net/")
2618 (synopsis "Collaborative editing framework")
2619 (description
2620 "Rudel is a collaborative editing environment for GNU Emacs. Its purpose
2621is to share buffers with other users in order to edit the contents of those
2622buffers collaboratively. Rudel supports multiple backends to enable
2623communication with other collaborative editors using different protocols,
2624though currently Obby (for use with the Gobby editor) is the only
2625fully-functional one.")
2626 (license license:gpl3+)))
2627
79b3d3ea
RW
2628(define-public emacs-hydra
2629 (package
2630 (name "emacs-hydra")
86d959bd 2631 (version "0.13.6")
79b3d3ea
RW
2632 (source
2633 (origin
2634 (method url-fetch)
2635 (uri (string-append "https://github.com/abo-abo/hydra/archive/"
2636 version ".tar.gz"))
2637 (file-name (string-append name "-" version ".tar.gz"))
2638 (sha256
2639 (base32
86d959bd 2640 "0575vh858gm35p57s49dy6pc2ij46dmj9zaa4z0cp98sqra3j3l0"))))
79b3d3ea
RW
2641 (build-system emacs-build-system)
2642 (home-page "https://github.com/abo-abo/hydra")
2643 (synopsis "Make Emacs bindings that stick around")
2644 (description
2645 "This package can be used to tie related commands into a family of short
2646bindings with a common prefix---a Hydra. Once you summon the Hydra (through
2647the prefixed binding), all the heads can be called in succession with only a
2648short extension. Any binding that isn't the Hydra's head vanquishes the
2649Hydra. Note that the final binding, besides vanquishing the Hydra, will still
2650serve its original purpose, calling the command assigned to it. This makes
2651the Hydra very seamless; it's like a minor mode that disables itself
2652automatically.")
2653 (license license:gpl3+)))
2654
12db29ba
RW
2655(define-public emacs-ivy
2656 (package
2657 (name "emacs-ivy")
2658 (version "0.8.0")
2659 (source
2660 (origin
2661 (method url-fetch)
2662 (uri (string-append "https://github.com/abo-abo/swiper/archive/"
2663 version ".tar.gz"))
2664 (file-name (string-append name "-" version ".tar.gz"))
2665 (sha256
2666 (base32
2667 "18nqwl05is71dzswnvpfhlg7b0v3apvbsfxrwab9c0apwavi892q"))))
2668 (build-system emacs-build-system)
2669 (propagated-inputs
2670 `(("emacs-hydra" ,emacs-hydra)))
2671 (home-page "http://oremacs.com/swiper/")
2672 (synopsis "Incremental vertical completion for Emacs")
2673 (description
2674 "This package provides @code{ivy-read} as an alternative to
2675@code{completing-read} and similar functions. No attempt is made to determine
2676the best candidate. Instead, the user can navigate candidates with
2677@code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by
2678splitting the input text by spaces and re-building it into a regular
2679expression.")
2680 (license license:gpl3+)))
2681
5edc24ec
RW
2682(define-public emacs-avy
2683 (package
2684 (name "emacs-avy")
2685 (version "0.4.0")
2686 (source
2687 (origin
2688 (method url-fetch)
2689 (uri (string-append "https://github.com/abo-abo/avy/archive/"
2690 version ".tar.gz"))
2691 (file-name (string-append name "-" version ".tar.gz"))
2692 (sha256
2693 (base32
2694 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796"))))
2695 (build-system emacs-build-system)
2696 (home-page "https://github.com/abo-abo/avy")
2697 (synopsis "Tree-based completion for Emacs")
2698 (description
2699 "This package provides a generic completion method based on building a
2700balanced decision tree with each candidate being a leaf. To traverse the tree
2701from the root to a desired leaf, typically a sequence of @code{read-key} can
2702be used.
2703
2704In order for @code{read-key} to make sense, the tree needs to be visualized
2705appropriately, with a character at each branch node. So this completion
2706method works only for things that you can see on your screen, all at once,
2707such as the positions of characters, words, line beginnings, links, or
2708windows.")
2709 (license license:gpl3+)))
2710
93dba17c
RW
2711(define-public emacs-ace-window
2712 (package
2713 (name "emacs-ace-window")
2714 (version "0.9.0")
2715 (source
2716 (origin
2717 (method url-fetch)
2718 (uri (string-append "https://github.com/abo-abo/ace-window/archive/"
2719 version ".tar.gz"))
2720 (file-name (string-append name "-" version ".tar.gz"))
2721 (sha256
2722 (base32
2723 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn"))))
2724 (build-system emacs-build-system)
2725 (propagated-inputs
2726 `(("emacs-avy" ,emacs-avy)))
2727 (home-page "https://github.com/abo-abo/ace-window")
2728 (synopsis "Quickly switch windows in Emacs")
2729 (description
2730 "@code{ace-window} is meant to replace @code{other-window}.
2731In fact, when there are only two windows present, @code{other-window} is
2732called. If there are more, each window will have its first character
2733highlighted. Pressing that character will switch to that window.")
2734 (license license:gpl3+)))
2735
e1918ce4
RW
2736(define-public emacs-iedit
2737 (package
2738 (name "emacs-iedit")
2739 (version "0.9.9")
2740 (source
2741 (origin
2742 (method url-fetch)
2743 (uri (string-append "https://github.com/victorhge/iedit/archive/v"
2744 version ".tar.gz"))
2745 (file-name (string-append name "-" version ".tar.gz"))
2746 (sha256
2747 (base32
2748 "00v86zllcsivmiibigbr91qij2zdf1lr9db8z8again1sn63wkdj"))))
2749 (build-system emacs-build-system)
2750 (home-page "http://www.emacswiki.org/emacs/Iedit")
2751 (synopsis "Edit multiple regions in the same way simultaneously")
2752 (description
2753 "This package is an Emacs minor mode and allows you to edit one
2754occurrence of some text in a buffer (possibly narrowed) or region, and
2755simultaneously have other occurrences edited in the same way.
2756
2757You can also use Iedit mode as a quick way to temporarily show only the buffer
2758lines that match the current text being edited. This gives you the effect of
2759a temporary @code{keep-lines} or @code{occur}.")
2760 (license license:gpl3+)))
2761
a5338dd4
RW
2762(define-public emacs-lispy
2763 (package
2764 (name "emacs-lispy")
2765 (version "0.26.0")
2766 (source
2767 (origin
2768 (method url-fetch)
2769 (uri (string-append "https://github.com/abo-abo/lispy/archive/"
2770 version ".tar.gz"))
2771 (file-name (string-append name "-" version ".tar.gz"))
2772 (sha256
2773 (base32
2774 "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl"))))
2775 (build-system emacs-build-system)
2776 (propagated-inputs
2777 `(("emacs-ace-window" ,emacs-ace-window)
2778 ("emacs-iedit" ,emacs-iedit)
2779 ("emacs-ivy" ,emacs-ivy)
2780 ("emacs-hydra" ,emacs-hydra)))
2781 (home-page "https://github.com/abo-abo/lispy")
2782 (synopsis "Modal S-expression editing")
2783 (description
2784 "Due to the structure of Lisp syntax it's very rare for the programmer to
2785want to insert characters right before \"(\" or right after \")\". Thus
2786unprefixed printable characters can be used to call commands when the point is
2787at one of these special locations. Lispy provides unprefixed keybindings for
2788S-expression editing when point is at the beginning or end of an
2789S-expression.")
2790 (license license:gpl3+)))
2791
8eeb301d
AP
2792(define-public emacs-clojure-mode
2793 (package
2794 (name "emacs-clojure-mode")
2795 (version "5.3.0")
2796 (source (origin
2797 (method url-fetch)
2798 (uri (string-append
2799 "https://github.com/clojure-emacs/clojure-mode/archive/"
2800 version ".tar.gz"))
2801 (file-name (string-append name "-" version ".tar.gz"))
2802 (sha256
2803 (base32
2804 "0gi8ra3ap5m3mz4qh1yxp2cldn7z9xcxvypznr6rrlc6a9l8s5a6"))))
2805 (build-system emacs-build-system)
2806 (home-page "http://github.com/clojure-emacs/clojure-mode")
2807 (synopsis "Major mode for Clojure code")
2808 (description
2809 "This Emacs package provides font-lock, indentation, navigation and basic
2810refactoring for the @uref{http://clojure.org, Clojure programming language}.
2811It is recommended to use @code{clojure-mode} with paredit or smartparens.")
2812 (license license:gpl3+)))
d345491a
AP
2813
2814(define-public emacs-epl
2815 (package
2816 (name "emacs-epl")
2817 (version "0.8")
2818 (source (origin
2819 (method url-fetch)
2820 (uri (string-append
2821 "https://github.com/cask/epl/archive/"
2822 version ".tar.gz"))
2823 (sha256
2824 (base32
2825 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc"))))
2826 (build-system emacs-build-system)
2827 (home-page "http://github.com/cask/epl")
2828 (synopsis "Emacs Package Library")
2829 (description
2830 "A package management library for Emacs, based on @code{package.el}.
2831
2832The purpose of this library is to wrap all the quirks and hassle of
2833@code{package.el} into a sane API.")
2834 (license license:gpl3+)))
ad6c4bc4
AP
2835
2836(define-public emacs-queue
2837 (package
2838 (name "emacs-queue")
2839 (version "0.1.1")
2840 (source (origin
02736daa 2841 (method url-fetch)
f32ffa04 2842 (uri (string-append "https://elpa.gnu.org/packages/queue-"
ad6c4bc4
AP
2843 version ".el"))
2844 (sha256
2845 (base32
2846 "0jw24fxqnf9qcaf2nh09cnds1kqfk7hal35dw83x1ari95say391"))))
2847 (build-system emacs-build-system)
2848 (home-page "http://www.dr-qubit.org/tags/computing-code-emacs.html")
2849 (synopsis "Queue data structure for Emacs")
2850 (description
2851 "This Emacs library provides queue data structure. These queues can be
2852used both as a first-in last-out (FILO) and as a first-in first-out (FIFO)
2853stack, i.e. elements can be added to the front or back of the queue, and can
2854be removed from the front. This type of data structure is sometimes called an
2855\"output-restricted deque\".")
2856 (license license:gpl3+)))
32abfcf4
AP
2857
2858(define-public emacs-pkg-info
2859 (package
2860 (name "emacs-pkg-info")
2861 (version "0.6")
2862 (source (origin
2863 (method url-fetch)
2864 (uri (string-append
2865 "https://github.com/lunaryorn/pkg-info.el/archive/"
2866 version ".tar.gz"))
2867 (file-name (string-append name "-" version ".tar.gz"))
2868 (sha256
2869 (base32
2870 "1gy1jks5mmm02gg1c8gcyr4f8a9s5ggzhk56gv33b9mzjqzi5rd5"))))
2871 (build-system emacs-build-system)
2872 (propagated-inputs `(("emacs-epl" ,emacs-epl)))
2873 (home-page "https://github.com/lunaryorn/pkg-info.el")
2874 (synopsis "Information about Emacs packages")
2875 (description
2876 "This library extracts information from the installed Emacs packages.")
2877 (license license:gpl3+)))
565bccc5
AP
2878
2879(define-public emacs-spinner
2880 (package
2881 (name "emacs-spinner")
cd4d96b8 2882 (version "1.7.3")
565bccc5 2883 (source (origin
02736daa 2884 (method url-fetch)
f32ffa04 2885 (uri (string-append "https://elpa.gnu.org/packages/spinner-"
565bccc5
AP
2886 version ".el"))
2887 (sha256
2888 (base32
cd4d96b8 2889 "19kp1mmndbmw11sgvv2ggfjl4pyf5zrsbh3871f0965pw9z8vahd"))))
565bccc5
AP
2890 (build-system emacs-build-system)
2891 (home-page "https://github.com/Malabarba/spinner.el")
2892 (synopsis "Emacs mode-line spinner for operations in progress")
2893 (description
2894 "This Emacs package adds spinners and progress-bars to the mode-line for
2895ongoing operations.")
2896 (license license:gpl3+)))
62a45cb6
AP
2897
2898(define-public emacs-seq
2899 (package
2900 (name "emacs-seq")
a5dee1ac 2901 (version "2.19")
62a45cb6
AP
2902 (source (origin
2903 (method url-fetch)
f32ffa04 2904 (uri (string-append "https://elpa.gnu.org/packages/seq-"
62a45cb6
AP
2905 version ".tar"))
2906 (sha256
2907 (base32
a5dee1ac 2908 "11hb7is6a4h1lscjcfrzh576j0g3m5yjydn16s6x5bxp5gsr6zha"))))
62a45cb6 2909 (build-system emacs-build-system)
f32ffa04 2910 (home-page "https://elpa.gnu.org/packages/seq.html")
62a45cb6
AP
2911 (synopsis "Sequence manipulation functions for Emacs")
2912 (description
2913 "This Emacs library provides sequence-manipulation functions that
2914complement basic functions provided by @code{subr.el}. All provided functions
2915work on lists, strings and vectors.")
2916 (license license:gpl3+)))
6ede256f
DT
2917
2918(define-public emacs-better-defaults
2919 (package
2920 (name "emacs-better-defaults")
2921 (version "0.1.3")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri (string-append "https://github.com/technomancy/better-defaults"
2926 "/archive/" version ".tar.gz"))
13384842 2927 (file-name (string-append name "-" version ".tar.gz"))
6ede256f
DT
2928 (sha256
2929 (base32
2930 "08fg4zslzlxbvyil5g4gwvwd22fh4zsgqprs5wh9hv1rgc6757m2"))))
2931 (build-system emacs-build-system)
2932 (home-page "https://github.com/technomancy/better-defaults")
2933 (synopsis "Better defaults for Emacs")
2934 (description
2935 "Better defaults attempts to address the most obvious deficiencies of the
2936Emacs default configuration in uncontroversial ways that nearly everyone can
2937agree upon.")
2938 (license license:gpl3+)))
c5c08f1b 2939
7034791a
RJ
2940(define-public emacs-eprime
2941 (let ((commit "17a481af26496be91c07139a9bfc05cfe722506f"))
2942 (package
2943 (name "emacs-eprime")
2944 (version (string-append "20140513-" (string-take commit 7)))
2945 (source (origin
2946 (method url-fetch)
2947 (uri (string-append "https://raw.githubusercontent.com"
2948 "/AndrewHynes/eprime-mode/"
2949 commit "/eprime-mode.el"))
2950 (file-name (string-append "eprime-" version ".el"))
2951 (sha256
2952 (base32
2953 "0v68lggkyq7kbcr9zyi573m2g2x251xy3jadlaw8kx02l8krwq8d"))))
2954 (build-system emacs-build-system)
2955 (home-page "https://github.com/AndrewHynes/eprime-mode")
2956 (synopsis "E-prime checking mode for Emacs")
2957 (description "This package provides an E-prime checking mode for Emacs
2958that highlights non-conforming text. The subset of the English language called
2959E-Prime forbids the use of the \"to be\" form to strengthen your writing.")
2960 (license license:gpl3+))))
2961
41184943
RJ
2962(define-public emacs-ess
2963 (package
2964 (name "emacs-ess")
2965 (version "16.04")
2966 (source (origin
2967 (method url-fetch)
2968 (uri (string-append "http://ess.r-project.org/downloads/ess/ess-"
2969 version ".tgz"))
2970 (sha256
2971 (base32
2972 "0w7mbbajn377gdmvnd21mpyr368b2ia46gq6cb99y4y5rspf9pcg"))))
2973 (build-system gnu-build-system)
2974 (arguments
2975 `(#:tests? #f ; There is no test suite.
2976 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
2977 #:phases
2978 (modify-phases %standard-phases
2979 (delete 'configure)
2980 (add-before 'build 'more-shebang-patching
2981 (lambda* (#:key inputs #:allow-other-keys)
2982 (substitute* "Makeconf"
2983 (("SHELL = /bin/sh")
2984 (string-append "SHELL = " (which "sh")))))))))
2985 (inputs
2986 `(("emacs" ,emacs-minimal)
2d7c4ae3 2987 ("r-minimal" ,r-minimal)))
41184943
RJ
2988 (native-inputs
2989 `(("perl" ,perl)
2990 ("texinfo" ,texinfo)
2991 ("texlive" ,texlive)))
2992 (home-page "http://ess.r-project.org/")
2993 (synopsis "Emacs mode for statistical analysis programs")
2994 (description "Emacs Speaks Statistics (ESS) is an add-on package for GNU
2995Emacs. It is designed to support editing of scripts and interaction with
2996various statistical analysis programs such as R and OpenBUGS.")
2997 (license license:gpl2+)))
2998
c5c08f1b
DT
2999(define-public emacs-smex
3000 (package
3001 (name "emacs-smex")
3002 (version "3.0")
3003 (source (origin
3004 (method url-fetch)
3005 (uri (string-append "https://raw.githubusercontent.com"
3006 "/nonsequitur/smex/" version "/smex.el"))
3007 (file-name (string-append "smex-" version ".el"))
3008 (sha256
3009 (base32
3010 "0ar310zx9k5y4i1vl2rawvi712xj9gx77160860jbs691p77cxqp"))))
3011 (build-system emacs-build-system)
3012 (home-page "http://github.com/nonsequitur/smex/")
3013 (synopsis "M-x interface with Ido-style fuzzy matching")
3014 (description
3015 "Smex is a M-x enhancement for Emacs. Built on top of Ido, it provides a
3016convenient interface to your recently and most frequently used commands. And
3017to all the other commands, too.")
3018 (license license:gpl3+)))
3e5be84b
DT
3019
3020(define-public emacs-js2-mode
3021 (package
3022 (name "emacs-js2-mode")
3023 (version "20150909")
3024 (source (origin
3025 (method url-fetch)
3026 (uri (string-append "https://github.com/mooz/js2-mode/archive/"
3027 version ".tar.gz"))
3028 (file-name (string-append name "-" version ".tar.gz"))
3029 (sha256
3030 (base32
3031 "1nsm36c4kwb473p13i58fgrnlk8fbn3rdhj47d9xz70az4ra44q0"))))
3032 (build-system emacs-build-system)
3033 (home-page "https://github.com/mooz/js2-mode/")
3034 (synopsis "Improved JavaScript editing mode for Emacs")
3035 (description
3036 "Js2-mode provides a JavaScript major mode for Emacs that is more
3037advanced than the built-in javascript-mode. Features include accurate syntax
3038highlighting using a recursive-descent parser, on-the-fly reporting of syntax
3039errors and strict-mode warnings, smart line-wrapping within comments and
3040strings, and code folding.")
3041 (license license:gpl3+)))
b78b6e80
DT
3042
3043(define-public emacs-markdown-mode
3044 (package
3045 (name "emacs-markdown-mode")
3046 (version "2.1")
3047 (source (origin
3048 (method url-fetch)
3049 (uri (string-append "https://raw.githubusercontent.com/jrblevin"
3050 "/markdown-mode/v" version
3051 "/markdown-mode.el"))
3052 (file-name (string-append "markdown-mode-" version ".el"))
3053 (sha256
3054 (base32
3055 "1faibar32jnjia9202swblw91q6z1g5s4k9xmypwjahfh8yznl6w"))))
3056 (build-system emacs-build-system)
3057 (home-page "http://jblevins.org/projects/markdown-mode/")
3058 (synopsis "Emacs Major mode for Markdown files")
3059 (description
3060 "Markdown-mode is a major mode for editing Markdown-formatted text files
3061in Emacs.")
3062 (license license:gpl3+)))
a2670dde
DT
3063
3064(define-public emacs-projectile
3065 (package
3066 (name "emacs-projectile")
3067 (version "0.13.0")
3068 (source (origin
3069 (method url-fetch)
3070 (uri (string-append "https://raw.githubusercontent.com/bbatsov"
3071 "/projectile/v" version "/projectile.el"))
3072 (file-name (string-append "projectile-" version ".el"))
3073 (sha256
3074 (base32
3075 "1pc6xb61hzxzc5hkqkli1ab0s7wz0rfgx4kcn9y30ksvhw18smbz"))))
3076 (build-system emacs-build-system)
3077 (propagated-inputs
3078 `(("emacs-dash" ,emacs-dash)
3079 ("emacs-pkg-info" ,emacs-pkg-info)))
3080 (home-page "https://github.com/bbatsov/projectile")
3081 (synopsis "Manage and navigate projects in Emacs easily")
3082 (description
3083 "This library provides easy project management and navigation. The
3084concept of a project is pretty basic - just a folder containing special file.
3085Currently git, mercurial and bazaar repos are considered projects by default.
3086If you want to mark a folder manually as a project just create an empty
3087.projectile file in it.")
3088 (license license:gpl3+)))
4aea1e01
DT
3089
3090(define-public emacs-elfeed
3091 (package
3092 (name "emacs-elfeed")
6bd4a889 3093 (version "2.1.0")
4aea1e01
DT
3094 (source (origin
3095 (method url-fetch)
3096 (uri (string-append "https://github.com/skeeto/elfeed/archive/"
3097 version ".tar.gz"))
3098 (file-name (string-append name "-" version ".tar.gz"))
3099 (sha256
3100 (base32
6bd4a889 3101 "145glas04zd0s2rmnif46vhyijs4z03v871gfp1dcrwxvvvns8ap"))))
4aea1e01
DT
3102 (build-system emacs-build-system)
3103 (home-page "https://github.com/skeeto/elfeed")
3104 (synopsis "Atom/RSS feed reader for Emacs")
3105 (description
3106 "Elfeed is an extensible web feed reader for Emacs, supporting both Atom
3107and RSS, with a user interface inspired by notmuch.")
3108 (license license:gpl3+)))
c86f0207
DT
3109
3110(define-public emacs-rainbow-delimiters
3111 (package
3112 (name "emacs-rainbow-delimiters")
3113 (version "2.1.3")
3114 (source (origin
3115 (method url-fetch)
3116 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3117 "/rainbow-delimiters/" version
3118 "/rainbow-delimiters.el"))
3119 (file-name (string-append "rainbow-delimiters-" version ".el"))
3120 (sha256
3121 (base32
3122 "1b3kampwsjabhcqdp0khgff13wc5jqhy3rbvaa12vnv7qy22l9ck"))))
3123 (build-system emacs-build-system)
3124 (home-page "https://github.com/Fanael/rainbow-delimiters")
3125 (synopsis "Highlight brackets according to their depth")
3126 (description
3127 "Rainbow-delimiters is a \"rainbow parentheses\"-like mode for Emacs which
3128highlights parentheses, brackets, and braces according to their depth. Each
3129successive level is highlighted in a different color, making it easy to spot
3130matching delimiters, orient yourself in the code, and tell which statements
3131are at a given level.")
3132 (license license:gpl3+)))
65b49ae7 3133
d95e8e01
RJ
3134(define-public emacs-rainbow-identifiers
3135 (package
3136 (name "emacs-rainbow-identifiers")
3137 (version "0.2.2")
3138 (source (origin
3139 (method url-fetch)
3140 (uri (string-append "https://raw.githubusercontent.com/Fanael"
3141 "/rainbow-identifiers/" version
3142 "/rainbow-identifiers.el"))
3143 (file-name (string-append "rainbow-identifiers-" version ".el"))
3144 (sha256
3145 (base32
3146 "0325abxj47k0g1i8nqrq70w2wr6060ckhhf92krv1s072b3jzm31"))))
3147 (build-system emacs-build-system)
3148 (home-page "https://github.com/Fanael/rainbow-identifiers")
3149 (synopsis "Highlight identifiers in source code")
3150 (description
3151 "Rainbow identifiers mode is an Emacs minor mode providing highlighting of
3152identifiers based on their names. Each identifier gets a color based on a hash
3153of its name.")
3154 (license license:bsd-2)))
3155
fede3a90
RW
3156(define-public emacs-visual-fill-column
3157 (package
3158 (name "emacs-visual-fill-column")
3159 (version "1.7")
3160 (source (origin
3161 (method url-fetch)
3162 (uri (string-append "https://codeload.github.com/joostkremers/"
3163 "visual-fill-column/tar.gz/" version))
3164 (file-name (string-append name "-" version ".tar.gz"))
3165 (sha256
3166 (base32
3167 "12vn7kdq2mpz9hgibbn1vhpf23lcm7c26k3fkz8nidhygwl5x5lq"))))
3168 (build-system emacs-build-system)
3169 (home-page "https://github.com/joostkremers/visual-fill-column")
3170 (synopsis "Fill-column for visual-line-mode")
3171 (description
3172 "@code{visual-fill-column-mode} is a small Emacs minor mode that mimics
3173the effect of @code{fill-column} in @code{visual-line-mode}. Instead of
3174wrapping lines at the window edge, which is the standard behaviour of
3175@code{visual-line-mode}, it wraps lines at @code{fill-column}. If
3176@code{fill-column} is too large for the window, the text is wrapped at the
3177window edge.")
3178 (license license:gpl3+)))
3179
65b49ae7
DT
3180(define-public emacs-ido-completing-read+
3181 (package
3182 (name "emacs-ido-completing-read+")
3183 (version "3.12")
3184 (source (origin
3185 (method url-fetch)
3186 (uri (string-append "https://raw.githubusercontent.com"
3187 "/DarwinAwardWinner/ido-ubiquitous/v"
3188 version "/ido-completing-read+.el"))
3189 (file-name (string-append "ido-completing-read+-" version ".el"))
3190 (sha256
3191 (base32
3192 "1cyalb0p7nfsm4n6n9q6rjmvn6adqc0fq8ybnlj3n41n289dkfjf"))))
3193 (build-system emacs-build-system)
3194 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3195 (synopsis "Replacement for completing-read using ido")
3196 (description
3197 "The ido-completing-read+ function is a wrapper for ido-completing-read.
3198Importantly, it detects edge cases that ordinary ido cannot handle and either
3199adjusts them so ido can handle them, or else simply falls back to the standard
3200Emacs completion function instead.")
3201 (license license:gpl3+)))
529fe992
DT
3202
3203(define-public emacs-ido-ubiquitous
3204 (package
3205 (name "emacs-ido-ubiquitous")
3206 (version "3.12")
3207 (source (origin
3208 (method url-fetch)
3209 (uri (string-append "https://raw.githubusercontent.com"
3210 "/DarwinAwardWinner/ido-ubiquitous/v"
3211 version "/ido-ubiquitous.el"))
3212 (file-name (string-append "ido-ubiquitous-" version ".el"))
3213 (sha256
3214 (base32
3215 "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2"))))
3216 (build-system emacs-build-system)
3217 (propagated-inputs
3218 `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+)))
3219 (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
3220 (synopsis "Use ido (nearly) everywhere")
3221 (description
3222 "Ido-ubiquitous enables ido-style completion for almost every function
3223that uses the standard completion function completing-read.")
3224 (license license:gpl3+)))
63de1231
DT
3225
3226(define-public emacs-yaml-mode
3227 (package
3228 (name "emacs-yaml-mode")
3229 (version "0.0.12")
3230 (source (origin
3231 (method url-fetch)
3232 (uri (string-append "https://raw.githubusercontent.com/yoshiki"
3233 "/yaml-mode/v" version "/yaml-mode.el"))
3234 (file-name (string-append "yaml-mode-" version ".el"))
3235 (sha256
3236 (base32
e08580c5 3237 "17wq433ycli0qx4gdhgrmb392qblm6y2dwcyn38j5ja1lasfb0ax"))))
63de1231
DT
3238 (build-system emacs-build-system)
3239 (home-page "https://github.com/yoshiki/yaml-mode")
3240 (synopsis "Major mode for editing YAML files")
3241 (description
3242 "Yaml-mode is an Emacs major mode for editing files in the YAML data
3243serialization format. It was initially developed by Yoshiki Kurihara and many
3244features were added by Marshall Vandegrift. As YAML and Python share the fact
3245that indentation determines structure, this mode provides indentation and
3246indentation command behavior very similar to that of python-mode.")
3247 (license license:gpl3+)))
7529c883
DT
3248
3249(define-public emacs-web-mode
3250 (package
3251 (name "emacs-web-mode")
3252 (version "14")
3253 (source (origin
3254 (method url-fetch)
3255 (uri (string-append "https://raw.githubusercontent.com/fxbois"
3256 "/web-mode/v" version "/web-mode.el"))
3257 (file-name (string-append "web-mode-" version ".el"))
3258 (sha256
3259 (base32
3260 "086hik5fmxg3kx74qmransx9cz961qd22d4m6ah2dw6cwaj1s3s5"))))
3261 (build-system emacs-build-system)
3262 (synopsis "Major mode for editing web templates")
3263 (description "Web-mode is an Emacs major mode for editing web templates
3264aka HTML files embedding parts (CSS/JavaScript) and blocks (pre rendered by
3265client/server side engines). Web-mode is compatible with many template
3266engines: PHP, JSP, ASP, Django, Twig, Jinja, Mustache, ERB, FreeMarker,
3267Velocity, Cheetah, Smarty, CTemplate, Mustache, Blade, ErlyDTL, Go Template,
3268Dust.js, React/JSX, Angularjs, ejs, etc.")
3269 (home-page "http://web-mode.org/")
3270 (license license:gpl3+)))
ae609001
MJ
3271
3272(define-public emacs-helm
3273 (package
3274 (name "emacs-helm")
fa6a082e 3275 (version "1.9.8")
ae609001
MJ
3276 (source (origin
3277 (method url-fetch)
3278 (uri (string-append
3279 "https://github.com/" name "/helm/archive/v"
3280 version ".tar.gz"))
3281 (file-name (string-append name "-" version ".tar.gz"))
3282 (sha256
3283 (base32
fa6a082e 3284 "019dpzr6l83k1fgxn40aqxjvrpz4dl5d9vi7fc5wjnifmxaqxia6"))))
ae609001
MJ
3285 (build-system emacs-build-system)
3286 (propagated-inputs
3287 `(("emacs-async" ,emacs-async)
3288 ("emacs-popup" ,emacs-popup)))
3289 (home-page "https://emacs-helm.github.io/helm/")
3290 (synopsis "Incremental completion and selection narrowing
3291framework for Emacs")
3292 (description "Helm is incremental completion and selection narrowing
3293framework for Emacs. It will help steer you in the right direction when
3294you're looking for stuff in Emacs (like buffers, files, etc). Helm is a fork
3295of @code{anything.el} originally written by Tamas Patrovic and can be
3296considered to be its successor. Helm sets out to clean up the legacy code in
3297@code{anything.el} and provide a cleaner, leaner and more modular tool, that's
3298not tied in the trap of backward compatibility.")
3299 (license license:gpl3+)))
f9be4366
AP
3300
3301(define-public emacs-cider
3302 (package
3303 (name "emacs-cider")
3304 (version "0.12.0")
3305 (source (origin
3306 (method url-fetch)
3307 (uri (string-append
3308 "https://github.com/clojure-emacs/cider/archive/v"
3309 version ".tar.gz"))
3310 (file-name (string-append name "-" version ".tar.gz"))
3311 (sha256
3312 (base32
3313 "00qzbfjy3w6bcnki7gw0clmi0cc5yqjdrcyhgv4ymijjs79h9p5s"))))
3314 (build-system emacs-build-system)
3315 (propagated-inputs
3316 `(("emacs-clojure-mode" ,emacs-clojure-mode)
3317 ("emacs-spinner" ,emacs-spinner)
3318 ("emacs-pkg-info" ,emacs-pkg-info)
3319 ("emacs-queue" ,emacs-queue)
3320 ("emacs-seq" ,emacs-seq)))
3321 (home-page "https://cider.readthedocs.org/")
3322 (synopsis "Clojure development environment for Emacs")
3323 (description
3324 "CIDER (Clojure Interactive Development Environment that Rocks) aims to
3325provide an interactive development experience similar to the one you'd get
3326when programming in Emacs Lisp, Common Lisp (with SLIME or Sly), Scheme (with
3327Geiser) and Smalltalk.
3328
3329CIDER is the successor to the now deprecated combination of using SLIME +
3330swank-clojure for Clojure development.
3331
3332There are plenty of differences between CIDER and SLIME, but the core ideas
3333are pretty much the same (and SLIME served as the principle inspiration for
3334CIDER).")
3335 (license license:gpl3+)))
26e08b4d 3336
3337(define-public emacs-lua-mode
3338 (package
3339 (name "emacs-lua-mode")
3340 (version "20151025")
3341 (source (origin
3342 (method url-fetch)
3343 (uri (string-append
3344 "https://github.com/immerrr/lua-mode/archive/v"
3345 version ".tar.gz"))
3346 (file-name (string-append name "-" version ".tar.gz"))
3347 (sha256
3348 (base32
3349 "0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v"))))
3350 (build-system emacs-build-system)
3351 (home-page "http://github.com/immerrr/lua-mode/")
3352 (synopsis "Major mode for lua")
3353 (description
3354 "This Emacs package provides a mode for @uref{https://www.lua.org/,
3355Lua programing language}.")
3356 (license license:gpl2+)))
0202612d 3357
3358(define-public emacs-ebuild-mode
3359 (package
3360 (name "emacs-ebuild-mode")
3361 (version "1.30")
3362 (source (origin
3363 (method url-fetch)
3364 (uri (string-append
3365 "https://dev.gentoo.org/~ulm/emacs/ebuild-mode"
3366 "-" version ".tar.xz"))
3367 (file-name (string-append name "-" version ".tar.xz"))
3368 (sha256
3369 (base32
3370 "0vp7lq1kvmh1b2bms2x1kf2k76dy9m02d7cirkxpiglwaxa0h9vz"))))
3371 (build-system emacs-build-system)
3372 (home-page "https://devmanual.gentoo.org")
3373 (synopsis "Major modes for Gentoo package files")
3374 (description
3375 "This Emacs package provides modes for ebuild, eclass, eblit, GLEP42
3376news items, openrc and runscripts.")
3377 (license license:gpl2+)))
a9fbe94e 3378
2edbfbf5 3379(define-public emacs-evil
3380 (package
3381 (name "emacs-evil")
3382 (version "1.2.12")
3383 (source
3384 (origin
3385 (method url-fetch)
3386 (uri (string-append "https://bitbucket.org/lyro/evil/get/"
3387 version ".tar.bz2"))
3388 (file-name (string-append name "-" version ".tar.bz2"))
3389 (sha256
3390 (base32
3391 "17cda9fnbq3gmjcxs3lyq64gxswrf37y864bm53rldwsk3khq2yi"))))
3392 (build-system emacs-build-system)
3393 (propagated-inputs
3394 `(("emacs-undo-tree" ,emacs-undo-tree)
3395 ("emacs-goto-chg" ,emacs-goto-chg)))
3396 (home-page "https://bitbucket.com/lyro/evil")
3397 (synopsis "Extensible Vi layer for Emacs")
3398 (description
3399 "Evil is an extensible vi layer for Emacs. It emulates the
3400main features of Vim, and provides facilities for writing custom
3401extensions.")
3402 (license license:gpl3+)))
3403
ce74e520 3404(define-public emacs-goto-chg
3405 (package
3406 (name "emacs-goto-chg")
3407 (version "1.6")
3408 (source
3409 (origin
3410 (method url-fetch)
3411 ;; There is no versioned source.
3412 (uri "https://www.emacswiki.org/emacs/download/goto-chg.el")
3413 (sha256
3414 (base32
3415 "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"))))
3416 (build-system emacs-build-system)
3417 ;; There is no other home page.
3418 (home-page "https://www.emacswiki.org/emacs/goto-chg.el")
3419 (synopsis "Go to the last change in the Emacs buffer")
3420 (description
3421 "This package provides @code{M-x goto-last-change} command that goes to
3422the point of the most recent edit in the current Emacs buffer. When repeated,
3423go to the second most recent edit, etc. Negative argument, @kbd{C-u -}, is
3424used for reverse direction.")
3425 (license license:gpl2+)))
3426
a1eba1be
VD
3427(define-public emacs-monroe
3428 (package
3429 (name "emacs-monroe")
b125649a 3430 (version "0.3.1")
a1eba1be
VD
3431 (source
3432 (origin
3433 (method url-fetch)
b125649a
VD
3434 (uri (string-append "https://github.com/sanel/monroe/archive/"
3435 version ".tar.gz"))
3436 (file-name (string-append name "-" version ".tar.gz"))
a1eba1be
VD
3437 (sha256
3438 (base32
b125649a 3439 "0icdx8shkd951phlnmcq1vqaxp1l667q5rjscskc5r22aylakh4w"))))
a1eba1be 3440 (build-system emacs-build-system)
b125649a 3441 (home-page "https://github.com/sanel/monroe")
a1eba1be
VD
3442 (synopsis "Clojure nREPL client for Emacs")
3443 (description
3444 "Monroe is a nREPL client for Emacs, focused on simplicity and easy
3445distribution, primarily targeting Clojure users")
3446 (license license:gpl3+)))
3447
a9fbe94e
LC
3448(define-public emacs-writegood-mode
3449 (package
3450 (name "emacs-writegood-mode")
3451 (version "2.0.2")
3452 (home-page "http://github.com/bnbeckwith/writegood-mode")
3453 (source (origin
3454 (method git-fetch)
3455 (uri (git-reference
3456 (url home-page)
3457 (commit (string-append "v" version))))
3458 (sha256
3459 (base32
3460 "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"))
3461 (file-name (string-append name "-checkout"))))
3462 (build-system emacs-build-system)
3463 (synopsis "Polish up poor writing on the fly")
3464 (description
3465 "This minor mode tries to find and highlight problems with your writing
3466in English as you type. It primarily detects \"weasel words\" and abuse of
3467passive voice.")
3468 (license license:gpl3+)))
e08ca4b9 3469
3470(define-public emacs-neotree
3471 (package
3472 (name "emacs-neotree")
3473 (version "0.2.1")
3474 (home-page "https://github.com/jaypei/emacs-neotree")
3475 (source (origin
3476 (method url-fetch)
3477 (uri (string-append
3478 "https://github.com/jaypei/" name
3479 "/archive/v" version ".tar.gz"))
3480 (sha256
3481 (base32
3482 "0cr37pdkwjgfijfws5bjskfh1rq9rfngxblcj6v5383vpmn83q7s"))
f409d0aa 3483 (file-name (string-append name "-" version ".tar.gz"))))
e08ca4b9 3484 (build-system emacs-build-system)
3485 (synopsis "Folder tree view for Emacs")
3486 (description "This Emacs package provides a folder tree view.")
3487 (license license:gpl3+)))
59065bb3
NG
3488
3489(define-public emacs-org
3490 (package
3491 (name "emacs-org")
a26d6bcc 3492 (version "20170210")
59065bb3
NG
3493 (source (origin
3494 (method url-fetch)
c2662820 3495 (uri (string-append "http://elpa.gnu.org/packages/org-"
59065bb3
NG
3496 version ".tar"))
3497 (sha256
3498 (base32
a26d6bcc 3499 "15415wh3w8d4c8hd7qfrfdjnjb1zppmrkg8cdp7hw2ilyr90c0bn"))))
59065bb3
NG
3500 (build-system emacs-build-system)
3501 (home-page "http://orgmode.org/")
3502 (synopsis "Outline-based notes management and organizer")
3503 (description "Org is an Emacs mode for keeping notes, maintaining TODO
3504lists, and project planning with a fast and effective plain-text system. It
3505also is an authoring system with unique support for literate programming and
3506reproducible research.")
3507 (license license:gpl3+)))
41392b9a 3508
3509(define-public emacs-flx
3510 (package
3511 (name "emacs-flx")
3512 (version "0.6.1")
3513 (source
3514 (origin
3515 (method url-fetch)
3516 (uri (string-append "https://github.com/lewang/"
3517 "flx/archive/v" version ".tar.gz"))
3518 (sha256
3519 (base32
3520 "0bkcpnf1j4i2fcc2rllwbz62l00sw2mcia6rm5amgwvlkqavmkv6"))
3521 (file-name (string-append name "-" version ".tar.gz"))))
3522 (build-system emacs-build-system)
3523 (home-page "https://github.com/lewang/flx")
3524 (synopsis "Fuzzy matching for Emacs")
3525 (description
3526 "Flx provides fuzzy matching for emacs a la sublime text.
3527The sorting algorithm is a balance between word beginnings (abbreviation)
3528and contiguous matches (substring). The longer the substring match,
3529the higher it scores. This maps well to how we think about matching.
3530Flx has support for ido (interactively do things) through flx-ido.")
3531 (license license:gpl3+)))
9657aba4 3532
3533(define-public emacs-cyberpunk-theme
3534 (package
3535 (name "emacs-cyberpunk-theme")
5cd41292 3536 (version "1.18")
9657aba4 3537 (source
3538 (origin
3539 (method url-fetch)
3540 (uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
3541 "archive/" version ".tar.gz"))
3542 (sha256
3543 (base32
5cd41292 3544 "0pxzbw0qjxgkhhs3gn3k9qy41kl1a4pfzbw83dk24l4b3nxd24wg"))
9657aba4 3545 (file-name (string-append name "-" version ".tar.gz"))))
3546 (build-system emacs-build-system)
3547 (home-page "https://github.com/n3mo/cyberpunk-theme.el")
3548 (synopsis "Cyberpunk theme for emacs built-in color theme support")
3549 (description
3550 "Cyberpunk color theme for the emacs 24+ built-in color theme support
3551known loosely as deftheme. Many mode-specific customizations are included.")
3552 (license license:gpl3+)))
840224aa 3553
8f493950 3554(define-public emacs-danneskjold-theme
3555 (let* ((commit "8733d2fe8743e8a01826ea6d4430ef376c727e57")
3556 (revision "1"))
3557 (package
3558 (name "emacs-danneskjold-theme")
3559 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
3560 (home-page "https://github.com/rails-to-cosmos/danneskjold-theme")
3561 (source
3562 (origin
3563 (method git-fetch)
3564 (uri (git-reference
3565 (url home-page)
3566 (commit commit)))
3567 (file-name (string-append name "-" version "-checkout"))
3568 (sha256
3569 (base32
3570 "0s6rbsb0y8i8m5b9xm4gw1p1cxsxdqnqxqqb638pygz9f76mbir1"))))
3571 (build-system emacs-build-system)
3572 (arguments
3573 `(#:phases
3574 (modify-phases %standard-phases
3575 (add-after 'unpack 'delete-screenshots
3576 (lambda _
3577 (delete-file-recursively "screenshots") #t)))))
3578 (synopsis "High-contrast Emacs theme")
3579 (description
3580 "@code{danneskjold-theme} is a high-contrast theme for Emacs.")
3581 (license license:gpl3+))))
3582
1ba67b62 3583(define-public emacs-dream-theme
3584 (let* ((commit "107a11d74365046f28a1802a2bdb5e69e4a7488b")
3585 (revision "1"))
3586 (package
3587 (name "emacs-dream-theme")
3588 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
3589 (source
3590 (origin
3591 (method git-fetch)
3592 (uri (git-reference
3593 (url "https://github.com/djcb/dream-theme")
3594 (commit commit)))
3595 (file-name (string-append name "-" version "-checkout"))
3596 (sha256
3597 (base32
3598 "0za18nfkq4xqm35k6006vsixcbmvmxqgma4iw5sw37h8vmcsdylk"))))
3599 (build-system emacs-build-system)
3600 (home-page "https://github.com/djcb/dream-theme")
3601 (synopsis "High-contrast Emacs theme")
3602 (description
3603 "@code{dream-theme} is a dark, clean theme for Emacs. It is inspired
3604by zenburn, sinburn and similar themes, but slowly diverging from them.")
3605 (license license:gpl3+))))
3606
840224aa 3607(define-public emacs-auto-complete
3608 (package
3609 (name "emacs-auto-complete")
3610 (version "1.5.1")
3611 (source
3612 (origin
3613 (method url-fetch)
3614 (uri (string-append "https://github.com/auto-complete/"
3615 "auto-complete/archive/v" version ".tar.gz"))
3616 (sha256
3617 (base32
3618 "1jvq4lj00hwml75lpmlciazy8f3bbg13gffsfnl835p4qd8l7yqv"))
3619 (file-name (string-append name "-" version ".tar.gz"))))
3620 (build-system emacs-build-system)
3621 (propagated-inputs
3622 `(("emacs-popup" ,emacs-popup)))
3623 (home-page "https://github.com/auto-complete/auto-complete")
3624 (synopsis "Intelligent auto-completion extension for Emacs")
3625 (description
3626 "Auto-Complete is an intelligent auto-completion extension for Emacs.
3627It extends the standard Emacs completion interface and provides an environment
3628that allows users to concentrate more on their own work. Its features are:
3629a visual interface, reduce overhead of completion by using statistic method,
3630extensibility.")
3631 (license license:gpl3+)))
154c71e0
AI
3632
3633(define-public m17n-db
3634 (package
3635 (name "m17n-db")
3636 (version "1.7.0")
3637 (source
3638 (origin
3639 (method url-fetch)
3640 (uri (string-append "mirror://savannah/m17n/m17n-db-"
3641 version ".tar.gz"))
3642 (sha256
3643 (base32 "1w08hnsbknrcjlzp42c99bgwc9hzsnf5m4apdv0dacql2s09zfm2"))))
3644 (build-system gnu-build-system)
3645 (inputs
7c90d0f4 3646 `(("gettext" ,gettext-minimal)))
154c71e0
AI
3647 (arguments
3648 `(#:configure-flags
3649 (list (string-append "--with-charmaps="
3650 (assoc-ref %build-inputs "libc")
3651 "/share/i18n/charmaps"))))
3652 ;; With `guix lint' the home-page URI returns a small page saying
3653 ;; that your browser does not handle frames. This triggers the "URI
3654 ;; returns suspiciously small file" warning.
3655 (home-page "http://www.nongnu.org/m17n/")
3656 (synopsis "Multilingual text processing library (database)")
3657 (description "The m17n library realizes multilingualization of
3658many aspects of applications. The m17n library represents
3659multilingual text as an object named M-text. M-text is a string with
3660attributes called text properties, and designed to substitute for
3661string in C. Text properties carry any information required to input,
3662display and edit the text.
3663
3664This package contains the library database.")
3665 (license license:lgpl2.1+)))
a80b60f4
AI
3666
3667(define-public m17n-lib
3668 (package
3669 (name "m17n-lib")
3670 (version "1.7.0")
3671 (source
3672 (origin
3673 (method url-fetch)
966a543b
LC
3674 (uri (string-append "mirror://savannah/m17n/m17n-lib-"
3675 version ".tar.gz"))
a80b60f4
AI
3676 (sha256
3677 (base32 "10yv730i25g1rpzv6q49m6xn4p8fjm7jdwvik2h70sn8w3hm7f4f"))))
3678 (build-system gnu-build-system)
3679 (inputs
3680 `(("fribidi" ,fribidi)
3681 ("gd" ,gd)
3682 ("libotf" ,libotf)
3683 ("libxft" ,libxft)
3684 ("libxml2" ,libxml2)
3685 ("m17n-db" ,m17n-db)))
3686 (arguments
3687 `(#:parallel-build? #f))
3688 ;; With `guix lint' the home-page URI returns a small page saying
3689 ;; that your browser does not handle frames. This triggers the "URI
3690 ;; returns suspiciously small file" warning.
3691 (home-page "http://www.nongnu.org/m17n/")
3692 (synopsis "Multilingual text processing library (runtime)")
3693 (description "The m17n library realizes multilingualization of
3694many aspects of applications. The m17n library represents
3695multilingual text as an object named M-text. M-text is a string with
3696attributes called text properties, and designed to substitute for
3697string in C. Text properties carry any information required to input,
3698display and edit the text.
3699
3700This package contains the library runtime.")
3701 (license license:lgpl2.1+)))
71d3ee1c
AI
3702
3703(define-public emacs-nginx-mode
3704 (package
3705 (name "emacs-nginx-mode")
3706 (version "1.1.4")
3707 (source
3708 (origin
3709 (method url-fetch)
3710 (uri (string-append
3711 "https://github.com/ajc/nginx-mode/archive/v"
3712 version ".tar.gz"))
3713 (file-name (string-append name "-" version ".tar.gz"))
3714 (sha256
3715 (base32
3716 "1lvkj07kq0jkskr2f61vqb5rlrbnaz9a76ikq40w6925i2r970rr"))))
3717 (build-system emacs-build-system)
3718 (home-page "https://github.com/ajc/nginx-mode")
3719 (synopsis "Emacs major mode for editing nginx config files")
3720 (description "This package provides an Emacs major mode for
3721editing nginx config files.")
3722 (license license:gpl2+)))
8f50634b
FB
3723
3724(define-public emacs-stream
3725 (package
3726 (name "emacs-stream")
3727 (version "2.2.0")
3728 (home-page "https://github.com/NicolasPetton/stream")
3729 (source
3730 (origin
3731 (method url-fetch)
3732 (file-name (string-append name "-" version ".tar.gz"))
3733 (uri (string-append home-page "/archive/"version ".tar.gz"))
3734 (sha256
3735 (base32 "03ql4nqfz5pn55mjly6clhvc3g7x2d28kj7mrlqmigvjbql39xxc"))))
3736 (build-system emacs-build-system)
3737 (synopsis "Implementation of streams for Emacs")
3738 (description "This library provides an implementation of streams for Emacs.
3739Streams are implemented as delayed evaluation of cons cells.")
3740 (license license:gpl3+)))
0fc06f3e
FB
3741
3742(define-public emacs-el-search
3743 (let ((commit "f26277bfbb3fc3fc74beea6592f294c439796bd4")
3744 (revision "1"))
3745 (package
3746 (name "emacs-el-search")
3747 ;; No ufficial release.
3748 (version (string-append "0.0-" revision "." (string-take commit 7)))
3749 (home-page "https://github.com/emacsmirror/el-search")
3750 (source
3751 (origin
3752 (method git-fetch)
3753 (file-name (string-append name "-" version ".tar.gz"))
3754 (uri (git-reference
3755 (commit commit)
3756 (url (string-append home-page ".git"))))
3757 (sha256
3758 (base32 "12xf40h9sb7xxg2r97gsia94q02543mgiiiw46fzh1ac7b7993g6"))))
3759 (build-system emacs-build-system)
3760 (inputs `(("emacs-stream" ,emacs-stream)))
3761 (synopsis "Expression based interactive search for emacs-lisp-mode")
3762 (description "This package provides expression based interactive search
3763procedures for emacs-lisp-mode.")
3764 (license license:gpl3+))))
1e523180
MO
3765
3766(define-public emacs-ht
3767 (package
3768 (name "emacs-ht")
3769 (version "2.1")
3770 (source
3771 (origin
3772 (method url-fetch)
3773 (uri (string-append
3774 "https://github.com/Wilfred/ht.el/archive/"
3775 version ".tar.gz"))
3776 (file-name (string-append name "-" version ".tar.gz"))
3777 (sha256
3778 (base32
3779 "1lpba36kzxcc966fvsbrfpy8ah9gnvay0yk26gbyjil0rggrbqzj"))))
3780 (build-system emacs-build-system)
3781 (propagated-inputs `(("emacs-dash" ,emacs-dash)))
3782 (home-page "https://github.com/Wilfred/ht.el")
3783 (synopsis "Hash table library for Emacs")
3784 (description
3785 "This package simplifies the use of hash tables in elisp. It also
3786provides functions to convert hash tables from and to alists and plists.")
3787 (license license:gpl3+)))
3788
521f5d96
MO
3789(define-public emacs-log4e
3790 (package
3791 (name "emacs-log4e")
3792 (version "0.3.0")
3793 (source
3794 (origin
3795 (method url-fetch)
3796 (uri (string-append
3797 "https://github.com/aki2o/log4e/archive/v"
3798 version ".tar.gz"))
3799 (file-name (string-append name "-" version ".tar.gz"))
3800 (sha256
3801 (base32
3802 "0nbdpbw353snda3v19l9hsm6gimppwnpxj18amm350bm81lyim2g"))))
3803 (build-system emacs-build-system)
3804 (arguments
3805 `(#:phases
3806 (modify-phases %standard-phases
3807 (add-after 'unpack 'remove-tests
3808 ;; Guile builder complains about null characters in some
3809 ;; strings of test files. Remove "test" directory (it is not
3810 ;; needed anyway).
3811 (lambda _
3812 (delete-file-recursively "test"))))))
3813 (home-page "https://github.com/aki2o/log4e")
3814 (synopsis "Logging framework for elisp")
3815 (description
3816 "This package provides a logging framework for elisp. It allows
3817you to deal with multiple log levels.")
3818 (license license:gpl3+)))
ba117841
MO
3819
3820(define-public emacs-gntp
3821 (package
3822 (name "emacs-gntp")
3823 (version "0.1")
3824 (source
3825 (origin
3826 (method url-fetch)
3827 (uri (string-append
3828 "https://github.com/tekai/gntp.el/archive/v"
3829 version ".tar.gz"))
3830 (file-name (string-append name "-" version ".tar.gz"))
3831 (sha256
3832 (base32
3833 "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
3834 (build-system emacs-build-system)
3835 (home-page "https://github.com/tekai/gntp.el")
3836 (synopsis "Growl Notification Protocol for Emacs")
3837 (description
3838 "This package implements the Growl Notification Protocol GNTP
3839described at @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx}.
3840It is incomplete as it only lets you send but not receive
3841notifications.")
3842 (license license:bsd-3)))
2c5e31fa
MO
3843
3844(define-public emacs-alert
3845 (package
3846 (name "emacs-alert")
3847 (version "1.2")
3848 (source
3849 (origin
3850 (method url-fetch)
3851 (uri (string-append
3852 "https://github.com/jwiegley/alert/archive/v"
3853 version ".tar.gz"))
3854 (file-name (string-append name "-" version ".tar.gz"))
3855 (sha256
3856 (base32
3857 "1693kck3k2iz5zhpmxwqyafxm68hr6gzs60lkxd3j1wlp2c9fwyr"))))
3858 (build-system emacs-build-system)
3859 (propagated-inputs
3860 `(("emacs-gntp" ,emacs-gntp)
3861 ("emacs-log4e" ,emacs-log4e)))
3862 (home-page "https://github.com/jwiegley/alert")
3863 (synopsis "Growl-style notification system for Emacs")
3864 (description
3865 "Alert is a Growl-workalike for Emacs which uses a common notification
3866interface and multiple, selectable \"styles\", whose use is fully
3867customizable by the user.")
3868 (license license:gpl2+)))
c695ed3c
MO
3869
3870(define-public emacs-mu4e-alert
3871 (package
3872 (name "emacs-mu4e-alert")
3873 (version "0.4")
3874 (source
3875 (origin
3876 (method url-fetch)
3877 (uri (string-append
3878 "https://github.com/iqbalansari/mu4e-alert/archive/v"
3879 version ".tar.gz"))
3880 (file-name (string-append name "-" version ".tar.gz"))
3881 (sha256
3882 (base32
3883 "1m63vyb2v5r9swmqv56q80jca8172nk5vaxl7bcm5zbfs8zsvr4b"))))
3884 (build-system emacs-build-system)
3885 (propagated-inputs
3886 `(("emacs-alert" ,emacs-alert)
3887 ("emacs-s" ,emacs-s)
3888 ("emacs-ht" ,emacs-ht)))
3889 (home-page "https://github.com/iqbalansari/mu4e-alert")
3890 (synopsis "Desktop notification for mu4e")
3891 (description
3892 "This package provides desktop notifications for mu4e.
3893Additionally it can display the number of unread emails in the
3894mode-line.")
3895 (license license:gpl3+)))
e967dd9c 3896
3897(define-public emacs-pretty-mode
3898 (package
3899 (name "emacs-pretty-mode")
3900 (version "2.0.3")
3901 (source
3902 (origin
3903 (method url-fetch)
3904 (uri (string-append "https://github.com/akatov/pretty-mode/"
3905 "archive/" version ".tar.gz"))
3906 (file-name (string-append name "-" version ".tar.gz"))
3907 (sha256
3908 (base32
3909 "1fan7m4vnqs8kpg7r54kx3g7faadkpkf9kzarfv8n57kq8w157pl"))))
3910 (build-system emacs-build-system)
3911 (home-page "https://github.com/akatov/pretty-mode")
3912 (synopsis "Redisplay parts of the buffer as Unicode symbols")
3913 (description
3914 "Emacs minor mode for redisplaying parts of the buffer as pretty symbols.")
3915 (license license:gpl3+)))
c1029f86
RW
3916
3917(define-public emacs-yasnippet
3918 (package
3919 (name "emacs-yasnippet")
3920 (version "0.11.0")
3921 (source (origin
3922 (method url-fetch)
3923 (uri (string-append "https://github.com/joaotavora/yasnippet/"
3924 "archive/" version ".tar.gz"))
3925 (file-name (string-append name "-" version ".tar.gz"))
3926 (sha256
3927 (base32
3928 "15di6mkkf09b7qddpsrm0qln02hji3sx8blya5jxssi9wxxx9iq5"))))
3929 (build-system emacs-build-system)
3930 (home-page "http://github.com/joaotavora/yasnippet")
3931 (synopsis "Yet another snippet extension for Emacs")
3932 (description
3933 "YASnippet is a template system for Emacs. It allows you to type an
3934abbreviation and automatically expand it into function templates.")
3935 (license license:gpl3+)))
55fa5349
AI
3936
3937(define-public emacs-memoize
3938 (package
3939 (name "emacs-memoize")
3940 (version "20130421.b55eab0")
3941 (source
3942 (origin
3943 (method git-fetch)
3944 (uri (git-reference
3945 (url "https://github.com/skeeto/emacs-memoize")
3946 (commit "b55eab0cb6ab05d941e07b8c01f1655c0cf1dd75")))
3947 (file-name (string-append name "-" version ".tar.gz"))
3948 (sha256
3949 (base32
3950 "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"))))
3951 (build-system emacs-build-system)
3952 (arguments
3953 `(#:phases
3954 (modify-phases %standard-phases
3955 (add-before 'install 'check
3956 (lambda _
3957 (zero? (system* "emacs" "-batch" "-l" "memoize.el"
3958 "-l" "memoize-test.el"
3959 "-f" "ert-run-tests-batch-and-exit")))))))
3960 (home-page "https://github.com/skeeto/emacs-memoize")
3961 (synopsis "Emacs lisp memoization library")
3962 (description "@code{emacs-memoize} is an Emacs library for
3963memoizing functions.")
3964 (license license:unlicense)))