2008-02-22 04:06:12 +01:00
|
|
|
args: with args;
|
2006-01-26 21:45:11 +01:00
|
|
|
|
2008-01-28 20:40:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2008-01-16 10:13:52 +01:00
|
|
|
name = "xterm-231";
|
2006-01-26 21:45:11 +01:00
|
|
|
src = fetchurl {
|
2008-01-28 20:40:08 +01:00
|
|
|
url = "ftp://invisible-island.net/xterm/${name}.tgz";
|
|
|
|
sha256 = "0qlz5nkdqkahdg9kbd1ni96n69srj1pd9yggwrw3z0kghaajb2sr";
|
2006-01-26 21:45:11 +01:00
|
|
|
};
|
2008-02-22 04:06:12 +01:00
|
|
|
buildInputs = [libXaw xproto libXt libXext libX11 libSM libICE ncurses
|
|
|
|
freetype pkgconfig libXft luit];
|
|
|
|
configureFlags = "--enable-wide-chars --enable-256-color
|
|
|
|
--enable-load-vt-fonts --enable-i18n --enable-doublechars --enable-luit
|
|
|
|
--enable-mini-luit";
|
2008-01-30 20:49:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://invisible-island.net/xterm;
|
|
|
|
};
|
2006-01-26 21:45:11 +01:00
|
|
|
}
|
2007-12-18 23:56:12 +01:00
|
|
|
|