2019-12-08 19:53:49 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchurl
|
|
|
|
, alsaLib
|
|
|
|
, dbus
|
|
|
|
, glib
|
|
|
|
, json_c
|
|
|
|
, libical
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-12-08 19:53:49 +00:00
|
|
|
, python3
|
|
|
|
, readline
|
|
|
|
, systemd
|
|
|
|
, udev
|
2020-03-07 22:08:58 +00:00
|
|
|
}: let
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
|
|
dbus-python
|
|
|
|
pygobject3
|
|
|
|
recursivePthLoader
|
|
|
|
];
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-12-08 19:53:49 +00:00
|
|
|
pname = "bluez";
|
2021-04-07 18:55:35 +01:00
|
|
|
version = "5.58";
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2009-08-05 21:29:36 +01:00
|
|
|
src = fetchurl {
|
2019-12-08 19:53:49 +00:00
|
|
|
url = "mirror://kernel/linux/bluetooth/${pname}-${version}.tar.xz";
|
2021-04-07 18:55:35 +01:00
|
|
|
sha256 = "1wgiv8cqya6n1w5fz24cb8q401bhn5aa6s7g95l26rzblmsmw1n8";
|
2009-08-05 21:29:36 +01:00
|
|
|
};
|
|
|
|
|
2017-09-27 20:23:28 +01:00
|
|
|
buildInputs = [
|
2019-12-08 19:53:49 +00:00
|
|
|
alsaLib
|
|
|
|
dbus
|
|
|
|
glib
|
|
|
|
json_c
|
|
|
|
libical
|
|
|
|
python3
|
|
|
|
readline
|
|
|
|
udev
|
|
|
|
];
|
2009-08-05 21:29:36 +01:00
|
|
|
|
2019-12-08 19:53:49 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-12-08 19:53:49 +00:00
|
|
|
python3.pkgs.wrapPython
|
|
|
|
];
|
2018-05-01 14:57:17 +01:00
|
|
|
|
2020-03-07 22:08:58 +00:00
|
|
|
outputs = [ "out" "dev" ] ++ lib.optional doCheck "test";
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2019-12-08 19:53:49 +00:00
|
|
|
postPatch = ''
|
2018-05-01 14:57:17 +01:00
|
|
|
substituteInPlace tools/hid2hci.rules \
|
|
|
|
--replace /sbin/udevadm ${systemd}/bin/udevadm \
|
|
|
|
--replace "hid2hci " "$out/lib/udev/hid2hci "
|
|
|
|
'';
|
2017-09-18 19:25:02 +01:00
|
|
|
|
2019-12-08 19:53:49 +00:00
|
|
|
configureFlags = [
|
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"
|
2019-09-16 02:53:43 +01: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 19:53:49 +00:00
|
|
|
"--enable-health"
|
|
|
|
"--enable-mesh"
|
|
|
|
"--enable-midi"
|
|
|
|
"--enable-nfc"
|
|
|
|
"--enable-sap"
|
|
|
|
"--enable-sixaxis"
|
|
|
|
"--enable-wiimote"
|
|
|
|
];
|
2009-08-10 19:24:20 +01:00
|
|
|
|
|
|
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
2019-12-08 19:53:49 +00:00
|
|
|
installFlags = [ "statedir=$(TMPDIR)/var/lib/bluetooth" ];
|
2009-08-10 19:24:20 +01:00
|
|
|
|
2019-12-08 19:53:49 +00:00
|
|
|
makeFlags = [ "rulesdir=${placeholder "out"}/lib/udev/rules.d" ];
|
2011-07-07 18:23:05 +01:00
|
|
|
|
2019-12-09 00:30:39 +00:00
|
|
|
doCheck = stdenv.hostPlatform.isx86_64;
|
|
|
|
|
2020-03-07 22:08:58 +00:00
|
|
|
postInstall = lib.optionalString doCheck ''
|
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
|
2020-03-07 22:08:58 +00:00
|
|
|
wrapPythonProgramsIn $test/test "$test/test ${toString pythonPath}"
|
|
|
|
'' + ''
|
2017-09-18 19:25:02 +01: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 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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2009-08-05 21:29:36 +01:00
|
|
|
description = "Bluetooth support for Linux";
|
2020-02-19 02:34:08 +00:00
|
|
|
homepage = "http://www.bluez.org/";
|
2018-05-01 14:57:17 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
2017-09-18 19:25:02 +01:00
|
|
|
platforms = platforms.linux;
|
2020-04-01 02:11:51 +01:00
|
|
|
repositories.git = "https://git.kernel.org/pub/scm/bluetooth/bluez.git";
|
2009-08-05 21:29:36 +01:00
|
|
|
};
|
|
|
|
}
|