From 9484135264f0e02a52baee7e0a2ced9173f0790b Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Sun, 1 Dec 2024 11:42:40 +0100 Subject: [PATCH] php84Extensions.vld: 0.18.0 -> 0.18.0-unstable-2024-08-22 use the latest commit to fix php 8.4 --- pkgs/development/php-packages/vld/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/development/php-packages/vld/default.nix b/pkgs/development/php-packages/vld/default.nix index 1771f7b21514..3c7aaee8ae62 100644 --- a/pkgs/development/php-packages/vld/default.nix +++ b/pkgs/development/php-packages/vld/default.nix @@ -4,26 +4,21 @@ fetchFromGitHub, }: -let - version = "0.18.0"; -in buildPecl { - inherit version; - pname = "vld"; + version = "0.18.0-unstable-2024-08-22"; src = fetchFromGitHub { owner = "derickr"; repo = "vld"; - rev = version; - hash = "sha256-1xMStPM3Z5qIkrRGfCKcYT6UdF1j150nt7IleirjdBM="; + rev = "dc56f73a25b0230745afb5523871f2e8dd33fccd"; + hash = "sha256-pQ1KIdGtV7bN5nROOJHR7C1eFMqVioTNLPAsJzH86NI="; }; # Tests relies on PHP 7.0 doCheck = false; meta = { - changelog = "https://github.com/derickr/vld/releases/tag/${version}"; 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;