19 lines
465 B
Nix
19 lines
465 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;
|
|
};
|
|
}
|