depot/third_party/nixpkgs/pkgs/development/php-packages/inotify/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

21 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;
};
}