summary refs log blame commit diff
path: root/pkgs/tools/misc/vttest/default.nix
blob: 6b649cbb71d2a0159b790566cedb6b1450ca2b78 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                          


                         
                       





                                                                              
                                                                   

    
                    
                                                                                      
                                                      




                              
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "vttest";
  version = "20230924";

  src = fetchurl {
    urls = [
      "https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
      "ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
    ];
    sha256 = "sha256-vosHy1kJdtH0KvhZfdrayAjQiwomi7YwSoh9qz8Toig=";
  };

  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;
  };
}