Files
2026-01-15 09:22:13 +01:00

36 lines
739 B
Nix

{
lib,
buildPecl,
fetchFromGitHub,
nix-update-script,
php,
}:
let
version = "0.19.1";
in
buildPecl {
pname = "vld";
inherit version;
src = fetchFromGitHub {
owner = "derickr";
repo = "vld";
tag = version;
hash = "sha256-fNmDH5jUwwYYgIpDSvb+NVcg+q97QzKCcx1uaMBwDrs=";
};
# Tests relies on PHP 7.0
doCheck = false;
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
meta = {
description = "Vulcan Logic Dumper hooks into the Zend Engine and dumps all the opcodes (execution units) of a script";
homepage = "https://github.com/derickr/vld";
license = lib.licenses.bsd2;
maintainers = [ ];
broken = lib.versionOlder php.version "8.2";
};
}