perlPackages.TestTrailingSpace: init at 0.301

This commit is contained in:
AndersonTorres 2017-02-24 07:58:12 -03:00
parent 6e5097be99
commit d9a8d11bc1

View File

@ -13385,6 +13385,20 @@ let self = _self // overrides; _self = with self; {
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
TestTrailingSpace = buildPerlPackage rec {
name = "Test-TrailingSpace-0.0301";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "a28875747adb7a0e7d1ae8a4ffe71869e7ceb3a85d0cb30172959dada7de5970";
};
buildInputs = [ ModuleBuild ];
propagatedBuildInputs = [ FileFindObjectRule ];
meta = {
description = "Test for trailing space in source files";
license = stdenv.lib.licenses.mit;
};
};
TestUnitLite = buildPerlPackage {
name = "Test-Unit-Lite-0.1202";