lol
at 22.05-pre 23 lines 549 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "tio"; 5 version = "1.32"; 6 7 src = fetchFromGitHub { 8 owner = "tio"; 9 repo = "tio"; 10 rev = "v${version}"; 11 hash = "sha256-m8GgS7bv1S7KXoP7tYaTaXnjF1lBz4s0ThHqOU5tmFM="; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 16 meta = with lib; { 17 description = "Serial console TTY"; 18 homepage = "https://tio.github.io/"; 19 license = licenses.gpl2Plus; 20 maintainers = with maintainers; [ yegortimoshenko ]; 21 platforms = platforms.unix; 22 }; 23}