modsecurity: init at 2.9.0
This commit is contained in:
parent
0d32d4cd84
commit
56b1f7934c
|
@ -0,0 +1,45 @@
|
||||||
|
{ stdenv, lib, fetchurl
|
||||||
|
, curl, apacheHttpd, pcre, apr, aprutil, libxml2 }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "modsecurity-${version}";
|
||||||
|
version = "2.9.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.modsecurity.org/tarball/${version}/${name}.tar.gz";
|
||||||
|
sha256 = "e2bbf789966c1f80094d88d9085a81bde082b2054f8e38e0db571ca49208f434";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ curl apacheHttpd pcre apr aprutil libxml2 ];
|
||||||
|
configureFlags = [
|
||||||
|
"--enable-standalone-module"
|
||||||
|
"--enable-static"
|
||||||
|
"--with-curl=${curl}"
|
||||||
|
"--with-apxs=${apacheHttpd}/bin/apxs"
|
||||||
|
"--with-pcre=${pcre}"
|
||||||
|
"--with-apr=${apr}"
|
||||||
|
"--with-apu=${aprutil}/bin/apu-1-config"
|
||||||
|
"--with-libxml=${libxml2}"
|
||||||
|
];
|
||||||
|
|
||||||
|
outputs = ["out" "nginx"];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
substituteInPlace apache2/Makefile.in --replace "install -D " "# install -D"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $nginx
|
||||||
|
cp -R * $nginx
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Open source, cross-platform web application firewall (WAF)";
|
||||||
|
license = licenses.asl20;
|
||||||
|
homepage = https://www.modsecurity.org/;
|
||||||
|
maintainers = with maintainers; [offline];
|
||||||
|
platforms = with platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -2231,6 +2231,8 @@ let
|
||||||
|
|
||||||
modemmanager = callPackage ../tools/networking/modemmanager {};
|
modemmanager = callPackage ../tools/networking/modemmanager {};
|
||||||
|
|
||||||
|
modsecurity_standalone = callPackage ../tools/security/modsecurity { };
|
||||||
|
|
||||||
monit = callPackage ../tools/system/monit { };
|
monit = callPackage ../tools/system/monit { };
|
||||||
|
|
||||||
moreutils = callPackage ../tools/misc/moreutils {
|
moreutils = callPackage ../tools/misc/moreutils {
|
||||||
|
|
Loading…
Reference in New Issue