perlPackages.ClassLoader: init at 2.03

This commit is contained in:
Souvik Sen 2020-04-07 02:29:55 -04:00 committed by Souvik Sen
parent 0c203ea6f0
commit 58ee9e4266

View file

@ -2558,6 +2558,19 @@ let
};
};
ClassLoader = buildPerlPackage rec {
pname = "Class-Loader";
version = "2.03";
src = fetchurl {
url = "mirror://cpan/authors/id/V/VI/VIPUL/${pname}-${version}.tar.gz";
sha256 = "4fef2076ead60423454ff1f4e82859a9a9b9942b5fb8eee0c98b9c63c9f2b8e7";
};
meta = {
description = "Load modules and create objects on demand";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
ClassMakeMethods = buildPerlPackage {
pname = "Class-MakeMethods";
version = "1.01";