summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-05 20:07:14 -0500
committerGitHub <noreply@github.com>2020-04-05 20:07:14 -0500
commite6b7d37c16fb50e268cd9f3e7401c7858244f489 (patch)
tree8bc99ab6268398df6d0ac283968c7ec65c03fd50 /pkgs/tools/networking
parentd47c8ab5bd715177e707554f2ed111b19c97a1ce (diff)
parent65d787360df3d6cc8a39b435bc6ffd183907ddea (diff)
downloadnixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar.gz
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar.bz2
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar.lz
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar.xz
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.tar.zst
nixpkgs-e6b7d37c16fb50e268cd9f3e7401c7858244f489.zip
Merge pull request #84392 from r-ryantm/auto-update/haproxy
haproxy: 2.1.3 -> 2.1.4
Diffstat (limited to 'pkgs/tools/networking')
-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 9c7adfce21d..c5aeaaa7bb4 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.1.3";
+  version = "2.1.4";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
-    sha256 = "0n8bw3d6gikr8c56ycrvksp1sl0b4yfzp19867cxkl3l0daqwrxv";
+    sha256 = "1kcizs5r538chhpwqykdngxyqfi98i03akfjnii721npjvv0y0si";
   };
 
   buildInputs = [ openssl zlib ]