mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
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 @@ (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
|
||||
|
|
Loading…
Reference in a new issue