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 15:04:04 +01:00
stdenv.mkDerivation rec {
pname = "tio";
2022-12-07 02:53:29 +00:00
version = "2.4";
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}";
2022-12-07 02:53:29 +00:00
hash = "sha256-cRwjg0+p+1u+tdG+skqGWzxwM375P4aUsF4JVGgCXOI=";
2018-05-10 15:04:04 +01:00
};
nativeBuildInputs = [ meson ninja pkg-config inih bash-completion ];
2018-05-10 15:04:04 +01:00
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
};
}