mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
22 lines
424 B
Nix
22 lines
424 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|