2016-09-16 04:22:25 +01:00
|
|
|
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig
|
|
|
|
, pkcs11Support ? false, pkcs11helper ? null,
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert pkcs11Support -> (pkcs11helper != null);
|
2014-04-22 12:08:00 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-02-11 16:45:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-01-02 14:38:46 +00:00
|
|
|
name = "openvpn-${version}";
|
2017-06-21 12:35:10 +01:00
|
|
|
version = "2.4.3";
|
2009-04-06 14:07:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-02 14:38:46 +00:00
|
|
|
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.xz";
|
2017-06-21 12:35:10 +01:00
|
|
|
sha256 = "0w85915nvdws1n1zsn8zcy9wg23jsx782nvrx1a3x4mqlmkn3a3s";
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
|
2017-06-21 12:35:10 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ lzo openssl ]
|
2016-09-16 04:22:25 +01:00
|
|
|
++ optionals stdenv.isLinux [ pam systemd iproute ]
|
|
|
|
++ optional pkcs11Support pkcs11helper;
|
|
|
|
|
|
|
|
configureFlags = optionals stdenv.isLinux [
|
|
|
|
"--enable-systemd"
|
|
|
|
"--enable-iproute2"
|
|
|
|
"IPROUTE=${iproute}/sbin/ip" ]
|
2016-10-06 19:20:59 +01:00
|
|
|
++ optional pkcs11Support "--enable-pkcs11"
|
|
|
|
++ optional stdenv.isDarwin "--disable-plugin-auth-pam";
|
2013-05-28 13:47:23 +01:00
|
|
|
|
2012-04-02 23:05:02 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc/openvpn/examples
|
2013-05-28 13:47:23 +01:00
|
|
|
cp -r sample/sample-config-files/ $out/share/doc/openvpn/examples
|
|
|
|
cp -r sample/sample-keys/ $out/share/doc/openvpn/examples
|
|
|
|
cp -r sample/sample-scripts/ $out/share/doc/openvpn/examples
|
2012-04-02 23:05:02 +01:00
|
|
|
'';
|
|
|
|
|
2013-05-28 13:47:23 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A robust and highly flexible tunneling application";
|
|
|
|
homepage = http://openvpn.net/;
|
2017-01-02 14:38:46 +00:00
|
|
|
downloadPage = "https://openvpn.net/index.php/open-source/downloads.html";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-05-28 13:47:23 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
2016-10-06 19:20:59 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2017-01-02 14:38:46 +00:00
|
|
|
updateWalker = true;
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
}
|