php.extensions.inotify: init at 3.0.0

https://pecl.php.net/package/inotify
This commit is contained in:
Martin Weinelt 2022-08-28 15:23:53 +02:00
parent 7f6004d021
commit 51228d186f
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ buildPecl
, lib
, stdenv
}:
buildPecl {
pname = "inotify";
version = "3.0.0";
sha256 = "sha256-xxt4ZEwBFVecx5T1jnhEFEF1HXgEC52dGiI9Ppwtcj0=";
doCheck = true;
meta = with lib; {
broken = stdenv.isDarwin; # no inotify support
description = "Inotify bindings for PHP";
license = licenses.php301;
homepage = "https://github.com/arnaud-lb/php-inotify";
maintainers = teams.php.members;
};
}

View File

@ -216,6 +216,8 @@ lib.makeScope pkgs.newScope (self: with self; {
imagick = callPackage ../development/php-packages/imagick { };
inotify = callPackage ../development/php-packages/inotify { };
mailparse = callPackage ../development/php-packages/mailparse { };
maxminddb = callPackage ../development/php-packages/maxminddb { };