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