about summary refs log tree commit diff
path: root/pkgs/tools/networking/haproxy
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-02-24 04:42:58 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-25 19:50:10 -0800
commitb71dc21f1768a5fe3dc0659750413f7b882b14b3 (patch)
tree04a0ca57049d1c84e43296b001400045aab91a45 /pkgs/tools/networking/haproxy
parentccebb010c90e9ec4e4ff22c6b4ff8848f7e0df52 (diff)
haproxy: 2.5.2 -> 2.5.3
Diffstat (limited to 'pkgs/tools/networking/haproxy')
-rw-r--r--pkgs/tools/networking/haproxy/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/haproxy/default.nix b/pkgs/tools/networking/haproxy/default.nix
index b702c51136604..afc57cb723fa5 100644
--- a/pkgs/tools/networking/haproxy/default.nix
+++ b/pkgs/tools/networking/haproxy/default.nix
@@ -11,11 +11,11 @@ assert usePcre -> pcre != null;
 
 stdenv.mkDerivation rec {
   pname = "haproxy";
-  version = "2.5.2";
+  version = "2.5.3";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
-    sha256 = "sha256-LeNCT9dFK+HBwT1eCZQGEoUFXFcEaxyzwiDWdhHQ2n4=";
+    sha256 = "sha256-1vo8ZvcH/5O1vSfOaecKiWTXtweFSLUYaNR9ffOUP+Q=";
   };
 
   buildInputs = [ openssl zlib ]