about summary refs log tree commit diff
path: root/pkgs/applications/misc/xterm/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-02-14 10:09:01 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-02-14 10:09:01 +0000
commit8c58edf34dcba6f172e971d9823fefa5a3641a72 (patch)
tree4ab635fa615460494568f4eaaa969be136066e15 /pkgs/applications/misc/xterm/default.nix
parent47aa6890d2b563a1c068fc953488b8f436f30d64 (diff)
downloadnixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar.gz
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar.bz2
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar.lz
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar.xz
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.tar.zst
nixlib-8c58edf34dcba6f172e971d9823fefa5a3641a72.zip
* xterm: fix build and update to version 268.
svn path=/nixpkgs/branches/x-updates/; revision=25949
Diffstat (limited to 'pkgs/applications/misc/xterm/default.nix')
-rw-r--r--pkgs/applications/misc/xterm/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/misc/xterm/default.nix b/pkgs/applications/misc/xterm/default.nix
index 55d6a9c16b02..e0df36efcb89 100644
--- a/pkgs/applications/misc/xterm/default.nix
+++ b/pkgs/applications/misc/xterm/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, xorg, ncurses, freetype, pkgconfig }:
 
 stdenv.mkDerivation rec {
-  name = "xterm-231";
+  name = "xterm-268";
   
   src = fetchurl {
     url = "ftp://invisible-island.net/xterm/${name}.tgz";
-    sha256 = "0qlz5nkdqkahdg9kbd1ni96n69srj1pd9yggwrw3z0kghaajb2sr";
+    sha256 = "1hr886mgr74k146fjppnq1pmg6f95l00v88cfwac3rms5lx7ckap";
   };
   
   buildInputs =
@@ -20,6 +20,9 @@ stdenv.mkDerivation rec {
       --enable-mini-luit --with-tty-group=tty
     '';
 
+  # Work around broken "plink.sh".
+  NIX_LDFLAGS = "-lXmu -lXt -lICE -lX11";
+
   # 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,