diff options
author | Sergey Trofimov <sarg@sarg.org.ru> | 2023-12-02 18:24:55 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-12-11 23:24:19 +0100 |
commit | d74faef4f7f451edcda13f3b5297217cc041e1c1 (patch) | |
tree | f2de6fd5165570497221445f04d42722a7fb060a /gnu | |
parent | 4348947c7455056fe1c207e559fe497884646d2d (diff) |
gnu: openvpn: Update to 2.6.7.
* gnu/packages/vpn.scm (openvpn): Update to 2.6.7.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/vpn.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 489a35da42..02c1ee1043 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -838,7 +838,7 @@ this process. It is compatible with Fortinet VPNs.") (define-public openvpn (package (name "openvpn") - (version "2.5.8") + (version "2.6.7") (source (origin (method url-fetch) (uri (string-append @@ -846,14 +846,13 @@ this process. It is compatible with Fortinet VPNs.") version ".tar.gz")) (sha256 (base32 - "1cixqm4gn2d1v8qkbww75j30fzvxz13gc7whcmz54i0x4fvibwx6")))) + "04wr0g97nmv81javym8r99mglmb86v1i49xmnmzf938x1cs7g67f")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--enable-iproute2=yes"))) - (native-inputs - (list iproute)) - (inputs - (list lz4 lzo openssl linux-pam)) + (native-inputs (list iproute pkg-config)) + (inputs (append (list lz4 lzo openssl linux-pam) + (if (target-linux?) (list libcap-ng) '()))) (home-page "https://openvpn.net/") (synopsis "Virtual private network daemon") (description |