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 {
|
2016-05-30 22:13:59 +01:00
|
|
|
name = "openvpn-2.3.11";
|
2009-04-06 14:07:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-12-22 14:03:55 +00:00
|
|
|
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz";
|
2016-05-30 22:13:59 +01:00
|
|
|
sha256 = "0qv1flcz4q4mb7zpkxsnlmpvrv3s9gw7xvprjk7n2pnk9x1s85wi";
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
|
2014-04-22 12:08:00 +01:00
|
|
|
patches = optional stdenv.isLinux ./systemd-notify.patch;
|
|
|
|
|
2015-11-17 04:34:56 +00:00
|
|
|
buildInputs = [ lzo openssl pkgconfig ]
|
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" ]
|
|
|
|
++ optional pkcs11Support "--enable-pkcs11";
|
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/;
|
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 ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
}
|