mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-15 03:40:22 +00:00
16 lines
212 B
Nix
16 lines
212 B
Nix
{
|
|
curl,
|
|
...
|
|
}@args:
|
|
|
|
curl.override (
|
|
{
|
|
c-aresSupport = true;
|
|
ldapSupport = true;
|
|
gsaslSupport = true;
|
|
rtmpSupport = true;
|
|
websocketSupport = true;
|
|
}
|
|
// removeAttrs args [ "curl" ]
|
|
)
|