2014-12-02 14:30:25 +00:00
|
|
|
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig }:
|
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 ]
|
|
|
|
++ optionals stdenv.isLinux [ pam systemd iproute ];
|
2009-04-28 16:37:52 +01:00
|
|
|
|
2016-05-26 17:00:04 +01:00
|
|
|
configureFlags = optionalString stdenv.isLinux ''
|
2013-05-28 13:47:23 +01:00
|
|
|
--enable-systemd
|
2015-11-17 04:34:56 +00:00
|
|
|
--enable-iproute2
|
2013-05-28 13:47:23 +01:00
|
|
|
IPROUTE=${iproute}/sbin/ip
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|