GNU Emacs 22.3.

svn path=/nixpkgs/trunk/; revision=12825
This commit is contained in:
Ludovic Courtès 2008-09-08 12:10:22 +00:00
parent 4632fa1449
commit a2c47582b3

View file

@ -12,14 +12,14 @@ assert xawSupport && xaw3dSupport -> Xaw3d != null;
assert xpmSupport -> libXpm != null; assert xpmSupport -> libXpm != null;
assert gtkGUI -> pkgconfig != null && gtk != null; assert gtkGUI -> pkgconfig != null && gtk != null;
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "emacs-22.2"; name = "emacs-22.3";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = mirror://gnu/emacs/emacs-22.2.tar.gz; url = "mirror://gnu/emacs/${name}.tar.gz";
md5 = "d6ee586b8752351334ebf072904c4d51"; sha256 = "05hd89bchcpwzcx5la0alcp0wb7xywvnf98dxrshrqlfvccvgnbv";
}; };
buildInputs = [ncurses x11] buildInputs = [ncurses x11]
@ -31,8 +31,16 @@ stdenv.mkDerivation {
stdenv.lib.optional gtkGUI "--with-x-toolkit=gtk"; stdenv.lib.optional gtkGUI "--with-x-toolkit=gtk";
meta = { meta = {
description = "Emacs, *the* text editor"; description = "GNU Emacs, *the* text editor";
longDescription = ''
GNU Emacs is an extensible, customizable text editorand more.
At its core is an interpreter for Emacs Lisp, a dialect of the
Lisp programming language with extensions to support text
editing.
'';
homepage = http://www.gnu.org/software/emacs/; homepage = http://www.gnu.org/software/emacs/;
license = "GPL"; license = "GPLv3+";
}; };
} }