about summary refs log tree commit diff
path: root/pkgs/development/php-packages/pinba/default.nix
blob: 0373e74d9fcaecd6855243502b72af5bf3b66fda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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.
    '';
    license = licenses.lgpl2Plus;
    homepage = "http://pinba.org/";
    maintainers = teams.php.members;
  };
}