8e65f7f0cc
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
22 lines
593 B
Nix
22 lines
593 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vttest";
|
|
version = "20220215";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
|
|
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
|
|
];
|
|
sha256 = "sha256-SmWZjF4SzwjO0s/OEZrbRPqEKsFJXQ8VDyHIpnhZFaE=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tests the compatibility of so-called 'VT100-compatible' terminals";
|
|
homepage = "https://invisible-island.net/vttest/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|
|
|