2021-09-19 18:57:27 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2018-05-10 16:04:04 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tio";
|
2018-11-08 21:14:48 +01:00
|
|
|
version = "1.32";
|
2018-05-10 16:04:04 +02:00
|
|
|
|
2021-09-19 18:57:27 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tio";
|
|
|
|
repo = "tio";
|
|
|
|
rev = "v${version}";
|
|
|
|
hash = "sha256-m8GgS7bv1S7KXoP7tYaTaXnjF1lBz4s0ThHqOU5tmFM=";
|
2018-05-10 16:04:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-05-10 16:04:04 +02:00
|
|
|
description = "Serial console TTY";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://tio.github.io/";
|
2018-05-10 16:04:04 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
2019-12-15 13:23:16 +01:00
|
|
|
platforms = platforms.unix;
|
2018-05-10 16:04:04 +02:00
|
|
|
};
|
|
|
|
}
|