Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

inputplug: mark broken on Darwin

Emily f01288ec 66aedfd0

+4
+4
pkgs/tools/X11/inputplug/default.nix
··· 4 4 , libbsd 5 5 , pkg-config 6 6 , rustPlatform 7 + , stdenv 7 8 }: 8 9 9 10 rustPlatform.buildRustPackage rec { ··· 29 30 description = "Monitor XInput events and run arbitrary scripts on hierarchy change events"; 30 31 homepage = "https://github.com/andrewshadura/inputplug"; 31 32 license = licenses.mit; 33 + platforms = platforms.unix; 34 + # `daemon(3)` is deprecated on macOS and `pidfile-rs` needs updating 35 + broken = stdenv.isDarwin; 32 36 maintainers = with maintainers; [ jecaro ]; 33 37 }; 34 38 }