;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès ;;; Copyright © 2014, 2015, 2016, 2017, 2018 Mark H Weaver ;;; Copyright © 2014, 2015, 2016, 2017 Alex Kost ;;; Copyright © 2015 Federico Beffa ;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus ;;; Copyright © 2016, 2017 Chris Marusich ;;; Copyright © 2015, 2016 Christopher Allan Webber ;;; Copyright © 2016 Adriano Peluso ;;; Copyright © 2016, 2017, 2018 Efraim Flashner ;;; Copyright © 2016 David Thompson ;;; Copyright © 2016 Matthew Jordan ;;; Copyright © 2016, 2017 Roel Janssen ;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2016, 2017, 2018 Nicolas Goaziou ;;; Copyright © 2016, 2017 Alex Vong ;;; Copyright © 2016, 2017, 2018 Arun Isaac ;;; Copyright © 2017 Christopher Baines ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017 Vasile Dumitrascu ;;; Copyright © 2017 Kyle Meyer ;;; Copyright © 2017 Kei Kebreau ;;; Copyright © 2017 George Clemmer ;;; Copyright © 2017 Feng Shu ;;; Copyright © 2017 Jan Nieuwenhuizen ;;; Copyright © 2017, 2018 Oleg Pykhalov ;;; Copyright © 2017 Mekeor Melire ;;; Copyright © 2017 Peter Mikkelsen ;;; Copyright © 2017 Tobias Geerinckx-Rice ;;; Copyright © 2017 Mike Gerwitz ;;; Copyright © 2017, 2018 Maxim Cournoyer ;;; ;;; 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 . (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 code) #: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 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 (guix utils) #:use-module (srfi srfi-1) #:use-module (ice-9 match)) (define-public emacs (package (name "emacs") (version "25.3") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/emacs/emacs-" version ".tar.xz")) (sha256 (base32 "02y00y9q42g1iqgz5qhmsja75hwxd88yrn9zp14lanay0zkwafi5")) (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\"") " "))))))) (build-system glib-or-gtk-build-system) (arguments `(#: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")))) (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-8) ("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 (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 _ (zero? (system* "sh" "autogen.sh")))) ;; Build sometimes fails: deps/dispnew.d: No such file or directory (add-before 'build 'make-deps-dir (lambda _ (zero? (system* "mkdir" "-p" "src/deps")))))))))) ;;; ;;; Emacs hacking. ;;; (define-public geiser (package (name "geiser") (version "0.9") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/geiser/" version "/geiser-" version ".tar.gz")) (sha256 (base32 "0phz9d8wjk4p13vqannv0003fwh8qqrp0gfzcs2hgq1mrmv1srss")))) (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.0))) (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 geiser-next ;; This has become "geiser". (deprecated-package "geiser-next" geiser)) (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 paredit/old-name (deprecated-package "paredit" paredit)) (define-public git-modes (package (name "emacs-git-modes") (version "1.2.6") (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 "18z04wn5ird9l0h6n6x97v0kyzdj73832bj9qakm3fjjl7vcn0pw")))) (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.0") (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 "0kah7pv211zx9fsb5g4hd51bqcq2bxd1chdykd488ihvfz1l5y14")))) (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.11.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/magit/magit/releases/download/" version "/" name "-" version ".tar.gz")) (sha256 (base32 "11xly5bma9jc1jhs8fqbqrci8kz1y26yfq7dqjkqfy956wvfg6hz")))) (build-system gnu-build-system) (native-inputs `(("texinfo" ,texinfo) ("emacs" ,emacs-minimal))) (inputs `(("git" ,git) ("perl" ,perl))) (propagated-inputs `(("dash" ,emacs-dash) ;; XXX Add 'magit-popup' dependency for the next release (after 2.11.0). ("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 "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 "http://magit.github.io/") (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.1.1") (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 "04y88j7q9h8xjbx5dbick6n5nr1522sn9i1znp0qwk3vjb4b5mzz")))) (build-system trivial-build-system) (native-inputs `(("emacs" ,emacs-minimal) ("tar" ,tar) ("gzip" ,gzip))) (propagated-inputs `(("dash" ,emacs-dash) ("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))) (source (assoc-ref %build-inputs "source")) (lisp-dir (string-append %output "/share/emacs/site-lisp"))) (setenv "PATH" PATH) (system* 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)) (emacs-batch-eval '(byte-compile-file "magit-svn.el")))))))) (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.0") (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 "1dnk611f7lww6rb03hk8ijg2jwxx9f26pjfff4bwjmnjz7hnd6vz")))) (build-system emacs-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'install 'make-info (lambda _ (zero? (system* "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 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) ((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" (unless (zero? (system* "makeinfo" "haskell-mode.texi")) (error "makeinfo failed")) (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 "30") (source (origin (method url-fetch) (uri (string-append "https://github.com/flycheck/flycheck/releases/download/" version "/flycheck-" version ".tar")) (sha256 (base32 "1rxzkaqsj48z3nska5wsgwafvwkam014dzqd32baycmxjl0jxvy7")))) (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 (package (name "emacs-w3m") (version "1.4.538+0.20141022") (source (origin (method url-fetch) (uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_" version ".orig.tar.gz")) (sha256 (base32 "0zfxmq86pwk64yv0426gnjrvhjrgrjqn08sdcdhmmjmfpmqvm79y")))) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) ("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 ;; "--without-compress-install")) #:tests? #f ; no check target #:phases (modify-phases %standard-phases (add-after 'unpack 'autoconf (lambda _ (zero? (system* "autoconf")))) (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"))) (emacs-substitute-variables "w3m.el" ("w3m-command" (string-append w3m "/bin/w3m")) ("w3m-touch-command" (string-append coreutils "/bin/touch")) ("w3m-image-viewer" (string-append imagemagick "/bin/display")) ("w3m-icon-directory" (string-append out "/share/images/emacs-w3m"))) (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) (and (zero? (system* "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 "4.4") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/emms/emms-" version ".tar.gz")) (sha256 (base32 "1b0kalhn81dir26jgsma30i5bbly7d3s1ngqpf01zjjpr7lw5v0h")) (modules '((guix build utils))) (snippet '(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")))))) (build-system gnu-build-system) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) (guix build emacs-utils)) #: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"))) ;; 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-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) #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")))))) #: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))) (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 (package (name "emacs-emms-player-mpv") (version "0.0.13") (source (origin (method url-fetch) (uri (string-append "https://github.com/dochang/emms-player-mpv/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "01i0bz7wdqzcnv5r63m9xgl07yf1nmn86dwy00rcfsn5za46y3r3")))) (build-system emacs-build-system) (propagated-inputs `(("emms" ,emms))) (home-page "https://github.com/dochang/emms-player-mpv/") (synopsis "Mpv support for EMMS") (description "This package provides an EMMS player that uses mpv. It supports pause and seeking.") (license license:gpl3+))) (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. '(substitute* "doc/Makefile.in" (("^doc_DATA = .*$") "doc_DATA =\n"))))) (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" (zero? (system* "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.2") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/async-" version ".tar")) (sha256 (base32 "17fnvrj7jww29sav6a6jpizclg4w2962m6h37akpii71gf0vrffw")))) (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-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) (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 "fdaabbcc95d9156e3dadc84f81a4750c5b692580") (revision "1")) (package (name "emacs-graphviz-dot-mode") (version (string-append "0.3.10-" 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 "1s1qh5r0xp6hs0rl5yz5mkmjhpg04bh449c7vgjbb1pjsl1dl714")))) (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"))) (zero? (system* "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.4") (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 "10kwslnflbjqm62wkrq420crqzdqalzfflp9pqk1i12zm6dm4mfv")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'autogen (lambda _ (zero? (system* "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 _ (zero? (system* "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-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.13.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/magnars/dash.el/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1pjlkrzr8n45bnp3xs3dybvy0nz3gwamrfc7vsi1nhpkkw99ihhb")))) (build-system emacs-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'install 'check (lambda _ (zero? (system* "./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.3.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/alezost/guix.el" "/releases/download/v" version "/emacs-guix-" version ".tar.gz")) (sha256 (base32 "152zf9vkafmnnf7by5armg165npznb961csgnvr8iwdj3smvivjf")))) (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")) (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-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) ("magit-popup" ,emacs-magit-popup))) (home-page "https://alezost.github.io/guix.el/") (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.8") (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 "0knpgi55jm09282aqf8pv55zillpnpzf9f4sgm6gwsmvxf17xaw0")))) (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 `(#:phases (modify-phases %standard-phases (add-before 'install 'check (lambda _ (zero? (system* "./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 (package (name "emacs-sx") (version "0.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/vermiculus/sx.el/" "archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1w0xghfljqg31axcnv8gzlrd8pw25nji6idnrhflq0af9qh1dw03")))) (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.19.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/rejeep/f.el/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "05195n80ywa68qykxn7dza6qd59rhakvlzhaa9l6mcpmjf9l9grs")))) (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 "3.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/pidu/git-timemachine/" "archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1l4g0r69wfrnjsywv03v4bpdd53byg6zdx6mzabfxyymss3kvisa")))) (build-system emacs-build-system) (home-page "https://github.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 (package (name "emacs-minitest") (version "0.8.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/arthurnn/minitest-emacs/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1dsb7kzvs1x6g4sgqmq73jqacb7wzm0wfkiq5m9dqdzq8mppgiqs")))) (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-es-mode (package (name "emacs-es-mode") (version "4.2.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 "02as82clm553yss7jfjac888308zr1h2229cch4z1yij70j25c8y")))) (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-org" ,emacs-org))) (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 `(#:phases (modify-phases %standard-phases (add-before 'install 'check (lambda _ (zero? (system* "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) (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-deferred (package (name "emacs-deferred") (version "0.3.2") (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 "0059jy01ni5irpgrj9fa81ayd9j25nvmjjm79ms3210ysx4pgqdr")) (file-name (string-append name "-" version)))) (build-system emacs-build-system) ;; FIXME: Would need 'el-expectations' to actually run tests. (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.3") (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 "1fyrpchpdmvszssy1qmsw41aqpv6q5rybvs1bw00nv9xdhiaq4vh")))) (build-system emacs-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-before 'install 'check (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" (("/bin/") "/tmp/")) (zero? (system* "make" "test-batch"))))))) (home-page "http://company-mode.github.io/") (synopsis "Modular text completion framework") (description "Company is a modular completion mechanism. Modules for retrieving completion candidates are called back-ends, modules for displaying them are front-ends. Company comes with many back-ends, e.g. @code{company-elisp}. These are distributed in separate files and can be used individually.") (license license:gpl3+))) (define-public emacs-company-quickhelp (package (name "emacs-company-quickhelp") (version "2.3.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/expez/company-quickhelp/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0xrn2z1dgk5gmkmp2jkn9g83ckk39lqp5pyyv8rl7f6gqvib3qh0")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-pos-tip" ,emacs-pos-tip) ("emacs-company" ,emacs-company))) (home-page "https://github.com/expez/company-quickhelp") (synopsis "Popup documentation for completion candidates") (description "@code{company-quickhelp} shows documentation for the completion candidate when using the Company text completion framework.") (license license:gpl3+))) (define-public emacs-multiple-cursors (package (name "emacs-multiple-cursors") (version "1.4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/magnars/multiple-cursors.el/" "archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k")))) (build-system emacs-build-system) (home-page "https://github.com/magnars/multiple-cursors.el") (synopsis "Multiple cursors for Emacs") (description "This package adds support to Emacs for editing text with multiple simultaneous cursors.") (license license:gpl3+))) (define-public typo (package (name "emacs-typo") (version "1.1") (home-page "https://github.com/jorgenschaefer/typoel") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (sha256 (base32 "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2")) (file-name (string-append name "-" version)))) (build-system emacs-build-system) (synopsis "Minor mode for typographic editing") (description "This package provides two Emacs modes, @code{typo-mode} and @code{typo-global-mode}. These modes automatically insert Unicode characters for quotation marks, dashes, and ellipses. For example, typing @kbd{\"} automatically inserts a Unicode opening or closing quotation mark, depending on context.") (license license:gpl3+))) (define-public emacs-scheme-complete (let ((commit "9b5cf224bf2a5994bc6d5b152ff487517f1a9bb5")) (package (name "emacs-scheme-complete") (version (string-append "20151223." (string-take commit 8))) (source (origin (file-name (string-append name "-" version)) (method git-fetch) (uri (git-reference (url "https://github.com/ashinn/scheme-complete.git") (commit commit))) (sha256 (base32 "141wn9l0m33w0g3dqmx8nxbfdny1r5xbr6ak61rsz21bk0qafs7x")) (patches (search-patches "emacs-scheme-complete-scheme-r5rs-info.patch")))) (build-system emacs-build-system) (home-page "https://github.com/ashinn/scheme-complete") (synopsis "Smart tab completion for Scheme in Emacs") (description "This file provides a single function, @code{scheme-smart-complete}, which you can use for intelligent, context-sensitive completion for any Scheme implementation in Emacs. To use it just load this file and bind that function to a key in your preferred mode.") (license license:public-domain)))) (define-public emacs-mit-scheme-doc (package (name "emacs-mit-scheme-doc") (version "20140203") (source (origin (modules '((guix build utils))) (snippet ;; keep only file of interest '(begin (for-each delete-file '("dot-emacs.el" "Makefile")) (install-file "6.945-config/mit-scheme-doc.el" ".") (delete-file-recursively "6.945-config"))) (file-name (string-append name "-" version ".tar.bz2")) (method url-fetch) (uri (string-append "http://groups.csail.mit.edu/mac/users/gjs/" "6.945/dont-panic/emacs-basic-config.tar.bz2")) (sha256 (base32 "0dqidg2bd66pawqfarvwca93w5gqf9mikn1k2a2rmd9ymfjpziq1")))) (build-system emacs-build-system) (inputs `(("mit-scheme" ,mit-scheme))) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'configure-doc (lambda* (#:key inputs #:allow-other-keys) (let* ((mit-scheme-dir (assoc-ref inputs "mit-scheme")) (doc-dir (string-append mit-scheme-dir "/share/doc/" "mit-scheme-" ,(package-version mit-scheme)))) (substitute* "mit-scheme-doc.el" (("http://www\\.gnu\\.org/software/mit-scheme/documentation/mit-scheme-ref/") (string-append "file:" doc-dir "/mit-scheme-ref/"))))))))) (home-page "http://groups.csail.mit.edu/mac/users/gjs/6.945/dont-panic/") (synopsis "MIT-Scheme documentation lookup for Emacs") (description "This package provides a set of Emacs functions to search definitions of identifiers in the MIT-Scheme documentation.") (license license:gpl2+))) (define-public emacs-constants (package (name "emacs-constants") (version "2.6") (home-page "https://staff.fnwi.uva.nl/c.dominik/Tools/constants") (source (origin (file-name (string-append name "-" version ".tar.gz")) (method url-fetch) (uri (string-append "https://github.com/fedeinthemix/emacs-constants" "/archive/v" version ".tar.gz")) (sha256 (base32 "0pnrpmmxq8mh5h2hbrp5vcym0j0fh6dv3s7c5ccn18wllhzg9g7n")))) (build-system emacs-build-system) (synopsis "Enter definition of constants into an Emacs buffer") (description "This package provides functions for inserting the definition of natural constants and units into an Emacs buffer.") (license license:gpl2+))) (define-public emacs-tagedit (package (name "emacs-tagedit") (version "1.4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/magnars/tagedit/" "archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-s" ,emacs-s) ("emacs-dash" ,emacs-dash))) (home-page "https://github.com/magnars/tagedit") (synopsis "Some paredit-like features for html-mode") (description "This package provides a collection of paredit-like functions for editing in @code{html-mode}.") (license license:gpl3+))) (define-public emacs-slime (package (name "emacs-slime") (version "2.20") (source (origin (file-name (string-append name "-" version ".tar.gz")) (method url-fetch) (uri (string-append "https://github.com/slime/slime/archive/v" version ".tar.gz")) (sha256 (base32 "086lq5y4pvj9wihy0si02xxvyzpzz8mcg3hz1cvy9zxlyjwzr1gk")))) (build-system emacs-build-system) (native-inputs `(("texinfo" ,texinfo))) (arguments `(#:include '("\\.el$" "\\.lisp$" "\\.asd$" "contrib") #:exclude '("^slime-tests.el" "^contrib/test/" "^contrib/Makefile$" "^contrib/README.md$") #:phases (modify-phases %standard-phases (add-before 'install 'configure (lambda* _ (emacs-substitute-variables "slime.el" ("inferior-lisp-program" "sbcl")) #t)) (add-before 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (info-dir (string-append out "/share/info")) (doc-dir (string-append out "/share/doc/" ,name "-" ,version)) (doc-files '("doc/slime-refcard.pdf" "README.md" "NEWS" "PROBLEMS" "CONTRIBUTING.md"))) (with-directory-excursion "doc" (substitute* "Makefile" (("infodir=/usr/local/info") (string-append "infodir=" info-dir))) (system* "make" "html/index.html") (system* "make" "slime.info") (install-file "slime.info" info-dir) (copy-recursively "html" (string-append doc-dir "/html"))) (for-each (lambda (f) (install-file f doc-dir) (delete-file f)) doc-files) (delete-file-recursively "doc") #t)))))) (home-page "https://github.com/slime/slime") (synopsis "Superior Lisp Interaction Mode for Emacs") (description "SLIME extends Emacs with support for interactive programming in Common Lisp. The features are centered around @command{slime-mode}, an Emacs minor mode that complements the standard @command{lisp-mode}. While lisp-mode supports editing Lisp source files, @command{slime-mode} adds support for interacting with a running Common Lisp process for compilation, debugging, documentation lookup, and so on.") (license license:gpl2+))) (define-public emacs-popup (package (name "emacs-popup") (version "0.5.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/auto-complete/popup-el/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1yrgfj8y69xmcb6kwgplhq68ndm9410qwh7sd2knnd1gchpphdc0")))) (build-system emacs-build-system) (home-page "https://github.com/auto-complete/popup-el") (synopsis "Visual Popup User Interface for Emacs") (description "Popup.el is a visual popup user interface library for Emacs. This provides a basic API and common UI widgets such as popup tooltips and popup menus.") (license license:gpl3+))) (define-public emacs-god-mode (let ((commit "6cf0807b6555eb6fcf8387a4e3b667071ef38964") (revision "1")) (package (name "emacs-god-mode") (version (string-append "20151005.925." revision "-" (string-take commit 9))) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/chrisdone/god-mode.git") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix")))) (build-system emacs-build-system) (home-page "https://github.com/chrisdone/god-mode") (synopsis "Minor mode for entering commands without modifier keys") (description "This package provides a global minor mode for entering Emacs commands without modifier keys. It's similar to Vim's separation of commands and insertion mode. When enabled all keys are implicitly prefixed with @samp{C-} (among other helpful shortcuts).") (license license:gpl3+)))) (define-public emacs-jinja2-mode (package (name "emacs-jinja2-mode") (version "0.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/paradoxxxzero/jinja2-mode/" "archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0cgxjab1kla2zc2fj7bzib6i7snp08zshandmp9kqcm85l262xpn")))) (build-system emacs-build-system) (home-page "https://github.com/paradoxxxzero/jinja2-mode") (synopsis "Major mode for jinja2") (description "Emacs major mode for jinja2 with: syntax highlighting, sgml/html integration, and indentation (working with sgml).") (license license:gpl3+))) (define-public emacs-rfcview (package (name "emacs-rfcview") (version "0.13") (home-page "http://www.loveshack.ukfsn.org/emacs") (source (origin (method url-fetch) (uri "http://www.loveshack.ukfsn.org/emacs/rfcview.el") (sha256 (base32 "0ympj5rxig383zl2jf0pzdsa80nnq0dpvjiriq0ivfi98fj7kxbz")))) (build-system emacs-build-system) (synopsis "Prettify Request for Comments (RFC) documents") (description "The Internet Engineering Task Force (IETF) and the Internet Society (ISOC) publish various Internet-related protocols and specifications as \"Request for Comments\" (RFC) documents and Internet Standard (STD) documents. RFCs and STDs are published in a simple text form. This package provides an Emacs major mode, rfcview-mode, which makes it more pleasant to read these documents in Emacs. It prettifies the text and adds hyperlinks/menus for easier navigation. It also provides functions for browsing the index of RFC documents and fetching them from remote servers or local directories.") (license license:gpl3+))) (define-public emacs-ffap-rfc-space (package (name "emacs-ffap-rfc-space") (version "12") (home-page "http://user42.tuxfamily.org/ffap-rfc-space/index.html") (source (origin (method url-fetch) (uri "http://download.tuxfamily.org/user42/ffap-rfc-space.el") (sha256 (base32 "1iv61dv57a73mdps7rn6zmgz7nqh14v0ninidyrasy45b1nv6gck")))) (build-system emacs-build-system) (synopsis "Make ffap recognize an RFC with a space before its number") (description "The Internet Engineering Task Force (IETF) and the Internet Society (ISOC) publish various Internet-related protocols and specifications as \"Request for Comments\" (RFC) documents. The built-in Emacs module \"ffap\" (Find File at Point) has the ability to recognize names at point which look like \"RFC1234\" and \"RFC-1234\" and load the appropriate RFC from a remote server. However, it fails to recognize a name like \"RFC 1234\". This package enhances ffap so that it correctly finds RFCs even when a space appears before the number.") (license license:gpl3+))) (define-public emacs-org-bullets (package (name "emacs-org-bullets") (version "0.2.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/sabof/org-bullets/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1dyxvpb73vj80v8br2q9rf255hfphrgaw91fbvwdcd735np9pcnh")))) (build-system emacs-build-system) (home-page "https://github.com/sabof/org-bullets") (synopsis "Show bullets in org-mode as UTF-8 characters") (description "This package provides an Emacs minor mode causing bullets in @code{org-mode} to be rendered as UTF-8 characters.") (license license:gpl3+))) (define-public emacs-org-pomodoro (package (name "emacs-org-pomodoro") (version "2.1.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/lolownia/org-pomodoro/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1jalsggw3q5kvj353f84x4nl04a5vmq07h75ggppy1627lb31zm4")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-alert" ,emacs-alert))) (home-page "https://github.com/lolownia/org-pomodoro") (synopsis "Pomodoro technique for org-mode") (description "@code{emacs-org-pomodoro} adds very basic support for Pomodoro technique in Emacs org-mode. Run @code{M-x org-pomodoro} for the task at point or select one of the last tasks that you clocked time for. Each clocked-in pomodoro starts a timer of 25 minutes and after each pomodoro a break timer of 5 minutes is started automatically. Every 4 breaks a long break is started with 20 minutes. All values are customizable.") (license license:gpl3+))) (define-public emacs-org-trello (package (name "emacs-org-trello") (version "0.7.9") (source (origin (method url-fetch) (uri (string-append "https://github.com/org-trello/org-trello/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-deferred" ,emacs-deferred) ("emacs-request" ,emacs-request) ("emacs-dash" ,emacs-dash) ("emacs-s" ,emacs-s))) (home-page "https://org-trello.github.io") (synopsis "Emacs minor mode for interacting with Trello") (description "This package provides an Emacs minor mode to extend @code{org-mode} with Trello abilities. Trello is an online project organizer.") (license license:gpl3+))) (define-public emacs-zenburn-theme (package (name "emacs-zenburn-theme") (version "2.5") (source (origin (method url-fetch) (uri (string-append "https://github.com/bbatsov/zenburn-emacs/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "03kfhzgbbbl8ivpzzky6qxw4j9mmp452m1sk7wikxmcalfnix0gn")))) (build-system emacs-build-system) (home-page "https://github.com/bbatsov/zenburn-emacs") (synopsis "Low contrast color theme for Emacs") (description "Zenburn theme is a port of the popular Vim Zenburn theme for Emacs. It is built on top of the custom theme support in Emacs 24 or later.") (license license:gpl3+))) (define-public emacs-solarized-theme (package (name "emacs-solarized-theme") (version "1.2.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/bbatsov/solarized-emacs/" "archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1ha3slc6d9wi9ilkhmwrzkvf308n6ph7b0k69pk369s9304awxzx")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash))) (home-page "https://github.com/bbatsov/solarized-emacs") (synopsis "Port of the Solarized theme for Emacs") (description "Solarized for Emacs is a port of the Solarized theme for Vim. This package provides a light and a dark variant.") (license license:gpl3+))) (define-public emacs-ahungry-theme (package (name "emacs-ahungry-theme") (version "1.10.0") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/ahungry-theme-" version ".tar")) (sha256 (base32 "14q5yw56n82qph09bk7wmj5b1snhh9w0nk5s1l7yn9ldg71xq6pm")))) (build-system emacs-build-system) (home-page "https://github.com/ahungry/color-theme-ahungry") (synopsis "Ahungry color theme for Emacs") (description "Ahungry theme for Emacs provides bright and bold colors. If you load it from a terminal, you will be able to make use of the transparent background. If you load it from a GUI, it will default to a dark background.") (license license:gpl3+))) (define-public emacs-2048-game (package (name "emacs-2048-game") (version "20151026.1233") (source (origin (method url-fetch) (uri (string-append "https://melpa.org/packages/2048-game-" version ".el")) (sha256 (base32 "0gy2pvz79whpavp4jmz8h9krzn7brmvv3diixi1d4w51pcdvaldd")))) (build-system emacs-build-system) (home-page "https://bitbucket.org/zck/2048.el") (synopsis "Implementation of the game 2048 in Emacs Lisp") (description "This program is an implementation of 2048 for Emacs. The goal of this game is to create a tile with value 2048. The size of the board and goal value can be customized.") (license license:gpl3+))) (define-public emacs-base16-theme (package (name "emacs-base16-theme") (version "2.1") (source (origin (method url-fetch) (uri (string-append "https://stable.melpa.org/packages/base16-theme-" version ".tar")) (sha256 (base32 "0z6hrwz2jlz6jbr381rcqcqvx6hss5cad352klx07rark7zccacj")))) (build-system emacs-build-system) (home-page "https://github.com/belak/base16-emacs") (synopsis "Base16 color themes for Emacs") (description "Base16 provides carefully chosen syntax highlighting and a default set of sixteen colors suitable for a wide range of applications. Base16 is not a single theme but a set of guidelines with numerous implementations.") (license license:expat))) (define-public emacs-smartparens (package (name "emacs-smartparens") (version "1.11.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/Fuco1/smartparens/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0q5as813xs8y29i3v2rm97phd6m7xsmmw6hwbvx57gwmi8i1c409")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash))) (home-page "https://github.com/Fuco1/smartparens") (synopsis "Paredit-like insertion, wrapping and navigation with user defined pairs") (description "Smartparens is a minor mode for Emacs that deals with parens pairs and tries to be smart about it. It started as a unification effort to combine functionality of several existing packages in a single, compatible and extensible way to deal with parentheses, delimiters, tags and the like. Some of these packages include autopair, textmate, wrap-region, electric-pair-mode, paredit and others. With the basic features found in other packages it also brings many improvements as well as completely new features.") (license license:gpl3+))) (define-public emacs-highlight-symbol (package (name "emacs-highlight-symbol") (version "1.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/nschum/highlight-symbol.el/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1n7k1qns0fn0jsyc0hrjac5nzk21xw48yc30vyrhwvc51h0b9g90")))) (build-system emacs-build-system) (home-page "https://nschum.de/src/emacs/highlight-symbol") (synopsis "Automatic and manual symbol highlighting for Emacs") (description "Use @code{highlight-symbol} to toggle highlighting of the symbol at point throughout the current buffer. Use @code{highlight-symbol-mode} to keep the symbol at point highlighted. The functions @code{highlight-symbol-next}, @code{highlight-symbol-prev}, @code{highlight-symbol-next-in-defun} and @code{highlight-symbol-prev-in-defun} allow for cycling through the locations of any symbol at point. Use @code{highlight-symbol-nav-mode} to enable key bindings @code{M-p} and @code{M-p} for navigation. When @code{highlight-symbol-on-navigation-p} is set, highlighting is triggered regardless of @code{highlight-symbol-idle-delay}. @code{highlight-symbol-query-replace} can be used to replace the symbol. ") (license license:gpl2+))) (define-public emacs-hl-todo (package (name "emacs-hl-todo") (version "1.8.0") (source (origin (method url-fetch) (uri (string-append "https://raw.githubusercontent.com/tarsius/hl-todo/" version "/hl-todo.el")) (file-name (string-append "hl-todo-" version ".el")) (sha256 (base32 "0g0h9v4572p7mcird8wsj1c41haf60krslm6mlpi4mdbh248kv6z")))) (build-system emacs-build-system) (home-page "https://github.com/tarsius/hl-todo") (synopsis "Emacs mode to highlight TODO and similar keywords") (description "This package provides an Emacs mode to highlight TODO and similar keywords in comments and strings. This package also provides commands for moving to the next or previous keyword and to invoke @code{occur} with a regexp that matches all known keywords.") (license license:gpl3+))) (define-public emacs-perspective (package (name "emacs-perspective") (version "1.12") (source (origin (method url-fetch) (uri (string-append "https://github.com/nex3/perspective-el/" "archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "078ahh0kmhdylq5ib9c81c76kz1n02xwc83pm729d00i84ibviic")))) (build-system emacs-build-system) (home-page "https://github.com/nex3/perspective-el") (synopsis "Switch between named \"perspectives\"") (description "This package provides tagged workspaces in Emacs, similar to workspaces in windows managers such as Awesome and XMonad. @code{perspective.el} provides multiple workspaces (or \"perspectives\") for each Emacs frame. Each perspective is composed of a window configuration and a set of buffers. Switching to a perspective activates its window configuration, and when in a perspective only its buffers are available by default.") ;; This package is released under the same license as Emacs (GPLv3+) or ;; the Expat license. (license license:gpl3+))) (define-public emacs-test-simple (package (name "emacs-test-simple") (version "1.3.0") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/test-simple-" version ".el")) (sha256 (base32 "1yd61jc9ds95a5n09052kwc5gasy57g4lxr0jsff040brlyi9czz")))) (build-system emacs-build-system) (home-page "https://github.com/rocky/emacs-test-simple") (synopsis "Simple unit test framework for Emacs Lisp") (description "Test Simple is a simple unit test framework for Emacs Lisp. It alleviates the need for context macros, enclosing specifications or required test tags. It supports both interactive and non-interactive use.") (license license:gpl3+))) (define-public emacs-load-relative (package (name "emacs-load-relative") (version "1.3") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/load-relative-" version ".el")) (sha256 (base32 "1hfxb2436jdsi9wfmsv47lkkpa5galjf5q81bqabbsv79rv59dps")))) (build-system emacs-build-system) (home-page "http://github.com/rocky/emacs-load-relative") (synopsis "Emacs Lisp relative file loading related functions") (description "Provides functions which facilitate writing multi-file Emacs packages and running from the source tree without having to \"install\" code or fiddle with @{load-path}. The main function, @code{load-relative}, loads an Emacs Lisp file relative to another (presumably currently running) Emacs Lisp file.") (license license:gpl3+))) (define-public emacs-loc-changes (package (name "emacs-loc-changes") (version "1.2") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/loc-changes-" version ".el")) (sha256 (base32 "1x8fn8vqasayf1rb8a6nma9n6nbvkx60krmiahyb05vl5rrsw6r3")))) (build-system emacs-build-system) (home-page "https://github.com/rocky/emacs-loc-changes") (synopsis "Keeps track of positions even after buffer changes") (description "This Emacs package provides a mean to track important buffer positions after buffer changes.") (license license:gpl3+))) (define-public emacs-realgud (package (name "emacs-realgud") (version "1.4.4") (source (origin (method url-fetch) (uri (string-append "https://elpa.gnu.org/packages/realgud-" version ".tar")) (sha256 (base32 "1nc8km339ip90h1j55ahfga03v7x7rh4iycmw6yrxyzir68vwn7c")))) (build-system emacs-build-system) (arguments `(#:tests? #t #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-autogen-script (lambda _ (substitute* "autogen.sh" (("./configure") "sh configure")))) (add-after 'fix-autogen-script 'autogen (lambda _ (setenv "CONFIG_SHELL" "sh") (invoke "sh" "autogen.sh"))) (add-after 'fix-autogen-script 'set-home (lambda _ (setenv "HOME" (getenv "TMPDIR")))) (add-before 'patch-el-files 'remove-realgud-pkg.el (lambda _ ;; XXX: This file is auto-generated at some point and causes ;; substitute* to crash during the `patch-el-files' phase with: ;; ERROR: In procedure stat: No such file or directory: ;; "./realgud-pkg.el" (delete-file "./realgud-pkg.el") ;; FIXME: `patch-el-files' crashes on this file with error: ;; unable to locate "bashdb". (delete-file "./test/test-regexp-bashdb.el")))) #:include (cons* ".*\\.el$" %default-include))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("emacs-test-simple" ,emacs-test-simple))) (propagated-inputs `(("emacs-load-relative" ,emacs-load-relative) ("emacs-loc-changes" ,emacs-loc-changes))) (home-page "https://github.com/realgud/realgud/") (synopsis "Modular front-end for interacting with external debuggers") (description "RealGUD is a modular, extensible GNU Emacs front-end for interacting with external debuggers. It integrates various debuggers such as gdb, pdb, ipdb, jdb, lldb, bashdb, zshdb, etc. and allows to visually step code in the sources. Unlike GUD, it also supports running multiple debug sessions in parallel.") (license license:gpl3+))) (define-public emacs-request (package (name "emacs-request") (version "0.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tkf/emacs-request.git") (commit (string-append "v" version)))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7")))) (build-system emacs-build-system) (home-page "https://github.com/tkf/emacs-request") (synopsis "Package for speaking HTTP in Emacs Lisp") (description "This package provides a HTTP request library with multiple backends. It supports url.el which is shipped with Emacs and the curl command line program.") (license license:gpl3+))) (define-public emacs-rudel (package (name "emacs-rudel") (version "0.3.1") (source (origin (method url-fetch) (uri (string-append "http://elpa.gnu.org/packages/rudel-" version ".tar")) (sha256 (base32 "0glqa68g509p0s2vcc0i8kzlddnc9brd9jqhnm5rzxz4i050cvnz")))) (build-system emacs-build-system) (home-page "http://rudel.sourceforge.net/") (synopsis "Collaborative editing framework") (description "Rudel is a collaborative editing environment for GNU Emacs. Its purpose is to share buffers with other users in order to edit the contents of those buffers collaboratively. Rudel supports multiple backends to enable communication with other collaborative editors using different protocols, though currently Obby (for use with the Gobby editor) is the only fully-functional one.") (license license:gpl3+))) (define-public emacs-hydra (package (name "emacs-hydra") (version "0.14.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/abo-abo/hydra/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0884k3ffwzhh6krbd8l7vvm184dkagb2jf4q8xzg72plln34qrm8")))) (build-system emacs-build-system) (home-page "https://github.com/abo-abo/hydra") (synopsis "Make Emacs bindings that stick around") (description "This package can be used to tie related commands into a family of short bindings with a common prefix---a Hydra. Once you summon the Hydra (through the prefixed binding), all the heads can be called in succession with only a short extension. Any binding that isn't the Hydra's head vanquishes the Hydra. Note that the final binding, besides vanquishing the Hydra, will still serve its original purpose, calling the command assigned to it. This makes the Hydra very seamless; it's like a minor mode that disables itself automatically.") (license license:gpl3+))) (define-public emacs-ivy (package (name "emacs-ivy") (version "0.10.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/abo-abo/swiper.git") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr")))) (build-system emacs-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (info (string-append out "/share/info"))) (with-directory-excursion "doc" (unless (zero? (system* "makeinfo" "ivy.texi")) (error "makeinfo failed")) (install-file "ivy.info" info)))))))) (propagated-inputs `(("emacs-hydra" ,emacs-hydra))) (native-inputs `(("texinfo" ,texinfo))) (home-page "http://oremacs.com/swiper/") (synopsis "Incremental vertical completion for Emacs") (description "This package provides @code{ivy-read} as an alternative to @code{completing-read} and similar functions. No attempt is made to determine the best candidate. Instead, the user can navigate candidates with @code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by splitting the input text by spaces and re-building it into a regular expression.") (license license:gpl3+))) (define-public emacs-avy (package (name "emacs-avy") (version "0.4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/abo-abo/avy/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1wdrq512h25ymzjbf2kbsdymvd2ryfwzb6bh5bc3yv7q203im796")))) (build-system emacs-build-system) (home-page "https://github.com/abo-abo/avy") (synopsis "Tree-based completion for Emacs") (description "This package provides a generic completion method based on building a balanced decision tree with each candidate being a leaf. To traverse the tree from the root to a desired leaf, typically a sequence of @code{read-key} can be used. In order for @code{read-key} to make sense, the tree needs to be visualized appropriately, with a character at each branch node. So this completion method works only for things that you can see on your screen, all at once, such as the positions of characters, words, line beginnings, links, or windows.") (license license:gpl3+))) (define-public emacs-ace-window (package (name "emacs-ace-window") (version "0.9.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/abo-abo/ace-window/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1p2sgfl5dml4zbd6ldql6lm2m9vmd236ah996ni32x254s48j5pn")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-avy" ,emacs-avy))) (home-page "https://github.com/abo-abo/ace-window") (synopsis "Quickly switch windows in Emacs") (description "@code{ace-window} is meant to replace @code{other-window}. In fact, when there are only two windows present, @code{other-window} is called. If there are more, each window will have its first character highlighted. Pressing that character will switch to that window.") (license license:gpl3+))) (define-public emacs-iedit (package (name "emacs-iedit") (version "0.9.9.9") (source (origin (method url-fetch) (uri (string-append "https://github.com/victorhge/iedit/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1hv8q6pr85ss9g3158l1fqv3m62vsq8rslsi86jicr2dcxyascr0")))) (build-system emacs-build-system) (home-page "http://www.emacswiki.org/emacs/Iedit") (synopsis "Edit multiple regions in the same way simultaneously") (description "This package is an Emacs minor mode and allows you to edit one occurrence of some text in a buffer (possibly narrowed) or region, and simultaneously have other occurrences edited in the same way. You can also use Iedit mode as a quick way to temporarily show only the buffer lines that match the current text being edited. This gives you the effect of a temporary @code{keep-lines} or @code{occur}.") (license license:gpl3+))) (define-public emacs-lispy (package (name "emacs-lispy") (version "0.26.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/abo-abo/lispy/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-ace-window" ,emacs-ace-window) ("emacs-iedit" ,emacs-iedit) ("emacs-ivy" ,emacs-ivy) ("emacs-hydra" ,emacs-hydra))) (home-page "https://github.com/abo-abo/lispy") (synopsis "Modal S-expression editing") (description "Due to the structure of Lisp syntax it's very rare for the programmer to want to insert characters right before \"(\" or right after \")\". Thus unprefixed printable characters can be used to call commands when the point is at one of these special locations. Lispy provides unprefixed keybindings for S-expression editing when point is at the beginning or end of an S-expression.") (license license:gpl3+))) (define-public emacs-clojure-mode (package (name "emacs-clojure-mode") (version "5.4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/clojure-emacs/clojure-mode/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "117mvjqh4nm8mvmwmmvy4qmkdg23ldlzk08y91g8b8ac8kxwqg81")))) (build-system emacs-build-system) (native-inputs `(("emacs-dash" ,emacs-dash) ("emacs-s" ,emacs-s) ("ert-runner" ,ert-runner))) (arguments `(#:phases (modify-phases %standard-phases (add-after 'install 'check (lambda _ (zero? (system* "ert-runner"))))))) (home-page "https://github.com/clojure-emacs/clojure-mode") (synopsis "Major mode for Clojure code") (description "This Emacs package provides font-lock, indentation, navigation and basic refactoring for the @uref{http://clojure.org, Clojure programming language}. It is recommended to use @code{clojure-mode} with paredit or smartparens.") (license license:gpl3+))) (define-public emacs-epl (package (name "emacs-epl") (version "0.8") (source (origin (method url-fetch) (uri (string-append "https://github.com/cask/epl/archive/" version ".tar.gz")) (sha256 (base32 "1511n3a3f5gvaf2b4nh018by61ciyzi3y3603fzqma7p9hrckarc")))) (build-system emacs-build-system) (home-page "https://github.com/cask/epl") (synopsis "Emacs Package Library") (description "A package management library for Emacs, based on @code{package.el}. The purpose of this library is to wrap all the quirks and hassle of @code{package.el} into a sane API.") (license license:gpl3+))) (define-public emacs-esxml (package (name "emacs-esxml") (version "0.3.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/tali713/esxml/archive/" version ".tar.gz")) (sha256 (base32 "01yk4ibbln3ykrin2124hfdi53fsp9gv7j49qw93s2ls52c9zb2f")))) (build-system emacs-build-system) (home-page "https://github.com/tali713/esxml") (synopsis "Elisp library for working with XML, ESXML and SXML") (description "This library provides two formats for XML code generation. The primary form is esxml. This is the form that is returned by such functions as @code{libxml-parse-xml-region} and it is used internally by emacs in many xml-related libraries.") (license license:gpl3+))) (define-public emacs-nov (package (name "emacs-nov") (version "0.2.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/wasamasa/nov.el/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0pc07cr2qfa66pxyxhvgrxiwssykisj25yjxvx3qr4v7bp5qmms7")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-dash" ,emacs-dash) ("emacs-esxml" ,emacs-esxml))) (home-page "https://github.com/wasamasa/nov.el") (synopsis "Major mode for reading EPUB files in Emacs") (description "This package provides a major mode for reading EPUB documents. Features: @itemize @item Basic navigation (jump to table of contents (TOC), previous/next chapter) @item Remembering and restoring the last read position @item Jump to next chapter when scrolling beyond end @item Renders EPUB2 (.ncx) and EPUB3 (