1 { lib, stdenv, fetchurl
3 , libX11, libXt, libXpm }:
5 stdenv.mkDerivation rec {
10 url = "mirror://sourceforge/rxvt/${pname}-${version}.tar.gz";
11 sha256 = "0jfl71gz3k7zh3kxdb8lxi06kajjnx7bq1rxjgk680l209jxask1";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ libtool libX11 libXt libXpm ];
18 LIBTOOL=${libtool}/bin/libtool ./configure --prefix=$out --enable-everything --enable-smart-resize --enable-256-color
22 homepage = "https://rxvt.sourceforge.net/";
23 description = "Colour vt102 terminal emulator with less features and lower memory consumption";
25 rxvt (acronym for our extended virtual terminal) is a terminal
26 emulator for the X Window System, originally written by Rob Nation
27 as an extended version of the older xvt terminal by John Bovey of
28 University of Kent. Mark Olesen extensively modified it later and
29 took over maintenance for several years.
31 rxvt is intended to be a slimmed-down alternate for xterm,
32 omitting some of its little-used features, like Tektronix 4014
33 emulation and toolkit-style configurability.
35 maintainers = with maintainers; [ AndersonTorres ];
36 license = licenses.gpl2;
37 platforms = platforms.linux;
38 knownVulnerabilities = [
39 "Usage of ANSI escape sequences causes unexpected newline-termination, leading to unexpected command execution (https://www.openwall.com/lists/oss-security/2021/05/17/1)"