guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.
commit 7be9b0d7cba9d607b00a167973e2f55af976393f
Author: Saku Laesvuori <[email protected]>
AuthorDate: Wed Jan 7 17:47:31 2026 +0200
gnu: ghc-selective: Fix build
* gnu/packages/haskell-xyz.scm (ghc-selective)[origin]: Add a snippet to
relax dependency versions.
Change-Id: Ia922e9c160a72181d91ab380be88c6aab57f5a9d
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/haskell-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 3c7f4b3af5..8c8dac2afc 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15292,7 +15292,11 @@ library targets typst 0.13 and currently offers only
partial support.")
(method url-fetch)
(uri (hackage-uri "selective" version))
(sha256
- (base32 "1qxfnqidlqw5hbsqs80i77nrkanz73jzyd4w157gamkr3kklpyyv"))))
+ (base32 "1qxfnqidlqw5hbsqs80i77nrkanz73jzyd4w157gamkr3kklpyyv"))
+ (snippet
+ #~(substitute* "selective.cabal"
+ (("QuickCheck [<>=0-9. &|]*") "QuickCheck < 2.16")))
+ (modules '((guix build utils)))))
(build-system haskell-build-system)
(properties '((upstream-name . "selective")))
(native-inputs (list ghc-quickcheck))