gnu: bluez-alsa: Update to 2.0.0.

* gnu/packages/audio.scm (bluez-alsa): Update to 2.0.0.
[source]: Use git-file-name.
[arguments]: Override ALSA plugin directory and dbus configuration directory.
[inputs]: Add dbus.
This commit is contained in:
Ricardo Wurmus 2019-12-13 22:53:19 +01:00
parent 1c2e3d7d31
commit 9f9520a129
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3331,7 +3331,7 @@ (define-public python2-pyalsaaudio
(define-public bluez-alsa (define-public bluez-alsa
(package (package
(name "bluez-alsa") (name "bluez-alsa")
(version "1.2.0") (version "2.0.0")
(source (origin (source (origin
;; The tarballs are mere snapshots and don't contain a ;; The tarballs are mere snapshots and don't contain a
;; bootstrapped build system. ;; bootstrapped build system.
@ -3339,11 +3339,19 @@ (define-public bluez-alsa
(uri (git-reference (uri (git-reference
(url "https://github.com/Arkq/bluez-alsa.git") (url "https://github.com/Arkq/bluez-alsa.git")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (string-append name "-" version "-checkout")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1qinf41wl2ihx54zmmhanycihwjkn7dn1cicq6pp4rqbiv79b95x")))) "08mppgnjf1j2733bk9yf0cny6rfxxwiys0s62lz2zd2lpdl6d9lz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments
`(#:configure-flags
(list (string-append "--with-alsaplugindir="
(assoc-ref %outputs "out")
"/lib/alsa-lib")
(string-append "--with-dbusconfdir="
(assoc-ref %outputs "out")
"/etc/dbus-1"))))
(native-inputs (native-inputs
`(("autoconf" ,autoconf) `(("autoconf" ,autoconf)
("automake" ,automake) ("automake" ,automake)
@ -3352,6 +3360,7 @@ (define-public bluez-alsa
(inputs (inputs
`(("alsa-lib" ,alsa-lib) `(("alsa-lib" ,alsa-lib)
("bluez" ,bluez) ("bluez" ,bluez)
("dbus" ,dbus)
("glib" ,glib) ("glib" ,glib)
("libbsd" ,libbsd) ("libbsd" ,libbsd)
("ncurses" ,ncurses) ("ncurses" ,ncurses)