summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/terminal-emulators/xterm
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-10-27 22:38:58 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-10-28 10:22:39 -0300
commit2bb3a9da24ca60d9f5bed69f679a1ec50dbdf997 (patch)
tree23f671aff1d1de5a1530a39004fc373e045a4504 /pkgs/applications/terminal-emulators/xterm
parentc3feda093d342da8f12ac710f64ac341812bb455 (diff)
A directory-category for terminal emulators
This is a mostly cosmetical commit, in the sense it doesn't change the contents of any package, but reorganizes the overall Nixpkgs expressions. Terminal emulators are an ubiquitous tool for any Unix user; even the beginners are routinely familiarized to it. And, manifestly, there are many implementations of terminal emulators out there, from those traditionally made in C and C++ to those written in Haskell and Go. Terminal emulators deserve more highlight. This commit does that by creating a category for them.
Diffstat (limited to 'pkgs/applications/terminal-emulators/xterm')
-rw-r--r--pkgs/applications/terminal-emulators/xterm/default.nix71
-rw-r--r--pkgs/applications/terminal-emulators/xterm/sixel-256.support.patch11
2 files changed, 82 insertions, 0 deletions
diff --git a/pkgs/applications/terminal-emulators/xterm/default.nix b/pkgs/applications/terminal-emulators/xterm/default.nix
new file mode 100644
index 000000000000..109444fc5180
--- /dev/null
+++ b/pkgs/applications/terminal-emulators/xterm/default.nix
@@ -0,0 +1,71 @@
+{ stdenv, fetchurl, fetchpatch, xorg, ncurses, freetype, fontconfig, pkgconfig, makeWrapper
+, enableDecLocator ? true
+}:
+
+stdenv.mkDerivation rec {
+ name = "xterm-353";
+
+ src = fetchurl {
+ urls = [
+ "ftp://ftp.invisible-island.net/xterm/${name}.tgz"
+ "https://invisible-mirror.net/archives/xterm/${name}.tgz"
+ ];
+ sha256 = "0s5pkfn4r8iy09s1q1y78zhnr9f3sm6wgbqir7azaqggkppd68g5";
+ };
+
+ buildInputs =
+ [ xorg.libXaw xorg.xorgproto xorg.libXt xorg.libXext xorg.libX11 xorg.libSM xorg.libICE
+ ncurses freetype fontconfig pkgconfig xorg.libXft xorg.luit makeWrapper
+ ];
+
+ patches = [
+ ./sixel-256.support.patch
+ ] ++ stdenv.lib.optional stdenv.hostPlatform.isMusl
+ (fetchpatch {
+ name = "posix-ptys.patch";
+ url = "https://git.alpinelinux.org/aports/plain/community/xterm/posix-ptys.patch?id=3aa532e77875fa1db18c7fcb938b16647031bcc1";
+ sha256 = "0czgnsxkkmkrk1idw69qxbprh0jb4sw3c24zpnqq2v76jkl7zvlr";
+ });
+
+ configureFlags = [
+ "--enable-wide-chars"
+ "--enable-256-color"
+ "--enable-sixel-graphics"
+ "--enable-regis-graphics"
+ "--enable-load-vt-fonts"
+ "--enable-i18n"
+ "--enable-doublechars"
+ "--enable-luit"
+ "--enable-mini-luit"
+ "--with-tty-group=tty"
+ "--with-app-defaults=$(out)/lib/X11/app-defaults"
+ ] ++ stdenv.lib.optional enableDecLocator "--enable-dec-locator";
+
+ # Work around broken "plink.sh".
+ NIX_LDFLAGS = "-lXmu -lXt -lICE -lX11 -lfontconfig";
+
+ # 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'
+ '';
+
+ postInstall = ''
+ for bin in $out/bin/*; do
+ wrapProgram $bin --set XAPPLRESDIR $out/lib/X11/app-defaults/
+ done
+
+ install -D -t $out/share/applications xterm.desktop
+ install -D -t $out/share/icons/hicolor/48x48/apps icons/xterm-color_48x48.xpm
+ '';
+
+ meta = {
+ homepage = "https://invisible-island.net/xterm";
+ license = with stdenv.lib.licenses; [ mit ];
+ maintainers = with stdenv.lib.maintainers; [vrthra];
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
+ };
+}
diff --git a/pkgs/applications/terminal-emulators/xterm/sixel-256.support.patch b/pkgs/applications/terminal-emulators/xterm/sixel-256.support.patch
new file mode 100644
index 000000000000..480e67e89ca3
--- /dev/null
+++ b/pkgs/applications/terminal-emulators/xterm/sixel-256.support.patch
@@ -0,0 +1,11 @@
+--- xterm-325/graphics.c 2016-05-17 03:04:40.000000000 -0700
++++ xterm-325/graphics.c 2016-06-11 16:37:29.552584281 -0700
+@@ -667,7 +667,7 @@
+ case 330:
+ return 4U;
+ case 340:
+- return 16U;
++ return 256U;
+ case 382:
+ return 2U;
+ default: