Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPecl, lib }:
2
3buildPecl {
4 pname = "xdebug";
5
6 version = "3.2.0";
7 sha256 = "1drj00z8ididm2iw7a7pnrsvakrr1g0i49aqkyz5zpysxh7b4sbp";
8
9 doCheck = true;
10 checkTarget = "test";
11
12 zendExtension = true;
13
14 meta = with lib; {
15 description = "Provides functions for function traces and profiling";
16 license = licenses.php301;
17 homepage = "https://xdebug.org/";
18 maintainers = teams.php.members;
19 };
20}