tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
perl-Catalyst-Runtime: 5.90085 -> 5.90104
Robert Helgesson
9 years ago
020560d1
06101d66
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
perl-packages.nix
+7
-7
pkgs/top-level/perl-packages.nix
···
1073
};
1074
};
1075
1076
-
CatalystRuntime = buildPerlPackage {
1077
-
name = "Catalyst-Runtime-5.90085";
1078
src = fetchurl {
1079
-
url = mirror://cpan/authors/id/J/JJ/JJNAPIORK/Catalyst-Runtime-5.90085.tar.gz;
1080
-
sha256 = "17wfcawvj8nxs2wq7r094m6dff37s6i2d2z49lxz2n8c489d9nk1";
1081
};
1082
-
buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal ];
1083
-
propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList Encode HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TermSizeAny TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
1084
meta = {
1085
homepage = http://dev.catalyst.perl.org/;
1086
description = "The Catalyst Framework Runtime";
1087
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
1088
-
platforms = stdenv.lib.platforms.linux;
1089
};
1090
};
1091
···
1073
};
1074
};
1075
1076
+
CatalystRuntime = buildPerlPackage rec {
1077
+
name = "Catalyst-Runtime-5.90104";
1078
src = fetchurl {
1079
+
url = "mirror://cpan/authors/id/J/JJ/JJNAPIORK/${name}.tar.gz";
1080
+
sha256 = "91d551944beb3a0ae8635c78d5f2e1583ef1e7873d5c8ee407e2f64380ad870b";
1081
};
1082
+
buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal TypeTiny ];
1083
+
propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
1084
meta = {
1085
homepage = http://dev.catalyst.perl.org/;
1086
description = "The Catalyst Framework Runtime";
1087
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
1088
+
platforms = stdenv.lib.platforms.all;
1089
};
1090
};
1091