1{
2 buildPecl,
3 lib,
4 pkg-config,
5 rrdtool,
6}:
7
8buildPecl {
9 pname = "rrd";
10
11 version = "2.0.3";
12 hash = "sha256-pCFh5YzcioU7cs/ymJidy96CsPdkVt1ZzgKFTJK3MPc=";
13
14 nativeBuildInputs = [
15 pkg-config
16 rrdtool
17 ];
18
19 meta = {
20 description = "PHP bindings to RRD tool system";
21 license = lib.licenses.bsd0;
22 homepage = "https://github.com/php/pecl-processing-rrd";
23 maintainers = lib.teams.wdz.members;
24 };
25}