haskell.packages.ghc96.warp: Fix build

This commit is contained in:
Rodney Lorrimar 2023-07-06 15:51:38 +08:00
parent 0e504b6873
commit 83d68068cf
No known key found for this signature in database
GPG key ID: D8B75C95FB4D1143

View file

@ -220,4 +220,10 @@ self: super: {
sha256 = "sha256-b7u9GiIAd2xpOrM0MfILHNb6Nt7070lNRIadn2l3DfQ=";
})];
}) super.ConfigFile;
# Use newer version of warp with has the openFd signature change for
# compatibility with unix>=2.8.0.
warp = self.warp_3_3_28;
# The curl executable is required for withApplication tests.
warp_3_3_28 = addTestToolDepend pkgs.curl super.warp_3_3_28;
}