Tuomas Tynkkynen 2018-07-24 14:28:35 +03:00
parent 79925f1b2a
commit cc700ad55b

@ -1,10 +1,10 @@
# pcre functionality is tested in nixos/tests/php-pcre.nix # pcre functionality is tested in nixos/tests/php-pcre.nix
{ lib, stdenv, fetchurl, composableDerivation, flex, bison { lib, stdenv, fetchurl, composableDerivation, flex, bison
, mysql, libxml2, readline, zlib, curl, postgresql, gettext , mysql, libxml2, readline, zlib, curl, postgresql, gettext, html-tidy
, openssl, pcre, pkgconfig, sqlite, config, libjpeg, libpng, freetype , openssl, pcre, pkgconfig, sqlite, config, libjpeg, libpng, freetype
, libxslt, libmcrypt, bzip2, icu, openldap, cyrus_sasl, libmhash, freetds , libxslt, libmcrypt, bzip2, icu, openldap, cyrus_sasl, libmhash, freetds
, uwimap, pam, gmp, apacheHttpd, libiconv, systemd, libsodium, libtidy }: , uwimap, pam, gmp, apacheHttpd, libiconv, systemd, libsodium }:
let let
@ -232,8 +232,8 @@ let
}; };
tidy = { tidy = {
configureFlags = [ "--with-tidy=${libtidy}" ]; configureFlags = [ "--with-tidy=${html-tidy}" ];
buildInputs = [ libtidy ]; buildInputs = [ html-tidy ];
}; };
}; };