php81Extensions.vld: mark broken; php8{1-4}Extensions.vld: update script use version branch (#372742)

authored by Pol Dellaiera and committed by GitHub efe06435 5ea86236

+5
+5
pkgs/development/php-packages/vld/default.nix
··· 2 2 lib, 3 3 buildPecl, 4 4 fetchFromGitHub, 5 + nix-update-script, 6 + php, 5 7 }: 6 8 7 9 buildPecl { ··· 18 20 # Tests relies on PHP 7.0 19 21 doCheck = false; 20 22 23 + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; 24 + 21 25 meta = { 22 26 description = "Vulcan Logic Dumper hooks into the Zend Engine and dumps all the opcodes (execution units) of a script"; 23 27 homepage = "https://github.com/derickr/vld"; 24 28 license = lib.licenses.bsd2; 25 29 maintainers = with lib.maintainers; [ gaelreyrol ]; 30 + broken = lib.versionOlder php.version "8.2"; 26 31 }; 27 32 }