1be0098156
GitOrigin-RevId: 667e5581d16745bcda791300ae7e2d73f49fff25
23 lines
599 B
Nix
23 lines
599 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tio";
|
|
version = "2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tio";
|
|
repo = "tio";
|
|
rev = "v${version}";
|
|
hash = "sha256-BjA9Zl6JcgDxTj4KPiWItSq9XuX9FJkpZnhdMBGZQpQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config inih bash-completion ];
|
|
|
|
meta = with lib; {
|
|
description = "Serial console TTY";
|
|
homepage = "https://tio.github.io/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ yana ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|