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

23 lines
593 B
Nix
Raw Normal View History

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