rustls-ffi: temporarily drop passthru.tests.curl

It currently does not build but the situation is being handled upstream.

+3 -2
+2 -1
pkgs/development/libraries/rustls-ffi/default.nix
··· 28 28 29 29 passthru.tests = { 30 30 apacheHttpd = apacheHttpd.override { modTlsSupport = true; }; 31 - curl = curl.override { opensslSupport = false; rustlsSupport = true; }; 31 + # Currently broken notably because of https://github.com/curl/curl/issues/13248 32 + # curl = curl.override { opensslSupport = false; rustlsSupport = true; }; 32 33 }; 33 34 34 35 meta = with lib; {
+1 -1
pkgs/tools/networking/curl/default.nix
··· 211 211 maintainers = with maintainers; [ lovek323 ]; 212 212 platforms = platforms.all; 213 213 # Fails to link against static brotli or gss 214 - broken = stdenv.hostPlatform.isStatic && (brotliSupport || gssSupport || stdenv.hostPlatform.system == "x86_64-darwin"); 214 + broken = (stdenv.hostPlatform.isStatic && (brotliSupport || gssSupport || stdenv.hostPlatform.system == "x86_64-darwin")) || rustlsSupport; 215 215 pkgConfigModules = [ "libcurl" ]; 216 216 mainProgram = "curl"; 217 217 };