Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 25 lines 430 B view raw
1{ 2 buildPecl, 3 lib, 4 pkg-config, 5 rrdtool, 6}: 7 8buildPecl { 9 pname = "rrd"; 10 11 version = "2.0.3"; 12 hash = "sha256-pCFh5YzcioU7cs/ymJidy96CsPdkVt1ZzgKFTJK3MPc="; 13 14 nativeBuildInputs = [ 15 pkg-config 16 rrdtool 17 ]; 18 19 meta = { 20 description = "PHP bindings to RRD tool system"; 21 license = lib.licenses.bsd0; 22 homepage = "https://github.com/php/pecl-processing-rrd"; 23 maintainers = lib.teams.wdz.members; 24 }; 25}