diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 02af900354..b8ea36852b 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -11429,7 +11429,10 @@ man pages with practical examples.") ("ghc-text" ,ghc-text) ("gcc" ,gcc))) (arguments - `(#:tests? #f ;some tests fail because of syntax errors + `(;; XXX: Test failures are induced by a parse error in + ;; of glibc 2.28. + #:tests? #f + #:phases (modify-phases %standard-phases (add-before 'check 'set-cc @@ -11450,8 +11453,7 @@ man pages with practical examples.") (delete-file-recursively cc-dir) #t)))))) (home-page "https://github.com/haskell/c2hs") - (synopsis - "C->Haskell FFI tool that gives some cross-language type safety") + (synopsis "Create Haskell bindings to C libraries") (description "C->Haskell assists in the development of Haskell bindings to C libraries. It extracts interface information from C header files and generates Haskell code with foreign imports and marshaling. Unlike writing