summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/bluez-alsa
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2020-04-25 11:35:19 +0200
committerLinus Heckemann <git@sphalerite.org>2020-04-25 19:10:04 +0200
commit3605fc7a7902f191592979b232b63f0cec2aa043 (patch)
treeb5b5b28f72ff8796f3a19f9b1ed982fd8071f644 /pkgs/tools/bluetooth/bluez-alsa
parent22a3bf9fb9edad917fb6cd1066d58b5e426ee975 (diff)
downloadnixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar.gz
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar.bz2
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar.lz
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar.xz
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.tar.zst
nixpkgs-3605fc7a7902f191592979b232b63f0cec2aa043.zip
bluez-alsa: fix installation of D-Bus policy and alsa config
This allows granting bluez-alsa access to the systemwide D-bus name
Diffstat (limited to 'pkgs/tools/bluetooth/bluez-alsa')
-rw-r--r--pkgs/tools/bluetooth/bluez-alsa/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/bluetooth/bluez-alsa/default.nix b/pkgs/tools/bluetooth/bluez-alsa/default.nix
index 326366f4f0d..09f5471de48 100644
--- a/pkgs/tools/bluetooth/bluez-alsa/default.nix
+++ b/pkgs/tools/bluetooth/bluez-alsa/default.nix
@@ -31,8 +31,8 @@ stdenv.mkDerivation rec {
   ++ optional aacSupport fdk_aac;
 
   configureFlags = [
-    "--with-alsaplugindir=\$out/lib/alsa-lib"
-    "--with-dbusconfdir=\$out/etc/dbus-1"
+    "--with-alsaplugindir=${placeholder "out"}/lib/alsa-lib"
+    "--with-dbusconfdir=${placeholder "out"}/share/dbus-1/system.d"
     "--enable-rfcomm"
     "--enable-hcitop"
   ]