mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
430 B
Nix
25 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;
|
|
};
|
|
}
|