xtermcontrol: init at 3.3

authored by derchris and committed by Robin Gloster 57b15422 87c0e36e

+28
+1
lib/maintainers.nix
··· 136 136 dbrock = "Daniel Brockman <daniel@brockman.se>"; 137 137 deepfire = "Kosyrev Serge <_deepfire@feelingofgreen.ru>"; 138 138 demin-dmitriy = "Dmitriy Demin <demindf@gmail.com>"; 139 + derchris = "Christian Gerbrandt <derchris@me.com>"; 139 140 DerGuteMoritz = "Moritz Heidkamp <moritz@twoticketsplease.de>"; 140 141 dermetfan = "Robin Stumm <serverkorken@gmail.com>"; 141 142 DerTim1 = "Tim Digel <tim.digel@active-group.de>";
+25
pkgs/applications/misc/xtermcontrol/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + version = "3.3"; 5 + name = "xtermcontrol-${version}"; 6 + 7 + src = fetchurl { 8 + url = "http://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz"; 9 + sha256 = "1v2c1cnx43apmspga7icssh5ndbhzy5h82y6vm8fda40flq9mxj5"; 10 + }; 11 + 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 = stdenv.lib.licenses.gpl2; 22 + platforms = stdenv.lib.platforms.unix; 23 + maintainers = [ stdenv.lib.maintainers.derchris ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 19224 19224 undaemonize = callPackage ../tools/system/undaemonize {}; 19225 19225 19226 19226 houdini = callPackage ../applications/misc/houdini {}; 19227 + 19228 + xtermcontrol = callPackage ../applications/misc/xtermcontrol {}; 19227 19229 }