about summary refs log tree commit diff
path: root/pkgs/tools/misc/vttest/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/vttest/default.nix')
-rw-r--r--pkgs/tools/misc/vttest/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/tools/misc/vttest/default.nix b/pkgs/tools/misc/vttest/default.nix
deleted file mode 100644
index 4808d4dacdbf..000000000000
--- a/pkgs/tools/misc/vttest/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  pname = "vttest";
-  version = "20240218";
-
-  src = fetchurl {
-    urls = [
-      "https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
-      "ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
-    ];
-    sha256 = "sha256-YlspL4BS/7vv59nW+9+cjR/Bi1yFVo8lRwl9l8VAvXU=";
-  };
-
-  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;
-    mainProgram = "vttest";
-  };
-}
-