nixpkgs/pkgs/development/php-packages/xdebug/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
418 B
Nix
Raw Normal View History

{ buildPecl, lib }:
buildPecl {
pname = "xdebug";
2022-08-01 06:43:59 +00:00
version = "3.1.5";
sha256 = "sha256-VfbvOBJF2gebL8XOHPvLeWEZfQwOBPnZd2E8+aqWmnk=";
doCheck = true;
checkTarget = "test";
zendExtension = true;
2021-06-08 09:50:05 +00:00
meta = with lib; {
description = "Provides functions for function traces and profiling";
license = licenses.php301;
homepage = "https://xdebug.org/";
maintainers = teams.php.members;
};
}