Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
evdev,
pyudev,
udevCheckHook,
}:
buildPythonPackage rec {
pname = "persistent-evdev";
version = "unstable-2022-05-07";
format = "other";
src = fetchFromGitHub {
owner = "aiberia";
repo = pname;
rev = "52bf246464e09ef4e6f2e1877feccc7b9feba164";
sha256 = "d0i6DL/qgDELet4ew2lyVqzd9TApivRxL3zA3dcsQXY=";
};
propagatedBuildInputs = [
evdev
pyudev
];
nativeBuildInputs = [
udevCheckHook
];
doInstallCheck = true;
postPatch = ''
patchShebangs bin/persistent-evdev.py
'';
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp bin/persistent-evdev.py $out/bin
mkdir -p $out/etc/udev/rules.d
cp udev/60-persistent-input-uinput.rules $out/etc/udev/rules.d
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/aiberia/persistent-evdev";
description = "Persistent virtual input devices for qemu/libvirt/evdev hotplug support";
license = licenses.mit;
maintainers = [ maintainers.lodi ];
platforms = platforms.linux;
mainProgram = "persistent-evdev.py";
};
}