php81Extensions.meminfo: unstable-2022-03-25 -> 1.1.1-unstable-2022-03-25

This commit is contained in:
R. Ryantm 2024-02-10 20:20:24 +00:00 committed by Wolfgang Walther
parent 214bf60564
commit e6a07d7158
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1
2 changed files with 5 additions and 2 deletions

View File

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

View File

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