perlPackages.TestRunValgrind: init at 0.0.1

This commit is contained in:
AndersonTorres 2017-02-24 07:46:26 -03:00
parent 2085b43430
commit 93f7e0a6d9

View File

@ -13170,6 +13170,20 @@ let self = _self // overrides; _self = with self; {
};
};
TestRunValgrind = buildPerlModule rec {
name = "Test-RunValgrind-0.0.1";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "67bf3cf3e7d5d23ec33e592f8b0dbcccfa01205d5bf0a3d73d8c8358d167e83f";
};
buildInputs = [ ModuleBuild perl ];
propagatedBuildInputs = [ PathTiny ];
meta = {
description = "Tests that an external program is valgrind-clean";
license = stdenv.lib.licenses.mit;
};
};
TestScript = buildPerlPackage rec {
name = "Test-Script-1.10";
src = fetchurl {