guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.
commit 8d83cf8b39a20bc2004fa1e3797040fec52d42c8
Author: Saku Laesvuori <[email protected]>
AuthorDate: Sat Oct 18 16:50:29 2025 +0300
gnu: ghc-say: Fix build
* gnu/packages/haskell-xyz.scm (ghc-say)[arguments]: Disable tests.
Change-Id: Ia183669127c67636724863e5766ee5f4496151e0
Signed-off-by: Andreas Enge <[email protected]>
---
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 c77d1d705b..b9c9054e3f 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -11063,7 +11063,9 @@ built-in profiling support.")
(base32 "1r5kffjfwpas45g74sip8glrj1m9nygrnxjm7xgw898rq9pnafgn"))))
(build-system haskell-build-system)
(properties '((upstream-name . "say")))
- (native-inputs (list ghc-hspec ghc-unliftio))
+ (native-inputs (list ghc-hspec hspec-discover ghc-unliftio))
+ ; XXX: Tests fail on GHC 9.10.2. See https://github.com/fpco/say/issues/5
+ (arguments (list #:tests? #f))
(home-page "https://github.com/fpco/say#readme")
(synopsis "Send textual messages to a Handle in a thread-friendly way")
(description