mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
phpPackages.pinba: init at 1.1.1
This commit is contained in:
parent
83a01ab93a
commit
befad4b32d
@ -380,6 +380,50 @@ let
|
||||
};
|
||||
};
|
||||
|
||||
pinba = if isPhp73 then pinba73 else pinba7;
|
||||
|
||||
pinba7 = assert !isPhp73; buildPecl rec {
|
||||
version = "1.1.1";
|
||||
pname = "pinba";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "tony2001";
|
||||
repo = "pinba_extension";
|
||||
rev = "RELEASE_1_1_1";
|
||||
sha256 = "1kdp7vav0y315695vhm3xifgsh6h6y6pny70xw3iai461n58khj5";
|
||||
};
|
||||
|
||||
meta = with pkgs.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/";
|
||||
};
|
||||
};
|
||||
|
||||
pinba73 = assert isPhp73; buildPecl rec {
|
||||
version = "1.1.2-dev";
|
||||
pname = "pinba";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "tony2001";
|
||||
repo = "pinba_extension";
|
||||
rev = "edbc313f1b4fb8407bf7d5acf63fbb0359c7fb2e";
|
||||
sha256 = "02sljqm6griw8ccqavl23f7w1hp2zflcv24lpf00k6pyrn9cwx80";
|
||||
};
|
||||
|
||||
meta = with pkgs.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/";
|
||||
};
|
||||
};
|
||||
|
||||
psysh = mkDerivation rec {
|
||||
version = "0.9.9";
|
||||
pname = "psysh";
|
||||
|
Loading…
Reference in New Issue
Block a user