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