gnu: Add bluez.
* gnu/packages/linux.scm (bluez): New variable.
This commit is contained in:
parent
e5326da4f4
commit
eb7c43c387
1 changed files with 38 additions and 0 deletions
|
@ -55,6 +55,8 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages docbook)
|
#:use-module (gnu packages docbook)
|
||||||
#:use-module (gnu packages asciidoc)
|
#:use-module (gnu packages asciidoc)
|
||||||
|
#:use-module (gnu packages readline)
|
||||||
|
#:use-module (gnu packages calendar)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
@ -2161,3 +2163,39 @@ arrays when needed.")
|
||||||
system calls, important for the performance of databases and other advanced
|
system calls, important for the performance of databases and other advanced
|
||||||
applications.")
|
applications.")
|
||||||
(license lgpl2.1+)))
|
(license lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public bluez
|
||||||
|
(package
|
||||||
|
(name "bluez")
|
||||||
|
(version "5.30")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://www.kernel.org/pub/linux/bluetooth/bluez-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0b1qbnq1xzcdw5rajg9yyg31bf21jnff0n6gnf1snz89bbdllfhy"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags
|
||||||
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
|
(list "--disable-systemd"
|
||||||
|
;; Install dbus/udev files to the correct location.
|
||||||
|
(string-append "--with-dbusconfdir=" out "/etc")
|
||||||
|
(string-append "--with-udevdir=" out "/lib/udev")))))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("gettext" ,gnu-gettext)))
|
||||||
|
(inputs
|
||||||
|
`(("glib" ,glib)
|
||||||
|
("dbus" ,dbus)
|
||||||
|
("eudev" ,eudev)
|
||||||
|
("libical" ,libical)
|
||||||
|
("readline" ,readline)))
|
||||||
|
(home-page "http://www.bluez.org/")
|
||||||
|
(synopsis "Linux Bluetooth protocol stack")
|
||||||
|
(description
|
||||||
|
"BlueZ provides support for the core Bluetooth layers and protocols. It
|
||||||
|
is flexible, efficient and uses a modular implementation.")
|
||||||
|
(license gpl2+)))
|
||||||
|
|
Reference in a new issue