2018-01-13 17:39:31 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, xorg, ncurses, freetype, fontconfig, pkgconfig, makeWrapper
|
2016-07-28 04:08:54 +02:00
|
|
|
, enableDecLocator ? true
|
|
|
|
}:
|
2006-01-26 21:45:11 +01:00
|
|
|
|
2008-01-28 20:40:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-03 12:16:11 +02:00
|
|
|
name = "xterm-346";
|
2012-09-28 22:23:56 +02:00
|
|
|
|
2006-01-26 21:45:11 +01:00
|
|
|
src = fetchurl {
|
2018-01-02 19:15:48 +01:00
|
|
|
urls = [
|
|
|
|
"ftp://ftp.invisible-island.net/xterm/${name}.tgz"
|
|
|
|
"https://invisible-mirror.net/archives/xterm/${name}.tgz"
|
|
|
|
];
|
2019-06-03 12:16:11 +02:00
|
|
|
sha256 = "0xwamhawgh77q2nlibciv77hznirwhnbs3r52rl4sdaqq1rpscng";
|
2006-01-26 21:45:11 +01:00
|
|
|
};
|
2012-09-28 22:23:56 +02:00
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
buildInputs =
|
2018-12-31 04:40:47 +01:00
|
|
|
[ xorg.libXaw xorg.xorgproto xorg.libXt xorg.libXext xorg.libX11 xorg.libSM xorg.libICE
|
2016-10-24 12:00:07 +02:00
|
|
|
ncurses freetype fontconfig pkgconfig xorg.libXft xorg.luit makeWrapper
|
2010-07-28 17:35:01 +02:00
|
|
|
];
|
2012-09-28 22:23:56 +02:00
|
|
|
|
2016-06-11 01:44:39 +02:00
|
|
|
patches = [
|
|
|
|
./sixel-256.support.patch
|
2018-01-13 17:39:31 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl
|
|
|
|
(fetchpatch {
|
|
|
|
name = "posix-ptys.patch";
|
|
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/community/xterm/posix-ptys.patch?id=3aa532e77875fa1db18c7fcb938b16647031bcc1";
|
|
|
|
sha256 = "0czgnsxkkmkrk1idw69qxbprh0jb4sw3c24zpnqq2v76jkl7zvlr";
|
|
|
|
});
|
2016-06-11 01:44:39 +02:00
|
|
|
|
2015-03-30 04:02:29 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-wide-chars"
|
|
|
|
"--enable-256-color"
|
2016-06-11 01:44:39 +02:00
|
|
|
"--enable-sixel-graphics"
|
|
|
|
"--enable-regis-graphics"
|
2015-03-30 04:02:29 +02:00
|
|
|
"--enable-load-vt-fonts"
|
|
|
|
"--enable-i18n"
|
|
|
|
"--enable-doublechars"
|
|
|
|
"--enable-luit"
|
|
|
|
"--enable-mini-luit"
|
|
|
|
"--with-tty-group=tty"
|
2016-10-24 12:00:07 +02:00
|
|
|
"--with-app-defaults=$(out)/lib/X11/app-defaults"
|
2016-07-28 04:08:54 +02:00
|
|
|
] ++ stdenv.lib.optional enableDecLocator "--enable-dec-locator";
|
2008-01-30 20:49:42 +01:00
|
|
|
|
2011-02-14 11:09:01 +01:00
|
|
|
# Work around broken "plink.sh".
|
2012-09-28 22:23:56 +02:00
|
|
|
NIX_LDFLAGS = "-lXmu -lXt -lICE -lX11 -lfontconfig";
|
2011-02-14 11:09:01 +01:00
|
|
|
|
2010-04-22 16:01:21 +02: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'
|
|
|
|
'';
|
|
|
|
|
2016-10-24 12:00:07 +02:00
|
|
|
postInstall = ''
|
|
|
|
for bin in $out/bin/*; do
|
|
|
|
wrapProgram $bin --set XAPPLRESDIR $out/lib/X11/app-defaults/
|
|
|
|
done
|
2017-06-04 22:58:35 +02:00
|
|
|
|
|
|
|
install -D -t $out/share/applications xterm.desktop
|
|
|
|
install -D -t $out/share/icons/hicolor/48x48/apps icons/xterm-color_48x48.xpm
|
2016-10-24 12:00:07 +02:00
|
|
|
'';
|
|
|
|
|
2008-01-30 20:49:42 +01:00
|
|
|
meta = {
|
2019-04-22 10:14:28 +02:00
|
|
|
homepage = https://invisible-island.net/xterm;
|
2018-01-02 19:28:34 +01:00
|
|
|
license = with stdenv.lib.licenses; [ mit ];
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [vrthra];
|
2014-08-13 02:40:57 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2008-01-30 20:49:42 +01:00
|
|
|
};
|
2006-01-26 21:45:11 +01:00
|
|
|
}
|