Files
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.

34 lines
602 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildPecl,
lib,
fetchFromGitHub,
}:
let
version = "3.4.5";
in
buildPecl {
inherit version;
pname = "xdebug";
src = fetchFromGitHub {
owner = "xdebug";
repo = "xdebug";
rev = version;
hash = "sha256-tJNN1GNEH3z/bsmzNMPoF6TAgOQ4EiM4QheqmhCQzM4=";
};
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 ];
};
}