1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

vttest: init at 20190105

This commit is contained in:
Will Dietz 2019-03-13 07:55:26 -05:00
parent 9179a3a406
commit 61cf43e1e1
2 changed files with 24 additions and 0 deletions

View file

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

View file

@ -23051,6 +23051,8 @@ in
vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };
vttest = callPackage ../tools/misc/vttest { };
wavegain = callPackage ../applications/audio/wavegain { };
wcalc = callPackage ../applications/misc/wcalc { };