guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.
commit 822bbe249b22cd38672e4b81e28807a9c520bd31
Author: Saku Laesvuori <[email protected]>
AuthorDate: Sat Oct 18 16:04:52 2025 +0300
gnu: ghc-text-icu: Fix build
* gnu/packages/haskell-xyz.scm (ghc-text-icu)[inputs]: Add icu4c.
[native-inputs]: Add pkg-config.
Change-Id: If6348e049b65f8b65db8ec854ca74d5b09b709e9
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 26ede11428..abd91b1880 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -8705,13 +8705,15 @@ require aeson
(base32 "1nzd7al2vpm07xa19w9vy6f696bm4z48h0m4fljsxjg4v0wblbj4"))))
(build-system haskell-build-system)
(properties '((upstream-name . "text-icu")))
+ (inputs (list icu4c))
(native-inputs (list ghc-hunit
ghc-quickcheck
ghc-random
ghc-test-framework
ghc-test-framework-hunit
ghc-test-framework-quickcheck2
- ghc-semigroups))
+ ghc-semigroups
+ pkg-config))
(arguments
`(#:cabal-revision ("1"
"1zqbcsnf9943mk8i9lyj1ab2xvg6dw9k6jfjhblxqcliq53c3dpp")))