summaryrefslogtreecommitdiff
path: root/pkgs/development/php-packages/inotify/default.nix
blob: b6d6826e88cf12324b15d5da0c47aa42e93a6951 (plain)
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;
    teams = [ lib.teams.php ];
    platforms = lib.platforms.linux;
  };
}