From 86b532d04cd85eb4122d73dc873b12dc5eaaa274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Fri, 31 Jul 2026 15:34:03 +0200 Subject: [PATCH] haskellPackages.essence-of-live-coding-warp: disable test suite The warp test suite runs an HTTP server that needs the threaded RTS, but is missing ghc-options: -threaded. Fixed upstream in https://github.com/turion/essence-of-live-coding/pull/153. Assisted-by: Claude Code (Claude Opus 4.8) --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 959acc59f0d8..933ddc04a28a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2968,6 +2968,11 @@ with haskellLib; # once a release/Hackage revision with the relaxed bound reaches nixpkgs. rhine = dontCheck super.rhine; + # The warp test suite runs an HTTP server that needs the threaded RTS, but the + # test suite is missing `ghc-options: -threaded`. Fixed upstream in + # https://github.com/turion/essence-of-live-coding/pull/153; drop once released. + essence-of-live-coding-warp = dontCheck super.essence-of-live-coding-warp; + # 2025-04-13: jailbreak to allow th-abstraction >= 0.7 crucible = doJailbreak super.crucible;