Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions pkgs/tools/networking/curl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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; {
Expand Down