mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
938bfe28ac
Co-authored-by: Ember Keske <git@n0emis.eu>
18 lines
411 B
Nix
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;
|
|
};
|
|
}
|