From cfd032a5477f245b7c5206b60807f97060733384 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 7 Apr 2026 12:32:18 +0200 Subject: [PATCH] haskellPackages.feed: execute main test suite at least --- .../haskell-modules/configuration-common.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index bd91bb4c5f9f..13b9925cd503 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2090,8 +2090,14 @@ with haskellLib; # Test suite fails, upstream not reachable for simple fix (not responsive on github) vivid-supercollider = dontCheck super.vivid-supercollider; - # Test suite does not compile. - feed = dontCheck super.feed; + # Test suite `readme` does not compile. + # https://github.com/haskell-party/feed/issues/77 + # `readme-doctests` are also broken (can't find a variety of imports) + feed = overrideCabal { + buildTarget = "tests"; + testTargets = [ "tests" ]; + jailbreak = true; + } super.feed; spacecookie = overrideCabal (old: { buildTools = (old.buildTools or [ ]) ++ [ pkgs.buildPackages.installShellFiles ];