Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9910bc0713cb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ccaad56a32c6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 13, 2020

  1. bluez-alsa: 1.4.0 -> 2.0.0

    Also add myself to maintainers
    lheckemann committed Jan 13, 2020
    Copy the full SHA
    24c1660 View commit details

Commits on Feb 9, 2020

  1. Merge pull request #77635 from lheckemann/bump-bluez-alsa

    bluez-alsa: 1.4.0 -> 2.0.0
    lheckemann authored Feb 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ccaad56 View commit details
Showing with 6 additions and 7 deletions.
  1. +6 −7 pkgs/tools/bluetooth/bluez-alsa/default.nix
13 changes: 6 additions & 7 deletions pkgs/tools/bluetooth/bluez-alsa/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
, alsaLib, bluez, glib, sbc
, alsaLib, bluez, glib, sbc, dbus

# optional, but useful utils
, readline, libbsd, ncurses
@@ -13,32 +13,31 @@ with stdenv.lib;

stdenv.mkDerivation rec {
pname = "bluez-alsa";
version = "1.4.0";
version = "2.0.0";

src = fetchFromGitHub {
owner = "Arkq";
repo = "bluez-alsa";
rev = "v${version}";
sha256 = "12kc2896rbir8viywd6bjwcklkwf46j4svh9viryn6kmk084nb49";
sha256 = "08mppgnjf1j2733bk9yf0cny6rfxxwiys0s62lz2zd2lpdl6d9lz";
};

nativeBuildInputs = [ pkgconfig autoreconfHook ];

buildInputs = [
alsaLib bluez glib sbc
alsaLib bluez glib sbc dbus
readline libbsd ncurses
]
++ optional aacSupport fdk_aac;

configureFlags = [
"--with-alsaplugindir=\$out/lib/alsa-lib"
"--with-dbusconfdir=\$out/etc/dbus-1"
"--enable-rfcomm"
"--enable-hcitop"
]
++ optional aacSupport "--enable-aac";

doCheck = false; # fails 1 of 3 tests, needs access to ALSA

meta = {
description = "Bluez 5 Bluetooth Audio ALSA Backend";
longDescription = ''
@@ -63,7 +62,7 @@ stdenv.mkDerivation rec {
homepage = src.meta.homepage;
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.oxij ];
maintainers = [ maintainers.oxij maintainers.lheckemann ];
};

}