diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-15 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-22 02:00:01 +0200 |
commit | a8a3d31dec5d24b67ae09cb10fd5e49c684ae314 (patch) | |
tree | b5140262ab6a07d509db91ad95009a61d5c87cf9 /gnu/packages/vpn.scm | |
parent | 12c9411899428311f15b96a426638ff9dc94c742 (diff) | |
download | guix-a8a3d31dec5d24b67ae09cb10fd5e49c684ae314.tar.gz |
gnu: openvpn: Update to 2.5.6.
* gnu/packages/vpn.scm (openvpn): Update to 2.5.6.
Diffstat (limited to 'gnu/packages/vpn.scm')
-rw-r--r-- | gnu/packages/vpn.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index f3da89675e..e33821c97f 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -748,15 +748,15 @@ this process. It is compatible with Fortinet VPNs.") (define-public openvpn (package (name "openvpn") - (version "2.5.5") + (version "2.5.6") (source (origin (method url-fetch) (uri (string-append "https://swupdate.openvpn.org/community/releases/openvpn-" - version ".tar.xz")) + version ".tar.gz")) (sha256 (base32 - "0fq0nvgpbyvdxc8vwka51whgm3kkvjb3c9xarpv3h211l2gxd6qi")))) + "0gdd88rcan9vfiwkzsqn6fxxdim7kb1bsxrcra59c5xksprpwfik")))) (build-system gnu-build-system) (arguments '(#:configure-flags '("--enable-iproute2=yes"))) |