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:
parent
1acfda2f94
commit
2bcfb944bd
1 changed files with 4 additions and 1 deletions
|
@ -1513,7 +1513,10 @@ speed.")
|
||||||
(uri (string-append "https://github.com/facebook/zstd/releases/download/"
|
(uri (string-append "https://github.com/facebook/zstd/releases/download/"
|
||||||
"v" version "/zstd-" version ".tar.gz"))
|
"v" version "/zstd-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))))
|
(base32 "14yj7309gsvg39rki4xqnd6w5idmqi0655v1fc0mk1m2kvhp9b19"))))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments zstd)
|
||||||
|
((#:tests? _ #t) #f)))))
|
||||||
|
|
||||||
(define-public pzstd
|
(define-public pzstd
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue