about summary refs log tree commit diff
path: root/pkgs/development/php-packages/inotify
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-07-07 23:02:55 +0200
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-07-08 13:35:27 +0200
commit2ab8bf1afa6c29e602b06449a98dc6a51847f15b (patch)
treed7d28df7b4277b64b35861901008e4772746abd6 /pkgs/development/php-packages/inotify
parent7016b8bf7ada30e7574d56f0dabafdc921f00e75 (diff)
phpExtensions.inotify: update platforms
Follow up of https://github.com/NixOS/nixpkgs/pull/242015
Diffstat (limited to 'pkgs/development/php-packages/inotify')
-rw-r--r--pkgs/development/php-packages/inotify/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/php-packages/inotify/default.nix b/pkgs/development/php-packages/inotify/default.nix
index 28270a2510c43..4296df1d81ba6 100644
--- a/pkgs/development/php-packages/inotify/default.nix
+++ b/pkgs/development/php-packages/inotify/default.nix
@@ -1,6 +1,5 @@
 { buildPecl
 , lib
-, stdenv
 }:
 
 buildPecl {
@@ -11,11 +10,11 @@ buildPecl {
 
   doCheck = true;
 
-  meta = with lib; {
-    broken = stdenv.isDarwin; # no inotify support
+  meta = {
     description = "Inotify bindings for PHP";
-    license = licenses.php301;
     homepage = "https://github.com/arnaud-lb/php-inotify";
-    maintainers = teams.php.members;
+    license = lib.licenses.php301;
+    maintainers = lib.teams.php.members;
+    platforms = lib.platforms.linux;
   };
 }