From 40780ca470986768f47d0b68fb337c2b3cc9b5b8 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 11 Mar 2026 12:12:24 +0100 Subject: [PATCH] haskellPackages.distributors: disable broken doctests No clue what's going on there, asked upstream. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a4bd44c06872..2efdb4c0539a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -407,6 +407,10 @@ with haskellLib; # https://codeberg.org/noiioiu/comonad-coactions/issues/1 comonad-coactions = dontCheck super.comonad-coactions; + # doctests don't evaluate properly + # https://github.com/morphismtech/distributors/issues/23 + distributors = dontCheck super.distributors; + # Needs QuickCheck >= 2.16 # https://github.com/input-output-hk/io-sim/issues/248 io-sim = dontCheck super.io-sim;