nixpkgs/pkgs/tools/misc/tio/default.nix
R. RyanTM d662aed7a4 tio: 1.30 -> 1.31
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-07-10 21:56:20 -07:00

22 lines
554 B
Nix

{ stdenv, fetchzip, autoreconfHook }:
stdenv.mkDerivation rec {
name = "tio-${version}";
version = "1.31";
src = fetchzip {
url = "https://github.com/tio/tio/archive/v${version}.tar.gz";
sha256 = "1164ida1vxvm0z76nmkk2d5y9i3wj8rni9sl1mid6c09gi4k2slk";
};
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;
};
}