about summary refs log tree commit diff
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2023-08-04 06:57:38 +0100
committerEmily <vcs@emily.moe>2023-08-04 07:53:53 +0100
commitf01288ec4ee16d0410ab32e2a72bfbc3966b6bd7 (patch)
tree56b33b1c7d6bb205a7a23cf0bdb8221029298e05 /pkgs/tools/X11
parent66aedfd010204949cb225cf749be08cb13ce1813 (diff)
inputplug: mark broken on Darwin
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 ];
   };
 }