From 1139a6eeff9edf4fe425ba449d44a46a8841a04a Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 22 Dec 2024 13:20:23 +0100 Subject: [PATCH] haskellPackages.libxml-sax: disable gcc14 implicit fun decl -Werror (cherry picked from commit 25e269c421a64620f3c90d1bcc697ab86e662db4) --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 4b570c887b78..255ce271bec1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -260,6 +260,9 @@ self: super: { termbox-bindings-c = appendConfigureFlags [ "--ghc-option=-optc=-Wno-error=implicit-function-declaration" ] super.termbox-bindings-c; + libxml-sax = appendConfigureFlags [ + "--ghc-option=-optc=-Wno-error=implicit-function-declaration" + ] super.libxml-sax; # There are numerical tests on random data, that may fail occasionally lapack = dontCheck super.lapack;