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