mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-23 21:17:11 -05:00
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:
parent
1c2e3d7d31
commit
9f9520a129
1 changed files with 12 additions and 3 deletions
|
@ -3331,7 +3331,7 @@ (define-public python2-pyalsaaudio
|
|||
(define-public bluez-alsa
|
||||
(package
|
||||
(name "bluez-alsa")
|
||||
(version "1.2.0")
|
||||
(version "2.0.0")
|
||||
(source (origin
|
||||
;; The tarballs are mere snapshots and don't contain a
|
||||
;; bootstrapped build system.
|
||||
|
@ -3339,11 +3339,19 @@ (define-public bluez-alsa
|
|||
(uri (git-reference
|
||||
(url "https://github.com/Arkq/bluez-alsa.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1qinf41wl2ihx54zmmhanycihwjkn7dn1cicq6pp4rqbiv79b95x"))))
|
||||
"08mppgnjf1j2733bk9yf0cny6rfxxwiys0s62lz2zd2lpdl6d9lz"))))
|
||||
(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
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
|
@ -3352,6 +3360,7 @@ (define-public bluez-alsa
|
|||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
("bluez" ,bluez)
|
||||
("dbus" ,dbus)
|
||||
("glib" ,glib)
|
||||
("libbsd" ,libbsd)
|
||||
("ncurses" ,ncurses)
|
||||
|
|
Loading…
Reference in a new issue