about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/pinba/default.nix
blob: 0880c2a46e21e447abd0ea46c4788c3cb231cd35 (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
29
30
31
32
{ buildPecl, lib, fetchFromGitHub, php }:
let
  pname = "pinba";

  isPhp73 = lib.versionAtLeast php.version "7.3";

  version = if isPhp73 then "1.1.2-dev" else "1.1.1";

  src = fetchFromGitHub ({
    owner = "tony2001";
    repo = "pinba_extension";
  } // (if (isPhp73) then {
    rev = "edbc313f1b4fb8407bf7d5acf63fbb0359c7fb2e";
    sha256 = "02sljqm6griw8ccqavl23f7w1hp2zflcv24lpf00k6pyrn9cwx80";
  } else {
    rev = "RELEASE_1_1_1";
    sha256 = "1kdp7vav0y315695vhm3xifgsh6h6y6pny70xw3iai461n58khj5";
  }));
in
buildPecl {
  inherit pname version src;

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