about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/xdebug/default.nix
blob: eaadb4b1f544cd3aea1d16b71e1204df89f8a123 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildPecl, lib }:

buildPecl {
  pname = "xdebug";

  version = "3.0.3";
  sha256 = "sha256-5yZagVGOOX+XLcki50bRpIRTcXf/SJVDUWfRCeKTJDI=";

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