nginx: make image filter optional

Reduces nginx package size from 109.88 MiB to 41.99 MiB. Reduction of -67.88 MiB.

GD (libgd.github.io) is a library for the dynamic creation of images.

Co-authored-by: @ulrikstrid
This commit is contained in:
superherointj 2024-05-22 21:39:31 -03:00
parent 1a082d42b2
commit 64973309bb

View File

@ -4,6 +4,7 @@ outer@{ lib, stdenv, fetchurl, fetchpatch, openssl, zlib, pcre, libxml2, libxslt
, nixosTests
, installShellFiles, substituteAll, removeReferencesTo, gd, geoip, perl
, withDebug ? false
, withImageFilter ? false
, withKTLS ? true
, withStream ? true
, withMail ? false
@ -64,9 +65,10 @@ stdenv.mkDerivation {
removeReferencesTo
] ++ nativeBuildInputs;
buildInputs = [ openssl zlib pcre libxml2 libxslt gd geoip perl ]
buildInputs = [ openssl zlib pcre libxml2 libxslt geoip perl ]
++ buildInputs
++ mapModules "inputs";
++ mapModules "inputs"
++ lib.optional withImageFilter gd;
configureFlags = [
"--sbin-path=bin/nginx"
@ -112,8 +114,8 @@ stdenv.mkDerivation {
"--with-http_perl_module"
"--with-perl=${perl}/bin/perl"
"--with-perl_modules_path=lib/perl5"
] ++ lib.optional withSlice "--with-http_slice_module"
++ lib.optional (gd != null) "--with-http_image_filter_module"
] ++ lib.optional withImageFilter "--with-http_image_filter_module"
++ lib.optional withSlice "--with-http_slice_module"
++ lib.optional (geoip != null) "--with-http_geoip_module"
++ lib.optional (withStream && geoip != null) "--with-stream_geoip_module"
++ lib.optional (with stdenv.hostPlatform; isLinux || isFreeBSD) "--with-file-aio"