depot/third_party/nixpkgs/pkgs/tools/misc/vttest/default.nix
Default email a3d4720129 Project import generated by Copybara.
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
2022-12-28 22:21:41 +01:00

22 lines
593 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "vttest";
version = "20221111";
src = fetchurl {
urls = [
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
];
sha256 = "sha256-asC/ZqWAc3gP3rdGMRT1HYCxzJ6O8djHNjBT/Nwxgac=";
};
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;
};
}