mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: wireguard: Update to 0.0.20190227.
* gnu/packages/vpn.scm (wireguard): Update to 0.0.20190227. [arguments]: Disable tests.
This commit is contained in:
parent
9cb4bda222
commit
9fd6ad3e35
1 changed files with 5 additions and 3 deletions
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
|
;;; Copyright © 2018 Meiyo Peng <meiyo.peng@gmail.com>
|
||||||
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -454,19 +455,20 @@ (define-public badvpn
|
||||||
(define-public wireguard
|
(define-public wireguard
|
||||||
(package
|
(package
|
||||||
(name "wireguard")
|
(name "wireguard")
|
||||||
(version "0.0.20190123")
|
(version "0.0.20190227")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://git.zx2c4.com/WireGuard/snapshot/"
|
(uri (string-append "https://git.zx2c4.com/WireGuard/snapshot/"
|
||||||
"WireGuard-" version ".tar.xz"))
|
"WireGuard-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16yzzy4i0z2zslmyr3kppkvkrxryzwdil6v270w9w5mg65v3rlgd"))))
|
"0ybzycpjjidyiz88kkh67abvp3y30f34252dwpgf3ncj4vyjdnzw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out" ; The WireGuard userspace tools
|
(outputs '("out" ; The WireGuard userspace tools
|
||||||
"kernel-patch")) ; A patch to build Linux with WireGuard support
|
"kernel-patch")) ; A patch to build Linux with WireGuard support
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:tests? #f ; No tests available.
|
||||||
|
#:make-flags
|
||||||
(list "CC=gcc"
|
(list "CC=gcc"
|
||||||
"WITH_BASHCOMPLETION=yes"
|
"WITH_BASHCOMPLETION=yes"
|
||||||
;; Build and install the helper script wg-quick(8).
|
;; Build and install the helper script wg-quick(8).
|
||||||
|
|
Loading…
Reference in a new issue