diff options
author | Vagrant Cascadian <vagrant@reproducible-builds.org> | 2024-02-02 15:32:04 -0800 |
---|---|---|
committer | Vagrant Cascadian <vagrant@debian.org> | 2024-02-09 13:39:00 -0800 |
commit | 8ffc9233681863408034c8e371c5cfd3591545d2 (patch) | |
tree | 0f8ff467bae55793031f355ef9277d85ec15a4c7 /gnu/packages/web.scm | |
parent | 30196aec07dab8cc0f4a614b160f1857377a6a84 (diff) |
gnu: wabt: Update to 1.0.34.
* gnu/packages/web.scm (wabt): Update to 1.0.34.
[arguments]: Disable tests on !x86_64.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 43a8e7ad15..a1039b9e0c 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1638,7 +1638,7 @@ for efficient socket-like bidirectional reliable communication channels.") (define-public wabt (package (name "wabt") - (version "1.0.32") + (version "1.0.34") (source (origin (method git-fetch) @@ -1648,13 +1648,15 @@ for efficient socket-like bidirectional reliable communication channels.") (recursive? #true))) (file-name (git-file-name name version)) (sha256 - (base32 "0m124r8v9c0hxiaa4iy7ch4ng8msnirbc2vb702gbdjhvgzyrcwh")) + (base32 "1vxvc34b7a7lkrmzdb5cjv0b54vhiyr33sy0i2ps5jrmg5rqqmia")) (modules '((guix build utils))) (snippet '(delete-file-recursively "third_party/gtest/")))) (build-system cmake-build-system) (arguments (list + ;; Tests on non-x86_64 architectures are not well supported upstream. + #:tests? (target-x86-64?) #:test-target "run-tests" #:configure-flags '(list "-DUSE_SYSTEM_GTEST=ON") #:phases |