about summary refs log tree commit diff
path: root/pkgs/development/php-packages/pinba/default.nix
blob: 759d02b9c352f5056c100adf7f6b4a5a41614ed3 (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
25
26
27
28
{
  buildPecl,
  lib,
  fetchFromGitHub,
}:

buildPecl rec {
  pname = "pinba";
  version = "1.1.2";

  src = fetchFromGitHub {
    owner = "tony2001";
    repo = "pinba_extension";
    rev = "RELEASE_${lib.replaceStrings [ "." ] [ "_" ] version}";
    sha256 = "0wqcqq6sb51wiawa37hbd1h9dbvmyyndzdvz87xqji7lpr9vn8jy";
  };

  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;
  };
}