mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
xtermcontrol: init at 3.3
This commit is contained in:
parent
87c0e36ea7
commit
57b15422d9
|
@ -136,6 +136,7 @@
|
|||
dbrock = "Daniel Brockman <daniel@brockman.se>";
|
||||
deepfire = "Kosyrev Serge <_deepfire@feelingofgreen.ru>";
|
||||
demin-dmitriy = "Dmitriy Demin <demindf@gmail.com>";
|
||||
derchris = "Christian Gerbrandt <derchris@me.com>";
|
||||
DerGuteMoritz = "Moritz Heidkamp <moritz@twoticketsplease.de>";
|
||||
dermetfan = "Robin Stumm <serverkorken@gmail.com>";
|
||||
DerTim1 = "Tim Digel <tim.digel@active-group.de>";
|
||||
|
|
25
pkgs/applications/misc/xtermcontrol/default.nix
Normal file
25
pkgs/applications/misc/xtermcontrol/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.3";
|
||||
name = "xtermcontrol-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz";
|
||||
sha256 = "1v2c1cnx43apmspga7icssh5ndbhzy5h82y6vm8fda40flq9mxj5";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -19224,4 +19224,6 @@ with pkgs;
|
|||
undaemonize = callPackage ../tools/system/undaemonize {};
|
||||
|
||||
houdini = callPackage ../applications/misc/houdini {};
|
||||
|
||||
xtermcontrol = callPackage ../applications/misc/xtermcontrol {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue