tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
perl-Catalyst-Action-RenderView: cleanup
Robert Helgesson
9 years ago
32739fc0
d4d6479f
+8
-4
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
perl-packages.nix
+8
-4
pkgs/top-level/perl-packages.nix
···
887
CatalystActionRenderView = buildPerlPackage rec {
888
name = "Catalyst-Action-RenderView-0.16";
889
src = fetchurl {
890
-
url = "mirror://cpan/modules/by-module/Catalyst/${name}.tar.gz";
891
-
sha256 = "0j1rrld13cjk7ks92b5hv3xw4rfm2lvmksb4rlzd8mx0a0wj0rc5";
892
};
893
-
propagatedBuildInputs =
894
-
[ CatalystRuntime HTTPRequestAsCGI DataVisitor MROCompat ];
0
0
0
0
895
};
896
897
CatalystActionREST = buildPerlPackage rec {
···
887
CatalystActionRenderView = buildPerlPackage rec {
888
name = "Catalyst-Action-RenderView-0.16";
889
src = fetchurl {
890
+
url = "mirror://cpan/authors/id/B/BO/BOBTFISH/${name}.tar.gz";
891
+
sha256 = "8565203950a057d43ecd64e9593715d565c2fbd8b02c91f43c53b2111acd3948";
892
};
893
+
buildInputs = [ HTTPRequestAsCGI ];
894
+
propagatedBuildInputs = [ CatalystRuntime DataVisitor MROCompat ];
895
+
meta = {
896
+
description = "Sensible default end action";
897
+
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
898
+
};
899
};
900
901
CatalystActionREST = buildPerlPackage rec {