2020-07-14 21:02:54 -07:00
|
|
|
{ stdenv, fetchurl, fetchpatch, python3 }:
|
2014-07-22 08:37:13 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-29 12:28:01 -07:00
|
|
|
pname = "libevdev";
|
2020-07-17 04:12:56 -07:00
|
|
|
version = "1.9.1";
|
2014-07-22 08:37:13 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-29 12:28:01 -07:00
|
|
|
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
|
2020-07-17 04:12:56 -07:00
|
|
|
sha256 = "1jvsphdrs1i54ccjcn6ll26jy42am7h28lbsvwa6pmxgqm43qq7m";
|
2014-07-22 08:37:13 -07:00
|
|
|
};
|
|
|
|
|
2020-02-24 16:59:03 -08:00
|
|
|
nativeBuildInputs = [ python3 ];
|
2014-07-22 08:37:13 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Wrapper library for evdev devices";
|
2020-03-05 00:53:05 -08:00
|
|
|
homepage = "http://www.freedesktop.org/software/libevdev/doc/latest/index.html";
|
2014-07-22 08:37:13 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.amorsillo ];
|
|
|
|
};
|
|
|
|
}
|