mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
23 lines
470 B
Nix
23 lines
470 B
Nix
{
|
|
stdenv,
|
|
buildPecl,
|
|
lib,
|
|
unixODBC,
|
|
libiconv,
|
|
}:
|
|
|
|
buildPecl {
|
|
pname = "sqlsrv";
|
|
|
|
version = "5.10.1";
|
|
sha256 = "sha256-XNrttNiihjQ+azuZmS2fy0So+2ndAqpde8IOsupeWdI=";
|
|
|
|
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;
|
|
};
|
|
}
|