From bbe0f3022885d71a20fd59831160906efbbe2768 Mon Sep 17 00:00:00 2001 From: Alexandre Esteves Date: Tue, 17 Feb 2026 23:09:49 +0000 Subject: [PATCH] haskellPackages: add missing dependencies on windows --- .../haskell-modules/configuration-windows.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-windows.nix b/pkgs/development/haskell-modules/configuration-windows.nix index 7d5952bc6dee..5489c415f09c 100644 --- a/pkgs/development/haskell-modules/configuration-windows.nix +++ b/pkgs/development/haskell-modules/configuration-windows.nix @@ -8,9 +8,17 @@ with haskellLib; (self: super: { # cabal2nix doesn't properly add dependencies conditional on os(windows) + digest = addBuildDepends [ self.zlib ] super.digest; + echo = addBuildDepends [ self.mintty ] super.echo; http-client = addBuildDepends [ self.safe ] super.http-client; - + regex-posix = addBuildDepends [ self.regex-posix-clib ] super.regex-posix; + simple-sendfile = + with self; + addBuildDepends [ conduit conduit-extra resourcet ] super.simple-sendfile; + snap-core = addBuildDepends [ self.time-locale-compat ] super.snap-core; + tar-conduit = addBuildDepends [ self.unix-compat ] super.tar-conduit; unix-time = addBuildDepends [ pkgs.windows.pthreads ] super.unix-time; + warp = addBuildDepends [ self.unix-compat ] super.warp; network = lib.pipe super.network [ (addBuildDepends [ self.temporary ])