68eb5305ac
PHP 7.3 won't be supported by upstream for the entire life cycle of the 21.11 release. Also drop the pcre' alias since it isn't needed anymore since we don't need different pcre versions anymore.
24 lines
635 B
Nix
24 lines
635 B
Nix
{ buildPecl, lib, fetchFromGitHub, php }:
|
|
|
|
buildPecl {
|
|
pname = "pinba";
|
|
version = "1.1.2-dev";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tony2001";
|
|
repo = "pinba_extension";
|
|
rev = "edbc313f1b4fb8407bf7d5acf63fbb0359c7fb2e";
|
|
sha256 = "02sljqm6griw8ccqavl23f7w1hp2zflcv24lpf00k6pyrn9cwx80";
|
|
};
|
|
|
|
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.
|
|
'';
|
|
homepage = "http://pinba.org/";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|