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