3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/tio/default.nix

24 lines
538 B
Nix
Raw Normal View History

2021-09-19 17:57:27 +01:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2018-05-10 15:04:04 +01:00
stdenv.mkDerivation rec {
pname = "tio";
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 ];
meta = with lib; {
2018-05-10 15:04:04 +01:00
description = "Serial console TTY";
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 ];
platforms = platforms.unix;
2018-05-10 15:04:04 +01:00
};
}