2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-07-31 21:54:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-14 08:05:44 +01:00
|
|
|
version = "3.8";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xtermcontrol";
|
2017-07-31 21:54:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
|
2021-08-14 08:05:44 +01:00
|
|
|
sha256 = "sha256-Vh6GNiDkjNhaD9U/3fG2LpMLN39L3jRUgG/FQeG1z40=";
|
2017-07-31 21:54:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Enables dynamic control of xterm properties";
|
|
|
|
longDescription = ''
|
|
|
|
Enables dynamic control of xterm properties.
|
|
|
|
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.
|
|
|
|
Window manipulations de-/iconify, raise/lower, maximize/restore and reset are also supported.
|
|
|
|
To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://thrysoee.dk/xtermcontrol";
|
2021-01-15 13:21:58 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.derchris ];
|
2017-07-31 21:54:35 +01:00
|
|
|
};
|
|
|
|
}
|