2008-02-22 03:06:12 +00:00
|
|
|
args: with args;
|
2006-01-26 20:45:11 +00:00
|
|
|
|
2008-01-28 19:40:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2008-01-16 09:13:52 +00:00
|
|
|
name = "xterm-231";
|
2006-01-26 20:45:11 +00:00
|
|
|
src = fetchurl {
|
2008-01-28 19:40:08 +00:00
|
|
|
url = "ftp://invisible-island.net/xterm/${name}.tgz";
|
|
|
|
sha256 = "0qlz5nkdqkahdg9kbd1ni96n69srj1pd9yggwrw3z0kghaajb2sr";
|
2006-01-26 20:45:11 +00:00
|
|
|
};
|
2008-02-22 03:06:12 +00: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 19:49:42 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://invisible-island.net/xterm;
|
|
|
|
};
|
2006-01-26 20:45:11 +00:00
|
|
|
}
|
2007-12-18 22:56:12 +00:00
|
|
|
|