mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-02 21:54:45 +00:00
16 lines
226 B
Nix
16 lines
226 B
Nix
{
|
|
curlMinimal,
|
|
...
|
|
}@args:
|
|
|
|
curlMinimal.override (
|
|
{
|
|
brotliSupport = true;
|
|
http3Support = true;
|
|
idnSupport = true;
|
|
pslSupport = true;
|
|
zstdSupport = true;
|
|
}
|
|
// removeAttrs args [ "curlMinimal" ]
|
|
)
|