d71b642e44
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/xtermcontrol/versions
26 lines
998 B
Nix
26 lines
998 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.6";
|
|
name = "xtermcontrol-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
|
|
sha256 = "01bwgxya6qh4br2lx3v98p7j1b99skgr6c1frw5kdkxy57qlpgkz";
|
|
};
|
|
|
|
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.
|
|
'';
|
|
homepage = http://thrysoee.dk/xtermcontrol;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.derchris ];
|
|
};
|
|
}
|