2013-01-13 17:12:22 +01:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
|
;;;
|
|
|
|
|
;;; 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-18 01:06:24 +01:00
|
|
|
|
(define-module (gnu packages emacs)
|
2013-01-13 17:12:22 +01:00
|
|
|
|
#:use-module (guix licenses)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
2013-01-18 01:06:47 +01:00
|
|
|
|
#:use-module (gnu packages)
|
2013-08-05 21:52:11 +02:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2013-01-18 01:06:24 +01:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
|
#:use-module (gnu packages texinfo)
|
|
|
|
|
#:use-module (gnu packages gnutls)
|
2013-01-21 21:25:43 +01:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2013-04-13 22:08:09 +02:00
|
|
|
|
#:use-module (gnu packages guile)
|
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
|
#:use-module (gnu packages lesstif)
|
|
|
|
|
#:use-module (gnu packages libjpeg)
|
|
|
|
|
#:use-module (gnu packages libtiff)
|
|
|
|
|
#:use-module (gnu packages libpng)
|
|
|
|
|
#:use-module ((gnu packages compression)
|
|
|
|
|
#:renamer (symbol-prefix-proc 'compression:))
|
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
|
#:use-module (gnu packages glib))
|
2013-01-13 17:12:22 +01:00
|
|
|
|
|
|
|
|
|
(define-public emacs
|
|
|
|
|
(package
|
|
|
|
|
(name "emacs")
|
2013-03-14 17:47:26 +01:00
|
|
|
|
(version "24.3")
|
2013-01-13 17:12:22 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/emacs/emacs-"
|
2013-03-14 17:47:26 +01:00
|
|
|
|
version ".tar.xz"))
|
2013-01-13 17:12:22 +01: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-09 00:09:04 +02:00
|
|
|
|
"1385qzs3bsa52s5rcncbrkxlydkw0ajzrvfxgv8rws5fx512kakh"))
|
|
|
|
|
(patches (list (search-patch "emacs-configure-sh.patch")))))
|
2013-01-13 17:12:22 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags
|
|
|
|
|
(list (string-append "--with-crt-dir=" (assoc-ref %build-inputs "libc")
|
2013-04-13 22:08:09 +02:00
|
|
|
|
"/lib")
|
|
|
|
|
"--with-gif=no") ; XXX: add libungif
|
2013-01-13 17:12:22 +01: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 12:01:56 +01:00
|
|
|
|
`(("gnutls" ,gnutls)
|
2013-01-13 17:12:22 +01:00
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
|
|
|
|
|
|
;; TODO: Add the optional dependencies.
|
2013-04-13 22:08:09 +02:00
|
|
|
|
("xlibs" ,libx11)
|
2013-10-01 21:27:26 +02:00
|
|
|
|
("gtk+" ,gtk+-2)
|
2013-04-13 22:08:09 +02:00
|
|
|
|
("libXft" ,libxft)
|
|
|
|
|
("libtiff" ,libtiff)
|
2013-01-13 17:12:22 +01:00
|
|
|
|
;; ("libungif" ,libungif)
|
2013-04-13 22:08:09 +02: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)
|
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-09 00:09:04 +02: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 12:01:56 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("texinfo" ,texinfo)))
|
2013-01-13 17:12:22 +01: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 18:04:25 +02:00
|
|
|
|
(synopsis "The extensible, customizable, self-documenting text editor")
|
2013-01-13 17:12:22 +01:00
|
|
|
|
(description
|
2013-12-01 22:33:23 +01: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 17:12:22 +01:00
|
|
|
|
(license gpl3+)))
|
2013-01-21 21:25:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Emacs hacking.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define-public geiser
|
|
|
|
|
(package
|
|
|
|
|
(name "geiser")
|
2013-05-09 00:16:53 +02:00
|
|
|
|
(version "0.4")
|
2013-01-21 21:25:43 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2013-05-09 00:16:53 +02:00
|
|
|
|
(uri (string-append "mirror://savannah/geiser/" version
|
|
|
|
|
"/geiser-" version ".tar.gz"))
|
2013-01-21 21:25:43 +01:00
|
|
|
|
(sha256
|
2013-05-09 00:16:53 +02:00
|
|
|
|
(base32 "0ds7zk9b1839l9fsqfsgrby6manvy1cf5bjniiqhxl55h0cr6ijp"))))
|
2013-01-21 21:25:43 +01: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)))
|