24 lines
473 B
Nix
24 lines
473 B
Nix
{
|
|
stdenv,
|
|
buildPecl,
|
|
lib,
|
|
unixODBC,
|
|
libiconv,
|
|
}:
|
|
|
|
buildPecl {
|
|
pname = "sqlsrv";
|
|
|
|
version = "5.12.0";
|
|
sha256 = "sha256-qeu4gLKlWNPWaE9uaALFPFv/pJ4e5g0Uc6cST8nLcq0=";
|
|
|
|
buildInputs = [ unixODBC ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
|
|
|
meta = with lib; {
|
|
description = "Microsoft Drivers for PHP for SQL Server";
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/Microsoft/msphpsql";
|
|
teams = [ teams.php ];
|
|
};
|
|
}
|