nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

phpExtensions.rrd: init at 2.0.3

Co-authored-by: Ember Keske <git@n0emis.eu>

authored by

Jennifer Graul
Ember Keske
and committed by
Yureka
938bfe28 ad69bc58

+19
+17
pkgs/development/php-packages/rrd/default.nix
··· 1 + { buildPecl, lib, pkg-config, rrdtool }: 2 + 3 + buildPecl { 4 + pname = "rrd"; 5 + 6 + version = "2.0.3"; 7 + hash = "sha256-pCFh5YzcioU7cs/ymJidy96CsPdkVt1ZzgKFTJK3MPc="; 8 + 9 + nativeBuildInputs = [ pkg-config rrdtool ]; 10 + 11 + meta = { 12 + description = "PHP bindings to RRD tool system"; 13 + license = lib.licenses.bsd0; 14 + homepage = "https://github.com/php/pecl-processing-rrd"; 15 + maintainers = lib.teams.wdz.members; 16 + }; 17 + }
+2
pkgs/top-level/php-packages.nix
··· 312 312 313 313 relay = callPackage ../development/php-packages/relay { inherit php; }; 314 314 315 + rrd = callPackage ../development/php-packages/rrd { }; 316 + 315 317 smbclient = callPackage ../development/php-packages/smbclient { }; 316 318 317 319 snuffleupagus = callPackage ../development/php-packages/snuffleupagus {