mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
10c9ec68ac
bluez: add tools to output that we were building anyway
96 lines
2.9 KiB
Nix
96 lines
2.9 KiB
Nix
{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib,
|
|
pythonPackages, readline, udev, libical,
|
|
systemd, enableWiimote ? false, enableMidi ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bluez-5.49";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
|
|
sha256 = "15ffsaz7l3fgdg03l7g1xx9jw7xgs6pc548zxqsxawsca5x1sc1k";
|
|
};
|
|
|
|
pythonPath = with pythonPackages; [
|
|
dbus-python pygobject2 pygobject3 recursivePthLoader
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus glib alsaLib pythonPackages.python pythonPackages.wrapPython
|
|
readline udev libical
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
outputs = [ "out" "dev" "test" ];
|
|
|
|
patches = [ ./bluez-5.37-obexd_without_systemd-1.patch ];
|
|
|
|
postConfigure = ''
|
|
substituteInPlace tools/hid2hci.rules \
|
|
--replace /sbin/udevadm ${systemd}/bin/udevadm \
|
|
--replace "hid2hci " "$out/lib/udev/hid2hci "
|
|
'';
|
|
|
|
configureFlags = (with stdenv.lib; [
|
|
"--localstatedir=/var"
|
|
"--enable-library"
|
|
"--enable-cups"
|
|
"--enable-pie"
|
|
"--with-dbusconfdir=$(out)/etc"
|
|
"--with-dbussystembusdir=$(out)/share/dbus-1/system-services"
|
|
"--with-dbussessionbusdir=$(out)/share/dbus-1/services"
|
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system"
|
|
"--with-systemduserunitdir=$(out)/etc/systemd/user"
|
|
"--with-udevdir=$(out)/lib/udev"
|
|
] ++ optional enableWiimote [ "--enable-wiimote" ]
|
|
++ optional enableMidi [ "--enable-midi" ]);
|
|
|
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
|
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
|
|
|
makeFlags = "rulesdir=$(out)/lib/udev/rules.d";
|
|
|
|
postInstall = ''
|
|
mkdir -p $test/{bin,test}
|
|
cp -a test $test
|
|
pushd $test/test
|
|
for a in \
|
|
simple-agent \
|
|
test-adapter \
|
|
test-device \
|
|
test-thermometer \
|
|
list-devices \
|
|
monitor-bluetooth \
|
|
; do
|
|
ln -s ../test/$a $test/bin/bluez-$a
|
|
done
|
|
popd
|
|
wrapPythonProgramsIn $test/test "$test/test $pythonPath"
|
|
|
|
# for bluez4 compatibility for NixOS
|
|
mkdir $out/sbin
|
|
ln -s ../libexec/bluetooth/bluetoothd $out/sbin/bluetoothd
|
|
ln -s ../libexec/bluetooth/obexd $out/sbin/obexd
|
|
|
|
# Add extra configuration
|
|
mkdir $out/etc/bluetooth
|
|
ln -s /etc/bluetooth/main.conf $out/etc/bluetooth/main.conf
|
|
|
|
# Add missing tools, ref https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/bluez
|
|
for files in `find tools/ -type f -perm -755`; do
|
|
filename=$(basename $files)
|
|
install -Dm755 tools/$filename $out/bin/$filename
|
|
done
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Bluetooth support for Linux";
|
|
homepage = http://www.bluez.org/;
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
|
platforms = platforms.linux;
|
|
repositories.git = https://git.kernel.org/pub/scm/bluetooth/bluez.git;
|
|
};
|
|
}
|