me
/
guix
Archived
1
0
Fork 0

gnu: BlueZ: Update to 5.55.

* gnu/packages/linux.scm (bluez): Update to 5.55.
[arguments]: Add "--enable-hid2hci" in #:configure-flags.
master
Marius Bakke 2020-10-13 17:00:37 +02:00
parent 997abda92b
commit 069ddd9900
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 4 additions and 2 deletions

View File

@ -4640,7 +4640,7 @@ Bluetooth audio output devices like headphones or loudspeakers.")
(define-public bluez (define-public bluez
(package (package
(name "bluez") (name "bluez")
(version "5.54") (version "5.55")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -4648,7 +4648,7 @@ Bluetooth audio output devices like headphones or loudspeakers.")
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1p2ncvjz6alr9n3l5wvq2arqgc7xjs6dqyar1l9jp0z8cfgapkb8")))) "124v9s4y1s7s6klx5vlmzpk1jlr4x84ch7r7scm7x2f42dqp2qw8"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags `(#:configure-flags
@ -4657,6 +4657,8 @@ Bluetooth audio output devices like headphones or loudspeakers.")
"--localstatedir=/var" "--localstatedir=/var"
"--enable-library" "--enable-library"
"--disable-systemd" "--disable-systemd"
;; TODO: is this needed? Not installed by default since 5.55.
"--enable-hid2hci"
;; Install dbus/udev files to the correct location. ;; Install dbus/udev files to the correct location.
(string-append "--with-dbusconfdir=" out "/etc") (string-append "--with-dbusconfdir=" out "/etc")
(string-append "--with-udevdir=" out "/lib/udev"))) (string-append "--with-udevdir=" out "/lib/udev")))