2014-12-02 06:30:25 -08:00
|
|
|
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig }:
|
2014-04-22 04:08:00 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-02-11 08:45:19 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-30 14:13:59 -07:00
|
|
|
name = "openvpn-2.3.11";
|
2009-04-06 06:07:18 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-12-22 06:03:55 -08:00
|
|
|
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz";
|
2016-05-30 14:13:59 -07:00
|
|
|
sha256 = "0qv1flcz4q4mb7zpkxsnlmpvrv3s9gw7xvprjk7n2pnk9x1s85wi";
|
2009-04-06 06:07:18 -07:00
|
|
|
};
|
|
|
|
|
2014-04-22 04:08:00 -07:00
|
|
|
patches = optional stdenv.isLinux ./systemd-notify.patch;
|
|
|
|
|
2015-11-16 20:34:56 -08:00
|
|
|
buildInputs = [ lzo openssl pkgconfig ]
|
|
|
|
++ optionals stdenv.isLinux [ pam systemd iproute ];
|
2009-04-28 08:37:52 -07:00
|
|
|
|
2016-05-26 09:00:04 -07:00
|
|
|
configureFlags = optionalString stdenv.isLinux ''
|
2013-05-28 05:47:23 -07:00
|
|
|
--enable-systemd
|
2015-11-16 20:34:56 -08:00
|
|
|
--enable-iproute2
|
2013-05-28 05:47:23 -07:00
|
|
|
IPROUTE=${iproute}/sbin/ip
|
|
|
|
'';
|
|
|
|
|
2012-04-02 15:05:02 -07:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc/openvpn/examples
|
2013-05-28 05:47:23 -07: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 15:05:02 -07:00
|
|
|
'';
|
|
|
|
|
2013-05-28 05:47:23 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A robust and highly flexible tunneling application";
|
|
|
|
homepage = http://openvpn.net/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-05-28 05:47:23 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-06 06:07:18 -07:00
|
|
|
};
|
|
|
|
}
|