core/pkgs/by-name/cu/curl/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
628 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
with pkgs; {
curlFull = curl.override {
ldapSupport = true;
gsaslSupport = true;
rtmpSupport = true;
pslSupport = true;
websocketSupport = true;
};
curlHTTP3 = curl.override {
openssl = quictls;
http3Support = true;
};
curl = curlMinimal.override (
{
idnSupport = true;
pslSupport = true;
zstdSupport = true;
2024-06-30 08:16:52 +00:00
}
2024-05-02 00:46:19 +00:00
// lib.optionalAttrs (!stdenv.hostPlatform.isStatic) { brotliSupport = true; }
);
curlMinimal = callPackage ./. { };
curlWithGnuTls = curl.override {
gnutlsSupport = true;
opensslSupport = false;
};
}