gnu: openvpn: Update to 2.4.4.

* gnu/packages/vpn.scm (openvpn): Update to 2.4.4.
[inputs]: Add lz4.
This commit is contained in:
Efraim Flashner 2017-09-29 15:19:46 +03:00
parent 464a2889c9
commit dee9a2628c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -153,7 +153,7 @@ (define-public openconnect
(define-public openvpn (define-public openvpn
(package (package
(name "openvpn") (name "openvpn")
(version "2.4.3") (version "2.4.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -161,14 +161,15 @@ (define-public openvpn
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1yrnvvnap2ghqas10l8jfg3njx57b8swh3n9wyp556qqgz4mzq8m")))) "102an395nv8l7qfx3syydzhmd9xfbycd6gvwy0h2kjz8w67ipkcn"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:configure-flags '("--enable-iproute2=yes"))) '(#:configure-flags '("--enable-iproute2=yes")))
(native-inputs (native-inputs
`(("iproute2" ,iproute))) `(("iproute2" ,iproute)))
(inputs (inputs
`(("lzo" ,lzo) `(("lz4" ,lz4)
("lzo" ,lzo)
("openssl" ,openssl) ("openssl" ,openssl)
("linux-pam" ,linux-pam))) ("linux-pam" ,linux-pam)))
(home-page "https://openvpn.net/") (home-page "https://openvpn.net/")