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