0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 22:20:30 +03:00

zabbix.proxy: add curl (#377287)

This commit is contained in:
Rick van Schijndel 2025-03-09 11:22:46 +01:00 committed by GitHub
commit b064b7893b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,7 @@
stdenv,
fetchurl,
pkg-config,
curl,
libevent,
libiconv,
openssl,
@ -62,6 +63,7 @@ import ./versions.nix (
nativeBuildInputs = [ pkg-config ];
buildInputs =
[
curl
libevent
libiconv
openssl
@ -80,6 +82,7 @@ import ./versions.nix (
"--enable-ipv6"
"--enable-proxy"
"--with-iconv"
"--with-libcurl"
"--with-libevent"
"--with-libpcre"
"--with-openssl=${openssl.dev}"