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

52 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, iproute, lzo, openssl, pam, pkgconfig
, useSystemd ? stdenv.isLinux, systemd ? null
2016-09-16 05:22:25 +02:00
, pkcs11Support ? false, pkcs11helper ? null,
}:
assert useSystemd -> (systemd != null);
2016-09-16 05:22:25 +02:00
assert pkcs11Support -> (pkcs11helper != null);
with stdenv.lib;
stdenv.mkDerivation rec {
2017-01-02 15:38:46 +01:00
name = "openvpn-${version}";
version = "2.4.7";
src = fetchurl {
2018-05-01 05:03:23 +02:00
url = "https://swupdate.openvpn.net/community/releases/${name}.tar.xz";
sha256 = "0j7na936isk9j8nsdrrbw7wmy09inmjqvsb8mw8az7k61xbm6bx4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ lzo openssl ]
++ optionals stdenv.isLinux [ pam iproute ]
++ optional useSystemd systemd
2016-09-16 05:22:25 +02:00
++ optional pkcs11Support pkcs11helper;
configureFlags = optionals stdenv.isLinux [
"--enable-iproute2"
"IPROUTE=${iproute}/sbin/ip" ]
++ optional useSystemd "--enable-systemd"
++ optional pkcs11Support "--enable-pkcs11"
++ optional stdenv.isDarwin "--disable-plugin-auth-pam";
2013-05-28 14:47:23 +02:00
postInstall = ''
mkdir -p $out/share/doc/openvpn/examples
2013-05-28 14:47:23 +02: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 14:47:23 +02:00
enableParallelBuilding = true;
meta = {
description = "A robust and highly flexible tunneling application";
2018-05-01 05:03:23 +02:00
homepage = https://openvpn.net/;
2017-01-02 15:38:46 +01:00
downloadPage = "https://openvpn.net/index.php/open-source/downloads.html";
license = stdenv.lib.licenses.gpl2;
2013-05-28 14:47:23 +02:00
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.unix;
2017-01-02 15:38:46 +01:00
updateWalker = true;
};
}