Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
35 lines
670 B
Nix
35 lines
670 B
Nix
{
|
|
buildPecl,
|
|
lib,
|
|
php,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
let
|
|
version = "3.3.2";
|
|
in
|
|
buildPecl {
|
|
inherit version;
|
|
|
|
pname = "xdebug";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xdebug";
|
|
repo = "xdebug";
|
|
rev = version;
|
|
hash = "sha256-3Hj/6pFLwJkVfsUIkX9lP8cOa1cVjobqHZd/cnH0TaU=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
zendExtension = true;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
|
|
description = "Provides functions for function traces and profiling";
|
|
homepage = "https://xdebug.org/";
|
|
license = lib.licenses.php301;
|
|
maintainers = lib.teams.php.members;
|
|
broken = lib.versionAtLeast php.version "8.4";
|
|
};
|
|
}
|