gnu: wabt: Update to 1.0.34.
* gnu/packages/web.scm (wabt): Update to 1.0.34. [arguments]: Disable tests on !x86_64.
This commit is contained in:
parent
30196aec07
commit
8ffc923368
1 changed files with 4 additions and 2 deletions
|
@ -1638,7 +1638,7 @@ for efficient socket-like bidirectional reliable communication channels.")
|
||||||
(define-public wabt
|
(define-public wabt
|
||||||
(package
|
(package
|
||||||
(name "wabt")
|
(name "wabt")
|
||||||
(version "1.0.32")
|
(version "1.0.34")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1648,13 +1648,15 @@ for efficient socket-like bidirectional reliable communication channels.")
|
||||||
(recursive? #true)))
|
(recursive? #true)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0m124r8v9c0hxiaa4iy7ch4ng8msnirbc2vb702gbdjhvgzyrcwh"))
|
(base32 "1vxvc34b7a7lkrmzdb5cjv0b54vhiyr33sy0i2ps5jrmg5rqqmia"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(delete-file-recursively "third_party/gtest/"))))
|
'(delete-file-recursively "third_party/gtest/"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
;; Tests on non-x86_64 architectures are not well supported upstream.
|
||||||
|
#:tests? (target-x86-64?)
|
||||||
#:test-target "run-tests"
|
#:test-target "run-tests"
|
||||||
#:configure-flags '(list "-DUSE_SYSTEM_GTEST=ON")
|
#:configure-flags '(list "-DUSE_SYSTEM_GTEST=ON")
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Reference in a new issue