efraim pushed a commit to branch mesa-updates
in repository guix.

commit e211abfe9f15dfbefdc898756ba60e7bf51d3d2f
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Nov 15 12:43:53 2023 +0200

    gnu: ghc-base64: Skip tests on i686-linux.
    
    * gnu/packages/haskell-xyz.scm (ghc-base64)[arguments]: Skip tests when
    building for i686-linux.
    
    Change-Id: I2de264eb0a0b1ae3d6ca1e29c9b1dce589104aa1
---
 gnu/packages/haskell-xyz.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 3260ecbe71..cc235a77d5 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15968,7 +15968,9 @@ 
benchmarks](https://hackage.haskell.org/package/random-bytestring-0.1.3.2/src/be
                          ghc-tasty-quickcheck))
     (arguments
      `(#:cabal-revision ("4"
-                         
"1lc32d5nxk0ry1pfn3ss55hi4cv6qj5nkkdn3j4y3lrdwyv7kbw2")))
+                         
"1lc32d5nxk0ry1pfn3ss55hi4cv6qj5nkkdn3j4y3lrdwyv7kbw2")
+       #:tests? ,(not (or (%current-target-system)
+                          (target-x86-32?)))))
     (home-page "https://github.com/emilypi/base64";)
     (synopsis "Modern RFC 4648-compliant Base64 library")
     (description

Reply via email to