fix: Add OpenSSL to C NIF build inputs

net-snmp requires OpenSSL headers. Add openssl to buildInputs
to fix 'openssl/ossl_typ.h' file not found error.
This commit is contained in:
Graham McIntire 2026-02-07 12:46:13 -06:00
parent f42e2b00c9
commit 3ce8c480f2
No known key found for this signature in database

View file

@ -4,6 +4,7 @@
pkg-config, pkg-config,
net-snmp, net-snmp,
erlang, erlang,
openssl,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
@ -24,6 +25,7 @@ stdenv.mkDerivation {
buildInputs = [ buildInputs = [
net-snmp net-snmp
erlang erlang
openssl
]; ];
# Build using the existing Makefile # Build using the existing Makefile