summary refs log blame commit diff
path: root/pkgs/development/php-packages/sqlsrv/default.nix
blob: b70b6c3f3d9e62d0daf1db3daa02b5a84b444b64 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                               



                   

                                                                 

                 

                                                  
 





                                                             
 
{ stdenv, buildPecl, lib, unixODBC, libiconv }:

buildPecl {
  pname = "sqlsrv";

  version = "5.10.0";
  sha256 = "sha256-drPwg6Go8QNYHCG6OkbWyiV76uZyjNFYpkpGq1miJrQ=";

  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;
  };
}