2019-12-08 20:53:49 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
2022-04-25 05:52:08 +02:00
|
|
|
, fetchpatch
|
2021-06-10 04:57:09 +02:00
|
|
|
, alsa-lib
|
2019-12-08 20:53:49 +01:00
|
|
|
, dbus
|
2021-06-18 11:20:07 +02:00
|
|
|
, ell
|
2019-12-08 20:53:49 +01:00
|
|
|
, glib
|
|
|
|
, json_c
|
|
|
|
, libical
|
2021-06-17 06:38:07 +02:00
|
|
|
, docutils
|
2021-01-19 07:50:56 +01:00
|
|
|
, pkg-config
|
2019-12-08 20:53:49 +01:00
|
|
|
, python3
|
|
|
|
, readline
|
|
|
|
, systemd
|
|
|
|
, udev
|
2021-11-26 11:47:14 +01:00
|
|
|
, withExperimental ? false
|
2020-03-07 23:08:58 +01:00
|
|
|
}: let
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
|
|
dbus-python
|
|
|
|
pygobject3
|
|
|
|
recursivePthLoader
|
|
|
|
];
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-12-08 20:53:49 +01:00
|
|
|
pname = "bluez";
|
2022-03-23 17:09:16 +01:00
|
|
|
version = "5.64";
|
2017-09-18 20:25:02 +02:00
|
|
|
|
2009-08-05 22:29:36 +02:00
|
|
|
src = fetchurl {
|
2019-12-08 20:53:49 +01:00
|
|
|
url = "mirror://kernel/linux/bluetooth/${pname}-${version}.tar.xz";
|
2022-03-23 17:09:16 +01:00
|
|
|
sha256 = "sha256-rkN+ZbazBwwZi8WwEJ/pzeueqjhzgOIHL53mX+ih3jQ=";
|
2009-08-05 22:29:36 +02:00
|
|
|
};
|
|
|
|
|
2017-09-27 21:23:28 +02:00
|
|
|
buildInputs = [
|
2021-06-10 04:57:09 +02:00
|
|
|
alsa-lib
|
2019-12-08 20:53:49 +01:00
|
|
|
dbus
|
2021-06-18 11:20:07 +02:00
|
|
|
ell
|
2019-12-08 20:53:49 +01:00
|
|
|
glib
|
|
|
|
json_c
|
|
|
|
libical
|
|
|
|
python3
|
|
|
|
readline
|
|
|
|
udev
|
|
|
|
];
|
2009-08-05 22:29:36 +02:00
|
|
|
|
2019-12-08 20:53:49 +01:00
|
|
|
nativeBuildInputs = [
|
2021-06-17 06:38:07 +02:00
|
|
|
docutils
|
2021-01-19 07:50:56 +01:00
|
|
|
pkg-config
|
2019-12-08 20:53:49 +01:00
|
|
|
python3.pkgs.wrapPython
|
|
|
|
];
|
2018-05-01 15:57:17 +02:00
|
|
|
|
2020-03-07 23:08:58 +01:00
|
|
|
outputs = [ "out" "dev" ] ++ lib.optional doCheck "test";
|
2017-09-18 20:25:02 +02:00
|
|
|
|
2022-04-25 05:52:08 +02:00
|
|
|
patches = [
|
|
|
|
# https://github.com/bluez/bluez/commit/0905a06410d4a5189f0be81e25eb3c3e8a2199c5
|
|
|
|
# which fixes https://github.com/bluez/bluez/issues/329
|
|
|
|
# and is already merged upstream and not yet in a release.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "StateDirectory_and_ConfigurationDirectory.patch";
|
|
|
|
url = "https://github.com/bluez/bluez/commit/0905a06410d4a5189f0be81e25eb3c3e8a2199c5.patch";
|
|
|
|
sha256 = "sha256-MI6yPTiDLHsSTjLvNqtWnuy2xUMYpSat1WhMbeoedSM=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-12-08 20:53:49 +01:00
|
|
|
postPatch = ''
|
2018-05-01 15:57:17 +02:00
|
|
|
substituteInPlace tools/hid2hci.rules \
|
|
|
|
--replace /sbin/udevadm ${systemd}/bin/udevadm \
|
|
|
|
--replace "hid2hci " "$out/lib/udev/hid2hci "
|
2021-05-14 18:36:36 +02:00
|
|
|
# Disable some tests:
|
|
|
|
# - test-mesh-crypto depends on the following kernel settings:
|
|
|
|
# CONFIG_CRYPTO_[USER|USER_API|USER_API_AEAD|USER_API_HASH|AES|CCM|AEAD|CMAC]
|
|
|
|
if [[ ! -f unit/test-mesh-crypto.c ]]; then echo "unit/test-mesh-crypto.c no longer exists"; false; fi
|
|
|
|
echo 'int main() { return 77; }' > unit/test-mesh-crypto.c
|
2018-05-01 15:57:17 +02:00
|
|
|
'';
|
2017-09-18 20:25:02 +02:00
|
|
|
|
2019-12-08 20:53:49 +01:00
|
|
|
configureFlags = [
|
2014-11-15 22:22:28 +01:00
|
|
|
"--localstatedir=/var"
|
2017-09-18 20:25:02 +02:00
|
|
|
"--enable-library"
|
2014-11-15 22:22:28 +01:00
|
|
|
"--enable-cups"
|
2017-09-18 20:25:02 +02:00
|
|
|
"--enable-pie"
|
2021-06-18 11:20:07 +02:00
|
|
|
"--enable-external-ell"
|
2019-09-16 03:53:43 +02:00
|
|
|
"--with-dbusconfdir=${placeholder "out"}/share"
|
|
|
|
"--with-dbussystembusdir=${placeholder "out"}/share/dbus-1/system-services"
|
|
|
|
"--with-dbussessionbusdir=${placeholder "out"}/share/dbus-1/services"
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
|
|
"--with-systemduserunitdir=${placeholder "out"}/etc/systemd/user"
|
|
|
|
"--with-udevdir=${placeholder "out"}/lib/udev"
|
2019-12-08 20:53:49 +01:00
|
|
|
"--enable-health"
|
|
|
|
"--enable-mesh"
|
|
|
|
"--enable-midi"
|
|
|
|
"--enable-nfc"
|
|
|
|
"--enable-sap"
|
|
|
|
"--enable-sixaxis"
|
2021-08-15 08:39:30 +02:00
|
|
|
"--enable-btpclient"
|
|
|
|
"--enable-hid2hci"
|
|
|
|
"--enable-logger"
|
|
|
|
|
|
|
|
# To provide ciptool, sdptool, and rfcomm (unmaintained)
|
|
|
|
# superseded by new D-Bus APIs
|
|
|
|
"--enable-deprecated"
|
2021-11-26 11:47:14 +01:00
|
|
|
] ++ lib.optional withExperimental "--enable-experimental";
|
|
|
|
|
2009-08-10 20:24:20 +02:00
|
|
|
|
|
|
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
2019-12-08 20:53:49 +01:00
|
|
|
installFlags = [ "statedir=$(TMPDIR)/var/lib/bluetooth" ];
|
2009-08-10 20:24:20 +02:00
|
|
|
|
2019-12-08 20:53:49 +01:00
|
|
|
makeFlags = [ "rulesdir=${placeholder "out"}/lib/udev/rules.d" ];
|
2011-07-07 19:23:05 +02:00
|
|
|
|
2019-12-09 01:30:39 +01:00
|
|
|
doCheck = stdenv.hostPlatform.isx86_64;
|
|
|
|
|
2020-03-07 23:08:58 +01:00
|
|
|
postInstall = lib.optionalString doCheck ''
|
2017-09-27 21:23:28 +02:00
|
|
|
mkdir -p $test/{bin,test}
|
2017-09-18 20:25:02 +02: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 21:23:28 +02:00
|
|
|
ln -s ../test/$a $test/bin/bluez-$a
|
2011-05-21 00:21:34 +02:00
|
|
|
done
|
|
|
|
popd
|
2020-03-07 23:08:58 +01:00
|
|
|
wrapPythonProgramsIn $test/test "$test/test ${toString pythonPath}"
|
|
|
|
'' + ''
|
2017-09-18 20:25:02 +02:00
|
|
|
# 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 15:57:17 +02: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
|
2022-04-23 12:44:50 +02:00
|
|
|
install -Dm755 attrib/gatttool $out/bin/gatttool
|
2011-05-21 00:21:34 +02:00
|
|
|
'';
|
|
|
|
|
2017-09-18 20:25:02 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2009-08-05 22:29:36 +02:00
|
|
|
description = "Bluetooth support for Linux";
|
2020-02-19 03:34:08 +01:00
|
|
|
homepage = "http://www.bluez.org/";
|
2018-05-01 15:57:17 +02:00
|
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
2017-09-18 20:25:02 +02:00
|
|
|
platforms = platforms.linux;
|
2009-08-05 22:29:36 +02:00
|
|
|
};
|
|
|
|
}
|