Skip to content

Commit

Permalink
php: fix build wrt. new postgres.dev build output
Browse files Browse the repository at this point in the history
Refs commit b0280f5
  • Loading branch information
Stefan Siegl committed Sep 26, 2017
1 parent b303aa0 commit 2f23a83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/php/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ];
};

Expand Down

0 comments on commit 2f23a83

Please sign in to comment.