nixpkgs/pkgs/tools/networking/openconnect.nix

27 lines
678 B
Nix
Raw Normal View History

2013-05-31 20:19:56 +02:00
{ stdenv, fetchurl, pkgconfig, vpnc, openssl, libxml2 } :
stdenv.mkDerivation rec {
name = "openconnect-5.01";
2013-05-31 20:19:56 +02:00
src = fetchurl {
urls = [
"ftp://ftp.infradead.org/pub/openconnect/${name}.tar.gz"
];
sha256 = "1l90ks87iwmy7jprav11lhjr4n18ycy0d9fndspg50p9qd3jlvwi";
2013-05-31 20:19:56 +02:00
};
preConfigure = ''
export PKG_CONFIG=${pkgconfig}/bin/pkg-config
export LIBXML2_CFLAGS="-I ${libxml2}/include/libxml2"
export LIBXML2_LIBS="-L${libxml2}/lib -lxml2"
'';
configureFlags = [
"--with-vpnc-script=${vpnc}/etc/vpnc/vpnc-script"
"--disable-nls"
"--without-openssl-version-check"
2013-05-31 20:19:56 +02:00
];
propagatedBuildInputs = [ vpnc openssl libxml2 ];
}