20 lines
465 B
Nix
20 lines
465 B
Nix
{ stdenv, buildPecl, lib, unixODBC, libiconv }:
|
|
|
|
buildPecl {
|
|
pname = "sqlsrv";
|
|
|
|
version = "5.9.0";
|
|
sha256 = "1css440b4qrbblmcswd5wdr2v1rjxlj2iicbmvjq9fg81028w40a";
|
|
|
|
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;
|
|
};
|
|
}
|