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

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 ];
};