depot/third_party/nixpkgs/pkgs/tools/misc/vttest/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

23 lines
621 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "vttest";
version = "20231230";
src = fetchurl {
urls = [
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
];
sha256 = "sha256-SuYjx3t5fn+UlGlI0LJ+RqtOAdhD9iYIAMVzkKoEy/U=";
};
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;
mainProgram = "vttest";
};
}