diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 714dba45aa2..1497146c732 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9989,16 +9989,20 @@ let license = stdenv.lib.licenses.asl20; }; }; + Mojolicious = buildPerlPackage rec { - name = "Mojolicious-7.88"; + name = "Mojolicious-8.0"; src = fetchurl { url = "mirror://cpan/authors/id/S/SR/SRI/${name}.tar.gz"; - sha256 = "4c4c9c05131fcd175cd6370e15d2586baec1a3ec882cb6971e1f5f52b5e0d785"; + sha256 = "b266fd32f12cca2504be012e785f34eb09c0a132df52be183ff5d494e87f0b98"; }; + buildInputs = [ ExtUtilsMakeMaker ]; + propagatedBuildInputs = [ IOSocketIP JSONPP PodSimple TimeLocal ]; meta = { - homepage = https://mojolicious.org/; + homepage = https://mojolicious.org; description = "Real-time web framework"; - license = with stdenv.lib.licenses; [ artistic2 ]; + license = stdenv.lib.licenses.artistic2; + maintainers = [ maintainers.thoughtpolice ]; }; };