2020-05-21 10:24:47 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, makeWrapper
|
2019-04-02 14:38:57 +01:00
|
|
|
, iproute, lzo, openssl, pam
|
|
|
|
, useSystemd ? stdenv.isLinux, systemd ? null, utillinux ? null
|
2016-09-16 04:22:25 +01:00
|
|
|
, pkcs11Support ? false, pkcs11helper ? null,
|
|
|
|
}:
|
|
|
|
|
2018-01-02 17:28:15 +00:00
|
|
|
assert useSystemd -> (systemd != null);
|
2016-09-16 04:22:25 +01:00
|
|
|
assert pkcs11Support -> (pkcs11helper != null);
|
2014-04-22 12:08:00 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-02-11 16:45:19 +00:00
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
let
|
2020-05-21 10:24:47 +01:00
|
|
|
# Check if the script needs to have other binaries wrapped when changing this.
|
2019-04-02 14:38:57 +01:00
|
|
|
update-resolved = fetchurl {
|
2020-05-21 10:24:47 +01:00
|
|
|
url = "https://raw.githubusercontent.com/jonathanio/update-systemd-resolved/v1.3.0/update-systemd-resolved";
|
|
|
|
sha256 = "021qzv1k0zxgv1rmyfpqj3zlzqr28xa7zff1n7vrbjk36ijylpsc";
|
2019-04-02 14:38:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "openvpn";
|
2020-04-23 13:15:21 +01:00
|
|
|
version = "2.4.9";
|
2009-04-06 14:07:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://swupdate.openvpn.net/community/releases/${pname}-${version}.tar.xz";
|
2020-04-23 13:15:21 +01:00
|
|
|
sha256 = "1qpbllwlha7cffsd5dlddb8rl22g9rar5zflkz1wrcllhvfkl7v4";
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
|
2020-05-21 10:24:47 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig ];
|
2019-04-02 14:38:57 +01:00
|
|
|
|
2017-06-21 12:35:10 +01:00
|
|
|
buildInputs = [ lzo openssl ]
|
2018-01-02 17:28:15 +00:00
|
|
|
++ optionals stdenv.isLinux [ pam iproute ]
|
|
|
|
++ optional useSystemd systemd
|
2016-09-16 04:22:25 +01:00
|
|
|
++ optional pkcs11Support pkcs11helper;
|
|
|
|
|
|
|
|
configureFlags = optionals stdenv.isLinux [
|
|
|
|
"--enable-iproute2"
|
|
|
|
"IPROUTE=${iproute}/sbin/ip" ]
|
2018-01-02 17:28:15 +00:00
|
|
|
++ optional useSystemd "--enable-systemd"
|
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
|
2020-05-21 10:24:47 +01:00
|
|
|
'' + optionalString useSystemd ''
|
|
|
|
install -Dm555 ${update-resolved} $out/libexec/update-systemd-resolved
|
|
|
|
wrapProgram $out/libexec/update-systemd-resolved \
|
|
|
|
--prefix PATH : ${makeBinPath [ stdenv.shell iproute systemd utillinux ]}
|
2012-04-02 23:05:02 +01:00
|
|
|
'';
|
|
|
|
|
2013-05-28 13:47:23 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-04-02 14:38:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-28 13:47:23 +01:00
|
|
|
description = "A robust and highly flexible tunneling application";
|
2020-04-23 13:15:21 +01:00
|
|
|
downloadPage = "https://openvpn.net/community-downloads/";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://openvpn.net/";
|
2019-04-02 14:38:57 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ viric ];
|
|
|
|
platforms = platforms.unix;
|
2017-01-02 14:38:46 +00:00
|
|
|
updateWalker = true;
|
2009-04-06 14:07:18 +01:00
|
|
|
};
|
|
|
|
}
|