mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
464a2889c9
commit
dee9a2628c
1 changed files with 4 additions and 3 deletions
|
@ -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/")
|
||||||
|
|
Loading…
Reference in a new issue