tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
inputplug: mark broken on Darwin
Emily
2 years ago
f01288ec
66aedfd0
+4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
X11
inputplug
default.nix
+4
pkgs/tools/X11/inputplug/default.nix
···
4
4
, libbsd
5
5
, pkg-config
6
6
, rustPlatform
7
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
33
+
platforms = platforms.unix;
34
34
+
# `daemon(3)` is deprecated on macOS and `pidfile-rs` needs updating
35
35
+
broken = stdenv.isDarwin;
32
36
maintainers = with maintainers; [ jecaro ];
33
37
};
34
38
}