depot/third_party/nixpkgs/pkgs/tools/security/libmodsecurity/default.nix
Default email 139d06eab7 Project import generated by Copybara.
GitOrigin-RevId: b2f2d04f01b3de3abad0dd9bc48ad7a3ee32bbc6
2021-04-18 04:13:31 +02:00

48 lines
1.4 KiB
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
, doxygen, perl, valgrind
, curl, geoip, libxml2, lmdb, lua, pcre, yajl }:
stdenv.mkDerivation rec {
pname = "libmodsecurity";
version = "3.0.4";
src = fetchFromGitHub {
owner = "SpiderLabs";
repo = "ModSecurity";
fetchSubmodules = true;
rev = "v${version}";
sha256 = "07vry10cdll94sp652hwapn0ppjv3mb7n2s781yhy7hssap6f2vp";
};
nativeBuildInputs = [ autoreconfHook pkg-config doxygen ];
buildInputs = [ perl valgrind curl geoip libxml2 lmdb lua pcre yajl ];
configureFlags = [
"--enable-static"
"--with-curl=${curl.dev}"
"--with-libxml=${libxml2.dev}"
"--with-pcre=${pcre.dev}"
"--with-yajl=${yajl}"
];
enableParallelBuilding = true;
meta = with lib; {
description = ''
ModSecurity v3 library component.
'';
longDescription = ''
Libmodsecurity is one component of the ModSecurity v3 project. The
library codebase serves as an interface to ModSecurity Connectors taking
in web traffic and applying traditional ModSecurity processing. In
general, it provides the capability to load/interpret rules written in
the ModSecurity SecRules format and apply them to HTTP content provided
by your application via Connectors.
'';
homepage = "https://modsecurity.org/";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ izorkin ];
};
}