depot/third_party/nixpkgs/pkgs/development/php-packages/inotify/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

20 lines
399 B
Nix

{ buildPecl
, lib
}:
buildPecl {
pname = "inotify";
version = "3.0.0";
sha256 = "sha256-xxt4ZEwBFVecx5T1jnhEFEF1HXgEC52dGiI9Ppwtcj0=";
doCheck = true;
meta = {
description = "Inotify bindings for PHP";
homepage = "https://github.com/arnaud-lb/php-inotify";
license = lib.licenses.php301;
maintainers = lib.teams.php.members;
platforms = lib.platforms.linux;
};
}