5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
18 lines
398 B
Nix
18 lines
398 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;
|
|
};
|
|
}
|