New comment by AluminumTank on void-packages repository https://github.com/void-linux/void-packages/pull/27662#issuecomment-754661853 Comment: I don't think that just because the documentation says it doesn't build by default, we shouldn't have it in our build. A good example of this is the [SSL module](http://nginx.org/en/docs/http/ngx_http_ssl_module.html), which is not included in the default build. Should Void not include SSL either since it's not default? For reference, one of my nginx server blocks uses slice, which is why I'm here. Anecdotally, the build instructions for the package providing this server block config didn't even mention that nginx needs to be built with slice support, so the status quo is that this is a "default" module. There is likely no easy way to get slice (or other module) support without manually recompiling. The only way I saw was to use dynamic modules, but this requires grabbing the source code for the version of nginx currently on your machine, compiling the modules as dynamic objects, and adding them into the nginx config. This would cause breakage or additional work when the nginx version that Void distributes gets bumped. Other distributions include this module in their builds as well (I just looked at the PKGBUILD for Arch and ebuild for Gentoo). The other option is to package the modules separately as dynamic modules as mentioned above, which I'd be happy to do if this is a better solution.