From fad607c3a22761432b5a480d14dd7aa5bcc33fee Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 19 Jan 2026 01:16:14 +0000 Subject: [PATCH] haskellPackages.http-types: fix strictDeps build --- pkgs/development/haskell-modules/configuration-nix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 443cbf53efb7..a042d7572f93 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -508,6 +508,9 @@ builtins.intersectAttrs super { lz4-frame-conduit = addTestToolDepends [ pkgs.lz4 ] super.lz4-frame-conduit; + # Fix strictDeps build error "could not execute: hspec-discover" + http-types = addTestToolDepends [ self.hspec-discover ] super.http-types; + # Fix strictDeps build error "could not execute: hspec-discover" safe-exceptions = addTestToolDepends [ self.hspec-discover ] super.safe-exceptions;