nixpkgs/pkgs/tools/misc/tio/default.nix

22 lines
543 B
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, autoreconfHook }:
2018-05-10 14:04:04 +00:00
stdenv.mkDerivation rec {
pname = "tio";
version = "1.32";
2018-05-10 14:04:04 +00:00
src = fetchzip {
url = "https://github.com/tio/tio/archive/v${version}.tar.gz";
sha256 = "0lwqdm73kshi9qs8pks1b4by6yb9jf3bbyw3bv52xmggnr5s1hcv";
2018-05-10 14:04:04 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
2018-05-10 14:04:04 +00:00
description = "Serial console TTY";
homepage = "https://tio.github.io/";
2018-05-10 14:04:04 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.unix;
2018-05-10 14:04:04 +00:00
};
}