2017-09-18 19:25:02 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, dbus, glib, alsaLib,
|
2019-06-17 19:00:10 +01:00
|
|
|
python3, readline, udev, libical, systemd, fetchpatch,
|
2018-12-12 01:38:18 +00:00
|
|
|
enableWiimote ? false, enableMidi ? false, enableSixaxis ? false }:
|
2010-06-10 13:47:58 +01:00
|
|
|
|
2017-09-18 19:25:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-06 21:31:40 +01:00
|
|
|
name = "bluez-5.50";
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2009-08-05 21:29:36 +01:00
|
|
|
src = fetchurl {
|
2017-09-18 19:25:02 +01:00
|
|
|
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
|
2018-06-06 21:31:40 +01:00
|
|
|
sha256 = "048r91vx9gs5nwwbah2s0xig04nwk14c5s0vb7qmaqdvighsmz2z";
|
2009-08-05 21:29:36 +01:00
|
|
|
};
|
|
|
|
|
2018-06-03 02:37:23 +01:00
|
|
|
pythonPath = with python3.pkgs; [
|
2018-05-01 14:57:17 +01:00
|
|
|
dbus-python pygobject2 pygobject3 recursivePthLoader
|
|
|
|
];
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2017-09-27 20:23:28 +01:00
|
|
|
buildInputs = [
|
2018-06-03 02:37:23 +01:00
|
|
|
dbus glib alsaLib python3 python3.pkgs.wrapPython
|
2017-09-27 20:23:28 +01:00
|
|
|
readline udev libical
|
|
|
|
];
|
2009-08-05 21:29:36 +01:00
|
|
|
|
2018-05-01 14:57:17 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2017-09-18 19:25:02 +01:00
|
|
|
outputs = [ "out" "dev" "test" ];
|
|
|
|
|
2019-06-17 19:00:10 +01:00
|
|
|
patches = [
|
|
|
|
./bluez-5.37-obexd_without_systemd-1.patch
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.kernel.org/pub/scm/bluetooth/bluez.git/patch/?id=1880b299086659844889cdaf687133aca5eaf102";
|
|
|
|
name = "CVE-2018-10910-1.patch";
|
|
|
|
sha256 = "17spsxza27gif8jpxk7360ynvwii1llfdfwg35rwywjjmvww0qj4";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.kernel.org/pub/scm/bluetooth/bluez.git/patch/?id=9213ff7642a33aa481e3c61989ad60f7985b9984";
|
|
|
|
name = "CVE-2018-10910-2.patch";
|
|
|
|
sha256 = "0j7klbhym64yhn86dbsmybqmwx47bviyyhx931izl1p29z2mg8hn";
|
|
|
|
})
|
|
|
|
];
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2018-05-01 14:57:17 +01:00
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace tools/hid2hci.rules \
|
|
|
|
--replace /sbin/udevadm ${systemd}/bin/udevadm \
|
|
|
|
--replace "hid2hci " "$out/lib/udev/hid2hci "
|
|
|
|
'';
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2018-05-01 14:57:17 +01:00
|
|
|
configureFlags = (with stdenv.lib; [
|
2014-11-15 21:22:28 +00:00
|
|
|
"--localstatedir=/var"
|
2017-09-18 19:25:02 +01:00
|
|
|
"--enable-library"
|
2014-11-15 21:22:28 +00:00
|
|
|
"--enable-cups"
|
2017-09-18 19:25:02 +01:00
|
|
|
"--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"
|
2018-05-01 14:57:17 +01:00
|
|
|
] ++ optional enableWiimote [ "--enable-wiimote" ]
|
2018-12-12 01:38:18 +00:00
|
|
|
++ optional enableMidi [ "--enable-midi" ]
|
|
|
|
++ optional enableSixaxis [ "--enable-sixaxis" ]);
|
2009-08-10 19:24:20 +01:00
|
|
|
|
|
|
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
|
|
|
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
|
|
|
|
2011-07-07 18:23:05 +01:00
|
|
|
makeFlags = "rulesdir=$(out)/lib/udev/rules.d";
|
|
|
|
|
2011-05-20 23:21:34 +01:00
|
|
|
postInstall = ''
|
2017-09-27 20:23:28 +01:00
|
|
|
mkdir -p $test/{bin,test}
|
2017-09-18 19:25:02 +01:00
|
|
|
cp -a test $test
|
|
|
|
pushd $test/test
|
|
|
|
for a in \
|
|
|
|
simple-agent \
|
|
|
|
test-adapter \
|
|
|
|
test-device \
|
|
|
|
test-thermometer \
|
|
|
|
list-devices \
|
|
|
|
monitor-bluetooth \
|
|
|
|
; do
|
2017-09-27 20:23:28 +01:00
|
|
|
ln -s ../test/$a $test/bin/bluez-$a
|
2011-05-20 23:21:34 +01:00
|
|
|
done
|
|
|
|
popd
|
2017-09-18 19:25:02 +01: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
|
2018-05-01 14:57:17 +01:00
|
|
|
|
|
|
|
# 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
|
2011-05-20 23:21:34 +01:00
|
|
|
'';
|
|
|
|
|
2017-09-18 19:25:02 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2009-08-05 21:29:36 +01:00
|
|
|
description = "Bluetooth support for Linux";
|
2018-05-01 14:57:17 +01:00
|
|
|
homepage = http://www.bluez.org/;
|
|
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
2017-09-18 19:25:02 +01:00
|
|
|
platforms = platforms.linux;
|
2018-05-01 14:57:17 +01:00
|
|
|
repositories.git = https://git.kernel.org/pub/scm/bluetooth/bluez.git;
|
2009-08-05 21:29:36 +01:00
|
|
|
};
|
|
|
|
}
|