2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vttest";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "20230924";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
urls = [
|
|
|
|
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
|
|
|
|
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
|
|
|
|
];
|
2023-11-16 04:20:00 +00:00
|
|
|
sha256 = "sha256-vosHy1kJdtH0KvhZfdrayAjQiwomi7YwSoh9qz8Toig=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-03-05 16:20:37 +00:00
|
|
|
description = "Tests the compatibility of so-called 'VT100-compatible' terminals";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://invisible-island.net/vttest/";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|