2021-06-10 08:45:07 +02:00
|
|
|
{ buildPecl, lib, fetchFromGitHub }:
|
2020-10-11 20:10:58 +02:00
|
|
|
|
2021-06-03 15:06:06 +02:00
|
|
|
buildPecl {
|
|
|
|
pname = "pinba";
|
2021-06-10 08:45:07 +02:00
|
|
|
version = "1.1.2";
|
2020-10-11 19:36:24 +02:00
|
|
|
|
2021-06-03 15:06:06 +02:00
|
|
|
src = fetchFromGitHub {
|
2020-10-11 19:36:24 +02:00
|
|
|
owner = "tony2001";
|
|
|
|
repo = "pinba_extension";
|
2021-06-10 08:45:07 +02:00
|
|
|
rev = "RELEASE_1_1_2";
|
|
|
|
sha256 = "0wqcqq6sb51wiawa37hbd1h9dbvmyyndzdvz87xqji7lpr9vn8jy";
|
2021-06-03 15:06:06 +02:00
|
|
|
};
|
2020-10-11 19:36:24 +02: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 11:50:05 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
2020-10-11 19:36:24 +02:00
|
|
|
homepage = "http://pinba.org/";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
|
|
|
}
|