mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-24 17:38:14 +01:00
nongnu: zerotier: Update to 1.12.2.
* nongnu/packages/vpn.scm (zerotier): Update to 1.12.2. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
63fed4f383
commit
185176c8fa
1 changed files with 6 additions and 5 deletions
|
@ -12,7 +12,7 @@
|
|||
(define-public zerotier
|
||||
(package
|
||||
(name "zerotier")
|
||||
(version "1.8.4")
|
||||
(version "1.12.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -21,16 +21,17 @@
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"101b1k9f3cpbgj0l87ya1cbqs9dv0qiayjap4m29fxyjra8hbkb8"))))
|
||||
"0p5rpvh137gf5y9ylip7kxfl4argv34sr4wiiygvfk670rifnk57"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:make-flags (list "ZT_SSO_SUPPORTED=0") ; We don't need SSO/OIDC
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; There is no ./configure
|
||||
(delete 'configure)
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "make" "selftest")
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "selftest" make-flags)
|
||||
(invoke "./zerotier-selftest")))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
Loading…
Reference in a new issue