haskellPackages.warp: stop including Paths_ module by default (#483175)

This commit is contained in:
sternenseemann
2026-01-24 10:27:55 +00:00
committed by GitHub
@@ -503,8 +503,12 @@ builtins.intersectAttrs super {
# Tries accessing the GitHub API # Tries accessing the GitHub API
github-app-token = dontCheck super.github-app-token; github-app-token = dontCheck super.github-app-token;
# The curl executable is required for withApplication tests. warp = lib.pipe super.warp [
warp = addTestToolDepend pkgs.curl 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; lz4-frame-conduit = addTestToolDepends [ pkgs.lz4 ] super.lz4-frame-conduit;