mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, vpnc, openssl ? null, gnutls ? null, gmp, libxml2, stoken, zlib } :
|
|
|
|
assert (openssl != null) == (gnutls == null);
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openconnect-7.08";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.infradead.org/pub/openconnect/${name}.tar.gz"
|
|
];
|
|
sha256 = "00wacb79l2c45f94gxs63b9z25wlciarasvjrb8jb8566wgyqi0w";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
preConfigure = ''
|
|
export PKG_CONFIG=${pkgconfig}/bin/pkg-config
|
|
export LIBXML2_CFLAGS="-I ${libxml2.dev}/include/libxml2"
|
|
export LIBXML2_LIBS="-L${libxml2.out}/lib -lxml2"
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-vpnc-script=${vpnc}/etc/vpnc/vpnc-script"
|
|
"--disable-nls"
|
|
"--without-openssl-version-check"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ vpnc openssl gnutls gmp libxml2 stoken zlib ];
|
|
|
|
meta = {
|
|
description = "VPN Client for Cisco's AnyConnect SSL VPN";
|
|
homepage = http://www.infradead.org/openconnect/;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = with stdenv.lib.maintainers; [ pradeepchhetri ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|