about summary refs log tree commit diff
path: root/pkgs/applications/misc/rxvt_unicode/default.nix
blob: a44530987c4383c6ecba785093ea8fc4987ed2c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
args: with args;
stdenv.mkDerivation {
  name = "rxvt-unicode-8.9";
 
  buildInputs = [ libX11 libXt libXft perl ];
 
  src = fetchurl {
    url = http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-8.9.tar.bz2;
    sha256 = "89858c5bfe72dba037cd3435b2221269580f3c699553fe24ee468ddec8831d27";
  };
 
  meta = {
    description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
    homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
  };
}