php: fix build wrt. new postgres.dev build output

Refs commit b0280f598e
This commit is contained in:
Stefan Siegl 2017-09-26 10:14:27 +02:00
parent b303aa0155
commit 2f23a83920
No known key found for this signature in database
GPG key ID: B224EC6857AD7F9B

View file

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