summary refs log tree commit diff
path: root/pkgs/tools/networking/haproxy
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-06-10 00:59:18 +0000
committerJon <jonringer@users.noreply.github.com>2020-06-10 16:34:18 -0700
commit541f92f24e15c03ee4121d7a6128a3cdb9a536c3 (patch)
treeb0dd680bca2b9e28c0e69c1fcdfec89a1f531bc5 /pkgs/tools/networking/haproxy
parente596d5cd63d2751b610f7d54a6877d8cf2116707 (diff)
downloadnixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar.gz
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar.bz2
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar.lz
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar.xz
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.tar.zst
nixpkgs-541f92f24e15c03ee4121d7a6128a3cdb9a536c3.zip
haproxy: 2.1.4 -> 2.1.6
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 c5aeaaa7bb4..c43edd040e7 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.4";
+  version = "2.1.6";
 
   src = fetchurl {
     url = "https://www.haproxy.org/download/${stdenv.lib.versions.majorMinor version}/src/${pname}-${version}.tar.gz";
-    sha256 = "1kcizs5r538chhpwqykdngxyqfi98i03akfjnii721npjvv0y0si";
+    sha256 = "1pyz4gckdn8982vpb1iiw9agwp2s5p8wc0nn1qh1ic0wq3lrnpg6";
   };
 
   buildInputs = [ openssl zlib ]