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

80 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib, python,
2013-08-27 21:10:39 +00:00
pythonPackages, pythonDBus, readline, libsndfile, udev, libical,
2014-08-25 10:45:36 +00:00
systemd, enableWiimote ? false }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2014-11-17 18:06:36 +00:00
name = "bluez-5.25";
src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
2014-11-17 18:06:36 +00:00
sha256 = "0c7xs4imwfgyx59qxbinfi403vhki1n8src1g87qlqz28lzjz9jw";
};
2013-08-27 21:10:39 +00:00
pythonPath = with pythonPackages;
[ pythonDBus pygobject pygobject3 recursivePthLoader ];
2013-08-27 21:10:39 +00:00
buildInputs =
[ pkgconfig dbus.libs glib alsaLib 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
];
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 10:45:36 +00: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 = ''
2013-08-27 21:10:39 +00:00
mkdir $out/test
cp -a test $out
pushd $out/test
for a in \
simple-agent \
test-adapter \
test-device \
test-thermometer \
list-devices \
monitor-bluetooth \
; do
2013-08-27 21:10:39 +00:00
ln -s ../test/$a $out/bin/bluez-$a
done
popd
2013-08-27 21:10:39 +00:00
wrapPythonProgramsIn $out/test "$out/test $pythonPath"
# for bluez4 compatibility for NixOS
mkdir $out/sbin
ln -s ../libexec/bluetooth/bluetoothd $out/sbin/bluetoothd
'';
2013-08-28 18:44:26 +00:00
meta = with stdenv.lib; {
homepage = http://www.bluez.org/;
2014-03-21 14:02:03 +00:00
repositories.git = https://git.kernel.org/pub/scm/bluetooth/bluez.git;
description = "Bluetooth support for Linux";
2013-08-28 18:44:26 +00:00
platforms = platforms.linux;
};
}