mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
haproxy: fix build with libxcrypt
This commit is contained in:
parent
ccba311ff5
commit
57f4391a43
@ -2,7 +2,7 @@
|
||||
, usePcre ? true
|
||||
, withPrometheusExporter ? true
|
||||
, stdenv, lib, fetchurl, nixosTests
|
||||
, openssl, zlib
|
||||
, openssl, zlib, libxcrypt
|
||||
, lua5_3 ? null, pcre ? null, systemd ? null
|
||||
}:
|
||||
|
||||
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-zp4Z6/zdQ+Ua+KYJDx341RLZct33QvpkimQ7uxkFZgU=";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl zlib ]
|
||||
buildInputs = [ openssl zlib libxcrypt ]
|
||||
++ lib.optional useLua lua5_3
|
||||
++ lib.optional usePcre pcre
|
||||
++ lib.optional stdenv.isLinux systemd;
|
||||
|
Loading…
Reference in New Issue
Block a user