diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 29e619bb19de..c8b4a2eee9b7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -35269,6 +35269,23 @@ with self; }; }; + TestStrict = buildPerlPackage { + pname = "Test-Strict"; + version = "0.54"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MA/MANWAR/Test-Strict-0.54.tar.gz"; + hash = "sha256-9oB1F4I6kKlrQN7q7ZqggAgt7UtQpRIE9b4efOd0yFw="; + }; + buildInputs = [ IOStringy ]; + meta = { + description = "Check syntax, presence of use strict; and test coverage"; + license = with lib.licenses; [ + artistic1 + gpl1Plus + ]; + }; + }; + TestSubCalls = buildPerlPackage { pname = "Test-SubCalls"; version = "1.10";