perlPackages.Test2Harness: init at 1.000042

This commit is contained in:
Graham Christensen 2021-02-19 11:14:11 -05:00
parent 5a6c62b211
commit 6a53819136
No known key found for this signature in database
GPG key ID: FE918C3A98C1030F

View file

@ -19815,6 +19815,26 @@ let
};
};
Test2Harness = buildPerlPackage {
pname = "Test2-Harness";
version = "1.000042";
src = fetchurl {
url = "mirror://cpan/authors/id/E/EX/EXODIST/Test2-Harness-1.000042.tar.gz";
sha256 = "aaf231a68af1a6ffd6a11188875fcf572e373e43c8285945227b9d687b43db2d";
};
checkPhase = ''
patchShebangs ./t ./scripts/yath
./scripts/yath test -j $NIX_BUILD_CORES
'';
propagatedBuildInputs = [ DataUUID Importer LongJump ScopeGuard TermTable Test2PluginMemUsage Test2PluginUUID Test2Suite gotofile ];
meta = {
description = "A new and improved test harness with better Test2 integration";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};
Test2PluginMemUsage = buildPerlPackage {
pname = "Test2-Plugin-MemUsage";
version = "0.002003";