about summary refs log tree commit diff
path: root/pkgs/development/php-packages/inotify/default.nix
blob: b68af7ec6e8038fb12a97918894102c17dac4803 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
}