summary refs log tree commit diff
path: root/pkgs/applications/misc/xterm/default.nix
blob: 30b3e6cbda80bbea629b4f703a32502700a833f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, libXaw, xproto, libXt, libX11, libSM, libICE, ncurses}:

stdenv.mkDerivation rec {
  name = "xterm-231";
  src = fetchurl {
    url = "ftp://invisible-island.net/xterm/${name}.tgz";
    sha256 = "0qlz5nkdqkahdg9kbd1ni96n69srj1pd9yggwrw3z0kghaajb2sr";
  };
  buildInputs = [libXaw xproto libXt libX11 libSM libICE ncurses];
  configureFlags = ["--enable-wide-chars"];

  meta = {
    homepage = http://invisible-island.net/xterm;
  };
}