biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / evemu / default.nix
blob6cb349c546b9b683a593b0905345c2f6ec16d1f9
1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config, python3Packages
2 , libevdev
3 }:
5 stdenv.mkDerivation rec {
6   pname = "evemu";
7   version = "2.7.0";
9   # We could have downloaded a release tarball from cgit, but it changes hash
10   # each time it is downloaded :/
11   src = fetchgit {
12     url = "git://git.freedesktop.org/git/evemu";
13     rev = "refs/tags/v${version}";
14     sha256 = "sha256-SQDaARuqBMBVlUz+Nw6mjdxaZfVOukmzTlIqy8U2rus=";
15   };
17   nativeBuildInputs = [ pkg-config autoreconfHook python3Packages.python ];
19   buildInputs = [ python3Packages.evdev libevdev ];
21   strictDeps = true;
23   meta = with lib; {
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;
29   };