2016-07-28 02:08:54 +00:00
|
|
|
{ stdenv, fetchurl, xorg, ncurses, freetype, fontconfig, pkgconfig
|
|
|
|
, enableDecLocator ? true
|
|
|
|
}:
|
2006-01-26 20:45:11 +00:00
|
|
|
|
2008-01-28 19:40:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-10 23:44:39 +00:00
|
|
|
name = "xterm-325";
|
2012-09-28 20:23:56 +00:00
|
|
|
|
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";
|
2016-06-10 23:44:39 +00:00
|
|
|
sha256 = "06sz66z4hvjjkvm3r5a5z442iis8lz8yjfzc629pwhj01ixb0c9v";
|
2006-01-26 20:45:11 +00:00
|
|
|
};
|
2012-09-28 20:23:56 +00:00
|
|
|
|
2010-07-28 15:35:01 +00:00
|
|
|
buildInputs =
|
|
|
|
[ xorg.libXaw xorg.xproto xorg.libXt xorg.libXext xorg.libX11 xorg.libSM xorg.libICE
|
2012-09-28 20:23:56 +00:00
|
|
|
ncurses freetype fontconfig pkgconfig xorg.libXft xorg.luit
|
2010-07-28 15:35:01 +00:00
|
|
|
];
|
2012-09-28 20:23:56 +00:00
|
|
|
|
2016-06-10 23:44:39 +00:00
|
|
|
patches = [
|
|
|
|
./sixel-256.support.patch
|
|
|
|
];
|
|
|
|
|
2015-03-30 02:02:29 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-wide-chars"
|
|
|
|
"--enable-256-color"
|
2016-06-10 23:44:39 +00:00
|
|
|
"--enable-sixel-graphics"
|
|
|
|
"--enable-regis-graphics"
|
2015-03-30 02:02:29 +00:00
|
|
|
"--enable-load-vt-fonts"
|
|
|
|
"--enable-i18n"
|
|
|
|
"--enable-doublechars"
|
|
|
|
"--enable-luit"
|
|
|
|
"--enable-mini-luit"
|
|
|
|
"--with-tty-group=tty"
|
2016-07-28 02:08:54 +00:00
|
|
|
] ++ stdenv.lib.optional enableDecLocator "--enable-dec-locator";
|
2008-01-30 19:49:42 +00:00
|
|
|
|
2011-02-14 10:09:01 +00:00
|
|
|
# Work around broken "plink.sh".
|
2012-09-28 20:23:56 +00:00
|
|
|
NIX_LDFLAGS = "-lXmu -lXt -lICE -lX11 -lfontconfig";
|
2011-02-14 10:09:01 +00:00
|
|
|
|
2010-04-22 14:01:21 +00:00
|
|
|
# Hack to get xterm built with the feature of releasing a possible setgid of 'utmp',
|
|
|
|
# decided by the sysadmin to allow the xterm reporting to /var/run/utmp
|
|
|
|
# If we used the configure option, that would have affected the xterm installation,
|
|
|
|
# (setgid with the given group set), and at build time the environment even doesn't have
|
|
|
|
# groups, and the builder will end up removing any setgid.
|
|
|
|
postConfigure = ''
|
|
|
|
echo '#define USE_UTMP_SETGID 1'
|
|
|
|
'';
|
|
|
|
|
2008-01-30 19:49:42 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://invisible-island.net/xterm;
|
2010-04-22 14:01:21 +00:00
|
|
|
license = "BSD";
|
2016-06-10 23:44:39 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric vrthra];
|
2014-08-13 00:40:57 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2006-01-26 20:45:11 +00:00
|
|
|
}
|