Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pkgs/development/haskell-modules/configuration-nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,12 @@ builtins.intersectAttrs super {
# Tries accessing the GitHub API
github-app-token = dontCheck super.github-app-token;

# The curl executable is required for withApplication tests.
warp = addTestToolDepend pkgs.curl super.warp;
warp = lib.pipe super.warp [
# The curl executable is required for withApplication tests.
(addTestToolDepend pkgs.curl)
# Avoids much closure size of downstream deps on macOS: https://github.com/yesodweb/wai/pull/1044
(disableCabalFlag "include-warp-version")
];

lz4-frame-conduit = addTestToolDepends [ pkgs.lz4 ] super.lz4-frame-conduit;

Expand Down
Loading