bluez-alsa: 1.4.0 -> 2.0.0

Also add myself to maintainers
This commit is contained in:
Linus Heckemann 2020-01-13 19:20:29 +01:00
parent 100012e55b
commit 24c1660d28
1 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, alsaLib, bluez, glib, sbc , alsaLib, bluez, glib, sbc, dbus
# optional, but useful utils # optional, but useful utils
, readline, libbsd, ncurses , readline, libbsd, ncurses
@ -13,32 +13,31 @@ with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "bluez-alsa"; pname = "bluez-alsa";
version = "1.4.0"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Arkq"; owner = "Arkq";
repo = "bluez-alsa"; repo = "bluez-alsa";
rev = "v${version}"; rev = "v${version}";
sha256 = "12kc2896rbir8viywd6bjwcklkwf46j4svh9viryn6kmk084nb49"; sha256 = "08mppgnjf1j2733bk9yf0cny6rfxxwiys0s62lz2zd2lpdl6d9lz";
}; };
nativeBuildInputs = [ pkgconfig autoreconfHook ]; nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ buildInputs = [
alsaLib bluez glib sbc alsaLib bluez glib sbc dbus
readline libbsd ncurses readline libbsd ncurses
] ]
++ optional aacSupport fdk_aac; ++ optional aacSupport fdk_aac;
configureFlags = [ configureFlags = [
"--with-alsaplugindir=\$out/lib/alsa-lib" "--with-alsaplugindir=\$out/lib/alsa-lib"
"--with-dbusconfdir=\$out/etc/dbus-1"
"--enable-rfcomm" "--enable-rfcomm"
"--enable-hcitop" "--enable-hcitop"
] ]
++ optional aacSupport "--enable-aac"; ++ optional aacSupport "--enable-aac";
doCheck = false; # fails 1 of 3 tests, needs access to ALSA
meta = { meta = {
description = "Bluez 5 Bluetooth Audio ALSA Backend"; description = "Bluez 5 Bluetooth Audio ALSA Backend";
longDescription = '' longDescription = ''
@ -63,7 +62,7 @@ stdenv.mkDerivation rec {
homepage = src.meta.homepage; homepage = src.meta.homepage;
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.oxij ]; maintainers = [ maintainers.oxij maintainers.lheckemann ];
}; };
} }