Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 30 lines 1.0 kB view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 version = "3.10"; 9 pname = "xtermcontrol"; 10 11 src = fetchurl { 12 url = "https://thrysoee.dk/xtermcontrol/xtermcontrol-${version}.tar.gz"; 13 sha256 = "sha256-Prl7HZ2KrhutT+LEHKOj27ENLWfmykWZqh9jGkBQPe4="; 14 }; 15 16 meta = { 17 description = "Enables dynamic control of xterm properties"; 18 longDescription = '' 19 Enables dynamic control of xterm properties. 20 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. 21 Window manipulations de-/iconify, raise/lower, maximize/restore and reset are also supported. 22 To complete the feature set; xtermcontrol lets advanced users issue any xterm control sequence of their choosing. 23 ''; 24 homepage = "http://thrysoee.dk/xtermcontrol"; 25 license = lib.licenses.gpl2; 26 platforms = lib.platforms.unix; 27 maintainers = [ lib.maintainers.derchris ]; 28 mainProgram = "xtermcontrol"; 29 }; 30}