about summary refs log tree commit diff
path: root/pkgs/development/php-packages/xdebug/default.nix
blob: a7a710b3193e06a21286e35d2cbf3ace54d7cad3 (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.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;
  };
}