···11+{ stdenv, fetchurl }:
22+33+stdenv.mkDerivation rec {
44+ version = "3.3";
55+ name = "xtermcontrol-${version}";
66+77+ src = fetchurl {
88+ url = "http://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
99+ sha256 = "1v2c1cnx43apmspga7icssh5ndbhzy5h82y6vm8fda40flq9mxj5";
1010+ };
1111+1212+ meta = {
1313+ description = "Enables dynamic control of xterm properties";
1414+ longDescription = ''
1515+ Enables dynamic control of xterm properties.
1616+ 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.
1717+ Window manipulations de-/iconify, raise/lower, maximize/restore and reset are also supported.
1818+ To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing.
1919+ '';
2020+ homepage = http://thrysoee.dk/xtermcontrol;
2121+ license = stdenv.lib.licenses.gpl2;
2222+ platforms = stdenv.lib.platforms.unix;
2323+ maintainers = [ stdenv.lib.maintainers.derchris ];
2424+ };
2525+}