gnu: zstd-1.4.9: Fix i686-linux and arm/aarch64-linux builds.

It's only a graft added for security so disabling tests on there seems
acceptable.

See: <https://lists.gnu.org/archive/html/guix-devel/2021-03/msg00130.html>.

* gnu/packages/compression.scm (zstd-1.4.9)[arguments]: Substitute keyword
arguments of 'zstd' to disable tests.
This commit is contained in:
Léo Le Bouter 2021-03-11 02:58:28 +01:00
parent 1acfda2f94
commit 2bcfb944bd
No known key found for this signature in database
GPG key ID: 45A8B1E86BCD10A6

View file

@ -1513,7 +1513,10 @@ (define-public zstd-1.4.9
(uri (string-append "https://github.com/facebook/zstd/releases/download/"
"v" version "/zstd-" version ".tar.gz"))
(sha256
(base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))))
(base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))
(arguments
(substitute-keyword-arguments (package-arguments zstd)
((#:tests? _ #t) #f)))))
(define-public pzstd
(package