aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
committerMx Kookie <kookie@spacekookie.de>2020-10-31 19:35:09 +0100
commitc4625b175f8200f643fd6e11010932ea44c78433 (patch)
treebce3f89888c8ac3991fa5569a878a9eab6801ccc /infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity
parent49f735974dd103039ddc4cb576bb76555164a9e7 (diff)
parentd661aa56a8843e991261510c1bb28fdc2f6975ae (diff)
Add 'infra/libkookie/' from commit 'd661aa56a8843e991261510c1bb28fdc2f6975ae'
git-subtree-dir: infra/libkookie git-subtree-mainline: 49f735974dd103039ddc4cb576bb76555164a9e7 git-subtree-split: d661aa56a8843e991261510c1bb28fdc2f6975ae
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity/default.nix
new file mode 100644
index 000000000000..01e9a3847920
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/security/libmodsecurity/default.nix
@@ -0,0 +1,48 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
+, doxygen, perl, valgrind
+, curl, geoip, libxml2, lmdb, lua, pcre, yajl }:
+
+stdenv.mkDerivation rec {
+ pname = "libmodsecurity";
+ version = "3.0.3";
+
+ src = fetchFromGitHub {
+ owner = "SpiderLabs";
+ repo = "ModSecurity";
+ fetchSubmodules = true;
+ rev = "v${version}";
+ sha256 = "00g2407g2679zv73q67zd50z0f1g1ij734ssv2pp77z4chn5dzib";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig 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 stdenv.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 ];
+ };
+}