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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
599 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion }:
2018-05-10 14:04:04 +00:00
stdenv.mkDerivation rec {
pname = "tio";
2022-12-19 18:15:22 +00:00
version = "2.5";
2018-05-10 14:04:04 +00:00
2021-09-19 16:57:27 +00:00
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
2022-12-19 18:15:22 +00:00
hash = "sha256-7mVLfzguQ7eNIFTJMLJyoM+/pveGO88j2JUEOqvnqvk=";
2018-05-10 14:04:04 +00:00
};
nativeBuildInputs = [ meson ninja pkg-config inih bash-completion ];
2018-05-10 14:04:04 +00:00
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;
2021-12-31 18:48:55 +00:00
maintainers = with maintainers; [ yana ];
platforms = platforms.unix;
2018-05-10 14:04:04 +00:00
};
}