Merge pull request #251763 from LeSuisse/haproxy-2.8.2

haproxy: 2.8.1 -> 2.8.2
This commit is contained in:
Robert Scott 2023-08-28 00:50:03 +01:00 committed by GitHub
commit f0c82885ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,11 +18,11 @@ assert usePcre -> pcre != null;
stdenv.mkDerivation (finalAttrs: {
pname = "haproxy";
version = "2.8.1";
version = "2.8.2";
src = fetchurl {
url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz";
hash = "sha256-SFVS/NnV1fQarQRvEx/Ap+hJvvJaNJoEB1CvDG/FaAc=";
hash = "sha256-aY1pBtFwlGqGl2mWTleBa6PaOt9h/3XomXKxN/RljbA=";
};
buildInputs = [ openssl zlib libxcrypt ]
@ -76,5 +76,6 @@ stdenv.mkDerivation (finalAttrs: {
'';
maintainers = with lib.maintainers; [ ];
platforms = with lib.platforms; linux ++ darwin;
mainProgram = "haproxy";
};
})