phpExtensions.xdebug: 3.2.1 -> 3.2.2

This commit is contained in:
Pol Dellaiera 2023-07-23 22:16:07 +02:00
parent bc7a300e28
commit c7c411bab0
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -1,7 +1,7 @@
{ buildPecl, lib, fetchFromGitHub }:
let
version = "3.2.1";
version = "3.2.2";
in buildPecl {
inherit version;
@ -11,7 +11,7 @@ in buildPecl {
owner = "xdebug";
repo = "xdebug";
rev = version;
sha256 = "sha256-WKvMnn8yp6JBFu7xzPOt6sdg5JE8SRniLZbSBvi3ecQ=";
hash = "sha256-zbgJw2oPzyUTK0UwLAqpShBi+toVsEQcjoG4tIBder0=";
};
doCheck = true;
@ -19,11 +19,11 @@ in buildPecl {
zendExtension = true;
meta = with lib; {
meta = {
changelog = "https://github.com/xdebug/xdebug/releases/tag/${version}";
description = "Provides functions for function traces and profiling";
license = licenses.php301;
homepage = "https://xdebug.org/";
maintainers = teams.php.members;
license = lib.licenses.php301;
maintainers = lib.teams.php.members;
};
}