summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Leathers <disasm@gmail.com>2017-12-17 13:28:14 -0500
committerGitHub <noreply@github.com>2017-12-17 13:28:14 -0500
commit6649ece637e169a9c2ac7ea59fa76f777df20610 (patch)
tree196b12c88955ce398804b705c09f0090dc6262e2
parentcfa5bb8d1e809d0ea71e9c55b554d09f3177381d (diff)
parentee6bdc8bb41d1bf0c36af969db4d6ba349475dfd (diff)
downloadnixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar.gz
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar.bz2
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar.lz
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar.xz
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.tar.zst
nixlib-6649ece637e169a9c2ac7ea59fa76f777df20610.zip
Merge pull request #32752 from Izorkin/libmodsecurity
libmodsecurity: 3.0.0-2017-11-17 -> 3.0.0 Stable
-rw-r--r--pkgs/tools/security/libmodsecurity/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/security/libmodsecurity/default.nix b/pkgs/tools/security/libmodsecurity/default.nix
index 435b1f151a08..f746e8c8ffd9 100644
--- a/pkgs/tools/security/libmodsecurity/default.nix
+++ b/pkgs/tools/security/libmodsecurity/default.nix
@@ -4,14 +4,14 @@
 
 stdenv.mkDerivation rec {
   name = "libmodsecurity-${version}";
-  version = "3.0.0-2017-11-17";
+  version = "3.0.0";
 
   src = fetchFromGitHub {
     owner = "SpiderLabs";
     repo = "ModSecurity";
     fetchSubmodules = true;
-    rev = "81e1cdced3c0266d4b02a68e5f99c30a9c992303";
-    sha256 = "120bpvjq6ws2lv4vw98rx2s0c9yn0pfhlaphlgfv2rxqm3q7yhrr";
+    rev = "v${version}";
+    sha256 = "1y9nxbf5vgip4zl948a27xpw4mpimqd7xmskfi40k6g0cmmsx1x1";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = ''
-      Libmodsecurity is one component of the ModSecurity v3 project.
+      ModSecurity v3 library component.
     '';
     longDescription = ''
       Libmodsecurity is one component of the ModSecurity v3 project. The
@@ -44,4 +44,3 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ izorkin ];
   };
 }
-