summary refs log tree commit diff
path: root/pkgs/tools/misc/vttest
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-13 07:55:26 -0500
committerWill Dietz <w@wdtz.org>2019-03-13 17:25:01 -0500
commit61cf43e1e1c95896afc251b8c566d83a7efe2bfb (patch)
tree03a1428264c5005ec7849ce3adbc5ab665a591da /pkgs/tools/misc/vttest
parent9179a3a406f77fe25f32f1ef7847392a889f8363 (diff)
downloadnixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar.gz
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar.bz2
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar.lz
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar.xz
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.tar.zst
nixpkgs-61cf43e1e1c95896afc251b8c566d83a7efe2bfb.zip
vttest: init at 20190105
Diffstat (limited to 'pkgs/tools/misc/vttest')
-rw-r--r--pkgs/tools/misc/vttest/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/misc/vttest/default.nix b/pkgs/tools/misc/vttest/default.nix
new file mode 100644
index 00000000000..9ae1ee0b17e
--- /dev/null
+++ b/pkgs/tools/misc/vttest/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  pname = "vttest";
+  version = "20190105";
+
+  src = fetchurl {
+    urls = [
+      "https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz"
+      "ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz"
+    ];
+    sha256 = "0wagaywzc6pq59m8gpcblag7gyjjarc0qx050arr1sy8hd3yy0sp";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Tests the compatibility so-called 'VT100-compatible' terminals";
+    homepage = https://invisible-island.net/vttest/;
+    license = licenses.mit;
+    platforms = platforms.all;
+  };
+}
+