guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.

commit 49633a6fb0789fbcb354d72ae6221aed5f553123
Author: Saku Laesvuori <[email protected]>
AuthorDate: Sat Oct 18 17:14:45 2025 +0300

    gnu: ghc-fgl-arbitrary: Fix build
    
    * gnu/packages/haskell-xyz.scm (ghc-fgl-arbitrary)[arguments]<phases>:
    Relax dependency constraints on QuickCheck.
    
    Change-Id: I3f09e56295b35362cfecd31c3f93df84bda7a913
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/haskell-xyz.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 2bace07ab1..d6b5f79de1 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -4113,7 +4113,8 @@ encourages inductive, recursive definitions of graph 
algorithms.")
          (add-before 'configure 'update-constraints
            (lambda _
              (substitute* "fgl-arbitrary.cabal"
-               (("hspec >= 2\\.1 && < 2\\.8") "hspec")))))))
+               (("hspec >= 2\\.1 && < 2\\.8") "hspec")
+               (("QuickCheck >= 2.3 && < 2.15") "QuickCheck")))))))
     (home-page "https://hackage.haskell.org/package/fgl-arbitrary";)
     (synopsis "QuickCheck support for fgl")
     (description

Reply via email to