summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2018-09-20 04:19:56 -0500
committerAustin Seipp <aseipp@pobox.com>2018-09-20 15:17:30 -0500
commit08815b9af892fcd8dd28a3fdf8eaa921f0797063 (patch)
tree694f36eeec4756514ffc96c9cf5bcaa21203688c /pkgs
parente40d850fd13cdb8daab7745bc15631e737c1b1a0 (diff)
downloadnixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar.gz
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar.bz2
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar.lz
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar.xz
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.tar.zst
nixpkgs-08815b9af892fcd8dd28a3fdf8eaa921f0797063.zip
perlPackages.Mojolicious: 7.88 -> 8.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/perl-packages.nix12
1 files changed, 8 insertions, 4 deletions
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 ];
     };
   };