openconnect: depend on zlib

This commit is contained in:
Thomas Tuegel 2015-04-30 11:10:19 -05:00
parent 0cce6c3aea
commit 66b66e8302

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, vpnc, openssl, libxml2 } : { stdenv, fetchurl, pkgconfig, vpnc, openssl, libxml2, zlib } :
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "openconnect-5.02"; name = "openconnect-5.02";
@ -22,5 +22,5 @@ stdenv.mkDerivation rec {
"--without-openssl-version-check" "--without-openssl-version-check"
]; ];
propagatedBuildInputs = [ vpnc openssl libxml2 ]; propagatedBuildInputs = [ vpnc openssl libxml2 zlib ];
} }