···1+{ stdenv, fetchurl
2+, pkgconfig, libtool
3+, libX11, libXt, libXpm }:
45+stdenv.mkDerivation rec {
6+ name = "rxvt-${version}";
7+ version = "2.7.10";
89 src = fetchurl {
10+ url = "mirror://sourceforge/rxvt/${name}.tar.gz";
11+ sha256 = "0jfl71gz3k7zh3kxdb8lxi06kajjnx7bq1rxjgk680l209jxask1";
12 };
1314+ buildInputs = [ pkgconfig libtool libX11 libXt libXpm ];
1516+ configurePhase = ''
17+ LIBTOOL=${libtool}/bin/libtool ./configure --prefix=$out --enable-everything --enable-smart-resize --enable-256-color
18+ '';
19+20+ meta = with stdenv.lib; {
21+ homepage = http://rxvt.sourceforge.net/;
22 description = "Colour vt102 terminal emulator with less features and lower memory consumption";
23+ longDescription = ''
24+ rxvt (acronym for our extended virtual terminal) is a terminal
25+ emulator for the X Window System, originally written by Rob Nation
26+ as an extended version of the older xvt terminal by John Bovey of
27+ University of Kent. Mark Olesen extensively modified it later and
28+ took over maintenance for several years.
29+30+ rxvt is intended to be a slimmed-down alternate for xterm,
31+ omitting some of its little-used features, like Tektronix 4014
32+ emulation and toolkit-style configurability.
33+ '';
34+ maintainers = with maintainers; [ AndersonTorres ];
35+ license = licenses.gpl2;
36+ platforms = platforms.linux;
37 };
38}