2022-04-08 03:36:39 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-11-06 14:19:57 +00:00
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
2021-03-14 16:05:16 +00:00
|
|
|
, iproute2
|
2020-11-06 14:19:57 +00:00
|
|
|
, lzo
|
|
|
|
, openssl
|
|
|
|
, pam
|
2022-09-21 07:04:52 +00:00
|
|
|
, useSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
|
2021-03-15 01:13:27 +00:00
|
|
|
, systemd
|
2022-04-08 03:36:39 +00:00
|
|
|
, update-systemd-resolved
|
2020-11-06 14:19:57 +00:00
|
|
|
, pkcs11Support ? false
|
2021-03-15 01:13:27 +00:00
|
|
|
, pkcs11helper
|
2016-09-16 03:22:25 +00:00
|
|
|
}:
|
|
|
|
|
2019-04-02 13:38:57 +00:00
|
|
|
let
|
2022-04-08 03:36:39 +00:00
|
|
|
inherit (lib) versionOlder optional optionals optionalString;
|
2019-04-02 13:38:57 +00:00
|
|
|
|
2022-04-08 23:24:36 +00:00
|
|
|
generic = { version, sha256, extraBuildInputs ? [] }:
|
2020-11-06 14:19:57 +00:00
|
|
|
let
|
2022-01-08 17:56:01 +00:00
|
|
|
withIpRoute = stdenv.isLinux && (versionOlder version "2.5.4");
|
2020-11-06 14:19:57 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation
|
|
|
|
rec {
|
|
|
|
pname = "openvpn";
|
|
|
|
inherit version;
|
2009-04-06 13:07:18 +00:00
|
|
|
|
2020-11-06 14:19:57 +00:00
|
|
|
src = fetchurl {
|
2022-03-17 13:28:52 +00:00
|
|
|
url = "https://swupdate.openvpn.net/community/releases/${pname}-${version}.tar.gz";
|
2020-11-06 14:19:57 +00:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2022-04-08 03:36:39 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2009-04-06 13:07:18 +00:00
|
|
|
|
2022-04-08 23:24:36 +00:00
|
|
|
buildInputs = [ lzo ]
|
2020-11-06 14:19:57 +00:00
|
|
|
++ optional stdenv.isLinux pam
|
2021-03-14 16:05:16 +00:00
|
|
|
++ optional withIpRoute iproute2
|
2020-11-06 14:19:57 +00:00
|
|
|
++ optional useSystemd systemd
|
2022-04-08 23:24:36 +00:00
|
|
|
++ optional pkcs11Support pkcs11helper
|
|
|
|
++ extraBuildInputs;
|
2019-04-02 13:38:57 +00:00
|
|
|
|
2020-11-06 14:19:57 +00:00
|
|
|
configureFlags = optionals withIpRoute [
|
|
|
|
"--enable-iproute2"
|
2021-03-14 16:05:16 +00:00
|
|
|
"IPROUTE=${iproute2}/sbin/ip"
|
2020-11-06 14:19:57 +00:00
|
|
|
]
|
|
|
|
++ optional useSystemd "--enable-systemd"
|
|
|
|
++ optional pkcs11Support "--enable-pkcs11"
|
|
|
|
++ optional stdenv.isDarwin "--disable-plugin-auth-pam";
|
2016-09-16 03:22:25 +00:00
|
|
|
|
2022-04-08 03:36:39 +00:00
|
|
|
# We used to vendor the update-systemd-resolved script inside libexec,
|
|
|
|
# but a separate package was made, that uses libexec/openvpn. Copy it
|
|
|
|
# into libexec in case any consumers expect it to be there even though
|
|
|
|
# they should use the update-systemd-resolved package instead.
|
2020-11-06 14:19:57 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/share/doc/openvpn/examples
|
2022-04-08 03:36:39 +00:00
|
|
|
cp -r sample/sample-{config-files,keys,scripts}/ $out/share/doc/openvpn/examples
|
2020-11-06 14:19:57 +00:00
|
|
|
'' + optionalString useSystemd ''
|
2022-04-08 03:36:39 +00:00
|
|
|
install -Dm555 -t $out/libexec ${update-systemd-resolved}/libexec/openvpn/*
|
2020-11-06 14:19:57 +00:00
|
|
|
'';
|
2013-05-28 12:47:23 +00:00
|
|
|
|
2020-11-06 14:19:57 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-04-02 22:05:02 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-06 14:19:57 +00:00
|
|
|
description = "A robust and highly flexible tunneling application";
|
|
|
|
downloadPage = "https://openvpn.net/community-downloads/";
|
|
|
|
homepage = "https://openvpn.net/";
|
2022-04-08 03:36:39 +00:00
|
|
|
license = licenses.gpl2Only;
|
2020-11-06 14:19:57 +00:00
|
|
|
maintainers = with maintainers; [ viric peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
openvpn = generic {
|
2022-11-01 08:14:23 +00:00
|
|
|
version = "2.5.8";
|
|
|
|
sha256 = "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6";
|
2022-04-08 23:24:36 +00:00
|
|
|
extraBuildInputs = [ openssl ];
|
2009-04-06 13:07:18 +00:00
|
|
|
};
|
|
|
|
}
|