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

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

28 lines
643 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";
2023-09-24 17:01:09 +00:00
version = "2.7";
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}";
2023-09-24 17:01:09 +00:00
hash = "sha256-SGOxy0gyR2RQn5sj28RPhDNmESd7LhNj9nlOoCZSEJs=";
2018-05-10 14:04:04 +00:00
};
2023-05-19 03:47:48 +00:00
strictDeps = true;
buildInputs = [ inih ];
nativeBuildInputs = [ meson ninja pkg-config 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
};
}