depot/third_party/nixpkgs/pkgs/development/php-packages/xdebug/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

20 lines
418 B
Nix

{ buildPecl, lib }:
buildPecl {
pname = "xdebug";
version = "3.1.3";
sha256 = "sha256-N9CmcBlV9bNAbGwye3cCvXwhRi5lbztMziSgUlgBPU4=";
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;
};
}