curl: add some key reverse-dependencies to passthru.tests
This commit is contained in:
parent
4b53055f55
commit
924ebf6556
1 changed files with 16 additions and 0 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue