Merge pull request #40287 from yegortimoshenko/tio

tio: init at 1.30
This commit is contained in:
xeji 2018-05-10 18:11:41 +02:00 committed by GitHub
commit d448ff75da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;