2008-01-30 19:49:42 +00:00
|
|
|
args: with args;
|
2008-02-17 18:40:53 +00:00
|
|
|
stdenv.mkDerivation (rec {
|
|
|
|
pname = "rxvt-unicode";
|
|
|
|
version = "9.02";
|
|
|
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${name}.tar.bz2";
|
|
|
|
sha256 = "234b9a3e3f88c4984b1e909f8028638fc3b61d801d8afaa9cd08154b1a480a31";
|
2007-10-31 12:17:14 +00:00
|
|
|
};
|
2008-02-17 18:40:53 +00:00
|
|
|
|
|
|
|
buildInputs = [ libX11 libXt libXft ];
|
|
|
|
configureFlags = "--disable-perl";
|
|
|
|
|
2007-10-31 12:17:14 +00:00
|
|
|
meta = {
|
|
|
|
description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
|
|
|
|
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
|
|
|
|
};
|
2008-02-17 18:40:53 +00:00
|
|
|
})
|