Merge pull request #251763 from LeSuisse/haproxy-2.8.2

haproxy: 2.8.1 -> 2.8.2

authored by

Robert Scott and committed by
GitHub
f0c82885 81eeee01

+3 -2
+3 -2
pkgs/tools/networking/haproxy/default.nix
··· 18 19 stdenv.mkDerivation (finalAttrs: { 20 pname = "haproxy"; 21 - version = "2.8.1"; 22 23 src = fetchurl { 24 url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz"; 25 - hash = "sha256-SFVS/NnV1fQarQRvEx/Ap+hJvvJaNJoEB1CvDG/FaAc="; 26 }; 27 28 buildInputs = [ openssl zlib libxcrypt ] ··· 76 ''; 77 maintainers = with lib.maintainers; [ ]; 78 platforms = with lib.platforms; linux ++ darwin; 79 }; 80 })
··· 18 19 stdenv.mkDerivation (finalAttrs: { 20 pname = "haproxy"; 21 + version = "2.8.2"; 22 23 src = fetchurl { 24 url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz"; 25 + hash = "sha256-aY1pBtFwlGqGl2mWTleBa6PaOt9h/3XomXKxN/RljbA="; 26 }; 27 28 buildInputs = [ openssl zlib libxcrypt ] ··· 76 ''; 77 maintainers = with lib.maintainers; [ ]; 78 platforms = with lib.platforms; linux ++ darwin; 79 + mainProgram = "haproxy"; 80 }; 81 })