24 lines
483 B
Nix
24 lines
483 B
Nix
|
{
|
||
|
stdenv,
|
||
|
buildPecl,
|
||
|
lib,
|
||
|
unixODBC,
|
||
|
libiconv,
|
||
|
}:
|
||
|
|
||
|
buildPecl {
|
||
|
pname = "sqlsrv";
|
||
|
|
||
|
version = "5.10.1";
|
||
|
sha256 = "sha256-XNrttNiihjQ+azuZmS2fy0So+2ndAqpde8IOsupeWdI=";
|
||
|
|
||
|
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";
|
||
|
maintainers = teams.php.members;
|
||
|
};
|
||
|
}
|