depot/third_party/nixpkgs/pkgs/development/php-packages/xdebug/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

20 lines
418 B
Nix

{ buildPecl, lib }:
buildPecl {
pname = "xdebug";
version = "3.1.2";
sha256 = "sha256-CD9r4RAN95zL3wSdr8OTC6s18OuA+bGawa2E+md5zPM=";
doCheck = true;
checkTarget = "test";
zendExtension = true;
meta = with lib; {
description = "Provides functions for function traces and profiling";
license = licenses.php301;
homepage = "https://xdebug.org/";
maintainers = teams.php.members;
};
}