about summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-09-16 15:45:14 +0200
committerVladimír Čunát <v@cunat.cz>2023-09-16 15:45:14 +0200
commit1713d1a232f4c7a5219d38c64837adbe9f16a6a9 (patch)
tree850016ac88cbd5668d690801532b6bd36f4936f8 /pkgs/tools/X11
parent223b83ca54ac118f7769694b09af3547d5c39224 (diff)
parent935c3fe4062fbf52f70b0ddc263f70d1a37c5edb (diff)
Merge #247082: {libbsd,libmd}: update
...into staging
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/inputplug/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/X11/inputplug/default.nix b/pkgs/tools/X11/inputplug/default.nix
index 031b73994b62d..e6bf334cf4c0a 100644
--- a/pkgs/tools/X11/inputplug/default.nix
+++ b/pkgs/tools/X11/inputplug/default.nix
@@ -4,6 +4,7 @@
 , libbsd
 , pkg-config
 , rustPlatform
+, stdenv
 }:
 
 rustPlatform.buildRustPackage rec {
@@ -29,6 +30,9 @@ rustPlatform.buildRustPackage rec {
     description = "Monitor XInput events and run arbitrary scripts on hierarchy change events";
     homepage = "https://github.com/andrewshadura/inputplug";
     license = licenses.mit;
+    platforms = platforms.unix;
+    # `daemon(3)` is deprecated on macOS and `pidfile-rs` needs updating
+    broken = stdenv.isDarwin;
     maintainers = with maintainers; [ jecaro ];
   };
 }