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

commit f4ceb43617cac17528bce04a42e19678aad9435b
Author: Saku Laesvuori <[email protected]>
AuthorDate: Sat Oct 18 17:30:29 2025 +0300

    gnu: ghc-mysql: Fix build
    
    * gnu/packages/haskell-xyz.scm (ghc-mysql)[inputs]: Add mariadb:dev,
    openssl and zlib.
    [arguments]: Disable failing tests.
    
    Change-Id: Ib8dae50c15c84edeab9f1a6f9b2ddce19ae7bf93
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/haskell-xyz.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 6755ae6333..438af8dc1e 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -15898,6 +15898,8 @@ Haskell newer than 2.8.")
         (base32 "051w428arxbix06a52dacqjpnkfx42zbazxsd3l9d857dsd0kl3g"))))
     (build-system haskell-build-system)
     (properties '((upstream-name . "mysql")))
+    (arguments `(#:tests? #f)) ; TODO: Fails to connect to server.
+    (inputs (list (list mariadb "dev") openssl zlib))
     (native-inputs (list ghc-hspec))
     (home-page "https://github.com/paul-rouse/mysql";)
     (synopsis "Low-level MySQL client library")

Reply via email to