openvpn: 2.5.8 -> 2.6.8

This commit is contained in:
Yongun Seong 2023-11-18 02:10:24 +09:00
parent dd8e82f3b4
commit 3deee92686
No known key found for this signature in database

View file

@ -3,6 +3,9 @@
, fetchurl , fetchurl
, pkg-config , pkg-config
, iproute2 , iproute2
, libcap_ng
, libnl
, lz4
, lzo , lzo
, openssl , openssl
, pam , pam
@ -32,8 +35,8 @@ let
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ lzo ] buildInputs = [ lz4 lzo ]
++ optional stdenv.isLinux pam ++ optionals stdenv.isLinux [ libcap_ng libnl pam ]
++ optional withIpRoute iproute2 ++ optional withIpRoute iproute2
++ optional useSystemd systemd ++ optional useSystemd systemd
++ optional pkcs11Support pkcs11helper ++ optional pkcs11Support pkcs11helper
@ -73,8 +76,8 @@ let
in in
{ {
openvpn = generic { openvpn = generic {
version = "2.5.8"; version = "2.6.8";
sha256 = "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6"; sha256 = "sha256-Xt4VZcim2IAQD38jUxen7p7qg9UFLbVUfxOp52r3gF0=";
extraBuildInputs = [ openssl ]; extraBuildInputs = [ openssl ];
}; };
} }