mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
24 lines
599 B
Nix
24 lines
599 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, inih, bash-completion }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tio";
|
|
version = "2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tio";
|
|
repo = "tio";
|
|
rev = "v${version}";
|
|
hash = "sha256-7mVLfzguQ7eNIFTJMLJyoM+/pveGO88j2JUEOqvnqvk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja 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;
|
|
};
|
|
}
|