nixpkgs/pkgs/tools/misc/tio/default.nix
R. RyanTM 1bb7496d2e tio: 1.31 -> 1.32
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tio/versions
2018-11-08 12:14:48 -08:00

22 lines
554 B
Nix

{ stdenv, fetchzip, autoreconfHook }:
stdenv.mkDerivation rec {
name = "tio-${version}";
version = "1.32";
src = fetchzip {
url = "https://github.com/tio/tio/archive/v${version}.tar.gz";
sha256 = "0lwqdm73kshi9qs8pks1b4by6yb9jf3bbyw3bv52xmggnr5s1hcv";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "Serial console TTY";
homepage = https://tio.github.io/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}