mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
24 lines
673 B
Nix
24 lines
673 B
Nix
{ 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;
|
|
};
|
|
}
|