2021-03-25 12:45:03 +01:00
|
|
|
{ lib, stdenv, fetchgit, autoreconfHook, pkg-config, python3Packages
|
2018-07-21 02:44:44 +02:00
|
|
|
, libevdev
|
2014-07-22 17:37:13 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "evemu";
|
2017-08-24 20:26:51 +02:00
|
|
|
version = "2.6.0";
|
2014-07-22 17:37:13 +02:00
|
|
|
|
|
|
|
# We could have downloaded a release tarball from cgit, but it changes hash
|
|
|
|
# each time it is downloaded :/
|
|
|
|
src = fetchgit {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "git://git.freedesktop.org/git/evemu";
|
2014-07-22 17:37:13 +02:00
|
|
|
rev = "refs/tags/v${version}";
|
2017-08-24 20:26:51 +02:00
|
|
|
sha256 = "1m38fxwy2s82vb2qm9aqxinws12akmqqq7q66is931lc3awqkbah";
|
2014-07-22 17:37:13 +02:00
|
|
|
};
|
|
|
|
|
2021-03-25 12:45:03 +01:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook python3Packages.python ];
|
2014-07-22 17:37:13 +02:00
|
|
|
|
2021-03-25 12:45:03 +01:00
|
|
|
buildInputs = [ python3Packages.evdev libevdev ];
|
|
|
|
|
|
|
|
strictDeps = true;
|
2014-07-22 17:37:13 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2014-07-22 17:37:13 +02:00
|
|
|
description = "Records and replays device descriptions and events to emulate input devices through the kernel's input system";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Evemu/";
|
|
|
|
repositories.git = "git://git.freedesktop.org/git/evemu";
|
2014-07-22 17:37:13 +02:00
|
|
|
license = licenses.gpl2;
|
2014-07-22 23:45:18 +02:00
|
|
|
maintainers = [ maintainers.amorsillo ];
|
2016-07-05 00:50:51 +02:00
|
|
|
platforms = platforms.linux;
|
2014-07-22 17:37:13 +02:00
|
|
|
};
|
|
|
|
}
|