26 lines
430 B
Nix
26 lines
430 B
Nix
|
{
|
||
|
buildPecl,
|
||
|
lib,
|
||
|
pkg-config,
|
||
|
rrdtool,
|
||
|
}:
|
||
|
|
||
|
buildPecl {
|
||
|
pname = "rrd";
|
||
|
|
||
|
version = "2.0.3";
|
||
|
hash = "sha256-pCFh5YzcioU7cs/ymJidy96CsPdkVt1ZzgKFTJK3MPc=";
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
rrdtool
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
description = "PHP bindings to RRD tool system";
|
||
|
license = lib.licenses.bsd0;
|
||
|
homepage = "https://github.com/php/pecl-processing-rrd";
|
||
|
maintainers = lib.teams.wdz.members;
|
||
|
};
|
||
|
}
|