diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b330c3e19f61..d1eb2c085481 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2212,5 +2212,11 @@ self: super: { "--skip" "/toJsonSerializer/should generate valid JSON/" ] ++ drv.testFlags or []; }) super.hschema-aeson; + # https://gitlab.com/k0001/xmlbf/-/issues/32 + xmlbf = overrideCabal (drv: { + testFlags = [ + "-p" "!/xml: <\\/x>/&&!/xml: <\\/x>/" + ] ++ drv.testFlags or []; + }) super.xmlbf; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super