mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
php.extensions.inotify: init at 3.0.0
https://pecl.php.net/package/inotify
This commit is contained in:
parent
7f6004d021
commit
51228d186f
21
pkgs/development/php-packages/inotify/default.nix
Normal file
21
pkgs/development/php-packages/inotify/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user