tty: init at 1.30

This commit is contained in:
Yegor Timoshenko 2018-05-10 17:04:04 +03:00
parent 07dc607a8d
commit bcaff3c3e0
No known key found for this signature in database
GPG key ID: D94C2621F68B81E8
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, fetchzip, autoreconfHook }:
stdenv.mkDerivation rec {
name = "tio-${version}";
version = "1.30";
src = fetchzip {
url = "https://github.com/tio/tio/archive/v${version}.tar.gz";
sha256 = "1cyjy1jg2s32h1jkb99qb79sxkxh92niiyig0vysr14m4xnw01mr";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "Serial console TTY";
homepage = https://tio.github.io/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}

View file

@ -5203,6 +5203,8 @@ with pkgs;
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
tio = callPackage ../tools/misc/tio { };
tldr = callPackage ../tools/misc/tldr { };
tldr-hs = haskellPackages.tldr;