3b2d888d63
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. These checks were done: - built on NixOS - ran ‘/nix/store/2wr7vzki1v1d9za89c4hgsgbbn9j2gzr-xtermcontrol-3.4/bin/xtermcontrol -h’ got 0 exit code - ran ‘/nix/store/2wr7vzki1v1d9za89c4hgsgbbn9j2gzr-xtermcontrol-3.4/bin/xtermcontrol --help’ got 0 exit code - found 3.4 with grep in /nix/store/2wr7vzki1v1d9za89c4hgsgbbn9j2gzr-xtermcontrol-3.4 - directory tree listing: https://gist.github.com/d2f87e2d47bdfed0a5727db4c27c83b0
25 lines
997 B
Nix
25 lines
997 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.4";
|
|
name = "xtermcontrol-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
|
|
sha256 = "1g81v9gfn08gjn1269j0qx12x36s9j6x39gl91ycay391flgzr5l";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|