fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildPecl,
3 lib,
4 fetchFromGitHub,
5}:
6
7buildPecl rec {
8 version = "unstable-2022-03-25";
9 pname = "meminfo";
10
11 src = fetchFromGitHub {
12 owner = "BitOne";
13 repo = "php-meminfo";
14 rev = "0ab7f5aea96c4dafce27c7e215b4907db2a2f493";
15 hash = "sha256-MO+B+ZNg6OAnxkOtdA15o+G41XbsG1N1WBz7thMCjck=";
16 };
17
18 sourceRoot = "${src.name}/extension";
19
20 meta = {
21 description = "PHP extension to get insight about memory usage";
22 homepage = "https://github.com/BitOne/php-meminfo";
23 license = lib.licenses.mit;
24 maintainers = with lib.maintainers; [ drupol ];
25 };
26}