3
0
Fork 0
forked from mirrors/nixpkgs

perlPackages.Apache-AuthCookie: init at 3.27 (#44437)

This commit is contained in:
aanderse 2018-08-04 07:40:48 -04:00 committed by Jörg Thalheim
parent d296a379ba
commit 20f1388c3f

View file

@ -206,6 +206,26 @@ let self = _self // overrides; _self = with self; {
propagatedBuildInputs = [ Moose Mouse ];
};
ApacheAuthCookie = buildPerlPackage rec {
name = "Apache-AuthCookie-3.27";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MS/MSCHOUT/${name}.tar.gz";
sha256 = "58daeb3e44c681ff88f8fb00e4aabaa7a40cbee73dbdb84fcf6c285b15d357bd";
};
buildInputs = [ ApacheTest URI ];
propagatedBuildInputs = [ ClassLoad HTTPBody HashMultiValue WWWFormUrlEncoded ];
# Fails because /etc/protocols is not available in sandbox and make
# getprotobyname('tcp') in ApacheTest fail.
doCheck = !stdenv.isLinux;
meta = {
homepage = http://search.cpan.org/dist/Apache-AuthCookie/;
description = "Perl Authentication and Authorization via cookies";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
ApacheLogFormatCompiler = buildPerlModule rec {
name = "Apache-LogFormat-Compiler-0.35";
src = fetchurl {