Merge pull request #188630 from mweinelt/php-inotify

php.extensions.inotify: init at 3.0.0
This commit is contained in:
Elis Hirwing 2022-08-29 22:26:16 +02:00 committed by GitHub
commit 0b655cfdce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };