Files
nixpkgs/pkgs/development/php-packages/xdebug/default.nix
T
2026-02-07 13:53:19 +00:00

34 lines
602 B
Nix

{
buildPecl,
lib,
fetchFromGitHub,
}:
let
version = "3.5.1";
in
buildPecl {
inherit version;
pname = "xdebug";
src = fetchFromGitHub {
owner = "xdebug";
repo = "xdebug";
rev = version;
hash = "sha256-GOlWCKDLwptsHV9SvOOlR4uScvcw8V/DjwXIpfWjSkM=";
};
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;
teams = [ lib.teams.php ];
};
}