mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libmicrohttpd: Don't enable some expensive features by default
Commit c5d13d4fe9
caused libmicrohttpd
to be not so micro anymore, increasing its closure size from 40 MiB to
283 MiB, which is annoying for packages like systemd that use it. So
don't enable httpd/spdy support by default.
This commit is contained in:
parent
26492cdba3
commit
c206c9cd95
1 changed files with 4 additions and 1 deletions
|
@ -6763,7 +6763,10 @@ let
|
|||
|
||||
libmemcached = callPackage ../development/libraries/libmemcached { };
|
||||
|
||||
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd { };
|
||||
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd {
|
||||
openssl = null;
|
||||
gnutls = null;
|
||||
};
|
||||
|
||||
libmikmod = callPackage ../development/libraries/libmikmod { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue