2005-12-22 11:49:43 +01:00
|
|
|
{ xawSupport ? true
|
|
|
|
, xpmSupport ? true
|
|
|
|
, xaw3dSupport ? false
|
|
|
|
, gtkGUI ? false
|
|
|
|
, xftSupport ? false
|
2007-02-05 15:55:15 +01:00
|
|
|
, stdenv, fetchurl, ncurses, x11, libXaw ? null, libXpm ? null, Xaw3d ? null
|
2007-10-24 18:21:41 +02:00
|
|
|
, pkgconfig ? null, gtk ? null, libXft ? null
|
2009-02-06 09:43:31 +01:00
|
|
|
, libpng, libjpeg, libungif, libtiff, texinfo
|
2005-12-22 11:49:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert xawSupport -> libXaw != null;
|
|
|
|
assert xpmSupport -> libXpm != null;
|
|
|
|
assert xaw3dSupport -> Xaw3d != null;
|
|
|
|
assert gtkGUI -> pkgconfig != null && gtk != null;
|
|
|
|
assert xftSupport -> libXft != null && libpng != null; # libpng = probably a bug
|
|
|
|
|
2009-02-06 09:43:31 +01:00
|
|
|
let date = "20080228"; in
|
2005-12-22 11:49:43 +01:00
|
|
|
stdenv.mkDerivation {
|
2009-02-06 09:43:31 +01:00
|
|
|
name = "emacs-snapshot-23-${date}";
|
2007-10-24 18:21:41 +02:00
|
|
|
|
2005-12-22 11:49:43 +01:00
|
|
|
builder = ./builder.sh;
|
2007-10-24 18:21:41 +02:00
|
|
|
|
2005-12-22 11:49:43 +01:00
|
|
|
src = fetchurl {
|
2009-02-06 09:43:31 +01:00
|
|
|
url = "http://ppa.launchpad.net/avassalotti/ubuntu/pool/main/e/emacs-snapshot/emacs-snapshot_${date}.orig.tar.gz";
|
|
|
|
sha256 = "1cix1qjrynidvdyww3g8fm1wyggc82qjxbfbv3rx630szm1v6bm7";
|
2005-12-22 11:49:43 +01:00
|
|
|
};
|
2007-10-24 18:21:41 +02:00
|
|
|
|
|
|
|
# patches = [
|
|
|
|
# ./crt.patch
|
|
|
|
# ];
|
|
|
|
|
2005-12-22 11:49:43 +01:00
|
|
|
buildInputs = [
|
2009-02-06 09:43:31 +01:00
|
|
|
ncurses x11 texinfo
|
2005-12-22 11:49:43 +01:00
|
|
|
(if xawSupport then libXaw else null)
|
|
|
|
(if xpmSupport then libXpm else null)
|
|
|
|
(if xaw3dSupport then Xaw3d else null)
|
2007-10-24 18:21:41 +02:00
|
|
|
libpng libjpeg libungif libtiff # maybe not strictly required?
|
2005-12-22 11:49:43 +01:00
|
|
|
]
|
|
|
|
++ (if gtkGUI then [pkgconfig gtk] else [])
|
2007-10-24 18:21:41 +02:00
|
|
|
++ (if xftSupport then [libXft] else []);
|
|
|
|
|
2007-02-05 15:55:15 +01:00
|
|
|
configureFlags = "
|
2009-02-06 09:43:31 +01:00
|
|
|
${if gtkGUI then "--with-x-toolkit=gtk --enable-font-backend --with-xft" else ""}
|
2007-02-05 15:55:15 +01:00
|
|
|
";
|
2007-02-05 15:58:17 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Emacs with Unicode, GTK and Xft support (23.x alpha)";
|
2007-09-11 13:15:37 +02:00
|
|
|
homepage = http://www.emacswiki.org/cgi-bin/wiki/XftGnuEmacs;
|
2009-02-06 09:43:31 +01:00
|
|
|
license = "GPLv3+";
|
2007-02-05 15:58:17 +01:00
|
|
|
};
|
2005-12-22 11:49:43 +01:00
|
|
|
}
|