added the pecl oci8 library for php

had to make an adjustment to the oracle instantclient to make it compile
This commit is contained in:
Aaron Andersen
2018-08-03 21:58:57 -04:00
parent da53c1248b
commit 4cc3a5a6c9
2 changed files with 10 additions and 0 deletions
+7
View File
@@ -160,6 +160,13 @@ let
buildInputs = with pkgs; [ cyrus_sasl zlib ];
};
oci8 = buildPecl rec {
name = "oci8-2.1.8";
sha256 = "1bp6fss2f2qmd5bdk7x22j8vx5qivrdhz4x7csf29vjgj6gvchxy";
buildInputs = [ pkgs.re2c pkgs.oracle-instantclient ];
configureFlags = [ "--with-oci8=shared,instantclient,${pkgs.oracle-instantclient}/lib" ];
};
pcs = buildPecl rec {
name = "pcs-1.3.3";