inputplug: mark broken on Darwin

This commit is contained in:
Emily 2023-08-04 06:57:38 +01:00
parent 66aedfd010
commit f01288ec4e

@ -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 ];
};
}