about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2023-05-31 19:33:48 +0100
committerRobert Scott <code@humanleg.org.uk>2023-05-31 19:33:48 +0100
commit9f6dad5ab33d8994d4c09917b564dbc55482b39c (patch)
treea352b16d11c1d1c90185615f6e60e41e47027b99
parent8b4cc62cc833a539073a2267df592de1530049b5 (diff)
c-ares: ensure passthru.tests' curl is built with c-ares support
kinda pointless otherwise
-rw-r--r--pkgs/development/libraries/c-ares/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index 9c024211a71bd..24536908fbf0c 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -31,7 +31,8 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   passthru.tests = {
-    inherit curl grpc;
+    inherit grpc;
+    curl = (curl.override { c-aresSupport = true; }).tests.withCheck;
   };
 
   meta = with lib; {