php53: Don't use bundled version of libgd.
This fixes a copy & paste error I made in 486e918
, which resulted in PHP being
built with the bundled version of GD instead of the one we have in nixpkgs.
Thanks to @peti for noticing.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
9a37a306b8
commit
e0ea957d64
|
@ -90,7 +90,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||
|
||||
gd = {
|
||||
configureFlags = [
|
||||
"--with-gd"
|
||||
"--with-gd=${gd}"
|
||||
"--with-freetype-dir=${freetype}"
|
||||
"--with-png-dir=${libpng}"
|
||||
"--with-jpeg-dir=${libjpeg}"
|
||||
|
|
Loading…
Reference in New Issue