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

23 lines
590 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2019-03-13 12:55:26 +00:00
stdenv.mkDerivation rec {
pname = "vttest";
2021-03-10 07:51:17 +00:00
version = "20210210";
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"
];
2021-03-10 07:51:17 +00:00
sha256 = "sha256-D5ii4wWYKRXxUgmEw+hpjjrNUI7iEHEVKMifWn6n8EY=";
2019-03-13 12:55:26 +00:00
};
meta = with lib; {
2019-03-13 12:55:26 +00:00
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;
};
}