···1+{ stdenv, fetchurl }:
2+3+stdenv.mkDerivation rec {
4+ version = "3.3";
5+ name = "xtermcontrol-${version}";
6+7+ src = fetchurl {
8+ url = "http://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
9+ sha256 = "1v2c1cnx43apmspga7icssh5ndbhzy5h82y6vm8fda40flq9mxj5";
10+ };
11+12+ meta = {
13+ description = "Enables dynamic control of xterm properties";
14+ longDescription = ''
15+ Enables dynamic control of xterm properties.
16+ It makes it easy to change colors, title, font and geometry of a running xterm, as well as to report the current settings of these properties.
17+ Window manipulations de-/iconify, raise/lower, maximize/restore and reset are also supported.
18+ To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing.
19+ '';
20+ homepage = http://thrysoee.dk/xtermcontrol;
21+ license = stdenv.lib.licenses.gpl2;
22+ platforms = stdenv.lib.platforms.unix;
23+ maintainers = [ stdenv.lib.maintainers.derchris ];
24+ };
25+}