Merge pull request #29794 from stesie/php-postgres

php: fix build wrt. new postgres.dev build output
This commit is contained in:
Jörg Thalheim 2017-09-26 12:19:15 +01:00 committed by GitHub
commit 9c55fb146d

View File

@ -99,12 +99,12 @@ let
}; };
postgresql = { postgresql = {
configureFlags = ["--with-pgsql=${postgresql}"]; configureFlags = ["--with-pgsql=${postgresql.dev}"];
buildInputs = [ postgresql ]; buildInputs = [ postgresql ];
}; };
pdo_pgsql = { pdo_pgsql = {
configureFlags = ["--with-pdo-pgsql=${postgresql}"]; configureFlags = ["--with-pdo-pgsql=${postgresql.dev}"];
buildInputs = [ postgresql ]; buildInputs = [ postgresql ];
}; };