about summary refs log tree commit diff
path: root/pkgs/aszlig/xterm/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2021-07-09 18:26:00 +0200
committeraszlig <aszlig@nix.build>2021-07-09 18:26:00 +0200
commit6005f72476428ecab45fa12f6da55a86291e5d25 (patch)
tree320005c3b2528f427fd7171a4dc9995fdbd372b1 /pkgs/aszlig/xterm/default.nix
parent70176cfc488aafaf933fb16e312ac38dce76a635 (diff)
workstation: Patch XTerm to set $COLORTERM
While ncurses already has support for detecting direct color terminals,
a lot of applications out there do not yet query terminfo but instead
rely on some shady COLORTERM environment variable. While I don't really
like that approach, patching XTerm to set that variable currently is
better than patching all the applications to query terminfo.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/aszlig/xterm/default.nix')
-rw-r--r--pkgs/aszlig/xterm/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/aszlig/xterm/default.nix b/pkgs/aszlig/xterm/default.nix
new file mode 100644
index 00000000..bbb2144d
--- /dev/null
+++ b/pkgs/aszlig/xterm/default.nix
@@ -0,0 +1,5 @@
+{ xterm }:
+
+xterm.overrideAttrs (drv: {
+  patches = [ ./set-colorterm.patch ];
+})