nixpkgs/pkgs/os-specific/linux/bluez/bluez5.nix

92 lines
2.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib,
pythonPackages, readline, libsndfile, udev, libical,
2014-08-25 12:45:36 +02:00
systemd, enableWiimote ? false }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2016-11-12 18:12:10 +01:00
name = "bluez-5.43";
2016-04-25 02:17:42 +02:00
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
2016-11-12 18:12:10 +01:00
sha256 = "05cdnpz0w2lwq2x5ba87q1h2wgb4lfnpbnbh6p7499hx59fw1j8n";
};
2013-08-27 23:10:39 +02:00
pythonPath = with pythonPackages;
[ dbus pygobject2 pygobject3 recursivePthLoader ];
2013-08-27 23:10:39 +02:00
buildInputs =
[ pkgconfig dbus glib alsaLib pythonPackages.python pythonPackages.wrapPython
readline libsndfile udev libical
# Disables GStreamer; not clear what it gains us other than a
# zillion extra dependencies.
# gstreamer gst-plugins-base
];
outputs = [ "out" "dev" "test" ];
2016-04-25 02:17:42 +02:00
patches = [ ./bluez-5.37-obexd_without_systemd-1.patch ];
2016-04-25 02:17:42 +02:00
preConfigure = ''
substituteInPlace tools/hid2hci.rules --replace /sbin/udevadm ${systemd}/bin/udevadm
substituteInPlace tools/hid2hci.rules --replace "hid2hci " "$out/lib/udev/hid2hci "
'';
configureFlags = [
"--localstatedir=/var"
"--enable-library"
"--enable-cups"
"--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"
2014-08-25 12:45:36 +02:00
] ++
stdenv.lib.optional enableWiimote [ "--enable-wiimote" ];
# Work around `make install' trying to create /var/lib/bluetooth.
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
makeFlags = "rulesdir=$(out)/lib/udev/rules.d";
# FIXME: Move these into a separate package to prevent Bluez from
# depending on Python etc.
postInstall = ''
cp ./attrib/gatttool $out/bin/gatttool
2016-04-25 02:17:42 +02:00
mkdir -p $test/test
cp -a test $test
pushd $test/test
for a in \
simple-agent \
test-adapter \
test-device \
test-thermometer \
list-devices \
monitor-bluetooth \
; do
2013-08-27 23:10:39 +02:00
ln -s ../test/$a $out/bin/bluez-$a
done
popd
2016-04-25 02:17:42 +02:00
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
'';
2016-02-12 19:26:11 +01:00
enableParallelBuilding = true;
2013-08-28 20:44:26 +02:00
meta = with stdenv.lib; {
homepage = http://www.bluez.org/;
2014-03-21 15:02:03 +01:00
repositories.git = https://git.kernel.org/pub/scm/bluetooth/bluez.git;
description = "Bluetooth support for Linux";
2013-08-28 20:44:26 +02:00
platforms = platforms.linux;
};
}