Commit 64973309 authored by superherointj's avatar superherointj
Browse files

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
parent 1a082d42
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -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"