2013-01-13 11:12:22 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-07-29 04:00:56 -04:00
|
|
|
|
;;; Copyright © 2014 Taylan Ulrich Bayirli/Kammer <taylanbayirli@gmail.com>
|
2015-01-19 10:37:05 -05:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-03-29 00:23:48 -04:00
|
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2015-08-17 14:44:40 -04:00
|
|
|
|
;;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com>
|
2015-06-15 08:51:06 -04:00
|
|
|
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
2015-07-05 13:59:37 -04:00
|
|
|
|
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
2013-01-13 11:12:22 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2013-01-17 19:06:24 -05:00
|
|
|
|
(define-module (gnu packages emacs)
|
2015-03-04 11:02:07 -05:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2013-01-13 11:12:22 -05:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2015-05-10 10:29:54 -04:00
|
|
|
|
#:use-module (guix git-download)
|
2013-01-13 11:12:22 -05:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2015-06-15 08:51:06 -04:00
|
|
|
|
#:use-module (guix build-system emacs)
|
2014-12-09 17:11:02 -05:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2014-08-02 20:01:48 -04:00
|
|
|
|
#:use-module (guix build-system trivial)
|
2013-01-17 19:06:47 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2015-05-10 10:29:54 -04:00
|
|
|
|
#:use-module (gnu packages guile)
|
2013-08-05 15:52:11 -04:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2015-04-04 03:32:04 -04:00
|
|
|
|
#:use-module (gnu packages gnome)
|
2013-01-17 19:06:24 -05:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
|
#:use-module (gnu packages texinfo)
|
gnu: Rename module gnutls to tls.
* gnu/packages/gnutls.scm: Rename to...
* gnu/packages/tls.scm: ... this. Change module name accordingly.
* gnu/packages/{admin.scm, cups.scm, curl.scm, dc.scm, dns.scm, emacs.scm,
ftp.scm, gnome.scm, gnunet.scm, gnupg.scm, gsasl.scm, lynx.scm,
mail.scm, messaging.scm, package-management.scm, shishi.scm,
task-management.scm, version-control.scm, video.scm, vpn.scm,
webkit.scm, weechat.scm, wget.scm, wine.scm, xml.scm}: Adapt module
import to new name.
* gnu-system.am (GNU_SYSTEM_MODULES): Rename gnutls module to tls.
2015-07-03 15:41:22 -04:00
|
|
|
|
#:use-module (gnu packages tls)
|
2013-01-21 15:25:43 -05:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
|
#:use-module (gnu packages lesstif)
|
gnu: Consolidate libjpeg, libpng, and libtiff into one module.
* gnu/packages/image.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add image.scm and remove libjpeg.scm,
libpng.scm, and libtiff.scm.
* gnu/packages/libjpeg.scm, gnu/packages/libpng.scm, gnu/packages/libtiff.scm:
Delete files.
* gnu/packages/emacs.scm gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnustep.scm, gnu/packages/gnuzilla.scm,
gnu/packages/graphviz.scm, gnu/packages/gtk.scm,
gnu/packages/imagemagick.scm, gnu/packages/inkscape.scm,
gnu/packages/netpbm.scm, gnu/packages/pdf.scm, gnu/packages/plotutils.scm,
gnu/packages/qemu.scm, gnu/packages/qt.scm, gnu/packages/scheme.scm,
gnu/packages/sdl.scm, gnu/packages/slim.scm, gnu/packages/tcl.scm,
gnu/packages/texlive.scm, gnu/packages/video.scm, gnu/packages/xiph.scm,
gnu/packages/xorg.scm: Use (gnu packages image) module.
2014-06-25 08:39:02 -04:00
|
|
|
|
#:use-module (gnu packages image)
|
2014-02-21 04:48:22 -05:00
|
|
|
|
#:use-module (gnu packages linux)
|
2014-08-02 22:20:23 -04:00
|
|
|
|
#:use-module (gnu packages version-control)
|
2014-07-24 11:38:42 -04:00
|
|
|
|
#:use-module (gnu packages imagemagick)
|
|
|
|
|
#:use-module (gnu packages w3m)
|
2014-07-27 16:37:13 -04:00
|
|
|
|
#:use-module (gnu packages wget)
|
2014-07-24 11:38:42 -04:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2015-08-19 15:57:08 -04:00
|
|
|
|
#:use-module (gnu packages base)
|
2015-03-04 11:02:07 -05:00
|
|
|
|
#:use-module (gnu packages compression)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
#:use-module (gnu packages xml)
|
2014-07-29 04:00:56 -04:00
|
|
|
|
#:use-module (gnu packages glib)
|
2014-10-08 03:49:43 -04:00
|
|
|
|
#:use-module (gnu packages acl)
|
2014-11-25 12:01:38 -05:00
|
|
|
|
#:use-module (gnu packages perl)
|
2015-07-05 13:59:37 -04:00
|
|
|
|
#:use-module (gnu packages pdf)
|
2014-11-25 12:01:38 -05:00
|
|
|
|
#:use-module (gnu packages xiph)
|
|
|
|
|
#:use-module (gnu packages mp3)
|
2014-07-29 04:00:56 -04:00
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-13 11:12:22 -05:00
|
|
|
|
|
|
|
|
|
(define-public emacs
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs")
|
2015-03-29 00:23:48 -04:00
|
|
|
|
(version "24.5")
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/emacs/emacs-"
|
2013-03-14 12:47:26 -04:00
|
|
|
|
version ".tar.xz"))
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
gnu: emacs: Do not keep references to the entries of the build-time $PATH.
This reduces the number of references of the output from 54 to 31,
removing references notably to gcc, expat, glib:bin, ld-wrapper-0,
texinfo, pkg-config, make, gawk, binutils, etc.
Reported by David Thompson.
* gnu/packages/patches/emacs-exec-path.patch: New file.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/emacs.scm (emacs)[source]: Use it.
2015-04-13 17:09:06 -04:00
|
|
|
|
"0kn3rzm91qiswi0cql89kbv6mqn27rwsyjfb8xmwy9m5s8fxfiyx"))
|
|
|
|
|
(patches (list (search-patch "emacs-exec-path.patch")))))
|
2014-12-09 17:11:02 -05:00
|
|
|
|
(build-system glib-or-gtk-build-system)
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(arguments
|
2014-10-08 03:49:43 -04:00
|
|
|
|
'(#:phases (alist-cons-before
|
2013-01-13 11:12:22 -05:00
|
|
|
|
'configure 'fix-/bin/pwd
|
|
|
|
|
(lambda _
|
|
|
|
|
;; Use `pwd', not `/bin/pwd'.
|
|
|
|
|
(substitute* (find-files "." "^Makefile\\.in$")
|
|
|
|
|
(("/bin/pwd")
|
|
|
|
|
"pwd")))
|
|
|
|
|
%standard-phases)))
|
|
|
|
|
(inputs
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 06:01:56 -05:00
|
|
|
|
`(("gnutls" ,gnutls)
|
2013-01-13 11:12:22 -05:00
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
|
|
|
|
|
|
;; TODO: Add the optional dependencies.
|
2015-03-19 18:04:59 -04:00
|
|
|
|
("libx11" ,libx11)
|
2014-09-20 08:49:20 -04:00
|
|
|
|
("gtk+" ,gtk+)
|
2015-03-19 18:04:59 -04:00
|
|
|
|
("libxft" ,libxft)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("libtiff" ,libtiff)
|
2014-02-21 04:48:22 -05:00
|
|
|
|
("giflib" ,giflib)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("libjpeg" ,libjpeg-8)
|
2014-10-08 03:49:43 -04:00
|
|
|
|
("acl" ,acl)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
|
|
|
|
|
;; When looking for libpng `configure' links with `-lpng -lz', so we
|
|
|
|
|
;; must also provide zlib as an input.
|
|
|
|
|
("libpng" ,libpng)
|
2015-03-04 11:02:07 -05:00
|
|
|
|
("zlib" ,zlib)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
|
2015-04-04 03:32:04 -04:00
|
|
|
|
("librsvg" ,librsvg)
|
2015-03-19 18:04:59 -04:00
|
|
|
|
("libxpm" ,libxpm)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("libxml2" ,libxml2)
|
2014-02-21 04:48:22 -05:00
|
|
|
|
("libice" ,libice)
|
|
|
|
|
("libsm" ,libsm)
|
|
|
|
|
("alsa-lib" ,alsa-lib)
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-08 18:09:04 -04:00
|
|
|
|
("dbus" ,dbus)))
|
gnu: Move numerous "inputs" which should be "native-inputs".
* gnu/packages/avahi.scm, gnu/packages/cdrom.scm, gnu/packages/cryptsetup.scm,
gnu/packages/curl.scm, gnu/packages/emacs.scm, gnu/packages/fontutils.scm,
gnu/packages/gdb.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/glib.scm, gnu/packages/gnome.scm, gnu/packages/gnunet.scm,
gnu/packages/gnupg.scm, gnu/packages/gnuzilla.scm, gnu/packages/graphviz.scm,
gnu/packages/groff.scm, gnu/packages/gstreamer.scm, gnu/packages/gtk.scm,
gnu/packages/gv.scm, gnu/packages/imagemagick.scm, gnu/packages/irssi.scm,
gnu/packages/kde.scm, gnu/packages/libcanberra.scm, gnu/packages/libtiff.scm,
gnu/packages/linux.scm, gnu/packages/lvm.scm, gnu/packages/mp3.scm,
gnu/packages/netpbm.scm, gnu/packages/parted.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/qemu.scm, gnu/packages/qt.scm,
gnu/packages/ratpoison.scm, gnu/packages/rdf.scm, gnu/packages/slim.scm,
gnu/packages/texlive.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/xml.scm, gnu/packages/xnee.scm, gnu/packages/xorg.scm,
gnu/packages/zip.scm: Move some build-time dependencies from `inputs' to
`native-inputs'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2013-12-15 06:01:56 -05:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("texinfo" ,texinfo)))
|
2015-10-01 05:28:19 -04:00
|
|
|
|
|
|
|
|
|
(native-search-paths
|
|
|
|
|
(list (search-path-specification
|
|
|
|
|
(variable "INFOPATH")
|
|
|
|
|
(files '("share/info")))))
|
|
|
|
|
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(home-page "http://www.gnu.org/software/emacs/")
|
gnu: Use synopses from the Womb.
* gnu/packages/algebra.scm,
gnu/packages/aspell.scm,
gnu/packages/autotools.scm,
gnu/packages/base.scm,
gnu/packages/bash.scm,
gnu/packages/bison.scm,
gnu/packages/cdrom.scm,
gnu/packages/cflow.scm,
gnu/packages/compression.scm,
gnu/packages/cpio.scm,
gnu/packages/cppi.scm,
gnu/packages/ddrescue.scm,
gnu/packages/dejagnu.scm,
gnu/packages/ed.scm,
gnu/packages/emacs.scm,
gnu/packages/fdisk.scm,
gnu/packages/gawk.scm,
gnu/packages/gcc.scm,
packages/gcc.scm, b/gnu/packages/gcc.scm,
4b982 100644
s/gcc.scm,
s/gcc.scm,
@@
%standard-phases)))))
`((gcc-libc . ,(assoc-ref inputs "libc"))))
The GNU Compiler Collection")
GNU Compiler Collection")
n
ompiler Collection includes compiler front ends for C, C++,
tran, OpenMP for C/C++/Fortran, Java, and Ada, as well as
gnu/packages/gdb.scm,
gnu/packages/gettext.scm,
gnu/packages/ghostscript.scm,
gnu/packages/glib.scm,
gnu/packages/global.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm,
gnu/packages/gperf.scm,
gnu/packages/gprolog.scm,
gnu/packages/groff.scm,
gnu/packages/grub.scm,
gnu/packages/gsasl.scm,
gnu/packages/guile.scm,
gnu/packages/help2man.scm,
gnu/packages/idutils.scm,
gnu/packages/indent.scm,
gnu/packages/less.scm,
gnu/packages/libidn.scm,
gnu/packages/libsigsegv.scm,
gnu/packages/libunistring.scm,
gnu/packages/linux.scm,
gnu/packages/lsh.scm,
gnu/packages/m4.scm,
gnu/packages/mailutils.scm,
gnu/packages/multiprecision.scm,
gnu/packages/nano.scm,
gnu/packages/ncurses.scm,
gnu/packages/nettle.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/parted.scm,
gnu/packages/pth.scm,
gnu/packages/readline.scm,
gnu/packages/recutils.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/shishi.scm,
gnu/packages/smalltalk.scm,
gnu/packages/system.scm,
gnu/packages/texinfo.scm,
gnu/packages/time.scm,
gnu/packages/wdiff.scm,
gnu/packages/wget.scm,
gnu/packages/which.scm: Use synopses from the Womb.
2013-04-17 12:04:25 -04:00
|
|
|
|
(synopsis "The extensible, customizable, self-documenting text editor")
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(description
|
2013-12-01 16:33:23 -05:00
|
|
|
|
"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.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl3+)))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
|
2015-03-19 18:05:21 -04:00
|
|
|
|
(define-public emacs-no-x
|
|
|
|
|
;; 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-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"
|
2015-04-04 03:32:04 -04:00
|
|
|
|
"libpng" "librsvg" "libxpm" "libice" "libsm"
|
2015-03-19 18:05:21 -04:00
|
|
|
|
|
|
|
|
|
;; D-Bus depends on libx11, so remove it as well.
|
|
|
|
|
"dbus")))))
|
|
|
|
|
|
2014-07-29 04:00:56 -04:00
|
|
|
|
(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)" )
|
2014-12-09 17:11:02 -05:00
|
|
|
|
(build-system gnu-build-system)
|
2014-10-08 03:49:43 -04:00
|
|
|
|
(inputs (append `(("inotify-tools" ,inotify-tools))
|
|
|
|
|
(alist-delete "gtk+" (package-inputs emacs))))
|
|
|
|
|
(arguments (append '(#:configure-flags '("--with-x-toolkit=no"))
|
|
|
|
|
(package-arguments emacs)))))
|
2014-07-29 04:00:56 -04:00
|
|
|
|
|
2015-05-10 10:29:54 -04:00
|
|
|
|
(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")))
|
|
|
|
|
(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"))))))))))
|
|
|
|
|
|
2013-01-21 15:25:43 -05:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Emacs hacking.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-public geiser
|
|
|
|
|
(package
|
|
|
|
|
(name "geiser")
|
2015-10-13 15:30:07 -04:00
|
|
|
|
(version "0.8.1")
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2013-05-08 18:16:53 -04:00
|
|
|
|
(uri (string-append "mirror://savannah/geiser/" version
|
|
|
|
|
"/geiser-" version ".tar.gz"))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(sha256
|
2015-03-23 17:17:56 -04:00
|
|
|
|
(base32
|
2015-10-13 15:30:07 -04:00
|
|
|
|
"163zh8qf1q8l485d94a51a9xixirj8r2xvrbgxyw06vkaqrz5qvc"))))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(build-system gnu-build-system)
|
2014-11-25 08:50:11 -05:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases (alist-cons-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")))
|
|
|
|
|
%standard-phases)))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(inputs `(("guile" ,guile-2.0)
|
2015-03-19 18:08:46 -04:00
|
|
|
|
("emacs" ,emacs-no-x)))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(home-page "http://nongnu.org/geiser/")
|
|
|
|
|
(synopsis "Collection of Emacs modes for Guile and Racket hacking")
|
|
|
|
|
(description
|
2015-03-23 17:18:25 -04:00
|
|
|
|
"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.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:bsd-3)))
|
2014-08-02 22:20:23 -04:00
|
|
|
|
|
2014-08-02 20:01:48 -04:00
|
|
|
|
(define-public paredit
|
|
|
|
|
(package
|
|
|
|
|
(name "paredit")
|
|
|
|
|
(version "23")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://mumble.net/~campbell/emacs/paredit-"
|
|
|
|
|
version ".el"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1np882jzvxckljx3cjz4absyzmc5hw65cs21sjmbic82163m9lf8"))))
|
|
|
|
|
(build-system trivial-build-system)
|
2015-03-19 18:08:46 -04:00
|
|
|
|
(inputs `(("emacs" ,emacs-no-x)))
|
2014-08-02 20:01:48 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:builder
|
|
|
|
|
(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(use-modules (guix build emacs-utils))
|
|
|
|
|
|
|
|
|
|
(let* ((emacs (string-append (assoc-ref %build-inputs "emacs")
|
|
|
|
|
"/bin/emacs"))
|
|
|
|
|
(source (assoc-ref %build-inputs "source"))
|
|
|
|
|
(lisp-dir (string-append %output
|
|
|
|
|
"/share/emacs/site-lisp"))
|
|
|
|
|
(target (string-append lisp-dir "/paredit.el")))
|
|
|
|
|
(mkdir-p lisp-dir)
|
|
|
|
|
(copy-file source target)
|
|
|
|
|
(with-directory-excursion lisp-dir
|
|
|
|
|
(parameterize ((%emacs emacs))
|
2014-11-25 08:50:11 -05:00
|
|
|
|
(emacs-generate-autoloads ,name lisp-dir)
|
2014-08-02 20:01:48 -04:00
|
|
|
|
(emacs-batch-eval '(byte-compile-file "paredit.el"))))))))
|
|
|
|
|
(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.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl3+)))
|
2014-08-02 20:01:48 -04:00
|
|
|
|
|
2015-05-17 08:12:03 -04:00
|
|
|
|
(define-public git-modes
|
|
|
|
|
(package
|
|
|
|
|
(name "git-modes")
|
2015-08-19 16:06:12 -04:00
|
|
|
|
(version "1.2.0")
|
2015-05-17 08:12:03 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/magit/git-modes/archive/"
|
|
|
|
|
version ".tar.gz"))
|
2015-07-22 03:33:36 -04:00
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-05-17 08:12:03 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-08-19 16:06:12 -04:00
|
|
|
|
"09dv7ikbj2bi4y3lmvjfzqpdmx2f9bd4w7jkp10bkap62d05iqhk"))))
|
2015-05-17 08:12:03 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build emacs-utils)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
|
|
|
|
|
#:make-flags (list (string-append "PREFIX="
|
|
|
|
|
(assoc-ref %outputs "out"))
|
|
|
|
|
;; Don't put .el files in a 'git-modes'
|
|
|
|
|
;; sub-directory.
|
|
|
|
|
(string-append "LISPDIR="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/emacs/site-lisp"))
|
2015-08-19 16:06:12 -04:00
|
|
|
|
#:tests? #f ; no check target
|
2015-05-17 08:12:03 -04:00
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(add-after 'install 'emacs-autoloads
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(lisp (string-append
|
|
|
|
|
out "/share/emacs/site-lisp/")))
|
|
|
|
|
(emacs-generate-autoloads ,name lisp)))))))
|
|
|
|
|
(native-inputs `(("emacs" ,emacs-no-x)))
|
|
|
|
|
(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+)))
|
|
|
|
|
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(define-public magit
|
|
|
|
|
(package
|
|
|
|
|
(name "magit")
|
2015-10-28 17:07:20 -04:00
|
|
|
|
(version "2.3.0")
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2014-10-12 02:47:36 -04:00
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/magit/magit/releases/download/"
|
|
|
|
|
version "/" name "-" version ".tar.gz"))
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(sha256
|
2015-05-17 08:11:54 -04:00
|
|
|
|
(base32
|
2015-10-28 17:07:20 -04:00
|
|
|
|
"0bi0vqp9802f00vnii3x80iqycji20bw4pjysy6al0d86mkggjx5"))))
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(build-system gnu-build-system)
|
2015-05-17 08:02:40 -04:00
|
|
|
|
(native-inputs `(("texinfo" ,texinfo)
|
|
|
|
|
("emacs" ,emacs-no-x)))
|
2015-08-17 14:44:40 -04:00
|
|
|
|
(inputs `(("git" ,git)))
|
|
|
|
|
(propagated-inputs `(("dash" ,emacs-dash)))
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
2015-04-01 09:41:55 -04:00
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(guix build emacs-utils))
|
2015-05-17 08:11:54 -04:00
|
|
|
|
|
|
|
|
|
#:test-target "test"
|
2015-08-17 14:44:40 -04:00
|
|
|
|
#:tests? #f ; tests are not included in the release
|
2015-05-17 08:11:54 -04:00
|
|
|
|
|
2015-08-17 14:44:40 -04:00
|
|
|
|
#: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)))
|
2015-05-17 15:25:09 -04:00
|
|
|
|
|
2014-08-02 22:20:23 -04:00
|
|
|
|
#:phases
|
2015-05-17 06:22:49 -04:00
|
|
|
|
(modify-phases %standard-phases
|
2015-08-17 14:44:40 -04:00
|
|
|
|
(delete 'configure)
|
2015-05-17 06:22:49 -04:00
|
|
|
|
(add-before
|
|
|
|
|
'build 'patch-exec-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2015-08-17 14:44:40 -04:00
|
|
|
|
(let ((git (assoc-ref inputs "git")))
|
|
|
|
|
(emacs-substitute-variables "lisp/magit-git.el"
|
|
|
|
|
("magit-git-executable" (string-append git "/bin/git")))
|
|
|
|
|
#t))))))
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(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.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl3+)))
|
2014-07-24 11:38:42 -04:00
|
|
|
|
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(define-public magit-svn
|
|
|
|
|
(package
|
|
|
|
|
(name "magit-svn")
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(version "2.1.0")
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(source (origin
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/magit/magit-svn/archive/"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-08-19 15:57:08 -04:00
|
|
|
|
"09sz93g7x7g9q75jsw8bdh7yr4jr1igfb4fpg5i302a7l2ahxfr8"))))
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(build-system trivial-build-system)
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(native-inputs `(("emacs" ,emacs-no-x)
|
|
|
|
|
("tar" ,tar)
|
|
|
|
|
("gzip" ,gzip)))
|
|
|
|
|
(propagated-inputs `(("dash" ,emacs-dash)
|
|
|
|
|
("magit" ,magit)))
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
|
|
|
|
|
#:builder
|
|
|
|
|
(begin
|
|
|
|
|
(use-modules (guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(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")
|
2015-06-05 06:13:02 -04:00
|
|
|
|
"/bin/emacs"))
|
|
|
|
|
(magit (string-append (assoc-ref %build-inputs "magit")
|
|
|
|
|
"/share/emacs/site-lisp"))
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(dash (string-append (assoc-ref %build-inputs "dash")
|
|
|
|
|
"/share/emacs/site-lisp/guix.d/dash-"
|
|
|
|
|
,(package-version emacs-dash)))
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(source (assoc-ref %build-inputs "source"))
|
|
|
|
|
(lisp-dir (string-append %output "/share/emacs/site-lisp")))
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(setenv "PATH" PATH)
|
|
|
|
|
(system* tar "xvf" source)
|
gnu: Use 'install-file' instead of 'mkdir-p' and 'copy-file' in obvious cases.
* gnu/packages/bioinformatics.scm (bedtools, bowtie, bwa, hisat, samtools,
plink, star): Use 'install-file' instead of 'mkdir-p' + 'copy-file'.
* gnu/packages/check.scm (catch-framework): Likewise.
* gnu/packages/code.scm (global): Likewise.
* gnu/packages/emacs.scm (magit-svn, haskell-mode, emacs-pdf-tools):
Likewise.
* gnu/packages/engineering.scm (fastcap, fasthenry): Likewise.
* gnu/packages/gnuzilla.scm (nss): Likewise.
* gnu/packages/guile.scm (guile-minikanren): Likewise.
* gnu/packages/java.scm (swt): Likewise.
* gnu/packages/make-bootstrap.scm (%static-binaries): Likewise.
* gnu/packages/maths.scm (lpsolve): Likewise.
* gnu/packages/mp3.scm (mpc123): Likewise.
* gnu/packages/ninja.scm (ninja): Likewise.
* gnu/packages/python.scm (python-numpy, python-pyparsing): Likewise.
* gnu/packages/screen.scm (dtach): Likewise.
* gnu/packages/synergy.scm (synergy): Likewise.
* gnu/packages/textutils.scm (utf8proc): Likewise.
* gnu/packages/version-control.scm (git-test-sequence): Likewise.
* gnu/packages/wicd.scm (wicd): Likewise.
2015-08-28 16:22:22 -04:00
|
|
|
|
|
|
|
|
|
(install-file (string-append ,name "-" ,version "/magit-svn.el")
|
|
|
|
|
lisp-dir)
|
2015-06-05 06:13:02 -04:00
|
|
|
|
|
|
|
|
|
(with-directory-excursion lisp-dir
|
|
|
|
|
(parameterize ((%emacs emacs))
|
|
|
|
|
(emacs-generate-autoloads ,name lisp-dir)
|
|
|
|
|
(setenv "EMACSLOADPATH"
|
2015-08-19 15:57:08 -04:00
|
|
|
|
(string-append ":" magit ":" dash))
|
2015-06-05 06:13:02 -04:00
|
|
|
|
(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+)))
|
|
|
|
|
|
2015-06-12 12:58:35 -04:00
|
|
|
|
(define-public haskell-mode
|
|
|
|
|
(package
|
|
|
|
|
(name "haskell-mode")
|
|
|
|
|
(version "13.14.2")
|
|
|
|
|
(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 "1kxc2yj8vb122dv91r68h7c5ladcryx963fr16plfhg71fv7f9av"))))
|
|
|
|
|
(inputs `(("emacs" ,emacs-no-x)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("texinfo" ,texinfo)))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags (list (string-append "EMACS="
|
|
|
|
|
(assoc-ref %build-inputs "emacs")
|
|
|
|
|
"/bin/emacs"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(add-before
|
|
|
|
|
'build 'pre-build
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((sh (string-append (assoc-ref inputs "bash") "/bin/sh")))
|
|
|
|
|
(setenv "SHELL" "sh")
|
|
|
|
|
(substitute* (find-files "." "\\.el") (("/bin/sh") sh))
|
|
|
|
|
#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)
|
gnu: Use 'install-file' instead of 'mkdir-p' and 'copy-file' in obvious cases.
* gnu/packages/bioinformatics.scm (bedtools, bowtie, bwa, hisat, samtools,
plink, star): Use 'install-file' instead of 'mkdir-p' + 'copy-file'.
* gnu/packages/check.scm (catch-framework): Likewise.
* gnu/packages/code.scm (global): Likewise.
* gnu/packages/emacs.scm (magit-svn, haskell-mode, emacs-pdf-tools):
Likewise.
* gnu/packages/engineering.scm (fastcap, fasthenry): Likewise.
* gnu/packages/gnuzilla.scm (nss): Likewise.
* gnu/packages/guile.scm (guile-minikanren): Likewise.
* gnu/packages/java.scm (swt): Likewise.
* gnu/packages/make-bootstrap.scm (%static-binaries): Likewise.
* gnu/packages/maths.scm (lpsolve): Likewise.
* gnu/packages/mp3.scm (mpc123): Likewise.
* gnu/packages/ninja.scm (ninja): Likewise.
* gnu/packages/python.scm (python-numpy, python-pyparsing): Likewise.
* gnu/packages/screen.scm (dtach): Likewise.
* gnu/packages/synergy.scm (synergy): Likewise.
* gnu/packages/textutils.scm (utf8proc): Likewise.
* gnu/packages/version-control.scm (git-test-sequence): Likewise.
* gnu/packages/wicd.scm (wicd): Likewise.
2015-08-28 16:22:22 -04:00
|
|
|
|
(for-each (lambda (f)
|
|
|
|
|
(install-file f dir))
|
|
|
|
|
files))
|
2015-06-12 12:58:35 -04:00
|
|
|
|
|
|
|
|
|
(with-directory-excursion "doc"
|
|
|
|
|
(unless (zero? (system* "makeinfo" "haskell-mode.texi"))
|
|
|
|
|
(error "makeinfo failed"))
|
gnu: Use 'install-file' instead of 'mkdir-p' and 'copy-file' in obvious cases.
* gnu/packages/bioinformatics.scm (bedtools, bowtie, bwa, hisat, samtools,
plink, star): Use 'install-file' instead of 'mkdir-p' + 'copy-file'.
* gnu/packages/check.scm (catch-framework): Likewise.
* gnu/packages/code.scm (global): Likewise.
* gnu/packages/emacs.scm (magit-svn, haskell-mode, emacs-pdf-tools):
Likewise.
* gnu/packages/engineering.scm (fastcap, fasthenry): Likewise.
* gnu/packages/gnuzilla.scm (nss): Likewise.
* gnu/packages/guile.scm (guile-minikanren): Likewise.
* gnu/packages/java.scm (swt): Likewise.
* gnu/packages/make-bootstrap.scm (%static-binaries): Likewise.
* gnu/packages/maths.scm (lpsolve): Likewise.
* gnu/packages/mp3.scm (mpc123): Likewise.
* gnu/packages/ninja.scm (ninja): Likewise.
* gnu/packages/python.scm (python-numpy, python-pyparsing): Likewise.
* gnu/packages/screen.scm (dtach): Likewise.
* gnu/packages/synergy.scm (synergy): Likewise.
* gnu/packages/textutils.scm (utf8proc): Likewise.
* gnu/packages/version-control.scm (git-test-sequence): Likewise.
* gnu/packages/wicd.scm (wicd): Likewise.
2015-08-28 16:22:22 -04:00
|
|
|
|
(install-file "haskell-mode.info" info))
|
2015-06-12 12:58:35 -04:00
|
|
|
|
(copy-to-dir doc '("CONTRIBUTING.md" "NEWS" "README.md"))
|
|
|
|
|
(copy-to-dir el-dir (find-files "." "\\.elc?"))
|
|
|
|
|
;; these are now distributed with emacs
|
|
|
|
|
(with-directory-excursion el-dir
|
|
|
|
|
(for-each delete-file '("cl-lib.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+)))
|
|
|
|
|
|
2015-09-01 04:10:36 -04:00
|
|
|
|
(define-public let-alist
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-let-alist")
|
|
|
|
|
(version "1.0.4")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://elpa.gnu.org/packages/let-alist-"
|
|
|
|
|
version ".el"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"07312bvvyz86lf64vdkxg2l1wgfjl25ljdjwlf1bdzj01c4hm88x"))))
|
|
|
|
|
(build-system trivial-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
|
|
|
|
|
#:builder (begin
|
|
|
|
|
(use-modules (guix build emacs-utils)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
|
|
|
|
|
(let* ((out (assoc-ref %outputs "out"))
|
|
|
|
|
(lispdir (string-append out
|
|
|
|
|
"/share/emacs/site-lisp/"
|
|
|
|
|
"guix.d/let-alist-"
|
|
|
|
|
,version))
|
|
|
|
|
(emacs (assoc-ref %build-inputs "emacs")))
|
|
|
|
|
|
|
|
|
|
(mkdir-p lispdir)
|
|
|
|
|
(copy-file (assoc-ref %build-inputs "source")
|
|
|
|
|
(string-append lispdir "/let-alist.el"))
|
|
|
|
|
|
|
|
|
|
(setenv "PATH" (string-append emacs "/bin"))
|
|
|
|
|
(emacs-byte-compile-directory lispdir)
|
|
|
|
|
#t))))
|
|
|
|
|
(native-inputs `(("emacs" ,emacs-no-x)))
|
|
|
|
|
(home-page "http://elpa.gnu.org/packages/let-alist.html")
|
|
|
|
|
(synopsis "Easily let-bind values of an assoc-list by their names")
|
|
|
|
|
(description
|
|
|
|
|
"This package offers a single Emacs Lisp macro, @code{let-alist}. This
|
|
|
|
|
macro takes a first argument, whose value must be an alist (association list),
|
|
|
|
|
and a body.
|
|
|
|
|
|
|
|
|
|
The macro expands to a let form containing the body, where each dotted symbol
|
|
|
|
|
inside body is let-bound to their cdrs in the alist. Only those present in
|
|
|
|
|
the body are let-bound and this search is done at compile time.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2015-09-01 04:16:32 -04:00
|
|
|
|
(define-public flycheck
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-flycheck")
|
2015-09-01 14:18:44 -04:00
|
|
|
|
(version "0.23")
|
2015-09-01 04:16:32 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-09-01 14:18:44 -04:00
|
|
|
|
(uri (string-append
|
|
|
|
|
"https://github.com/flycheck/flycheck/releases/download/"
|
|
|
|
|
version "/flycheck-" version ".tar"))
|
2015-09-01 04:16:32 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-09-01 14:18:44 -04:00
|
|
|
|
"1n2cifzsl5dbv42l82bi3y1vk6q33msi8dd4bj7b9nvnl9jfjj5b"))))
|
2015-09-01 04:16:32 -04:00
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("emacs-dash" ,emacs-dash)
|
|
|
|
|
("emacs-let-alist" ,let-alist)))
|
|
|
|
|
(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
|
|
|
|
|
|
2014-07-24 11:38:42 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Web browsing.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-public emacs-w3m
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-w3m")
|
|
|
|
|
(version "1.4.483+0.20120614")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://debian/pool/main/w/w3m-el/w3m-el_"
|
|
|
|
|
version ".orig.tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0ms181gjavnfk79hhv5xl9llik4c6kj0w3c04kgyif8lcy2sxljx"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("autoconf" ,autoconf)))
|
|
|
|
|
(inputs `(("w3m" ,w3m)
|
|
|
|
|
("imagemagick" ,imagemagick)
|
2015-03-19 18:08:46 -04:00
|
|
|
|
("emacs" ,emacs-no-x)))
|
2014-07-24 11:38:42 -04:00
|
|
|
|
(arguments
|
2015-04-10 04:34:04 -04:00
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
2014-07-24 11:38:42 -04:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
2015-04-01 09:41:55 -04:00
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
2014-07-24 11:38:42 -04:00
|
|
|
|
(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")))
|
|
|
|
|
#:tests? #f ; no check target
|
|
|
|
|
#:phases
|
2015-02-27 11:53:06 -05:00
|
|
|
|
(alist-cons-after
|
|
|
|
|
'unpack 'autoconf
|
2014-07-24 11:38:42 -04:00
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "autoconf")))
|
|
|
|
|
(alist-cons-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))
|
|
|
|
|
(alist-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"))
|
2014-11-25 08:50:11 -05:00
|
|
|
|
(symlink "w3m-load.el" "w3m-autoloads.el")
|
2014-07-24 11:38:42 -04:00
|
|
|
|
#t)))
|
|
|
|
|
%standard-phases)))))
|
|
|
|
|
(home-page "http://emacs-w3m.namazu.org/")
|
|
|
|
|
(synopsis "Simple Web browser for Emacs based on w3m")
|
|
|
|
|
(description
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
|
"Emacs-w3m is an emacs interface for the w3m web browser.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl2+)))
|
2014-07-27 16:37:13 -04:00
|
|
|
|
|
|
|
|
|
(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)
|
2015-03-19 18:08:46 -04:00
|
|
|
|
("emacs" ,emacs-no-x)))
|
2014-07-27 16:37:13 -04:00
|
|
|
|
(arguments
|
2015-04-10 04:34:04 -04:00
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
2014-07-27 16:37:13 -04:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
2015-04-10 04:34:04 -04:00
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
2014-07-27 16:37:13 -04:00
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:tests? #f ; no check target
|
|
|
|
|
#:phases
|
|
|
|
|
(alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("/usr/local") (assoc-ref outputs "out"))
|
|
|
|
|
(("/site-lisp/emacs-wget") "/site-lisp")))
|
|
|
|
|
(alist-cons-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")))))
|
2014-11-25 08:50:11 -05:00
|
|
|
|
(alist-cons-after
|
|
|
|
|
'install 'post-install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(emacs-generate-autoloads
|
|
|
|
|
"wget" (string-append (assoc-ref outputs "out")
|
|
|
|
|
"/share/emacs/site-lisp/")))
|
|
|
|
|
%standard-phases)))))
|
2014-07-27 16:37:13 -04:00
|
|
|
|
(home-page "http://www.emacswiki.org/emacs/EmacsWget")
|
2014-08-15 02:10:26 -04:00
|
|
|
|
(synopsis "Simple file downloader for Emacs based on wget")
|
2014-07-27 16:37:13 -04:00
|
|
|
|
(description
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 00:46:59 -04:00
|
|
|
|
"Emacs-wget is an emacs interface for the wget file downloader.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl2+)))
|
2014-11-25 12:01:38 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Multimedia.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-public emms
|
|
|
|
|
(package
|
|
|
|
|
(name "emms")
|
|
|
|
|
(version "4.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/emms/emms-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1q0n3iwva8bvai2rl9sm49sdjmk0wi7vajz4knz01l7g67nrp87l"))
|
|
|
|
|
(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
|
2015-04-10 04:34:04 -04:00
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
2015-04-10 04:34:04 -04:00
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
|
|
|
|
|
#:phases (alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(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\"")))
|
|
|
|
|
(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")))
|
2014-11-26 03:24:06 -05:00
|
|
|
|
(emacs-substitute-variables "emms-info-mp3info.el"
|
|
|
|
|
("emms-info-mp3info-program-name"
|
|
|
|
|
(string-append mp3info "/bin/mp3info")))
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(substitute* "emms-volume-amixer.el"
|
|
|
|
|
(("\"amixer\"")
|
|
|
|
|
(string-append "\"" alsa "/bin/amixer\"")))
|
|
|
|
|
(substitute* "emms-tag-editor.el"
|
|
|
|
|
(("\"mp3info\"")
|
2015-03-19 14:08:19 -04:00
|
|
|
|
(string-append "\"" mp3info "/bin/mp3info\""))))))
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(alist-cons-before
|
|
|
|
|
'install 'pre-install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2015-01-19 10:37:05 -05:00
|
|
|
|
;; The 'install' rule expects the target directory to
|
|
|
|
|
;; exist.
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(man1 (string-append out "/share/man/man1")))
|
|
|
|
|
(mkdir-p man1)
|
2015-01-19 10:37:05 -05:00
|
|
|
|
#t))
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(alist-cons-after
|
|
|
|
|
'install 'post-install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(target (string-append
|
|
|
|
|
out "/bin/emms-print-metadata")))
|
2014-11-25 08:50:11 -05:00
|
|
|
|
(symlink "emms-auto.el"
|
|
|
|
|
(string-append out "/share/emacs/site-lisp/"
|
|
|
|
|
"emms-autoloads.el"))
|
2014-11-25 12:01:38 -05:00
|
|
|
|
(mkdir-p (dirname target))
|
|
|
|
|
(copy-file "src/emms-print-metadata" target)
|
|
|
|
|
(chmod target #o555)))
|
|
|
|
|
%standard-phases)))
|
|
|
|
|
#:tests? #f))
|
2015-03-19 18:08:46 -04:00
|
|
|
|
(native-inputs `(("emacs" ,emacs-no-x) ;for (guix build emacs-utils)
|
2014-11-25 12:01:38 -05:00
|
|
|
|
("texinfo" ,texinfo)))
|
2015-01-19 10:37:05 -05:00
|
|
|
|
(inputs `(("alsa-utils" ,alsa-utils)
|
2014-11-25 12:01:38 -05:00
|
|
|
|
("vorbis-tools" ,vorbis-tools)
|
|
|
|
|
("mpg321" ,mpg321)
|
|
|
|
|
("taglib" ,taglib)
|
|
|
|
|
("mp3info" ,mp3info)))
|
|
|
|
|
(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 "http://www.gnu.org/software/emms/")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl3+)))
|
2014-12-09 17:20:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; 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 (alist-cons-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"))))
|
|
|
|
|
%standard-phases)))
|
2015-03-19 18:08:46 -04:00
|
|
|
|
(native-inputs `(("emacs" ,emacs-no-x)))
|
2014-12-09 17:20:41 -05:00
|
|
|
|
(home-page "http://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.")
|
2015-03-04 11:02:07 -05:00
|
|
|
|
(license license:gpl3+)))
|
2015-06-15 08:51:06 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-auctex
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-auctex")
|
|
|
|
|
(version "11.88.6")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://elpa.gnu.org/packages/auctex-"
|
|
|
|
|
version
|
|
|
|
|
".tar"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1pmki8hdjjikxlvip3pzi350bln3gcimr27yjf0xfwjvnp5hh9nc"))))
|
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("perl" ,perl)))
|
|
|
|
|
(home-page "http://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+)))
|
2015-06-17 04:42:09 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-mmm-mode
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-mmm-mode")
|
|
|
|
|
(version "0.5.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
2015-07-09 04:48:12 -04:00
|
|
|
|
"https://github.com/purcell/mmm-mode/archive/"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))
|
2015-06-17 04:42:09 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2015-07-09 04:48:12 -04:00
|
|
|
|
"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-no-x)
|
|
|
|
|
("texinfo" ,texinfo)))
|
2015-06-17 04:42:09 -04:00
|
|
|
|
(home-page "https://github.com/purcell/mmm-mode")
|
2015-07-09 04:48:12 -04:00
|
|
|
|
(synopsis "Allow multiple major modes in an Emacs buffer")
|
2015-06-17 04:42:09 -04:00
|
|
|
|
(description
|
2015-07-09 04:48:12 -04:00
|
|
|
|
"MMM Mode is a minor mode that allows multiple major modes to coexist in a
|
2015-06-17 04:42:09 -04:00
|
|
|
|
single buffer.")
|
|
|
|
|
(license license:gpl3+)))
|
2015-07-05 13:59:37 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-pdf-tools
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-pdf-tools")
|
|
|
|
|
(version "0.60")
|
|
|
|
|
(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
|
|
|
|
|
"1y8k5n2jbyaxby0j6f4m9xbm0ddpmbkrfj6rp6ll5sb97lcg3vrx"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; there are no tests
|
|
|
|
|
#: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
|
|
|
|
|
(add-after 'unpack 'enter-dir (lambda _ (chdir "server") #t))
|
|
|
|
|
(add-before
|
|
|
|
|
'configure 'autogen
|
|
|
|
|
(lambda _
|
|
|
|
|
(zero? (system* "bash" "autogen.sh"))))
|
|
|
|
|
(add-before
|
|
|
|
|
'build 'patch-variables
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(with-directory-excursion "../lisp"
|
|
|
|
|
;; 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
|
|
|
|
|
'install 'install-lisp
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((target (string-append (assoc-ref outputs "out")
|
|
|
|
|
"/share/emacs/site-lisp/")))
|
gnu: Use 'install-file' instead of 'mkdir-p' and 'copy-file' in obvious cases.
* gnu/packages/bioinformatics.scm (bedtools, bowtie, bwa, hisat, samtools,
plink, star): Use 'install-file' instead of 'mkdir-p' + 'copy-file'.
* gnu/packages/check.scm (catch-framework): Likewise.
* gnu/packages/code.scm (global): Likewise.
* gnu/packages/emacs.scm (magit-svn, haskell-mode, emacs-pdf-tools):
Likewise.
* gnu/packages/engineering.scm (fastcap, fasthenry): Likewise.
* gnu/packages/gnuzilla.scm (nss): Likewise.
* gnu/packages/guile.scm (guile-minikanren): Likewise.
* gnu/packages/java.scm (swt): Likewise.
* gnu/packages/make-bootstrap.scm (%static-binaries): Likewise.
* gnu/packages/maths.scm (lpsolve): Likewise.
* gnu/packages/mp3.scm (mpc123): Likewise.
* gnu/packages/ninja.scm (ninja): Likewise.
* gnu/packages/python.scm (python-numpy, python-pyparsing): Likewise.
* gnu/packages/screen.scm (dtach): Likewise.
* gnu/packages/synergy.scm (synergy): Likewise.
* gnu/packages/textutils.scm (utf8proc): Likewise.
* gnu/packages/version-control.scm (git-test-sequence): Likewise.
* gnu/packages/wicd.scm (wicd): Likewise.
2015-08-28 16:22:22 -04:00
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(install-file file target))
|
|
|
|
|
(find-files "../lisp" "^(pdf|tab).*\\.elc?"))
|
2015-07-05 13:59:37 -04:00
|
|
|
|
(emacs-byte-compile-directory target)
|
|
|
|
|
(emacs-generate-autoloads "pdf-tools" target)))))))
|
|
|
|
|
(native-inputs `(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
|
("emacs" ,emacs-no-x)))
|
|
|
|
|
(inputs `(("poppler" ,poppler)
|
|
|
|
|
("cairo" ,cairo)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("libpng" ,libpng)
|
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
|
(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+)))
|
2015-07-22 11:38:08 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-dash
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-dash")
|
|
|
|
|
(version "2.11.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
|
|
|
|
|
"1piwcwilkxcbjxx832mhb7q3pz1fgwp203r581bpqcw6kd5x726q"))))
|
|
|
|
|
(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+)))
|
2015-07-23 02:42:53 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-s
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-s")
|
|
|
|
|
(version "1.9.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
|
|
|
|
|
"1gah2k577gvnmxlpw7zrz0jr571vghzhdv2hbgchlgah07czd091"))))
|
|
|
|
|
(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+)))
|
2015-07-23 04:15:36 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-f
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-f")
|
|
|
|
|
(version "0.17.2")
|
|
|
|
|
(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
|
|
|
|
|
"1n5gcldf43wmkr7jxgs519v21zavwr0yn8048iv6gvgfwicnyjlx"))))
|
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("emacs-s" ,emacs-s)
|
|
|
|
|
("emacs-dash" ,emacs-dash)))
|
|
|
|
|
(home-page "http://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+)))
|
2015-07-23 12:58:26 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-ob-ipython
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-ob-ipython")
|
|
|
|
|
(version "20150704.8807064693")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(commit "8807064693")
|
|
|
|
|
(url "https://github.com/gregsexton/ob-ipython.git")))
|
|
|
|
|
(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+)))
|
2015-09-11 15:52:51 -04:00
|
|
|
|
|
|
|
|
|
(define-public emacs-debbugs
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs-debbugs")
|
|
|
|
|
(version "0.7")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://elpa.gnu.org/packages/debbugs-"
|
|
|
|
|
version ".tar"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0pbglx3paa8icazgxlg4jf40wl8war63y9j2jmbb7gbd1xp95v72"))))
|
|
|
|
|
(build-system emacs-build-system)
|
|
|
|
|
(home-page "http://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+)))
|
2015-09-17 04:38:12 -04:00
|
|
|
|
|
|
|
|
|
(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+)))
|
2015-09-17 04:45:01 -04:00
|
|
|
|
|
|
|
|
|
(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+)))
|
2015-09-17 05:15:23 -04:00
|
|
|
|
|
|
|
|
|
(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+)))
|