1{
2 lib,
3 stdenv,
4 fetchurl,
5 pkg-config,
6 python3,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "libevdev";
11 version = "1.13.4";
12
13 src = fetchurl {
14 url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
15 hash = "sha256-8Aq41CrYuQUpb6tn4TuHHxpCSDkzFRZkIQD4KtiBJ80=";
16 };
17
18 nativeBuildInputs = [
19 pkg-config
20 python3
21 ];
22
23 meta = with lib; {
24 description = "Wrapper library for evdev devices";
25 homepage = "https://www.freedesktop.org/software/libevdev/doc/latest/index.html";
26 license = licenses.mit;
27 platforms = platforms.linux;
28 };
29}