nixpkgs/pkgs/tools/networking/openvpn/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

2016-09-16 03:22:25 +00:00
{ stdenv, fetchurl, iproute, lzo, openssl, pam, systemd, pkgconfig
, pkcs11Support ? false, pkcs11helper ? null,
}:
assert pkcs11Support -> (pkcs11helper != null);
with stdenv.lib;
stdenv.mkDerivation rec {
2017-01-02 14:38:46 +00:00
name = "openvpn-${version}";
version = "2.4.2";
src = fetchurl {
2017-01-02 14:38:46 +00:00
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.xz";
sha256 = "1ydzy5i7yaifz0v1ivrckksvm0nkkx5sia3g5y5b1xkx9cw4yp6z";
};
buildInputs = [ lzo openssl pkgconfig ]
2016-09-16 03:22:25 +00:00
++ 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"
++ optional stdenv.isDarwin "--disable-plugin-auth-pam";
2013-05-28 12:47:23 +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
'';
2013-05-28 12:47:23 +00:00
enableParallelBuilding = true;
meta = {
description = "A robust and highly flexible tunneling application";
homepage = http://openvpn.net/;
2017-01-02 14:38:46 +00:00
downloadPage = "https://openvpn.net/index.php/open-source/downloads.html";
license = stdenv.lib.licenses.gpl2;
2013-05-28 12:47:23 +00:00
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.unix;
2017-01-02 14:38:46 +00:00
updateWalker = true;
};
}