From eccf0f6e119c3521064b9c207718129ffa3f2eda Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 19 Jan 2026 00:27:01 +0000 Subject: [PATCH] haskellPackages.unliftio: fix build with `strictDeps` --- 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 e551dd77afde..b4c36a650736 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -511,6 +511,9 @@ builtins.intersectAttrs super { # Fix strictDeps build error "could not execute: hspec-discover" safe-exceptions = addTestToolDepends [ self.hspec-discover ] super.safe-exceptions; + # Fix strictDeps build error "could not execute: hspec-discover" + unliftio = addTestToolDepends [ self.hspec-discover ] super.unliftio; + # Test suite requires running a database server. Testing is done upstream. hasql = dontCheck super.hasql; hasql-dynamic-statements = dontCheck super.hasql-dynamic-statements;