Merge pull request #57606 from dtzWill/feature/vttest
vttest: init at 20190105
This commit is contained in:
commit
bf20713a63
22
pkgs/tools/misc/vttest/default.nix
Normal file
22
pkgs/tools/misc/vttest/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
@ -23060,6 +23060,8 @@ in
|
||||
|
||||
vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };
|
||||
|
||||
vttest = callPackage ../tools/misc/vttest { };
|
||||
|
||||
wavegain = callPackage ../applications/audio/wavegain { };
|
||||
|
||||
wcalc = callPackage ../applications/misc/wcalc { };
|
||||
|
Loading…
Reference in New Issue
Block a user