nixpkgs-suyu/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
533 B
Nix
Raw Normal View History

2022-03-07 14:15:56 +01:00
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
2018-05-10 16:04:04 +02:00
stdenv.mkDerivation rec {
pname = "tio";
2022-03-07 14:15:56 +01:00
version = "1.35";
2018-05-10 16:04:04 +02:00
2021-09-19 18:57:27 +02:00
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
2022-03-07 14:15:56 +01:00
hash = "sha256-JXY6C2gYG7UmTrYIvHjn/8mL70uvXTsXbNoFr09qhcw=";
2018-05-10 16:04:04 +02:00
};
2022-03-07 14:15:56 +01:00
nativeBuildInputs = [ meson ninja ];
2018-05-10 16:04:04 +02:00
meta = with lib; {
2018-05-10 16:04:04 +02:00
description = "Serial console TTY";
homepage = "https://tio.github.io/";
2018-05-10 16:04:04 +02:00
license = licenses.gpl2Plus;
2021-12-31 19:48:55 +01:00
maintainers = with maintainers; [ yana ];
platforms = platforms.unix;
2018-05-10 16:04:04 +02:00
};
}