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>
|
2014-09-13 09:50:30 -04:00
|
|
|
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2014-08-02 22:20:23 -04:00
|
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
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)
|
2013-01-13 11:12:22 -05:00
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
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)
|
2013-08-05 15:52:11 -04:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2013-01-17 19:06:24 -05:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
|
#:use-module (gnu packages texinfo)
|
|
|
|
|
#:use-module (gnu packages gnutls)
|
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 guile)
|
|
|
|
|
#: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 giflib)
|
|
|
|
|
#: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)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
#:use-module ((gnu packages compression)
|
|
|
|
|
#:renamer (symbol-prefix-proc 'compression:))
|
|
|
|
|
#:use-module (gnu packages xml)
|
2014-07-29 04:00:56 -04:00
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (guix utils)
|
|
|
|
|
#:use-module (srfi srfi-1))
|
2013-01-13 11:12:22 -05:00
|
|
|
|
|
|
|
|
|
(define-public emacs
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs")
|
2013-03-14 12:47:26 -04:00
|
|
|
|
(version "24.3")
|
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: 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
|
|
|
|
"1385qzs3bsa52s5rcncbrkxlydkw0ajzrvfxgv8rws5fx512kakh"))
|
|
|
|
|
(patches (list (search-patch "emacs-configure-sh.patch")))))
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags
|
|
|
|
|
(list (string-append "--with-crt-dir=" (assoc-ref %build-inputs "libc")
|
2014-02-21 04:48:22 -05:00
|
|
|
|
"/lib"))
|
2013-01-13 11:12:22 -05:00
|
|
|
|
#:phases (alist-cons-before
|
|
|
|
|
'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.
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("xlibs" ,libx11)
|
2013-10-01 15:27:26 -04:00
|
|
|
|
("gtk+" ,gtk+-2)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("libXft" ,libxft)
|
|
|
|
|
("libtiff" ,libtiff)
|
2014-02-21 04:48:22 -05:00
|
|
|
|
("giflib" ,giflib)
|
2013-04-13 16:08:09 -04:00
|
|
|
|
("libjpeg" ,libjpeg-8)
|
|
|
|
|
|
|
|
|
|
;; When looking for libpng `configure' links with `-lpng -lz', so we
|
|
|
|
|
;; must also provide zlib as an input.
|
|
|
|
|
("libpng" ,libpng)
|
|
|
|
|
("zlib" ,compression:zlib)
|
|
|
|
|
|
|
|
|
|
("libXpm" ,libxpm)
|
|
|
|
|
("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)))
|
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.")
|
2013-01-13 11:12:22 -05:00
|
|
|
|
(license gpl3+)))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
|
2014-07-29 04:00:56 -04:00
|
|
|
|
(define-public emacs-no-x-toolkit
|
|
|
|
|
(package (inherit emacs)
|
2014-09-13 09:50:30 -04:00
|
|
|
|
(location (source-properties->location (current-source-location)))
|
2014-07-29 04:00:56 -04:00
|
|
|
|
(name "emacs-no-x-toolkit")
|
|
|
|
|
(synopsis "The extensible, customizable, self-documenting text
|
|
|
|
|
editor (without an X toolkit)" )
|
|
|
|
|
(inputs (alist-delete "gtk+" (package-inputs emacs)))
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments emacs)
|
|
|
|
|
((#:configure-flags flags)
|
|
|
|
|
`(cons "--with-x-toolkit=no" ,flags))))))
|
|
|
|
|
|
2013-01-21 15:25:43 -05:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Emacs hacking.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-public geiser
|
|
|
|
|
(package
|
|
|
|
|
(name "geiser")
|
2014-08-09 21:04:59 -04:00
|
|
|
|
(version "0.6")
|
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
|
2014-08-09 21:04:59 -04:00
|
|
|
|
(base32 "1mrk0bzqcpfhsw6635qznn47nzfy9ps7wrhkpymswdfpw5mdsry5"))))
|
2013-01-21 15:25:43 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs `(("guile" ,guile-2.0)
|
|
|
|
|
("emacs" ,emacs)))
|
|
|
|
|
(home-page "http://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 interpreters to keep the Lisp Machine
|
|
|
|
|
Spirit alive. It draws inspiration (and a bit more) from environments
|
|
|
|
|
such as Common Lisp’s Slime, Factor’s FUEL, Squeak or Emacs itself, and
|
|
|
|
|
does its best to make Scheme hacking inside Emacs (even more) fun.
|
|
|
|
|
|
|
|
|
|
Or, to be precise, what i consider fun. Geiser is thus my humble
|
|
|
|
|
contribution to the dynamic school of expression, and a reaction against
|
|
|
|
|
what i perceive as a derailment, in modern times, of standard Scheme
|
|
|
|
|
towards the static camp. Because i prefer growing and healing to poking
|
|
|
|
|
at corpses, the continuously running Scheme interpreter takes the center
|
|
|
|
|
of the stage in Geiser. A bundle of Elisp shims orchestrates the dialog
|
|
|
|
|
between the Scheme interpreter, Emacs and, ultimately, the schemer,
|
|
|
|
|
giving her access to live metadata.")
|
|
|
|
|
(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)
|
|
|
|
|
(inputs `(("emacs" ,emacs)))
|
|
|
|
|
(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))
|
|
|
|
|
(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.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2014-08-02 22:20:23 -04:00
|
|
|
|
(define-public magit
|
|
|
|
|
(package
|
|
|
|
|
(name "magit")
|
|
|
|
|
(version "1.2.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/downloads/magit/magit/magit-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1a8vvilhd5y5vmlpsh194qpl4qlg0a1brylfscxcacpfp0cmhlzg"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs `(("texinfo" ,texinfo)))
|
|
|
|
|
(inputs `(("emacs" ,emacs)
|
|
|
|
|
("git" ,git)
|
|
|
|
|
("git:gui" ,git "gui")))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:imported-modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:tests? #f ; no check target
|
|
|
|
|
#:phases
|
|
|
|
|
(alist-replace
|
|
|
|
|
'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("/usr/local") out)
|
|
|
|
|
(("/etc") (string-append out "/etc")))))
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'build 'patch-exec-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((git (assoc-ref inputs "git"))
|
|
|
|
|
(git:gui (assoc-ref inputs "git:gui")))
|
|
|
|
|
(emacs-substitute-variables "magit.el"
|
|
|
|
|
("magit-git-executable" (string-append git "/bin/git"))
|
|
|
|
|
("magit-gitk-executable" (string-append git:gui "/bin/gitk")))))
|
|
|
|
|
%standard-phases))))
|
|
|
|
|
(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 gpl3+)))
|
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)
|
|
|
|
|
("emacs" ,emacs)))
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:imported-modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(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
|
|
|
|
|
(alist-cons-before
|
|
|
|
|
'configure 'pre-configure
|
|
|
|
|
(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"))
|
|
|
|
|
#t)))
|
|
|
|
|
%standard-phases)))))
|
|
|
|
|
(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 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)
|
|
|
|
|
("emacs" ,emacs)))
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build emacs-utils))
|
|
|
|
|
#:imported-modules ((guix build gnu-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(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")))))
|
|
|
|
|
%standard-phases))))
|
|
|
|
|
(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
|
|
|
|
|
"emacs-wget is an emacs interface for the wget file downloader.")
|
|
|
|
|
(license gpl2+)))
|