depot/third_party/nixpkgs/pkgs/tools/misc/tio/default.nix
Default email 5083ee08a2 Project import generated by Copybara.
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
2022-09-30 06:47:45 -05:00

23 lines
612 B
Nix

{ lib, stdenv, fetchFromGitHub, meson, ninja, cmake, pkg-config, inih, bash-completion }:
stdenv.mkDerivation rec {
pname = "tio";
version = "2.0";
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
hash = "sha256-0gLkfHGU3f/GU2PuSEoKD1K2Z42JNpfcIyIOFYcGLbk=";
};
nativeBuildInputs = [ meson ninja cmake 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;
};
}