biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / terminal-emulators / xtermcontrol / default.nix
blobf0c7203fd9cee54a7dbdd926688e6428a2898794
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   version = "3.8";
5   pname = "xtermcontrol";
7   src = fetchurl {
8     url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
9     sha256 = "sha256-Vh6GNiDkjNhaD9U/3fG2LpMLN39L3jRUgG/FQeG1z40=";
10   };
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 = lib.licenses.gpl2;
22     platforms = lib.platforms.unix;
23     maintainers = [ lib.maintainers.derchris ];
24     mainProgram = "xtermcontrol";
25   };