nixpkgs/pkgs/development/php-packages/rrd/default.nix
Jennifer Graul 938bfe28ac phpExtensions.rrd: init at 2.0.3
Co-authored-by: Ember Keske <git@n0emis.eu>
2023-09-25 19:24:40 +02:00

18 lines
411 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;
};
}