net_snmp: openssl must be propagated as it required when linking against libnetsnmp

This commit is contained in:
William A. Kennington III 2014-10-08 01:37:46 -07:00
parent 2ae3cc7ef4
commit 3efcae2652

View file

@ -26,7 +26,8 @@ stdenv.mkDerivation rec {
"--with-persistent-directory=/var/lib/net-snmp"
];
buildInputs = [ autoreconfHook file openssl perl unzip ];
buildInputs = [ autoreconfHook file perl unzip ];
propagatedBuildInputs = [ openssl ];
enableParallelBuilding = true;