[cpan2nix] perlPackages.TestJSON: cleanup

This commit is contained in:
volth 2018-04-07 07:56:37 +00:00
parent b90385e899
commit 3b45b084c3
1 changed files with 3 additions and 2 deletions

View File

@ -14240,17 +14240,18 @@ let self = _self // overrides; _self = with self; {
};
};
TestJSON = buildPerlPackage {
TestJSON = buildPerlModule {
name = "Test-JSON-0.11";
src = fetchurl {
url = mirror://cpan/authors/id/O/OV/OVID/Test-JSON-0.11.tar.gz;
sha256 = "1cyp46w3q7dg89qkw31ik2h2a6mdx6pzdz2lmp8m0a61zjr8mh07";
};
propagatedBuildInputs = [ JSONAny TestDifferences TestTester ];
propagatedBuildInputs = [ JSONAny ];
meta = {
maintainers = with maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
buildInputs = [ TestDifferences ];
};
TestLeakTrace = buildPerlPackage rec {