nixpkgs/pkgs/tools/misc/vttest/default.nix

23 lines
593 B
Nix
Raw Normal View History

2019-03-13 12:55:26 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "vttest";
2020-05-10 23:43:23 +00:00
version = "20200420";
2019-03-13 12:55:26 +00:00
src = fetchurl {
urls = [
"https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
"ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
];
2020-05-10 23:43:23 +00:00
sha256 = "03li63v9mbsqn4cw6d769r1a6iaixi80m2c32y32vc9i5k3ik43c";
2019-03-13 12:55:26 +00:00
};
meta = with stdenv.lib; {
description = "Tests the compatibility so-called 'VT100-compatible' terminals";
2020-03-10 03:41:13 +00:00
homepage = "https://invisible-island.net/vttest/";
2019-03-13 12:55:26 +00:00
license = licenses.mit;
platforms = platforms.all;
};
}