2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vttest";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "20240708";
|
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"
|
|
|
|
];
|
2024-07-27 06:49:29 +00:00
|
|
|
sha256 = "sha256-wZVEnrLSKZyjwKJHiKmqtWn+QcLg6DEotcKbqW5auxs=";
|
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;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "vttest";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|