mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
2ab8bf1afa
Follow up of https://github.com/NixOS/nixpkgs/pull/242015
21 lines
399 B
Nix
21 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;
|
|
};
|
|
}
|