bluez: fix hid devices

This commit is contained in:
Sandro Jäckel 2024-07-04 11:40:41 +02:00
parent 2d53d43c1c
commit d0eebe82f6
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -5,6 +5,7 @@
, docutils
, ell
, enableExperimental ? false
, fetchpatch
, fetchurl
, glib
, json_c
@ -25,10 +26,16 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-VeLGRZCa2C2DPELOhewgQ04O8AcJQbHqtz+s3SQLvWM=";
};
patches =
patches = [
# hog-lib: Fix passing wrong parameters to bt_uhid_get_report_reply
(fetchpatch {
url = "https://github.com/bluez/bluez/commit/5ebaeab4164f80539904b9a520d9b7a8307e06e2.patch";
hash = "sha256-f1A8DmRPfm+zid4XMj1zsfcLZ0WTEax3YPbydKZF9RE=";
})
]
# Disable one failing test with musl libc, also seen by alpine
# https://github.com/bluez/bluez/issues/726
lib.optional (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64)
++ lib.optional (stdenv.hostPlatform.isMusl && stdenv.hostPlatform.isx86_64)
(fetchurl {
url = "https://git.alpinelinux.org/aports/plain/main/bluez/disable_aics_unit_testcases.patch?id=8e96f7faf01a45f0ad8449c1cd825db63a8dfd48";
hash = "sha256-1PJkipqBO3qxxOqRFQKfpWlne1kzTCgtnTFYI1cFQt4=";