3
0
Fork 0
forked from mirrors/nixpkgs

[cpan2nix] perlPackages.TestRunPluginColorFileVerdicts: cleanup

This commit is contained in:
volth 2018-04-07 07:58:12 +00:00
parent ff06a27e60
commit 60f6db5496

View file

@ -14920,14 +14920,14 @@ let self = _self // overrides; _self = with self; {
};
};
TestRunPluginColorFileVerdicts = buildPerlPackage rec {
TestRunPluginColorFileVerdicts = buildPerlModule rec {
name = "Test-Run-Plugin-ColorFileVerdicts-0.0124";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "0418f03abe241f5a3c2a2ab3dd2679d11eee42c9e1f5b5a6ea80d9e238374302";
};
buildInputs = [ ModuleBuild ];
propagatedBuildInputs = [ MROCompat Moose TestRun TestRunCmdLine ] ++ moreInputs;
buildInputs = [ TestRun TestRunCmdLine TestTrap ];
propagatedBuildInputs = [ Moose ];
moreInputs = [ TestTrap ]; # Added because tests were failing without it
doCheck=true;
meta = {