aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/php-packages/oci8/default.nix
blob: ea699c2034e8e7d70a1e19973e71445ee9d3e0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildPecl, lib, pkgs }:

buildPecl {
  pname = "oci8";

  version = "2.2.0";
  sha256 = "0jhivxj1nkkza4h23z33y7xhffii60d7dr51h1czjk10qywl7pyd";

  buildInputs = [ pkgs.oracle-instantclient ];
  configureFlags = [ "--with-oci8=shared,instantclient,${pkgs.oracle-instantclient.lib}/lib" ];

  postPatch = ''
    sed -i -e 's|OCISDKMANINC=`.*$|OCISDKMANINC="${pkgs.oracle-instantclient.dev}/include"|' config.m4
  '';

  meta.maintainers = lib.teams.php.members;
}