46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig
|
|
, pkcs11Support ? false, pkcs11helper ? null,
|
|
}:
|
|
|
|
assert pkcs11Support -> (pkcs11helper != null);
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "openvpn-2.3.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz";
|
|
sha256 = "0qv1flcz4q4mb7zpkxsnlmpvrv3s9gw7xvprjk7n2pnk9x1s85wi";
|
|
};
|
|
|
|
patches = optional stdenv.isLinux ./systemd-notify.patch;
|
|
|
|
buildInputs = [ lzo openssl pkgconfig ]
|
|
++ optionals stdenv.isLinux [ pam systemd iproute ]
|
|
++ optional pkcs11Support pkcs11helper;
|
|
|
|
configureFlags = optionals stdenv.isLinux [
|
|
"--enable-systemd"
|
|
"--enable-iproute2"
|
|
"IPROUTE=${iproute}/sbin/ip" ]
|
|
++ optional pkcs11Support "--enable-pkcs11";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/doc/openvpn/examples
|
|
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
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A robust and highly flexible tunneling application";
|
|
homepage = http://openvpn.net/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|