2021-06-10 06:45:07 +00:00
|
|
|
{ buildPecl, lib, fetchFromGitHub }:
|
2020-10-11 18:10:58 +00:00
|
|
|
|
2022-10-27 09:40:41 +00:00
|
|
|
buildPecl rec {
|
2021-06-03 13:06:06 +00:00
|
|
|
pname = "pinba";
|
2021-06-10 06:45:07 +00:00
|
|
|
version = "1.1.2";
|
2020-10-11 17:36:24 +00:00
|
|
|
|
2021-06-03 13:06:06 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-10-11 17:36:24 +00:00
|
|
|
owner = "tony2001";
|
|
|
|
repo = "pinba_extension";
|
2022-10-27 09:40:41 +00:00
|
|
|
rev = "RELEASE_${lib.replaceStrings ["."] ["_"] version}";
|
2021-06-10 06:45:07 +00:00
|
|
|
sha256 = "0wqcqq6sb51wiawa37hbd1h9dbvmyyndzdvz87xqji7lpr9vn8jy";
|
2021-06-03 13:06:06 +00:00
|
|
|
};
|
2020-10-11 17:36:24 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "PHP extension for Pinba";
|
|
|
|
longDescription = ''
|
|
|
|
Pinba is a MySQL storage engine that acts as a realtime monitoring and
|
|
|
|
statistics server for PHP using MySQL as a read-only interface.
|
|
|
|
'';
|
2021-06-08 09:50:05 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2020-10-11 17:36:24 +00:00
|
|
|
homepage = "http://pinba.org/";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
|
|
|
}
|