php81Extensions.meminfo: unstable-2022-03-25 -> 1.1.1-unstable-2022-03-25 (#287860)

This commit is contained in:
Wolfgang Walther 2025-07-13 15:23:49 +00:00 committed by GitHub
commit e370c97e4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -65,7 +65,7 @@ stdenv.mkDerivation (
# PHP extensions correctly.
# See the corresponding PR: https://github.com/Mic92/nix-update/pull/123
isPhpExtension = true;
updateScript = nix-update-script { };
updateScript = passthru.updateScript or (nix-update-script { });
};
}
)

View File

@ -2,10 +2,11 @@
buildPecl,
lib,
fetchFromGitHub,
nix-update-script,
}:
buildPecl rec {
version = "unstable-2022-03-25";
version = "1.1.1-unstable-2022-03-25";
pname = "meminfo";
src = fetchFromGitHub {
@ -17,6 +18,8 @@ buildPecl rec {
sourceRoot = "${src.name}/extension";
passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
meta = {
description = "PHP extension to get insight about memory usage";
homepage = "https://github.com/BitOne/php-meminfo";