You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11674 lines
450 KiB
11674 lines
450 KiB
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
|
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
|
;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver <mhw@netris.org>
|
|
;;; Copyright © 2014, 2015, 2016, 2017, 2018 Alex Kost <alezost@gmail.com>
|
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
|
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
|
;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
|
|
;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
|
;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
|
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
|
;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
|
|
;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
|
|
;;; Copyright © 2016, 2017 Nils Gillmann <ng0@n0.is>
|
|
;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
|
|
;;; Copyright © 2016, 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com>
|
|
;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
|
|
;;; Copyright © 2017 Christopher Baines <mail@cbaines.net>
|
|
;;; Copyright © 2017, 2018 Mathieu Othacehe <m.othacehe@gmail.com>
|
|
;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
|
|
;;; Copyright © 2017 Vasile Dumitrascu <va511e@yahoo.com>
|
|
;;; Copyright © 2017, 2018 Kyle Meyer <kyle@kyleam.com>
|
|
;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
|
|
;;; Copyright © 2017 George Clemmer <myglc2@gmail.com>
|
|
;;; Copyright © 2017 Feng Shu <tumashu@163.com>
|
|
;;; Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
;;; Copyright © 2017, 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
|
;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
|
|
;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
|
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
|
;;; Copyright © 2017 Mike Gerwitz <mtg@gnu.org>
|
|
;;; Copyright © 2017, 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
|
;;; Copyright © 2018 Sohom Bhattacharjee <soham.bhattacharjee15@gmail.com>
|
|
;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
|
|
;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
|
|
;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
|
;;; Copyright © 2018 Jack Hill <jackhill@jackhill.us>
|
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
|
;;;
|
|
;;; This file is part of GNU Guix.
|
|
;;;
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
;;; under the terms of the GNU General Public License as published by
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
;;; your option) any later version.
|
|
;;;
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;;; GNU General Public License for more details.
|
|
;;;
|
|
;;; You should have received a copy of the GNU General Public License
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (gnu packages emacs)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix download)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix monads)
|
|
#:use-module (guix store)
|
|
#:use-module (guix build-system gnu)
|
|
#:use-module (guix build-system emacs)
|
|
#:use-module (guix build-system glib-or-gtk)
|
|
#:use-module (guix build-system trivial)
|
|
#:use-module (gnu packages)
|
|
#:use-module (gnu packages audio)
|
|
#:use-module (gnu packages bash)
|
|
#:use-module (gnu packages cmake)
|
|
#:use-module (gnu packages code)
|
|
#:use-module (gnu packages databases)
|
|
#:use-module (gnu packages guile)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages ncurses)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages tex)
|
|
#:use-module (gnu packages texinfo)
|
|
#:use-module (gnu packages tcl)
|
|
#:use-module (gnu packages tls)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages xorg)
|
|
#:use-module (gnu packages lesstif)
|
|
#:use-module (gnu packages image)
|
|
#:use-module (gnu packages linux)
|
|
#:use-module (gnu packages version-control)
|
|
#:use-module (gnu packages imagemagick)
|
|
#:use-module (gnu packages w3m)
|
|
#:use-module (gnu packages wget)
|
|
#:use-module (gnu packages autotools)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages compression)
|
|
#:use-module (gnu packages xml)
|
|
#:use-module (gnu packages glib)
|
|
#:use-module (gnu packages acl)
|
|
#:use-module (gnu packages mail)
|
|
#:use-module (gnu packages package-management)
|
|
#:use-module (gnu packages perl)
|
|
#:use-module (gnu packages pdf)
|
|
#:use-module (gnu packages scheme)
|
|
#:use-module (gnu packages statistics)
|
|
#:use-module (gnu packages xiph)
|
|
#:use-module (gnu packages mp3)
|
|
#:use-module (gnu packages gettext)
|
|
#:use-module (gnu packages fribidi)
|
|
#:use-module (gnu packages gd)
|
|
#:use-module (gnu packages fontutils)
|
|
#:use-module (gnu packages password-utils)
|
|
#:use-module (gnu packages pulseaudio)
|
|
#:use-module (gnu packages xdisorg)
|
|
#:use-module (gnu packages shells)
|
|
#:use-module (gnu packages gnupg)
|
|
#:use-module (guix utils)
|
|
#:use-module (srfi srfi-1)
|
|
#:use-module (ice-9 match))
|
|
|
|
(define-public emacs
|
|
(package
|
|
(name "emacs")
|
|
(version "26.1")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://gnu/emacs/emacs-"
|
|
version ".tar.xz"))
|
|
(sha256
|
|
(base32
|
|
"0b6k1wq44rc8gkvxhi1bbjxbz3cwg29qbq8mklq2az6p1hjgrx0w"))
|
|
(patches (search-patches "emacs-exec-path.patch"
|
|
"emacs-fix-scheme-indent-function.patch"
|
|
"emacs-source-date-epoch.patch"))
|
|
(modules '((guix build utils)))
|
|
(snippet
|
|
;; Delete the bundled byte-compiled elisp files and
|
|
;; generated autoloads.
|
|
'(with-directory-excursion "lisp"
|
|
(for-each delete-file
|
|
(append (find-files "." "\\.elc$")
|
|
(find-files "." "loaddefs\\.el$")
|
|
;; This is the only "autoloads" file that
|
|
;; does not have "*loaddefs.el" name.
|
|
'("eshell/esh-groups.el")))
|
|
|
|
;; Make sure Tramp looks for binaries in the right places on
|
|
;; remote GuixSD machines, where 'getconf PATH' returns
|
|
;; something bogus.
|
|
(substitute* "net/tramp-sh.el"
|
|
;; Patch the line after "(defcustom tramp-remote-path".
|
|
(("\\(tramp-default-remote-path")
|
|
(format #f "(tramp-default-remote-path ~s ~s ~s ~s "
|
|
"~/.guix-profile/bin" "~/.guix-profile/sbin"
|
|
"/run/current-system/profile/bin"
|
|
"/run/current-system/profile/sbin")))
|
|
|
|
;; Make sure Man looks for C header files in the right
|
|
;; places.
|
|
(substitute* "man.el"
|
|
(("\"/usr/local/include\"" line)
|
|
(string-join
|
|
(list line
|
|
"\"~/.guix-profile/include\""
|
|
"\"/var/guix/profiles/system/profile/include\"")
|
|
" ")))
|
|
#t))))
|
|
(build-system glib-or-gtk-build-system)
|
|
(arguments
|
|
`(#:tests? #f ; no check target
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'configure 'fix-/bin/pwd
|
|
(lambda _
|
|
;; Use `pwd', not `/bin/pwd'.
|
|
(substitute* (find-files "." "^Makefile\\.in$")
|
|
(("/bin/pwd")
|
|
"pwd"))
|
|
#t))
|
|
(add-after 'install 'install-site-start
|
|
;; Use 'guix-emacs' in "site-start.el". This way, Emacs packages
|
|
;; provided by Guix and installed in
|
|
;; ~/.guix-profile/share/emacs/site-lisp/guix.d/PACKAGE-VERSION are
|
|
;; automatically found.
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(lisp-dir (string-append out "/share/emacs/site-lisp")))
|
|
(copy-file (assoc-ref inputs "guix-emacs.el")
|
|
(string-append lisp-dir "/guix-emacs.el"))
|
|
(with-output-to-file (string-append lisp-dir "/site-start.el")
|
|
(lambda ()
|
|
(display
|
|
(string-append "(when (require 'guix-emacs nil t)\n"
|
|
" (guix-emacs-autoload-packages))\n"))))
|
|
#t))))))
|
|
(inputs
|
|
`(("gnutls" ,gnutls)
|
|
("ncurses" ,ncurses)
|
|
|
|
;; TODO: Add the optional dependencies.
|
|
("libx11" ,libx11)
|
|
("gtk+" ,gtk+)
|
|
("libxft" ,libxft)
|
|
("libtiff" ,libtiff)
|
|
("giflib" ,giflib)
|
|
("libjpeg" ,libjpeg)
|
|
("imagemagick" ,imagemagick)
|
|
("acl" ,acl)
|
|
|
|
;; When looking for libpng `configure' links with `-lpng -lz', so we
|
|
;; must also provide zlib as an input.
|
|
("libpng" ,libpng)
|
|
("zlib" ,zlib)
|
|
|
|
("librsvg" ,librsvg)
|
|
("libxpm" ,libxpm)
|
|
("libxml2" ,libxml2)
|
|
("libice" ,libice)
|
|
("libsm" ,libsm)
|
|
("alsa-lib" ,alsa-lib)
|
|
("dbus" ,dbus)
|
|
|
|
;; multilingualization support
|
|
("libotf" ,libotf)
|
|
("m17n-lib" ,m17n-lib)))
|
|
(native-inputs
|
|
`(("guix-emacs.el" ,(search-auxiliary-file "emacs/guix-emacs.el"))
|
|
("pkg-config" ,pkg-config)
|
|
("texinfo" ,texinfo)))
|
|
|
|
(native-search-paths
|
|
(list (search-path-specification
|
|
(variable "INFOPATH")
|
|
(files '("share/info")))))
|
|
|
|
(home-page "https://www.gnu.org/software/emacs/")
|
|
(synopsis "The extensible, customizable, self-documenting text editor")
|
|
(description
|
|
"GNU Emacs is an extensible and highly customizable text editor. It is
|
|
based on an Emacs Lisp interpreter with extensions for text editing. Emacs
|
|
has been extended in essentially all areas of computing, giving rise to a
|
|
vast array of packages supporting, e.g., email, IRC and XMPP messaging,
|
|
spreadsheets, remote server editing, and much more. Emacs includes extensive
|
|
documentation on all aspects of the system, from basic editing to writing
|
|
large Lisp programs. It has full Unicode support for nearly all human
|
|
languages.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-minimal
|
|
;; This is the version that you should use as an input to packages that just
|
|
;; need to byte-compile .el files.
|
|
(package (inherit emacs)
|
|
(name "emacs-minimal")
|
|
(synopsis "The extensible text editor (used only for byte-compilation)")
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:configure-flags (list "--with-gnutls=no")
|
|
,@(substitute-keyword-arguments (package-arguments emacs)
|
|
((#:phases phases)
|
|
`(modify-phases ,phases
|
|
(delete 'install-site-start))))))
|
|
(inputs
|
|
`(("ncurses" ,ncurses)))
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)))))
|
|
|
|
(define-public emacs-no-x
|
|
(package (inherit emacs)
|
|
(name "emacs-no-x")
|
|
(synopsis "The extensible, customizable, self-documenting text
|
|
editor (console only)")
|
|
(build-system gnu-build-system)
|
|
(inputs (fold alist-delete
|
|
(package-inputs emacs)
|
|
'("libx11" "gtk+" "libxft" "libtiff" "giflib" "libjpeg"
|
|
"imagemagick" "libpng" "librsvg" "libxpm" "libice"
|
|
"libsm"
|
|
|
|
;; These depend on libx11, so remove them as well.
|
|
"libotf" "m17n-lib" "dbus")))))
|
|
|
|
(define-public emacs-no-x-toolkit
|
|
(package (inherit emacs)
|
|
(name "emacs-no-x-toolkit")
|
|
(synopsis "The extensible, customizable, self-documenting text
|
|
editor (without an X toolkit)" )
|
|
(build-system gnu-build-system)
|
|
(inputs (append `(("inotify-tools" ,inotify-tools))
|
|
(alist-delete "gtk+" (package-inputs emacs))))
|
|
(arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
|
|
(package-arguments emacs)))))
|
|
|
|
(define-public guile-emacs
|
|
(package (inherit emacs)
|
|
(name "guile-emacs")
|
|
(version "20150512.41120e0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "git://git.hcoop.net/git/bpt/emacs.git")
|
|
(commit "41120e0f595b16387eebfbf731fff70481de1b4b")))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(patches (search-patches "guile-emacs-fix-configure.patch"))
|
|
(sha256
|
|
(base32
|
|
"0lvcvsz0f4mawj04db35p1dvkffdqkz8pkhc0jzh9j9x2i63kcz6"))))
|
|
(native-inputs
|
|
`(("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("guile" ,guile-for-guile-emacs)
|
|
,@(package-native-inputs emacs)))
|
|
(arguments
|
|
(substitute-keyword-arguments `(;; Build fails if we allow parallel build.
|
|
#:parallel-build? #f
|
|
;; Tests aren't passing for now.
|
|
#:tests? #f
|
|
,@(package-arguments emacs))
|
|
((#:phases phases)
|
|
`(modify-phases ,phases
|
|
(add-after 'unpack 'autogen
|
|
(lambda _
|
|
(invoke "sh" "autogen.sh")))
|
|
;; Build sometimes fails: deps/dispnew.d: No such file or directory
|
|
(add-before 'build 'make-deps-dir
|
|
(lambda _
|
|
(invoke "mkdir" "-p" "src/deps")))))))))
|
|
|
|
|
|
;;;
|
|
;;; Emacs hacking.
|
|
;;;
|
|
|
|
(define-public geiser
|
|
(package
|
|
(name "geiser")
|
|
(version "0.10")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://savannah/geiser/" version
|
|
"/geiser-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0pj3l7p8d60c9b4vfprnv6g5l61d74pls4b5dvd84cn4ky9mzwjv"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'post-install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(symlink "geiser-install.el"
|
|
(string-append (assoc-ref outputs "out")
|
|
"/share/emacs/site-lisp/"
|
|
"geiser-autoloads.el"))
|
|
#t)))))
|
|
(inputs `(("guile" ,guile-2.2)))
|
|
(native-inputs `(("emacs" ,emacs-minimal)))
|
|
(home-page "https://nongnu.org/geiser/")
|
|
(synopsis "Collection of Emacs modes for Guile and Racket hacking")
|
|
(description
|
|
"Geiser is a collection of Emacs major and minor modes that conspire with
|
|
one or more Scheme implementations to keep the Lisp Machine Spirit alive. The
|
|
continuously running Scheme interpreter takes the center of the stage in
|
|
Geiser. A bundle of Elisp shims orchestrates the dialog between the Scheme
|
|
implementation, Emacs and, ultimately, the schemer, giving them access to live
|
|
metadata.")
|
|
(license license:bsd-3)))
|
|
|
|
(define-public paredit
|
|
(package
|
|
(name "emacs-paredit")
|
|
(version "24")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
|
|
version ".el"))
|
|
(sha256
|
|
(base32
|
|
"0pp3n8q6kc70blqsaw0zlzp6bc327dpgdrjr0cnh7hqg1lras7ka"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "http://mumble.net/~campbell/emacs/paredit/")
|
|
(synopsis "Emacs minor mode for editing parentheses")
|
|
(description
|
|
"ParEdit (paredit.el) is a minor mode for performing structured editing
|
|
of S-expression data. The typical example of this would be Lisp or Scheme
|
|
source code.
|
|
|
|
ParEdit helps **keep parentheses balanced** and adds many keys for moving
|
|
S-expressions and moving around in S-expressions. Its behavior can be jarring
|
|
for those who may want transient periods of unbalanced parentheses, such as
|
|
when typing parentheses directly or commenting out code line by line.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public git-modes
|
|
(package
|
|
(name "emacs-git-modes")
|
|
(version "1.2.8")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/git-modes/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0h49f68yn0q4lg054adqii4qja1z2pzybm7nf4kvpq7fzjrzgv1q"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/magit/git-modes")
|
|
(synopsis "Emacs major modes for Git configuration files")
|
|
(description
|
|
"This package provides Emacs major modes for editing various Git
|
|
configuration files, such as .gitattributes, .gitignore, and .git/config.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public git-modes/old-name
|
|
(deprecated-package "git-modes" git-modes))
|
|
|
|
(define-public emacs-with-editor
|
|
(package
|
|
(name "emacs-with-editor")
|
|
(version "2.7.3")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/with-editor/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1ln2s0kckzkv50qmr6x1kb2j30cfjii0vs6lpghg7ff4lav8jqgh"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)))
|
|
(home-page "https://github.com/magit/with-editor")
|
|
(synopsis "Emacs library for using Emacsclient as EDITOR")
|
|
(description
|
|
"This package provides an Emacs library to use the Emacsclient as
|
|
@code{$EDITOR} of child processes, making sure they know how to call home.
|
|
For remote processes a substitute is provided, which communicates with Emacs
|
|
on stdout instead of using a socket as the Emacsclient does.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public magit
|
|
(package
|
|
(name "magit")
|
|
(version "2.13.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/magit/releases/download/"
|
|
version "/" name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1ygaah3dd3nxpyd17297xgvdcgr7pgzzwlmpnmchki0kiwgg3sbc"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs `(("texinfo" ,texinfo)
|
|
("emacs" ,emacs-minimal)))
|
|
(inputs
|
|
`(("git" ,git)
|
|
("perl" ,perl)))
|
|
(propagated-inputs
|
|
`(("dash" ,emacs-dash)
|
|
("ghub" ,emacs-ghub)
|
|
("magit-popup" ,emacs-magit-popup)
|
|
("with-editor" ,emacs-with-editor)))
|
|
(arguments
|
|
`(#:test-target "test"
|
|
#:tests? #f ; tests are not included in the release
|
|
|
|
#:make-flags
|
|
(list (string-append "PREFIX=" %output)
|
|
;; Don't put .el files in a sub-directory.
|
|
(string-append "lispdir=" %output "/share/emacs/site-lisp")
|
|
(string-append "DASH_DIR="
|
|
(assoc-ref %build-inputs "dash")
|
|
"/share/emacs/site-lisp/guix.d/dash-"
|
|
,(package-version emacs-dash))
|
|
(string-append "GHUB_DIR="
|
|
(assoc-ref %build-inputs "ghub")
|
|
"/share/emacs/site-lisp/guix.d/ghub-"
|
|
,(package-version emacs-ghub))
|
|
(string-append "MAGIT_POPUP_DIR="
|
|
(assoc-ref %build-inputs "magit-popup")
|
|
"/share/emacs/site-lisp/guix.d/magit-popup-"
|
|
,(package-version emacs-magit-popup))
|
|
(string-append "WITH_EDITOR_DIR="
|
|
(assoc-ref %build-inputs "with-editor")
|
|
"/share/emacs/site-lisp/guix.d/with-editor-"
|
|
,(package-version emacs-with-editor)))
|
|
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(delete 'configure)
|
|
(add-before
|
|
'build 'patch-exec-paths
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(let ((perl (assoc-ref inputs "perl")))
|
|
(substitute* "lisp/magit-sequence.el"
|
|
(("perl") (string-append perl "/bin/perl")))
|
|
#t))))))
|
|
(home-page "https://magit.vc/")
|
|
(synopsis "Emacs interface for the Git version control system")
|
|
(description
|
|
"With Magit, you can inspect and modify your Git repositories with Emacs.
|
|
You can review and commit the changes you have made to the tracked files, for
|
|
example, and you can browse the history of past changes. There is support for
|
|
cherry picking, reverting, merging, rebasing, and other common Git
|
|
operations.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public magit-svn
|
|
(package
|
|
(name "magit-svn")
|
|
(version "2.2.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/magit-svn/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1c3n377v436zaxamlsz04y1ahdhp96x1vd43zaryv4y10m02ba47"))))
|
|
(build-system trivial-build-system)
|
|
(native-inputs `(("emacs" ,emacs-minimal)
|
|
("tar" ,tar)
|
|
("gzip" ,gzip)))
|
|
(propagated-inputs `(("dash" ,emacs-dash)
|
|
("with-editor" ,emacs-with-editor)
|
|
("magit" ,magit)))
|
|
(arguments
|
|
`(#:modules ((guix build utils)
|
|
(guix build emacs-utils))
|
|
|
|
#:builder
|
|
(begin
|
|
(use-modules (guix build utils)
|
|
(guix build emacs-utils))
|
|
|
|
(let* ((tar (string-append (assoc-ref %build-inputs "tar")
|
|
"/bin/tar"))
|
|
(PATH (string-append (assoc-ref %build-inputs "gzip")
|
|
"/bin"))
|
|
(emacs (string-append (assoc-ref %build-inputs "emacs")
|
|
"/bin/emacs"))
|
|
(magit (string-append (assoc-ref %build-inputs "magit")
|
|
"/share/emacs/site-lisp"))
|
|
(dash (string-append (assoc-ref %build-inputs "dash")
|
|
"/share/emacs/site-lisp/guix.d/dash-"
|
|
,(package-version emacs-dash)))
|
|
(with-editor (string-append (assoc-ref %build-inputs "with-editor")
|
|
"/share/emacs/site-lisp/guix.d/with-editor-"
|
|
,(package-version emacs-with-editor)))
|
|
(source (assoc-ref %build-inputs "source"))
|
|
(lisp-dir (string-append %output "/share/emacs/site-lisp")))
|
|
(setenv "PATH" PATH)
|
|
(invoke tar "xvf" source)
|
|
|
|
(install-file (string-append ,name "-" ,version "/magit-svn.el")
|
|
lisp-dir)
|
|
|
|
(with-directory-excursion lisp-dir
|
|
(parameterize ((%emacs emacs))
|
|
(emacs-generate-autoloads ,name lisp-dir)
|
|
(setenv "EMACSLOADPATH"
|
|
(string-append ":" magit ":" dash ":" with-editor))
|
|
(emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
|
|
#t))))
|
|
(home-page "https://github.com/magit/magit-svn")
|
|
(synopsis "Git-SVN extension to Magit")
|
|
(description
|
|
"This package is an extension to Magit, the Git Emacs mode, providing
|
|
support for Git-SVN.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-magit-popup
|
|
(package
|
|
(name "emacs-magit-popup")
|
|
(version "2.12.3")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/magit-popup/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1kz6vj67awkwf9y2wj6m3l2him3znm08z6bkdvnmfr6rwd96dr39"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'install 'make-info
|
|
(lambda _
|
|
(invoke "make" "info"))))))
|
|
(native-inputs
|
|
`(("texinfo" ,texinfo)))
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)))
|
|
(home-page "https://github.com/magit/magit-popup")
|
|
(synopsis "Define prefix-infix-suffix command combos")
|
|
(description
|
|
"This library implements a generic interface for toggling switches and
|
|
setting options and then invoking an Emacs command which does something with
|
|
these arguments. The prototypical use is for the command to call an external
|
|
process, passing on the arguments as command line arguments.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-ghub
|
|
(package
|
|
(name "emacs-ghub")
|
|
(version "2.0.1")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magit/ghub/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0d0qj5r1bm2aidi61rigrdaycxnyb7y1ivb3h8rpvvapsf8sk7z0"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'install 'make-info
|
|
(lambda _
|
|
(invoke "make" "info"))))))
|
|
(native-inputs
|
|
`(("texinfo" ,texinfo)))
|
|
(home-page "https://github.com/magit/ghub")
|
|
(synopsis "Emacs client library for Github API and Gitlab API")
|
|
(description
|
|
"This package provides 2 files: @file{ghub.el} and @file{glab.el},
|
|
which are the libraries that provide basic support for using the Github and
|
|
Gitlab APIs from Emacs packages. It abstracts access to API resources using
|
|
only a handful of functions that are not resource-specific.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public haskell-mode
|
|
(package
|
|
(name "haskell-mode")
|
|
(version "16.1")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(uri (string-append
|
|
"https://github.com/haskell/haskell-mode/archive/v"
|
|
version ".tar.gz"))
|
|
(sha256
|
|
(base32 "0g6lcjw7lcgavv3yrd8xjcyqgfyjl787y32r1z14amw2f009m78h"))))
|
|
(inputs
|
|
`(("emacs-el-search" ,emacs-el-search) ; for tests
|
|
("emacs-stream" ,emacs-stream))) ; for tests
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)))
|
|
(native-inputs
|
|
`(("emacs" ,emacs-minimal)
|
|
("texinfo" ,texinfo)))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:make-flags (list (string-append "EMACS="
|
|
(assoc-ref %build-inputs "emacs")
|
|
"/bin/emacs"))
|
|
#:modules ((ice-9 match)
|
|
(srfi srfi-26)
|
|
,@%gnu-build-system-modules)
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(delete 'configure)
|
|
(add-before
|
|
'build 'pre-build
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(define (el-dir store-dir)
|
|
(match (find-files store-dir "\\.el$")
|
|
((f1 f2 ...) (dirname f1))
|
|
(_ "")))
|
|
|
|
(let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
|
|
(define emacs-prefix? (cut string-prefix? "emacs-" <>))
|
|
|
|
(setenv "SHELL" "sh")
|
|
(setenv "EMACSLOADPATH"
|
|
(string-concatenate
|
|
(map (match-lambda
|
|
(((? emacs-prefix? name) . dir)
|
|
(string-append (el-dir dir) ":"))
|
|
(_ ""))
|
|
inputs)))
|
|
(substitute* (find-files "." "\\.el") (("/bin/sh") sh))
|
|
(substitute* "tests/haskell-code-conventions.el"
|
|
;; Function name recently changed in "emacs-el-search".
|
|
(("el-search--search-pattern") "el-search-forward")
|
|
;; Don't contact home.
|
|
(("\\(when \\(>= emacs-major-version 25\\)")
|
|
"(require 'el-search) (when nil"))
|
|
#t)))
|
|
(replace
|
|
'install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(el-dir (string-append out "/share/emacs/site-lisp"))
|
|
(doc (string-append
|
|
out "/share/doc/haskell-mode-" ,version))
|
|
(info (string-append out "/share/info")))
|
|
(define (copy-to-dir dir files)
|
|
(for-each (lambda (f)
|
|
(install-file f dir))
|
|
files))
|
|
|
|
(with-directory-excursion "doc"
|
|
(invoke "makeinfo" "haskell-mode.texi")
|
|
(install-file "haskell-mode.info" info))
|
|
(copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
|
|
(copy-to-dir el-dir (find-files "." "\\.elc?"))
|
|
;; These are part of other packages.
|
|
(with-directory-excursion el-dir
|
|
(for-each delete-file '("dash.el" "ert.el")))
|
|
#t))))))
|
|
(home-page "https://github.com/haskell/haskell-mode")
|
|
(synopsis "Haskell mode for Emacs")
|
|
(description
|
|
"This is an Emacs mode for editing, debugging and developing Haskell
|
|
programs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public flycheck
|
|
(package
|
|
(name "emacs-flycheck")
|
|
(version "31")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/flycheck/flycheck/releases/download/"
|
|
version "/flycheck-" version ".tar"))
|
|
(sha256
|
|
(base32
|
|
"01rnwan16m7cyyrfca3c5c60mbj2r3knkpzbhji2fczsf0wns240"))
|
|
(modules '((guix build utils)))
|
|
(snippet `(begin
|
|
;; Change 'flycheck-version' so that it does not
|
|
;; attempt to get its version from pkg-info.el.
|
|
(substitute* "flycheck.el"
|
|
(("\\(pkg-info-version-info 'flycheck\\)")
|
|
(string-append "\"" ,version "\"")))
|
|
#t))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)))
|
|
(home-page "https://www.flycheck.org")
|
|
(synopsis "On-the-fly syntax checking")
|
|
(description
|
|
"This package provides on-the-fly syntax checking for GNU Emacs. It is a
|
|
replacement for the older Flymake extension which is part of GNU Emacs, with
|
|
many improvements and additional features.
|
|
|
|
Flycheck provides fully-automatic, fail-safe, on-the-fly background syntax
|
|
checking for over 30 programming and markup languages with more than 70
|
|
different tools. It highlights errors and warnings inline in the buffer, and
|
|
provides an optional IDE-like error list.")
|
|
(license license:gpl3+))) ;+GFDLv1.3+ for the manual
|
|
|
|
|
|
;;;
|
|
;;; Web browsing.
|
|
;;;
|
|
|
|
(define-public emacs-w3m
|
|
;; Emacs-w3m follows a "rolling release" model from its CVS repo. We could
|
|
;; use CVS, sure, but instead we choose to use this Git mirror described on
|
|
;; the home page as an "unofficial" mirror.
|
|
(let ((commit "0dd5691f46d314a84da63f3a7277d721815811a2"))
|
|
(package
|
|
(name "emacs-w3m")
|
|
(version (git-version "1.5" "0" commit))
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/ecbrown/emacs-w3m")
|
|
(commit commit)))
|
|
(sha256
|
|
(base32
|
|
"02xalyxbrkgl4n8nj7xxkmsbm6lshhwdc8bzs2l4wz3hkpgkj7x4"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs `(("autoconf" ,autoconf)
|
|
("texinfo" ,texinfo)
|
|
("emacs" ,emacs-minimal)))
|
|
(inputs `(("w3m" ,w3m)
|
|
("imagemagick" ,imagemagick)))
|
|
(arguments
|
|
`(#:modules ((guix build gnu-build-system)
|
|
(guix build utils)
|
|
(guix build emacs-utils))
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
(guix build emacs-utils))
|
|
#:configure-flags
|
|
(let ((out (assoc-ref %outputs "out")))
|
|
(list (string-append "--with-lispdir="
|
|
out "/share/emacs/site-lisp")
|
|
(string-append "--with-icondir="
|
|
out "/share/images/emacs-w3m")
|
|
;; Leave .el files uncompressed, otherwise GC can't
|
|
;; identify run-time dependencies. See
|
|
;; <http://lists.gnu.org/archive/html/guix-devel/2015-12/msg00208.html>
|
|
"--without-compress-install"))
|
|
#:tests? #f ; no check target
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'autoconf
|
|
(lambda _
|
|
(invoke "autoconf")))
|
|
(add-before 'configure 'support-emacs!
|
|
(lambda _
|
|
;; For some reason 'AC_PATH_EMACS' thinks that 'Emacs 26' is
|
|
;; unsupported.
|
|
(substitute* "configure"
|
|
(("EMACS_FLAVOR=unsupported")
|
|
"EMACS_FLAVOR=emacs"))
|
|
#t))
|
|
(add-before 'build 'patch-exec-paths
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out"))
|
|
(w3m (assoc-ref inputs "w3m"))
|
|
(imagemagick (assoc-ref inputs "imagemagick"))
|
|
(coreutils (assoc-ref inputs "coreutils")))
|
|
(make-file-writable "w3m.el")
|
|
(emacs-substitute-variables "w3m.el"
|
|
("w3m-command" (string-append w3m "/bin/w3m"))
|
|
("w3m-touch-command"
|
|
(string-append coreutils "/bin/touch"))
|
|
("w3m-icon-directory"
|
|
(string-append out "/share/images/emacs-w3m")))
|
|
(make-file-writable "w3m-image.el")
|
|
(emacs-substitute-variables "w3m-image.el"
|
|
("w3m-imagick-convert-program"
|
|
(string-append imagemagick "/bin/convert"))
|
|
("w3m-imagick-identify-program"
|
|
(string-append imagemagick "/bin/identify")))
|
|
#t)))
|
|
(replace 'install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(invoke "make" "install" "install-icons")
|
|
(with-directory-excursion
|
|
(string-append (assoc-ref outputs "out")
|
|
"/share/emacs/site-lisp")
|
|
(for-each delete-file '("ChangeLog" "ChangeLog.1"))
|
|
(symlink "w3m-load.el" "w3m-autoloads.el")
|
|
#t))))))
|
|
(home-page "http://emacs-w3m.namazu.org/")
|
|
(synopsis "Simple Web browser for Emacs based on w3m")
|
|
(description
|
|
"Emacs-w3m is an emacs interface for the w3m web browser.")
|
|
(license license:gpl2+))))
|
|
|
|
(define-public emacs-wget
|
|
(package
|
|
(name "emacs-wget")
|
|
(version "0.5.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://debian/pool/main/w/wget-el/wget-el_"
|
|
version ".orig.tar.gz"))
|
|
(sha256
|
|
(base32 "10byvyv9dk0ib55gfqm7bcpxmx2qbih1jd03gmihrppr2mn52nff"))))
|
|
(build-system gnu-build-system)
|
|
(inputs `(("wget" ,wget)))
|
|
(native-inputs `(("emacs" ,emacs-minimal)))
|
|
(arguments
|
|
`(#:modules ((guix build gnu-build-system)
|
|
(guix build utils)
|
|
(guix build emacs-utils))
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
(guix build emacs-utils))
|
|
#:tests? #f ; no check target
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(replace 'configure
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(substitute* "Makefile"
|
|
(("/usr/local") (assoc-ref outputs "out"))
|
|
(("/site-lisp/emacs-wget") "/site-lisp"))
|
|
#t))
|
|
(add-before 'build 'patch-exec-paths
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
(let ((wget (assoc-ref inputs "wget")))
|
|
(emacs-substitute-variables "wget.el"
|
|
("wget-command" (string-append wget "/bin/wget"))))
|
|
#t))
|
|
(add-after 'install 'post-install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(emacs-generate-autoloads
|
|
"wget" (string-append (assoc-ref outputs "out")
|
|
"/share/emacs/site-lisp/"))
|
|
#t)))))
|
|
(home-page "http://www.emacswiki.org/emacs/EmacsWget")
|
|
(synopsis "Simple file downloader for Emacs based on wget")
|
|
(description
|
|
"Emacs-wget is an emacs interface for the wget file downloader.")
|
|
(license license:gpl2+)))
|
|
|
|
|
|
;;;
|
|
;;; Multimedia.
|
|
;;;
|
|
|
|
(define-public emms
|
|
(package
|
|
(name "emacs-emms")
|
|
(version "5.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://gnu/emms/emms-"
|
|
version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"08f9lj77jlk96grqgjsv63s2i8ywvp4wvnmgmhnslwyx2lsdxza3"))
|
|
(modules '((guix build utils)))
|
|
(snippet
|
|
'(begin
|
|
(substitute* "Makefile"
|
|
(("/usr/bin/install-info")
|
|
;; No need to use 'install-info' since it would create a
|
|
;; useless 'dir' file.
|
|
"true")
|
|
(("^INFODIR=.*")
|
|
;; Install Info files to $out/share/info, not $out/info.
|
|
"INFODIR := $(PREFIX)/share/info\n")
|
|
(("/site-lisp/emms")
|
|
;; Install directly in share/emacs/site-lisp, not in a
|
|
;; sub-directory.
|
|
"/site-lisp")
|
|
(("^all: (.*)\n" _ rest)
|
|
;; Build 'emms-print-metadata'.
|
|
(string-append "all: " rest " emms-print-metadata\n")))
|
|
#t))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:modules ((guix build gnu-build-system)
|
|
(guix build utils)
|
|
(guix build emacs-utils)
|
|
(ice-9 ftw))
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
(guix build emacs-utils))
|
|
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(replace 'configure
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out"))
|
|
(flac (assoc-ref inputs "flac"))
|
|
(vorbis (assoc-ref inputs "vorbis-tools"))
|
|
(alsa (assoc-ref inputs "alsa-utils"))
|
|
(mpg321 (assoc-ref inputs "mpg321"))
|
|
(mp3info (assoc-ref inputs "mp3info"))
|
|
(opus (assoc-ref inputs "opus-tools")))
|
|
;; Specify the installation directory.
|
|
(substitute* "Makefile"
|
|
(("PREFIX=.*$")
|
|
(string-append "PREFIX := " out "\n")))
|
|
|
|
(setenv "SHELL" (which "sh"))
|
|
(setenv "CC" "gcc")
|
|
|
|
;; Specify the absolute file names of the various
|
|
;; programs so that everything works out-of-the-box.
|
|
(with-directory-excursion "lisp"
|
|
(emacs-substitute-variables
|
|
"emms-player-mpg321-remote.el"
|
|
("emms-player-mpg321-remote-command"
|
|
(string-append mpg321 "/bin/mpg321")))
|
|
(substitute* "emms-player-simple.el"
|
|
(("\"ogg123\"")
|
|
(string-append "\"" vorbis "/bin/ogg123\"")))
|
|
(substitute* "emms-player-simple.el"
|
|
(("\"mpg321\"")
|
|
(string-append "\"" mpg321 "/bin/mpg321\"")))
|
|
(emacs-substitute-variables "emms-info-ogginfo.el"
|
|
("emms-info-ogginfo-program-name"
|
|
(string-append vorbis "/bin/ogginfo")))
|
|
(emacs-substitute-variables "emms-info-opusinfo.el"
|
|
("emms-info-opusinfo-program-name"
|
|
(string-append opus "/bin/opusinfo")))
|
|
(emacs-substitute-variables "emms-info-libtag.el"
|
|
("emms-info-libtag-program-name"
|
|
(string-append out "/bin/emms-print-metadata")))
|
|
(emacs-substitute-variables "emms-info-mp3info.el"
|
|
("emms-info-mp3info-program-name"
|
|
(string-append mp3info "/bin/mp3info")))
|
|
(emacs-substitute-variables "emms-info-metaflac.el"
|
|
("emms-info-metaflac-program-name"
|
|
(string-append flac "/bin/metaflac")))
|
|
(emacs-substitute-variables "emms-source-file.el"
|
|
("emms-source-file-gnu-find" (which "find")))
|
|
(substitute* "emms-volume-amixer.el"
|
|
(("\"amixer\"")
|
|
(string-append "\"" alsa "/bin/amixer\"")))
|
|
(substitute* "emms-tag-editor.el"
|
|
(("\"mp3info\"")
|
|
(string-append "\"" mp3info "/bin/mp3info\"")))))))
|
|
(add-before 'install 'pre-install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
;; The 'install' rule expects the target directories to exist.
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(bin (string-append out "/bin"))
|
|
(man1 (string-append out "/share/man/man1")))
|
|
(mkdir-p bin)
|
|
(mkdir-p man1)
|
|
|
|
;; Ensure that files are not rejected by gzip
|
|
(let ((early-1980 315619200)) ; 1980-01-02 UTC
|
|
(ftw "." (lambda (file stat flag)
|
|
(unless (<= early-1980 (stat:mtime stat))
|
|
(utime file early-1980 early-1980))
|
|
#t)))
|
|
#t)))
|
|
(add-after 'install 'post-install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let ((out (assoc-ref outputs "out")))
|
|
(symlink "emms-auto.el"
|
|
(string-append out "/share/emacs/site-lisp/"
|
|
"emms-autoloads.el")))
|
|
#t)))
|
|
#:tests? #f))
|
|
(native-inputs `(("emacs" ,emacs-minimal) ;for (guix build emacs-utils)
|
|
("texinfo" ,texinfo)))
|
|
(inputs `(("alsa-utils" ,alsa-utils)
|
|
("flac" ,flac) ;for metaflac
|
|
("vorbis-tools" ,vorbis-tools)
|
|
("mpg321" ,mpg321)
|
|
("taglib" ,taglib)
|
|
("mp3info" ,mp3info)
|
|
("opus-tools" ,opus-tools)))
|
|
(properties '((upstream-name . "emms")))
|
|
(synopsis "Emacs Multimedia System")
|
|
(description
|
|
"EMMS is the Emacs Multimedia System. It is a small front-end which
|
|
can control one of the supported external players. Thus, it supports
|
|
whatever formats are supported by your music player. It also
|
|
supports tagging and playlist management, all behind a clean and
|
|
light user interface.")
|
|
(home-page "https://www.gnu.org/software/emms/")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-emms-player-mpv
|
|
;; A new mpv backend is included in Emms from 5.0.
|
|
(deprecated-package "emacs-emms-player-mpv" emms))
|
|
|
|
(define-public emacs-emms-mode-line-cycle
|
|
(package
|
|
(name "emacs-emms-mode-line-cycle")
|
|
(version "0.2.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/momomo5717/emms-mode-line-cycle"
|
|
"/archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0ifszi930pnaxk1x8pcydmvnp06868gc7nfx14q17zbajbx735k6"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emms" ,emms)))
|
|
(home-page "https://github.com/momomo5717/emms-mode-line-cycle")
|
|
(synopsis "Display the EMMS mode line as a ticker")
|
|
(description
|
|
"This is a minor mode for updating the EMMS mode-line string cyclically
|
|
within a specified width. It is useful for displaying long track titles.")
|
|
(license license:gpl3+)))
|
|
|
|
|
|
;;;
|
|
;;; Miscellaneous.
|
|
;;;
|
|
|
|
(define-public bbdb
|
|
(package
|
|
(name "bbdb")
|
|
(version "3.1.2")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "mirror://savannah/bbdb/bbdb-"
|
|
version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1gs16bbpiiy01w9pyg12868r57kx1v3hnw04gmqsmpc40l1hyy05"))
|
|
(modules '((guix build utils)))
|
|
(snippet
|
|
;; We don't want to build and install the PDF.
|
|
'(begin
|
|
(substitute* "doc/Makefile.in"
|
|
(("^doc_DATA = .*$")
|
|
"doc_DATA =\n"))
|
|
#t))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'install 'post-install
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
;; Add an autoloads file with the right name for guix.el.
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(site (string-append out "/share/emacs/site-lisp")))
|
|
(with-directory-excursion site
|
|
(symlink "bbdb-loaddefs.el" "bbdb-autoloads.el")))
|
|
#t)))))
|
|
(native-inputs `(("emacs" ,emacs-minimal)))
|
|
(home-page "https://savannah.nongnu.org/projects/bbdb/")
|
|
(synopsis "Contact management utility for Emacs")
|
|
(description
|
|
"BBDB is the Insidious Big Brother Database for GNU Emacs. It provides
|
|
an address book for email and snail mail addresses, phone numbers and the
|
|
like. It can be linked with various Emacs mail clients (Message and Mail
|
|
mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-aggressive-indent
|
|
(package
|
|
(name "emacs-aggressive-indent")
|
|
(version "1.8.3")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://elpa.gnu.org/packages/"
|
|
"aggressive-indent-" version ".el"))
|
|
(sha256
|
|
(base32
|
|
"0jnzccl50x0wapprgwxinp99pwwa6j43q6msn4gv437j7swy8wnj"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://elpa.gnu.org/packages/aggressive-indent.html")
|
|
(synopsis "Minor mode to aggressively keep your code always indented")
|
|
(description
|
|
"@code{aggressive-indent-mode} is a minor mode that keeps your code
|
|
always indented. It reindents after every change, making it more reliable
|
|
than @code{electric-indent-mode}.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-ag
|
|
(package
|
|
(name "emacs-ag")
|
|
(version "0.47")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/Wilfred/ag.el/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1rlmp6wnyhqfg86dbz17r914msp58favn4kd4yrdwyia265a4lar"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'install 'make-info
|
|
(lambda _
|
|
(with-directory-excursion "docs"
|
|
(invoke "make" "info"))))
|
|
(add-after 'install 'install-info
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(info (string-append out "/share/info")))
|
|
(install-file "docs/_build/texinfo/agel.info" info)
|
|
#t))))))
|
|
(native-inputs
|
|
`(("python-sphinx" ,python-sphinx)
|
|
("texinfo" ,texinfo)))
|
|
(propagated-inputs
|
|
`(("dash" ,emacs-dash)
|
|
("s" ,emacs-s)
|
|
;; We need to use 'ag' as the executable on remote systems.
|
|
("the-silver-searcher" ,the-silver-searcher)))
|
|
(home-page "https://github.com/Wilfred/ag.el")
|
|
(synopsis "Front-end for ag (the-silver-searcher) for Emacs")
|
|
(description "This package provides the ability to use the silver
|
|
searcher, a code searching tool, sometimes abbreviated to @code{ag}. Features
|
|
include version control system awareness, use of Perl compatible regular
|
|
expressions, editing the search results directly and searching file names
|
|
rather than the contents of files.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-async
|
|
(package
|
|
(name "emacs-async")
|
|
(version "1.9.3")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://stable.melpa.org/packages/async-"
|
|
version ".tar"))
|
|
(sha256
|
|
(base32
|
|
"0xvi50y96y2qh81qkhj8p6ar1xnfasg58qvlsvgvvmdf4g8srlij"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://elpa.gnu.org/packages/async.html")
|
|
(synopsis "Asynchronous processing in Emacs")
|
|
(description
|
|
"This package provides the ability to call asynchronous functions and
|
|
processes. For example, it can be used to run dired commands (for copying,
|
|
moving, etc.) asynchronously using @code{dired-async-mode}. Also it is used
|
|
as a library for other Emacs packages.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-auctex
|
|
(package
|
|
(name "emacs-auctex")
|
|
(version "12.1.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://elpa.gnu.org/packages/auctex-"
|
|
version
|
|
".tar"))
|
|
(sha256
|
|
(base32
|
|
"0iy5x61xqkxaph2hq64sg50l1c6yp6qhzppwadayxkdz00b46sas"))))
|
|
(build-system emacs-build-system)
|
|
;; We use 'emacs' because AUCTeX requires dbus at compile time
|
|
;; ('emacs-minimal' does not provide dbus).
|
|
(arguments
|
|
`(#:emacs ,emacs
|
|
#:include '("\\.el$" "^images/" "^latex/" "\\.info$")
|
|
#:exclude '("^tests/" "^latex/README")))
|
|
(native-inputs
|
|
`(("perl" ,perl)))
|
|
(home-page "https://www.gnu.org/software/auctex/")
|
|
(synopsis "Integrated environment for TeX")
|
|
(description
|
|
"AUCTeX is a comprehensive customizable integrated environment for
|
|
writing input files for TeX, LaTeX, ConTeXt, Texinfo, and docTeX using Emacs
|
|
or XEmacs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-autothemer
|
|
(package
|
|
(name "emacs-autothemer")
|
|
(version "0.2.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/sebastiansturm/autothemer/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0rd28r9wfrbll212am4ih9hrvypx785aff76va2cbfxdwm9kixsa"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)))
|
|
(home-page "https://github.com/sebastiansturm/autothemer")
|
|
(synopsis "Conveniently create Emacs themes")
|
|
(description
|
|
"Autothemer provides a thin layer on top of @code{deftheme} and
|
|
@code{custom-theme-set-faces} that creates a new custom color theme, based on
|
|
a set of simplified face specifications and a user-supplied color palette")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-howm
|
|
(package
|
|
(name "emacs-howm")
|
|
(version "1.4.4")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://howm.sourceforge.jp/a/howm-"
|
|
version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0ddm91l6z58j7x59fa966j6q1rg4cinyza4r8ibg80hprn5h31qk"))))
|
|
(build-system gnu-build-system)
|
|
(native-inputs
|
|
`(("emacs" ,emacs-minimal)))
|
|
(arguments
|
|
`(#:configure-flags
|
|
(list (string-append "--with-howmdir=" %output
|
|
"/share/emacs/site-lisp/guix.d/howm-" ,version))
|
|
#:modules ((guix build gnu-build-system)
|
|
((guix build emacs-build-system) #:prefix emacs:)
|
|
(guix build utils))
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
(guix build emacs-build-system)
|
|
(guix build emacs-utils))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'rename-lispdir 'make-autoloads
|
|
(assoc-ref emacs:%standard-phases 'make-autoloads)))))
|
|
(home-page "http://howm.osdn.jp/")
|
|
(synopsis "Note-taking tool for Emacs")
|
|
(description "Howm is a note-taking tool for Emacs. Like
|
|
code@{emacs-wiki.el}, it facilitates using hyperlinks and doing full-text
|
|
searches. Unlike code@{emacs-wiki.el}, it can be combined with any format.")
|
|
(license license:gpl1+)))
|
|
|
|
(define-public emacs-calfw
|
|
(package
|
|
(name "emacs-calfw")
|
|
(version "1.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/kiwanami/emacs-calfw/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"17ssg8gx66yp63nhygjq2r6kgl4h45cacmrxsxs9f0lrfcx37k0l"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-howm" ,emacs-howm)))
|
|
(home-page "https://github.com/kiwanami/emacs-calfw/")
|
|
(synopsis "Calendar framework for Emacs")
|
|
(description
|
|
"This package displays a calendar view with various schedule data in the
|
|
Emacs buffer.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-direnv
|
|
(package
|
|
(name "emacs-direnv")
|
|
(version "1.2.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/wbolster/emacs-direnv/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0m9nxawklhiiysyibzzhh2zkxgq1fskqvaqb06f7r8dnhabfy9fr"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("dash" ,emacs-dash)
|
|
("with-editor" ,emacs-with-editor)))
|
|
(home-page "https://github.com/wbolster/emacs-direnv")
|
|
(synopsis "Direnv integration for Emacs")
|
|
(description
|
|
"This package provides support for invoking direnv to get the environment
|
|
for the current file and updating the environment within Emacs to match.
|
|
|
|
Direnv can be invoked manually, and a global minor mode is included that will
|
|
update the environment when the active buffer changes.
|
|
|
|
Using emacs-direnv means that programs started from Emacs will use the
|
|
environment set through Direnv.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-ggtags
|
|
(package
|
|
(name "emacs-ggtags")
|
|
(version "0.8.12")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://elpa.gnu.org/packages/ggtags-"
|
|
version ".el"))
|
|
(sha256
|
|
(base32
|
|
"0ny3llk021g6r0s75xdm4hzpbxv393ddm2r6f2xdk8kqnq4gnirp"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/leoliu/ggtags")
|
|
(synopsis "Frontend to the GNU Global source code tagging system")
|
|
(description "@code{ggtags} provides a frontend to the GNU Global source
|
|
code tagging system.
|
|
|
|
Features:
|
|
|
|
@itemize
|
|
@item Build on @code{compile.el} for asynchronicity and its large feature-set.
|
|
@item Automatically update Global's tag files when needed with tuning for
|
|
large source trees.
|
|
@item Intuitive navigation among multiple matches with mode-line display of
|
|
current match, total matches and exit status.
|
|
@item Read tag with completion.
|
|
@item Show definition at point.
|
|
@item Jump to #include files.
|
|
@item Support search history and saving a search to register/bookmark.
|
|
@item Query replace.
|
|
@item Manage Global's environment variables on a per-project basis.
|
|
@item Highlight (definition) tag at point.
|
|
@item Abbreviated display of file names.
|
|
@item Support all Global search backends: @code{grep}, @code{idutils}, etc.
|
|
@item Support exuberant ctags @url{http://ctags.sourceforge.net/} and
|
|
@code{pygments} backend.
|
|
@item Support all Global's output formats: @code{grep}, @code{ctags-x},
|
|
@code{cscope} etc.
|
|
@item Support projects on remote hosts (e.g. via @code{tramp}).
|
|
@item Support eldoc.
|
|
@item Search @code{GTAGSLIBPATH} for references and symbols.
|
|
@end itemize\n")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-go-mode
|
|
(package
|
|
(name "emacs-go-mode")
|
|
(version "1.5.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/dominikh/go-mode.el/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1adngbjyb8qnwg7n6r2y31djw9j6qf3b9fi63zd85035q7x4ljnm"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/dominikh/go-mode.el")
|
|
(synopsis "Go mode for Emacs")
|
|
(description
|
|
"This package provides go-mode, an Emacs mode for working with software
|
|
written in the Go programming language.")
|
|
(license license:bsd-3)))
|
|
|
|
(define-public emacs-google-maps
|
|
(package
|
|
(name "emacs-google-maps")
|
|
(version "1.0.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/jd/google-maps.el/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"014bxapm4d8vjxbzrfjdpsavxyfx981mlcb10aq5rmigr6il8ybs"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/jd/google-maps.el")
|
|
(synopsis "Access Google Maps from Emacs")
|
|
(description "The @code{google-maps} package allows to display Google
|
|
Maps directly inside Emacs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-graphviz-dot-mode
|
|
(let ((commit "c456a2b65c734089e6c44e87209a5a432a741b1a")
|
|
(revision "1"))
|
|
(package
|
|
(name "emacs-graphviz-dot-mode")
|
|
(version (string-append "0.3.11-" revision "."
|
|
(string-take commit 7)))
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/ppareit/graphviz-dot-mode.git")
|
|
(commit commit)))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(sha256
|
|
(base32
|
|
"0j1r2rspaakw37b0mx7pwpvdsvixq9sw3xjbww5piihzpdxz58z1"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'install 'make-info
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
(with-directory-excursion "texinfo"
|
|
(substitute* "Makefile"
|
|
(("\\/usr\\/bin\\/gzip")
|
|
(string-append (assoc-ref inputs "gzip") "/bin/gzip")))
|
|
(invoke "make"
|
|
"clean"
|
|
"info"
|
|
(string-append "TEXINFODIR="
|
|
(assoc-ref inputs "texinfo")
|
|
"/bin")))))
|
|
(add-after 'install 'install-info
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
(info (string-append out "/share/info")))
|
|
(install-file "texinfo/graphviz-dot-mode.info.gz" info)
|
|
#t))))))
|
|
(native-inputs
|
|
`(("texinfo" ,texinfo)
|
|
("gzip" ,gzip)))
|
|
(home-page "http://ppareit.github.com/graphviz-dot-mode")
|
|
(synopsis "Major mode for editing Graphviz Dot files")
|
|
(description
|
|
"This Emacs packages helps you to create @file{.dot} or @file{.gv}
|
|
files using the dot syntax, and use Graphviz to convert these files to
|
|
diagrams.")
|
|
(license license:gpl2+))))
|
|
|
|
(define-public emacs-mmm-mode
|
|
(package
|
|
(name "emacs-mmm-mode")
|
|
(version "0.5.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/purcell/mmm-mode/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0c5ing3hcr74k78hqhrfwiv6m3n8hqfrw89j2x34vf60f4iyqzqc"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
'(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'autogen
|
|
(lambda _
|
|
(invoke "sh" "autogen.sh"))))))
|
|
(native-inputs
|
|
`(("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("emacs" ,emacs-minimal)
|
|
("texinfo" ,texinfo)))
|
|
(home-page "https://github.com/purcell/mmm-mode")
|
|
(synopsis "Allow multiple major modes in an Emacs buffer")
|
|
(description
|
|
"MMM Mode is a minor mode that allows multiple major modes to coexist in a
|
|
single buffer.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-tablist
|
|
(package
|
|
(name "emacs-tablist")
|
|
(version "0.70")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/politza/tablist/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"177d6s7ym1mwz1nhnl09r14z3n093g9a2szm97xsaig0c204xz9c"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/politza/tablist")
|
|
(synopsis "Extension for @code{tabulated-list-mode}")
|
|
(description "Tablist is the Emacs package that provides several
|
|
additional features to @code{tabulated-list-mode}: it adds marks,
|
|
filters, new key bindings and faces. It can be enabled by
|
|
@code{tablist-mode} or @code{tablist-minor-mode} commands.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-pdf-tools
|
|
(package
|
|
(name "emacs-pdf-tools")
|
|
(version "0.80")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/politza/pdf-tools/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"06imydn3a92vr57azpn1zhqc14kxyyslmyi9ldsyphan9b724gb6"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:tests? #f ; there are no tests
|
|
#:modules ((guix build gnu-build-system)
|
|
((guix build emacs-build-system) #:prefix emacs:)
|
|
(guix build utils)
|
|
(guix build emacs-utils))
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
(guix build emacs-build-system)
|
|
(guix build emacs-utils))
|
|
#:phases
|
|
(modify-phases %standard-phases
|
|
;; Build server side using 'gnu-build-system'.
|
|
(add-after 'unpack 'enter-server-dir
|
|
(lambda _ (chdir "server") #t))
|
|
(add-after 'enter-server-dir 'autogen
|
|
(lambda _
|
|
(invoke "bash" "autogen.sh")))
|
|
|
|
;; Build emacs side using 'emacs-build-system'.
|
|
(add-after 'compress-documentation 'enter-lisp-dir
|
|
(lambda _ (chdir "../lisp") #t))
|
|
(add-after 'enter-lisp-dir 'emacs-patch-variables
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
;; Set path to epdfinfo program.
|
|
(emacs-substitute-variables "pdf-info.el"
|
|
("pdf-info-epdfinfo-program"
|
|
(string-append (assoc-ref outputs "out")
|
|
"/bin/epdfinfo")))
|
|
;; Set 'pdf-tools-handle-upgrades' to nil to avoid "auto
|
|
;; upgrading" that pdf-tools tries to perform.
|
|
(emacs-substitute-variables "pdf-tools.el"
|
|
("pdf-tools-handle-upgrades" '()))))
|
|
(add-after 'emacs-patch-variables 'emacs-set-emacs-load-path
|
|
(assoc-ref emacs:%standard-phases 'set-emacs-load-path))
|
|
(add-after 'emacs-set-emacs-load-path 'emacs-install
|
|
(assoc-ref emacs:%standard-phases 'install))
|
|
(add-after 'emacs-install 'emacs-build
|
|
(assoc-ref emacs:%standard-phases 'build))
|
|
(add-after 'emacs-install 'emacs-make-autoloads
|
|
(assoc-ref emacs:%standard-phases 'make-autoloads)))))
|
|
(native-inputs `(("autoconf" ,autoconf)
|
|
("automake" ,automake)
|
|
("pkg-config" ,pkg-config)
|
|
("emacs" ,emacs-minimal)))
|
|
(inputs `(("poppler" ,poppler)
|
|
("cairo" ,cairo)
|
|
("glib" ,glib)
|
|
("libpng" ,libpng)
|
|
("zlib" ,zlib)))
|
|
(propagated-inputs `(("tablist" ,emacs-tablist)))
|
|
(synopsis "Emacs support library for PDF files")
|
|
(description
|
|
"PDF Tools is, among other things, a replacement of DocView for PDF
|
|
files. The key difference is that pages are not pre-rendered by
|
|
e.g. ghostscript and stored in the file-system, but rather created on-demand
|
|
and stored in memory.")
|
|
(home-page "https://github.com/politza/pdf-tools")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-dash
|
|
(package
|
|
(name "emacs-dash")
|
|
(version "2.14.1")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/magnars/dash.el.git")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1kzijmjxjxgr7p8clphzvmm47vczckbs8mza9an77c25bn627ywl"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:tests? #t
|
|
#:test-command '("./run-tests.sh")))
|
|
(home-page "https://github.com/magnars/dash.el")
|
|
(synopsis "Modern list library for Emacs")
|
|
(description "This package provides a modern list API library for Emacs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-bui
|
|
(package
|
|
(name "emacs-bui")
|
|
(version "1.1.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/alezost/bui.el/archive/v"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"112k0mq6xpy0r47vk66miw7rxbkv3d06pv3pd0vcmrhcnhnnk486"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("dash" ,emacs-dash)))
|
|
(home-page "https://github.com/alezost/bui.el")
|
|
(synopsis "Buffer interface library for Emacs")
|
|
(description
|
|
"BUI (Buffer User Interface) is a library for making @code{list} and
|
|
@code{info} interfaces to display an arbitrary data of the same
|
|
type, for example: packages, buffers, files, etc.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-guix
|
|
(package
|
|
(name "emacs-guix")
|
|
(version "0.4.1.1")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://emacs-guix.gitlab.io/website/"
|
|
"releases/emacs-guix-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0jbnrcazbks7h50rngpw5l40a6vn2794kb53cpva3yzdjmrc1955"))))
|
|
(build-system gnu-build-system)
|
|
(arguments
|
|
`(#:configure-flags
|
|
(let ((guix (assoc-ref %build-inputs "guix"))
|
|
(geiser (assoc-ref %build-inputs "geiser"))
|
|
(dash (assoc-ref %build-inputs "dash"))
|
|
(bui (assoc-ref %build-inputs "bui"))
|
|
(magit-popup (assoc-ref %build-inputs "magit-popup"))
|
|
(edit-indirect (assoc-ref %build-inputs "edit-indirect"))
|
|
(site-lisp "/share/emacs/site-lisp"))
|
|
(list (string-append "--with-guix-site-dir="
|
|
(car (find-files (string-append guix
|
|
"/share/guile/site")
|
|
(lambda (file stat)
|
|
(string-prefix?
|
|
"2."
|
|
(basename file)))
|
|
#:directories? #t)))
|
|
(string-append "--with-guix-site-ccache-dir="
|
|
(car (find-files (string-append guix "/lib/guile")
|
|
(lambda (file stat)
|
|
(string-prefix?
|
|
"2." (basename file)))
|
|
#:directories? #t))
|
|
"/site-ccache")
|
|
(string-append "--with-geiser-lispdir=" geiser site-lisp)
|
|
(string-append "--with-dash-lispdir="
|
|
dash site-lisp "/guix.d/dash-"
|
|
,(package-version emacs-dash))
|
|
(string-append "--with-bui-lispdir="
|
|
bui site-lisp "/guix.d/bui-"
|
|
,(package-version emacs-bui))
|
|
(string-append "--with-editindirect-lispdir="
|
|
edit-indirect site-lisp "/guix.d/edit-indirect-"
|
|
,(package-version emacs-edit-indirect))
|
|
(string-append "--with-popup-lispdir="
|
|
magit-popup site-lisp "/guix.d/magit-popup-"
|
|
,(package-version emacs-magit-popup))))))
|
|
(native-inputs
|
|
`(("pkg-config" ,pkg-config)
|
|
("emacs" ,emacs-minimal)))
|
|
(inputs
|
|
`(("guile" ,guile-2.2)
|
|
("guix" ,guix)))
|
|
(propagated-inputs
|
|
`(("geiser" ,geiser)
|
|
("dash" ,emacs-dash)
|
|
("bui" ,emacs-bui)
|
|
("edit-indirect" ,emacs-edit-indirect)
|
|
("magit-popup" ,emacs-magit-popup)))
|
|
(home-page "https://emacs-guix.gitlab.io/website/")
|
|
(synopsis "Emacs interface for GNU Guix")
|
|
(description
|
|
"Emacs-Guix provides a visual interface, tools and features for the GNU
|
|
Guix package manager. Particularly, it allows you to do various package
|
|
management tasks from Emacs. To begin with, run @code{M-x guix-about} or
|
|
@code{M-x guix-help} command.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-d-mode
|
|
(package
|
|
(name "emacs-d-mode")
|
|
(version "2.0.9")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"127aa77ix3p7w4g339bx026df9y649dahlr3v359z0hs40zjz3kd"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-undercover" ,emacs-undercover)))
|
|
(home-page "https://github.com/Emacs-D-Mode-Maintainers/Emacs-D-Mode")
|
|
(synopsis "Emacs major mode for editing D code")
|
|
(description "This package provides an Emacs major mode for highlighting
|
|
code written in the D programming language. This mode is currently known to
|
|
work with Emacs 24 and 25.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-keyfreq
|
|
(package
|
|
(name "emacs-keyfreq")
|
|
(version "20160516.716")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "http://melpa.org/packages/keyfreq-"
|
|
version ".el"))
|
|
(sha256
|
|
(base32
|
|
"008hd7d06qskc3mx0bbdgpgy2pwxr8185fzlyqf9qjg49y74p6g8"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/dacap/keyfreq")
|
|
(synopsis "Track Emacs command frequencies")
|
|
(description "@code{emacs-keyfeq} tracks and shows how many times you used
|
|
a command.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-olivetti
|
|
(package
|
|
(name "emacs-olivetti")
|
|
(version "1.5.7")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://stable.melpa.org/packages/olivetti-"
|
|
version ".el"))
|
|
(sha256
|
|
(base32
|
|
"1yj2ylg46q0pw1xzlv2b0fv9x8p56x25284s9v2smwjr4vf0nwcj"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/rnkn/olivetti")
|
|
(synopsis "Emacs minor mode for a nice writing environment")
|
|
(description "This package provides an Emacs minor mode that puts writing
|
|
in the center.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-undo-tree
|
|
(package
|
|
(name "emacs-undo-tree")
|
|
(version "0.6.6")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "http://dr-qubit.org/git/undo-tree.git")
|
|
(commit (string-append "release/" version))))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(sha256
|
|
(base32
|
|
"1hnh2mnmw179gr094r561w6cw1haid0lpvpqvkc24wpj82vphzpa"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "http://www.dr-qubit.org/emacs.php")
|
|
(synopsis "Treat undo history as a tree")
|
|
(description "Tree-like interface to Emacs undo system, providing
|
|
graphical tree presentation of all previous states of buffer that
|
|
allows easily move between them.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-s
|
|
(package
|
|
(name "emacs-s")
|
|
(version "1.12.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/magnars/s.el/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0xbl75863pcm806zg0x1lw7qznzjq2c8320k8js7apyag8q4srvh"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:tests? #t
|
|
#:emacs ,emacs ; FIXME: tests fail with emacs-minimal
|
|
#:test-command '("./run-tests.sh")))
|
|
(home-page "https://github.com/magnars/s.el")
|
|
(synopsis "Emacs string manipulation library")
|
|
(description "This package provides an Emacs library for manipulating
|
|
strings.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-symon
|
|
(package
|
|
(name "emacs-symon")
|
|
(version "20160630")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/zk-phi/symon/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0h4jcgdnq98wc9rj72nwyazq8498yg55jfljiij5qwbn1xf1g5zz"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/zk-phi/symon")
|
|
(synopsis "Tiny graphical system monitor")
|
|
(description
|
|
"Tiny graphical system monitor for the Emacs minibuffer when idle.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-sx
|
|
(let ((version "20180212")
|
|
(revision "1")
|
|
(commit "833435fbf90d1c9e927d165b155f3b1ef39271de"))
|
|
(package
|
|
(name "emacs-sx")
|
|
(version (git-version version revision commit))
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/vermiculus/sx.el")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1369xaxq1vy3d9yh862ddnhddikdpg2d0wv1ly00pnvdp9v4cqgd"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-markdown-mode" ,emacs-markdown-mode)))
|
|
(home-page "https://github.com/vermiculus/sx.el")
|
|
(synopsis "Emacs StackExchange client")
|
|
(description
|
|
"Emacs StackExchange client. Ask and answer questions on
|
|
Stack Overflow, Super User, and other StackExchange sites.")
|
|
(license license:gpl3+))))
|
|
|
|
(define-public emacs-f
|
|
(package
|
|
(name "emacs-f")
|
|
(version "0.20.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/rejeep/f.el.git")
|
|
(commit (string-append "v" version))))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-s" ,emacs-s)
|
|
("emacs-dash" ,emacs-dash)))
|
|
(home-page "https://github.com/rejeep/f.el")
|
|
(synopsis "Emacs API for working with files and directories")
|
|
(description "This package provides an Emacs library for working with
|
|
files and directories.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-git-gutter
|
|
(package
|
|
(name "emacs-git-gutter")
|
|
(version "0.90")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/syohex/" name "/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1nmhvhpq1l56mj2yq3ag23rw3x4xgnsy8szp30s26l0yjnkhc4qg"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/syohex/emacs-git-gutter")
|
|
(synopsis "See and manage hunks of text in a version control system")
|
|
(description
|
|
"This package is an Emacs minor mode for displaying and interacting with
|
|
hunks of text managed in a version control system. Added modified and deleted
|
|
areas can be indicated with symbols on the edge of the buffer, and commands
|
|
can be used to move between and perform actions on these hunks.
|
|
|
|
Git, Mercurial, Subversion and Bazaar are supported, and many parts of the
|
|
display and behaviour is easily customisable.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-git-timemachine
|
|
(package
|
|
(name "emacs-git-timemachine")
|
|
(version "4.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://gitlab.com/pidu/git-timemachine"
|
|
"/-/archive/" version
|
|
"/git-timemachine-" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0ii40qcincasg7s1yrvqcxkqcqzb4sfs7gcxscn6m4x4ans165zy"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://gitlab.com/pidu/git-timemachine")
|
|
(synopsis "Step through historic versions of Git-controlled files")
|
|
(description "This package enables you to step through historic versions
|
|
of files under Git version control from within Emacs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-minitest
|
|
(let ((commit "1aadb7865c1dc69c201cecee275751ecec33a182")
|
|
(revision "1"))
|
|
(package
|
|
(name "emacs-minitest")
|
|
(version (git-version "0.8.0" revision commit))
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/arthurnn/minitest-emacs")
|
|
(commit commit)))
|
|
(file-name (git-file-name name commit))
|
|
(sha256
|
|
(base32
|
|
"1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
'(#:include (cons "^snippets\\/minitest-mode\\/" %default-include)
|
|
#:exclude (delete "^[^/]*tests?\\.el$" %default-exclude)))
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)
|
|
("emacs-f" ,emacs-f)))
|
|
(home-page "https://github.com/arthurnn/minitest-emacs")
|
|
(synopsis "Emacs minitest mode")
|
|
(description
|
|
"The minitest mode provides commands to run the tests for the current
|
|
file or line, as well as rerunning the previous tests, or all the tests for a
|
|
project.
|
|
|
|
This package also includes relevant snippets for yasnippet.")
|
|
(license license:expat))))
|
|
|
|
(define-public emacs-el-mock
|
|
(package
|
|
(name "emacs-el-mock")
|
|
(version "1.25.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/rejeep/el-mock.el/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"16xw94n58xxn3zvgyj72bmzs0k5lkvswjmzs79ws9n7rzdivb38b"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/rejeep/el-mock.el")
|
|
(synopsis "Tiny mock and stub framework in Emacs Lisp")
|
|
(description
|
|
"Emacs Lisp Mock is a library for mocking and stubbing using readable
|
|
syntax. Most commonly Emacs Lisp Mock is used in conjunction with Emacs Lisp
|
|
Expectations, but it can be used in other contexts.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-espuds
|
|
(package
|
|
(name "emacs-espuds")
|
|
(version "0.3.3")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/ecukes/espuds/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-s" ,emacs-s)
|
|
("emacs-dash" ,emacs-dash)
|
|
("emacs-f" ,emacs-f)))
|
|
(home-page "https://github.com/ecukes/espuds")
|
|
(synopsis "Common step definitions for Ecukes")
|
|
(description "Espuds is a collection of the most commonly used step
|
|
definitions for testing with the Ecukes framework.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-spark
|
|
(let ((version "20160503") ; no proper tag, use date of commit
|
|
(commit "0bf148c3ede3b31d56fd75f347cdd0b0eae60025")
|
|
(revision "1"))
|
|
(package
|
|
(name "emacs-spark")
|
|
(version (git-version version revision commit))
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/alvinfrancis/spark.git")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/alvinfrancis/spark")
|
|
(synopsis "Sparkline generation library for Emacs Lisp")
|
|
(description "@code{emacs-spark} is a sparkline generation library for
|
|
Emacs Lisp. It generates a sparkline string given a list of numbers. It is a
|
|
port of @code{cl-spark} to Emacs Lisp.")
|
|
(license license:expat))))
|
|
|
|
(define-public emacs-es-mode
|
|
(package
|
|
(name "emacs-es-mode")
|
|
(version "4.3.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append
|
|
"https://github.com/dakrone/es-mode/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0y86qdcb3g7fkcb4pzsjh3syzql6w3314hg1wqxq4a8bbk3y0cgr"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
;; The version of org in Emacs 24.5 is not sufficient, and causes tables
|
|
;; to be rendered incorrectly
|
|
`(("emacs-dash" ,emacs-dash)
|
|
("emacs-org" ,emacs-org)
|
|
("emacs-spark" ,emacs-spark)))
|
|
(home-page "https://github.com/dakrone/es-mode")
|
|
(synopsis "Major mode for editing Elasticsearch queries")
|
|
(description "@code{es-mode} includes highlighting, completion and
|
|
indentation support for Elasticsearch queries. Also supported are
|
|
@code{es-mode} blocks in @code{org-mode}, for which the results of queries can
|
|
be processed through @code{jq}, or in the case of aggregations, can be
|
|
rendered in to a table. In addition, there is an @code{es-command-center}
|
|
mode, which displays information about Elasticsearch clusters.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-expand-region
|
|
(package
|
|
(name "emacs-expand-region")
|
|
(version "0.11.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/magnars/expand-region.el"
|
|
"/archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"08dy1f411sh9wwww53rjw80idcf3vpki6ba2arl4hl5jcw9651g0"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/magnars/expand-region.el")
|
|
(synopsis "Increase selected region by semantic units")
|
|
(description
|
|
"Expand region increases the selected region by semantic units. Just
|
|
keep pressing the key until it selects what you want. There's also
|
|
@code{er/contract-region} if you expand too far.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-fill-column-indicator
|
|
(package
|
|
(name "emacs-fill-column-indicator")
|
|
(version "1.81")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/alpaker/Fill-Column-Indicator"
|
|
"/archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1xwyqbjbbicmvhlb85vg4j5snwy1vd7rfk89ws4viws5ljkhhyg8"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://www.emacswiki.org/emacs/FillColumnIndicator")
|
|
(synopsis "Graphically indicate the fill column")
|
|
(description
|
|
"Fill-column-indicator graphically indicates the location of the fill
|
|
column by drawing a thin line down the length of the editing window.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-grep-a-lot
|
|
(package
|
|
(name "emacs-grep-a-lot")
|
|
(version "1.0.7")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/ZungBang/emacs-grep-a-lot.git")
|
|
(commit "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad")))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(sha256
|
|
(base32
|
|
"1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/ZungBang/emacs-grep-a-lot")
|
|
(synopsis "Enables multiple grep buffers in Emacs")
|
|
(description
|
|
"This Emacs package allows managing multiple grep buffers.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-inf-ruby
|
|
(package
|
|
(name "emacs-inf-ruby")
|
|
(version "2.5.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/nonsequitur/inf-ruby/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0m7323k649ckxql1grsdnf71bjhys7l4qb8wbpphb1mr1q8i4066"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/nonsequitur/inf-ruby")
|
|
(synopsis "Provides a REPL buffer connected to a Ruby subprocess in Emacs")
|
|
(description
|
|
"@code{inf-ruby} provides a Read Eval Print Loop (REPL) buffer, allowing
|
|
for easy interaction with a ruby subprocess. Features include support for
|
|
detecting specific uses of Ruby, e.g. when using rails, and using a
|
|
appropriate console.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-znc
|
|
(package
|
|
(name "emacs-znc")
|
|
(version "0.0.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://marmalade-repo.org/packages/znc-"
|
|
version ".el"))
|
|
(sha256
|
|
(base32
|
|
"1d8lqvybgyazin5z0g1c4l3rg1vzrrvf0saqs53jr1zcdg0lianh"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/sshirokov/ZNC.el")
|
|
(synopsis "Make ERC and ZNC get along better")
|
|
(description
|
|
"This is a thin wrapper around @code{erc} that enables one to use the ZNC
|
|
IRC bouncer with ERC.")
|
|
(license license:expat)))
|
|
|
|
(define-public emacs-shut-up
|
|
(package
|
|
(name "emacs-shut-up")
|
|
(version "0.3.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/cask/shut-up/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"09kzrjdkb569iviyg7ydwq44yh84m3f9hkl7jizfrlk0w4gz67d1"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/cask/shut-up")
|
|
(synopsis "Silence Emacs")
|
|
(description "This package silences most output of Emacs when running an
|
|
Emacs shell script.")
|
|
(license license:expat)))
|
|
|
|
(define-public emacs-undercover
|
|
(package
|
|
(name "emacs-undercover")
|
|
(version "0.6.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/sviridov/undercover.el/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0f48fi0xnbsqs382rgh85m9mq1wdnr0yib7as9xhwzvq0hsr5m0a"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-dash" ,emacs-dash)
|
|
("emacs-shut-up" ,emacs-shut-up)))
|
|
(home-page "https://github.com/sviridov/undercover.el")
|
|
(synopsis "Test coverage library for Emacs Lisp")
|
|
(description
|
|
"Undercover is a test coverage library for software written in Emacs
|
|
Lisp.")
|
|
(license license:expat)))
|
|
|
|
(define-public emacs-paren-face
|
|
(package
|
|
(name "emacs-paren-face")
|
|
(version "1.0.0")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/tarsius/paren-face/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0y4qrhxa9332vsvr999jg7qj1ymnfgwpf591yi4a4jgg90pm7qnn"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/tarsius/paren-face")
|
|
(synopsis "Face for parentheses in lisp modes")
|
|
(description
|
|
"This library defines a face named @code{parenthesis} used just for
|
|
parentheses. The intended purpose of this face is to make parentheses less
|
|
visible in Lisp code by dimming them. Lispers probably don't need to be
|
|
constantly made aware of the existence of the parentheses. Dimming them might
|
|
be even more useful for people new to lisp who have not yet learned to
|
|
subconsciously blend out the parentheses.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-page-break-lines
|
|
(package
|
|
(name "emacs-page-break-lines")
|
|
(version "0.11")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/purcell/page-break-lines/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1zzhziq5kbrm9rxk30kx2glz455fp1blqxg8cpcf6l8xl3w8z4pg"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/purcell/page-break-lines")
|
|
(synopsis "Display page breaks as tidy horizontal lines")
|
|
(description
|
|
"This library provides a global mode which displays form feed characters
|
|
as horizontal rules.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-simple-httpd
|
|
(package
|
|
(name "emacs-simple-httpd")
|
|
(version "1.4.6")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/skeeto/emacs-web-server/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"01r7h3imnj4qx1m53a2wjafvbylcyz5f9r2rg2cs7ky3chlg220r"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/skeeto/emacs-http-server")
|
|
(synopsis "HTTP server in pure Emacs Lisp")
|
|
(description
|
|
"This package provides a simple HTTP server written in Emacs Lisp to
|
|
serve files and directory listings.")
|
|
(license license:unlicense)))
|
|
|
|
(define-public emacs-skewer-mode
|
|
(package
|
|
(name "emacs-skewer-mode")
|
|
(version "1.6.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/skeeto/skewer-mode/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"07jpz374j0j964szy3zznrkyja2kpdl3xa87wh7349mzxivqxdx0"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-simple-httpd" ,emacs-simple-httpd)
|
|
("emacs-js2-mode" ,emacs-js2-mode)))
|
|
(arguments '(#:include '("\\.el$" "\\.js$" "\\.html$")))
|
|
(home-page "https://github.com/skeeto/skewer-mode")
|
|
(synopsis "Live web development in Emacs")
|
|
(description
|
|
"Skewer-mode provides live interaction with JavaScript, CSS, and HTML in
|
|
a web browser. Expressions are sent on-the-fly from an editing buffer to be
|
|
evaluated in the browser, just like Emacs does with an inferior Lisp process
|
|
in Lisp modes.")
|
|
(license license:unlicense)))
|
|
|
|
(define-public emacs-string-inflection
|
|
(package
|
|
(name "emacs-string-inflection")
|
|
(version "1.0.6")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/akicho8/string-inflection")
|
|
(commit "a150e7bdda60b7824d3a936750ce23f73b0e4edd")))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(sha256
|
|
(base32
|
|
"1k0sm552iawi49v4zis6dbb81d1rzgky9v0dpv7nj31gnb7bmy7k"))))
|
|
(build-system emacs-build-system)
|
|
(native-inputs
|
|
`(("ert-runner" ,ert-runner)))
|
|
(arguments
|
|
`(#:tests? #t
|
|
#:test-command '("ert-runner")))
|
|
(home-page "https://github.com/akicho8/string-inflection")
|
|
(synopsis "Convert symbol names between different naming conventions")
|
|
(description
|
|
"This Emacs package provides convenient methods for manipulating the
|
|
naming style of a symbol. It supports different naming conventions such as:
|
|
|
|
@enumerate
|
|
@item camel case
|
|
@item Pascal case
|
|
@item all upper case
|
|
@item lower case separated by underscore
|
|
@item etc...
|
|
@end enumerate\n")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-stripe-buffer
|
|
(package
|
|
(name "emacs-stripe-buffer")
|
|
(version "0.2.5")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/sabof/stripe-buffer/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1p515dq7raly5hw94kiwm3vzsfih0d8af622q4ipvvljsm98aiik"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/sabof/stripe-buffer/")
|
|
(synopsis "Add stripes to list buffers")
|
|
(description
|
|
"This Emacs package adds faces to add stripes to list buffers and org
|
|
tables.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-rich-minority
|
|
(package
|
|
(name "emacs-rich-minority")
|
|
(version "1.0.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/Malabarba/rich-minority/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1l0cb0q7kyi88nwfqd542psnkgwnjklpzc5rx32gzd3lkwkrbr8v"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/Malabarba/rich-minority")
|
|
(synopsis "Clean-up and beautify the list of minor modes")
|
|
(description
|
|
"This Emacs package hides and/or highlights minor modes in the
|
|
mode-line.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-robe
|
|
(package
|
|
(name "emacs-robe")
|
|
(version "0.8.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/dgutov/robe/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1vp45y99fwj88z04ah4yppz4z568qcib646az6m9az5ar0f203br"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
'(#:include (cons "^lib\\/" %default-include)))
|
|
(propagated-inputs
|
|
`(("emacs-inf-ruby" ,emacs-inf-ruby)))
|
|
(home-page "https://github.com/dgutov/robe")
|
|
(synopsis "Ruby code assistance tool for Emacs")
|
|
(description
|
|
"Robe can provide information on loaded classes and modules in Ruby code,
|
|
as well as where methods are defined. This allows the user to jump to method
|
|
definitions, modules and classes, display method documentation and provide
|
|
method and constant name completion.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-rspec
|
|
(package
|
|
(name "emacs-rspec")
|
|
(version "1.11")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/pezra/rspec-mode/"
|
|
"archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1j0a7ms5516nlg60qfyn730pfxys6acm0rgyxh5xfkpi6jafgpvw"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/pezra/rspec-mode")
|
|
(synopsis "Provides a rspec mode for working with RSpec")
|
|
(description
|
|
"The Emacs RSpec mode provides keybindings for Ruby source files, e.g. to
|
|
verify the spec associated with the current buffer, or entire project, as well
|
|
as moving between the spec files, and coresponding code files.
|
|
|
|
Also included are keybindings for spec files and Dired buffers, as well as
|
|
snippets for yasnippet.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-smart-mode-line
|
|
(package
|
|
(name "emacs-smart-mode-line")
|
|
(version "2.10.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/Malabarba/smart-mode-line/"
|
|
"archive/" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0i9wajabrrsjzwd842q0m2611kf0q31p9hg1pdj81177gynkw8l8"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-rich-minority" ,emacs-rich-minority)))
|
|
(home-page "https://github.com/Malabarba/smart-mode-line")
|
|
(synopsis "Color-coded smart mode-line")
|
|
(description
|
|
"Smart Mode Line is a mode-line theme for Emacs. It aims to be easy to
|
|
read from small to large monitors by using colors, a prefix feature, and smart
|
|
truncation.")
|
|
(license license:gpl2+)))
|
|
|
|
(define-public emacs-sr-speedbar
|
|
(let ((commit "77a83fb50f763a465c021eca7343243f465b4a47")
|
|
(revision "0"))
|
|
(package
|
|
(name "emacs-sr-speedbar")
|
|
(version (git-version "20161025" revision commit))
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/emacsorphanage/sr-speedbar.git")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://www.emacswiki.org/emacs/SrSpeedbar")
|
|
(synopsis "Same frame Emacs @code{speedbar}")
|
|
(description
|
|
"This Emacs package allows you to show @code{M-x speedbar} in the
|
|
same frame (in an extra window). You can customize the initial width of
|
|
the speedbar window.")
|
|
(license license:gpl3+))))
|
|
|
|
(define-public emacs-shell-switcher
|
|
(package
|
|
(name "emacs-shell-switcher")
|
|
(version "1.0.1")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/DamienCassou/shell-switcher"
|
|
"/archive/v" version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"1c23mfkdqz2g9rixd9smm323vzlvhzz3ng34ambcqjfq309qb2nz"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://github.com/DamienCassou/shell-switcher")
|
|
(synopsis "Provide fast switching between shell buffers")
|
|
(description
|
|
"This package provides commands to quickly switch between shell buffers.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-ob-ipython
|
|
(package
|
|
(name "emacs-ob-ipython")
|
|
(version "20150704.8807064693")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(commit "880706469338ab59b5bb7dbe8460016f89755364")
|
|
(url "https://github.com/gregsexton/ob-ipython.git")))
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
(sha256
|
|
(base32
|
|
"1scf25snbds9ymagpny30ijbsg479r3nm0ih01dy4m9d0g7qryb7"))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-f" ,emacs-f)))
|
|
(home-page "http://www.gregsexton.org")
|
|
(synopsis "Org-Babel functions for IPython evaluation")
|
|
(description "This package adds support to Org-Babel for evaluating Python
|
|
source code using IPython.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-debbugs
|
|
(package
|
|
(name "emacs-debbugs")
|
|
(version "0.15")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://elpa.gnu.org/packages/debbugs-"
|
|
version ".tar"))
|
|
(sha256
|
|
(base32
|
|
"1x7jw2ldgkknyxg7x9fhnqkary691icnysmi3xw0g2fjrvllzhqw"))))
|
|
(build-system emacs-build-system)
|
|
(arguments '(#:include '("\\.el$" "\\.wsdl$" "\\.info$")))
|
|
(propagated-inputs
|
|
`(("emacs-async" ,emacs-async)))
|
|
(home-page "https://elpa.gnu.org/packages/debbugs.html")
|
|
(synopsis "Access the Debbugs bug tracker in Emacs")
|
|
(description
|
|
"This package lets you access the @uref{http://bugs.gnu.org,GNU Bug
|
|
Tracker} from within Emacs.
|
|
|
|
For instance, it defines the command @code{M-x debbugs-gnu} for listing bugs,
|
|
and the command @code{M-x debbugs-gnu-search} for bug searching. If you
|
|
prefer the listing of bugs as TODO items of @code{org-mode}, you could use
|
|
@code{M-x debbugs-org} and related commands.
|
|
|
|
A minor mode @code{debbugs-browse-mode} let you browse URLs to the GNU Bug
|
|
Tracker as well as bug identifiers prepared for @code{bug-reference-mode}.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-ert-expectations
|
|
(package
|
|
(name "emacs-ert-expectations")
|
|
(version "0.2")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri "https://www.emacswiki.org/emacs/download/ert-expectations.el")
|
|
(sha256
|
|
(base32
|
|
"0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"))))
|
|
(build-system emacs-build-system)
|
|
(home-page "https://www.emacswiki.org/emacs/ert-expectations.el")
|
|
(synopsis "Simple unit test framework for Emacs Lisp")
|
|
(description "@code{emacs-ert-expectations} is a simple unit test
|
|
framework for Emacs Lisp to be used with @code{ert}.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-deferred
|
|
(package
|
|
(name "emacs-deferred")
|
|
(version "0.5.1")
|
|
(home-page "https://github.com/kiwanami/emacs-deferred")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url home-page)
|
|
(commit (string-append "v" version))))
|
|
(sha256
|
|
(base32
|
|
"0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"))
|
|
(file-name (string-append name "-" version))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-after 'unpack 'set-shell
|
|
;; Setting the SHELL environment variable is required for the tests
|
|
;; to find sh.
|
|
(lambda _
|
|
(setenv "SHELL" (which "sh"))
|
|
#t))
|
|
(add-before 'check 'fix-makefile
|
|
(lambda _
|
|
(substitute* "Makefile"
|
|
(("\\$\\(CASK\\) exec ") ""))
|
|
#t)))
|
|
#:tests? #t
|
|
#:test-command '("make" "test")))
|
|
(native-inputs
|
|
`(("emacs-ert-expectations" ,emacs-ert-expectations)
|
|
("emacs-undercover" ,emacs-undercover)
|
|
("ert-runner" ,ert-runner)))
|
|
(synopsis "Simple asynchronous functions for Emacs Lisp")
|
|
(description
|
|
"The @code{deferred.el} library provides support for asynchronous tasks.
|
|
The API is almost the same as that of
|
|
@uref{https://github.com/cho45/jsdeferred, JSDeferred}, a JavaScript library
|
|
for asynchronous tasks.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public butler
|
|
(package
|
|
(name "emacs-butler")
|
|
(version "0.2.4")
|
|
(home-page "https://github.com/AshtonKem/Butler")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url home-page)
|
|
(commit version)))
|
|
(sha256
|
|
(base32
|
|
"1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"))
|
|
(file-name (string-append name "-" version))))
|
|
(build-system emacs-build-system)
|
|
(propagated-inputs
|
|
`(("emacs-deferred" ,emacs-deferred)))
|
|
(synopsis "Emacs client for Jenkins")
|
|
(description
|
|
"Butler provides an interface to connect to Jenkins continuous
|
|
integration servers. Users can specify a list of server in the
|
|
@code{butler-server-list} variable and then use @code{M-x butler-status} to
|
|
view the build status of those servers' build jobs, and possibly to trigger
|
|
build jobs.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public emacs-company
|
|
(package
|
|
(name "emacs-company")
|
|
(version "0.9.6")
|
|
(source
|
|
(origin
|
|
(method url-fetch)
|
|
(uri (string-append "https://github.com/company-mode/company-mode/archive/"
|
|
version ".tar.gz"))
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
|
(sha256
|
|
(base32
|
|
"0a7zvmfvxh9w67myvcj2511ayk0fvkm06cdg38y8khnsx63jrr4k"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
`(#:phases
|
|
(modify-phases %standard-phases
|
|
(add-before 'check 'fix-bin-dir
|
|
(lambda _
|
|
;; The company-files-candidates-normal-root test looks
|
|
;; for the /bin directory, but the build environment has
|
|
;; no /bin directory. Modify the test to look for the
|
|
;; /tmp directory.
|
|
(substitute* "test/files-tests.el"
|
|
(( |