nixpkgs/pkgs/tools/misc/vttest/default.nix
2023-02-16 17:50:14 +00:00

23 lines
593 B
Nix

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