Merge pull request #84832 from deshaw/contrib/perl-module-compile

perlPackages.ModuleCompile: init at 0.37
This commit is contained in:
Aaron Andersen 2020-04-09 18:55:24 -04:00 committed by GitHub
commit 0888749180
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11835,6 +11835,21 @@ let
};
};
ModuleCompile = buildPerlPackage rec {
pname = "Module-Compile";
version = "0.37";
src = fetchurl {
url = "mirror://cpan/authors/id/I/IN/INGY/${pname}-${version}.tar.gz";
sha256 = "18e6c4c4d2d5e39c21dde60a64424eed547e1d234ecc73a35278ea08161a8078";
};
propagatedBuildInputs = [ CaptureTiny DigestSHA1 ];
meta = {
homepage = "https://github.com/ingydotnet/module-compile-pm";
description = "Perl Module Compilation";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
ModuleCPANTSAnalyse = buildPerlPackage {
pname = "Module-CPANTS-Analyse";
version = "1.01";