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
55 lines
996 B
Nix
55 lines
996 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
cmake,
|
|
extra-cmake-modules,
|
|
pkg-config,
|
|
SDL2,
|
|
qttools,
|
|
xorg,
|
|
fetchFromGitHub,
|
|
itstool,
|
|
udevCheckHook,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "antimicrox";
|
|
version = "3.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AntiMicroX";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-ZIHhgyOpabWkdFZoha/Hj/1d8/b6qVolE6dn0xAFZVw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
pkg-config
|
|
itstool
|
|
udevCheckHook
|
|
];
|
|
buildInputs = [
|
|
SDL2
|
|
qttools
|
|
xorg.libXtst
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "/usr/lib/udev/rules.d/" "$out/lib/udev/rules.d/"
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "GUI for mapping keyboard and mouse controls to a gamepad";
|
|
inherit (src.meta) homepage;
|
|
maintainers = with maintainers; [ sbruder ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = with platforms; linux;
|
|
mainProgram = "antimicrox";
|
|
};
|
|
}
|