tio: 1.32 -> 1.35

This commit is contained in:
Alyssa Ross 2022-03-07 13:15:56 +00:00 committed by Matthieu Coudron
parent b8e96973e6
commit 10ebbd63e9

View file

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
{ lib, stdenv, fetchFromGitHub, meson, ninja }:
stdenv.mkDerivation rec {
pname = "tio";
version = "1.32";
version = "1.35";
src = fetchFromGitHub {
owner = "tio";
repo = "tio";
rev = "v${version}";
hash = "sha256-m8GgS7bv1S7KXoP7tYaTaXnjF1lBz4s0ThHqOU5tmFM=";
hash = "sha256-JXY6C2gYG7UmTrYIvHjn/8mL70uvXTsXbNoFr09qhcw=";
};
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ meson ninja ];
meta = with lib; {
description = "Serial console TTY";