commit
d448ff75da
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue