9b775bcdcf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openconnect/versions
35 lines
978 B
Nix
35 lines
978 B
Nix
{ stdenv, fetchurl, pkgconfig, vpnc, openssl ? null, gnutls ? null, gmp, libxml2, stoken, zlib } :
|
|
|
|
assert (openssl != null) == (gnutls == null);
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openconnect";
|
|
version = "8.03";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.infradead.org/pub/openconnect/${pname}-${version}.tar.gz"
|
|
];
|
|
sha256 = "1wlypi68kqqg2mdck8wvf6aanhrmf9i7z6lngyxvcrp23jdzz34h";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
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;
|
|
};
|
|
}
|