1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config, python3Packages
5 stdenv.mkDerivation rec {
9 # We could have downloaded a release tarball from cgit, but it changes hash
10 # each time it is downloaded :/
12 url = "git://git.freedesktop.org/git/evemu";
13 rev = "refs/tags/v${version}";
14 sha256 = "sha256-SQDaARuqBMBVlUz+Nw6mjdxaZfVOukmzTlIqy8U2rus=";
17 nativeBuildInputs = [ pkg-config autoreconfHook python3Packages.python ];
19 buildInputs = [ python3Packages.evdev libevdev ];
24 description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system";
25 homepage = "https://www.freedesktop.org/wiki/Evemu/";
26 license = with licenses; [ lgpl3Only gpl3Only ];
27 maintainers = [ maintainers.amorsillo ];
28 platforms = platforms.linux;