2022-03-07 14:15:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
|
2018-05-10 16:04:04 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tio";
|
2022-03-07 14:15:56 +01:00
|
|
|
version = "1.35";
|
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}";
|
2022-03-07 14:15:56 +01:00
|
|
|
hash = "sha256-JXY6C2gYG7UmTrYIvHjn/8mL70uvXTsXbNoFr09qhcw=";
|
2018-05-10 16:04:04 +02:00
|
|
|
};
|
|
|
|
|
2022-03-07 14:15:56 +01:00
|
|
|
nativeBuildInputs = [ meson ninja ];
|
2018-05-10 16:04:04 +02:00
|
|
|
|
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;
|
2021-12-31 19:48:55 +01:00
|
|
|
maintainers = with maintainers; [ yana ];
|
2019-12-15 13:23:16 +01:00
|
|
|
platforms = platforms.unix;
|
2018-05-10 16:04:04 +02:00
|
|
|
};
|
|
|
|
}
|