2014-04-22 11:08:00 +00:00
|
|
|
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-02-11 16:45:19 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-04-22 10:35:06 +00:00
|
|
|
name = "openvpn-2.3.3";
|
2009-04-06 13:07:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-12-22 14:03:55 +00:00
|
|
|
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz";
|
2014-04-22 10:35:06 +00:00
|
|
|
sha256 = "04xiwim56sb1vis93k9hhm1s29jdrlq7i2fa07jncnhh653d29gh";
|
2009-04-06 13:07:18 +00:00
|
|
|
};
|
|
|
|
|
2014-04-22 11:08:00 +00:00
|
|
|
patches = optional stdenv.isLinux ./systemd-notify.patch;
|
|
|
|
|
|
|
|
buildInputs = [ iproute lzo openssl pam ] ++ optional stdenv.isLinux systemd;
|
2009-04-28 15:37:52 +00:00
|
|
|
|
|
|
|
configureFlags = ''
|
2011-11-18 02:10:14 +00:00
|
|
|
--enable-password-save
|
2012-01-18 20:38:27 +00:00
|
|
|
--enable-iproute2
|
2013-05-28 12:47:23 +00:00
|
|
|
--enable-systemd
|
|
|
|
IPROUTE=${iproute}/sbin/ip
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./src/openvpn/console.c \
|
|
|
|
--replace /bin/systemd-ask-password /run/current-system/sw/bin/systemd-ask-password
|
2009-04-28 15:37:52 +00:00
|
|
|
'';
|
2009-04-06 13:07:18 +00:00
|
|
|
|
2012-04-02 22:05:02 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc/openvpn/examples
|
2013-05-28 12:47:23 +00: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 22:05:02 +00:00
|
|
|
'';
|
|
|
|
|
2013-05-28 12:47:23 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-04-22 11:08:00 +00:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isLinux "-lsystemd-daemon"; # hacky
|
|
|
|
|
2013-05-28 12:47:23 +00:00
|
|
|
meta = {
|
|
|
|
description = "A robust and highly flexible tunneling application";
|
|
|
|
homepage = http://openvpn.net/;
|
|
|
|
license = "GPLv2";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-04-06 13:07:18 +00:00
|
|
|
};
|
|
|
|
}
|