curl: add some key reverse-dependencies to passthru.tests

This commit is contained in:
Robert Scott 2022-05-07 15:51:02 +01:00
parent 4b53055f55
commit 924ebf6556

View file

@ -24,6 +24,15 @@
, wolfsslSupport ? false, wolfssl ? null
, zlibSupport ? true, zlib ? null
, zstdSupport ? false, zstd ? null
# for passthru.tests
, coeurl
, curlcpp
, curlpp
, haskellPackages
, ocamlPackages
, phpExtensions
, python3
}:
# Note: this package is used for bootstrapping fetchurl, and thus
@ -159,6 +168,13 @@ stdenv.mkDerivation rec {
passthru = {
inherit opensslSupport openssl;
tests = {
inherit curlpp curlcpp coeurl;
haskell-curl = haskellPackages.curl;
ocaml-curly = ocamlPackages.curly;
php-curl = phpExtensions.curl;
pycurl = python3.pkgs.pycurl;
};
};
meta = with lib; {