summary refs log tree commit diff
path: root/pkgs/applications/misc/rxvt/default.nix
blob: 58366c6aa048ff435c97f7f9b52d29b59ede42b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;
stdenv.mkDerivation {
  name = "rxvt-2.6.4";

  src = fetchurl {
    url = http://downloads.sourceforge.net/rxvt/rxvt-2.6.4.tar.gz;
    sha256 = "0hi29whjv8v11nkjbq1i6ms411v6csykghmlpkmayfjn9nxr02xg";
  };

  buildInputs = [ libX11 libXt ];

  meta = { 
      description = "colour vt102 terminal emulator with less features and lower memory consumption";
      homepage = http://www.rxvt.org/;
      license = "GPL";
  };
}