tio: 1.35 -> 2.0

This commit is contained in:
prtzl 2022-09-20 11:46:02 +02:00 committed by Matthieu Coudron
parent 52117cce92
commit 05bbb2fd2e

View File

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
{ lib, stdenv, fetchFromGitHub, meson, ninja, cmake, pkg-config, inih, bash-completion }:
stdenv.mkDerivation rec {
pname = "tio";
version = "1.35";
version = "2.0";
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
hash = "sha256-JXY6C2gYG7UmTrYIvHjn/8mL70uvXTsXbNoFr09qhcw=";
hash = "sha256-0gLkfHGU3f/GU2PuSEoKD1K2Z42JNpfcIyIOFYcGLbk=";
};
nativeBuildInputs = [ meson ninja ];
nativeBuildInputs = [ meson ninja cmake pkg-config inih bash-completion ];
meta = with lib; {
description = "Serial console TTY";