nixpkgs/pkgs/by-name/in/inputplug/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
944 B
Nix
Raw Normal View History

2021-08-21 18:42:02 +00:00
{ fetchCrate
, installShellFiles
, lib
, libbsd
, pkg-config
, rustPlatform
2023-08-04 05:57:38 +00:00
, stdenv
2021-08-21 18:42:02 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "inputplug";
version = "0.4.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-8Gy0h0QMcittnjuKm+atIJNsY2d6Ua29oab4fkUU+wE=";
2021-08-21 18:42:02 +00:00
};
nativeBuildInputs = [ installShellFiles pkg-config ];
buildInputs = [ libbsd ];
cargoHash = "sha256-W6LvdjR3jTf08X75wPWloLx7FUYTpboB3E5f0g75M5g=";
2021-08-21 18:42:02 +00:00
postInstall = ''
installManPage inputplug.1
'';
meta = with lib; {
description = "Monitor XInput events and run arbitrary scripts on hierarchy change events";
homepage = "https://github.com/andrewshadura/inputplug";
license = licenses.mit;
2023-08-04 05:57:38 +00:00
platforms = platforms.unix;
# `daemon(3)` is deprecated on macOS and `pidfile-rs` needs updating
broken = stdenv.hostPlatform.isDarwin;
2021-08-21 18:42:02 +00:00
maintainers = with maintainers; [ jecaro ];
2023-11-23 21:09:35 +00:00
mainProgram = "inputplug";
2021-08-21 18:42:02 +00:00
};
}