about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/php-packages/rrd/default.nix
blob: a89f9a3b71b16c864fff7561a843fdc560045471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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;
  };
}