Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
cmake,
|
|
pkg-config,
|
|
libX11,
|
|
libxcb,
|
|
libxkbcommon,
|
|
xinput,
|
|
xorg,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libuiohook";
|
|
version = "1.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kwhat";
|
|
repo = "libuiohook";
|
|
rev = version;
|
|
sha256 = "1qlz55fp4i9dd8sdwmy1m8i4i1jy1s09cpmlxzrgf7v34w72ncm7";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) (
|
|
[
|
|
libX11
|
|
libxcb
|
|
libxkbcommon
|
|
xinput
|
|
]
|
|
++ (with xorg; [
|
|
libXau
|
|
libXdmcp
|
|
libXi
|
|
libXinerama
|
|
libXt
|
|
libXtst
|
|
libXext
|
|
libxkbfile
|
|
])
|
|
);
|
|
|
|
outputs = [
|
|
"out"
|
|
"test"
|
|
];
|
|
|
|
# We build the tests, but they're only installed when using the "test" output.
|
|
# This will produce a "uiohook_tests" binary which can be run to test the
|
|
# functionality of the library on the current system.
|
|
# Running the test binary requires a running X11 session.
|
|
cmakeFlags = [
|
|
"-DENABLE_TEST:BOOL=ON"
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $test/share
|
|
cp ./uiohook_tests $test/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "C library to provide global keyboard and mouse hooks from userland";
|
|
homepage = "https://github.com/kwhat/libuiohook";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ anoa ];
|
|
};
|
|
|
|
passthru.tests.libuiohook = nixosTests.libuiohook;
|
|
}
|