c283f32d29
Auto-fixed by nixf-diagnose.
30 lines
670 B
Nix
30 lines
670 B
Nix
{
|
|
buildPecl,
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildPecl rec {
|
|
version = "1.1.1-unstable-2022-03-25";
|
|
pname = "meminfo";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BitOne";
|
|
repo = "php-meminfo";
|
|
rev = "0ab7f5aea96c4dafce27c7e215b4907db2a2f493";
|
|
hash = "sha256-MO+B+ZNg6OAnxkOtdA15o+G41XbsG1N1WBz7thMCjck=";
|
|
};
|
|
|
|
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";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|