5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
26 lines
523 B
Nix
26 lines
523 B
Nix
{
|
|
stdenv,
|
|
buildPecl,
|
|
lib,
|
|
libiconv,
|
|
unixODBC,
|
|
php,
|
|
}:
|
|
|
|
buildPecl {
|
|
pname = "pdo_sqlsrv";
|
|
|
|
version = "5.10.1";
|
|
sha256 = "sha256-x4VBlqI2vINQijRvjG7x35mbwh7rvYOL2wUTIV4GKK0=";
|
|
|
|
internalDeps = [ php.extensions.pdo ];
|
|
|
|
buildInputs = [ unixODBC ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Drivers for PHP for SQL Server";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/Microsoft/msphpsql";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|