blueman: fix cross-compilation

blueman checks runtime deps during the configure.

Fixes the following error when cross-compiling (in this case, to
aarch64):

```
error: builder for '/nix/store/kzrxxlk0vpsz6hwhl4rgf0ankfp3639h-blueman-aarch64-unknown-linux-gnu-2.3.5.drv' failed with exit code 1;
last 10 log lines:
> checking for python version... 3.10
> checking for python platform... linux
> checking for GNU default python prefix... ${prefix}
> checking for GNU default python exec_prefix... ${exec_prefix}
> checking for python script directory (pythondir)... ${PYTHON_PREFIX}/lib/python3.10/site-packages
> checking for python extension module directory (pyexecdir)... ${PYTHON_EXEC_PREFIX}/lib/python3.10/site-packages
> checking for python-3.10... yes
> checking for ifconfig... no
> checking for ip... no
> configure: error: ifconfig or ip not found, install net-tools or iproute2
For full logs, run 'nix log /nix/store/kzrxxlk0vpsz6hwhl4rgf0ankfp3639h-blueman-aarch64-unknown-linux-gnu-2.3.5.drv'.
error: building '/nix/store/kzrxxlk0vpsz6hwhl4rgf0ankfp3639h-blueman-aarch64-unknown-linux-gnu-2.3.5.drv' failed
```

Signed-off-by: Christoph Heiss <christoph@c8h4.io>

authored by Christoph Heiss and committed by Artturin 1303bc20 a61a2f7b

+3 -1
+3 -1
pkgs/tools/bluetooth/blueman/default.nix
··· 21 21 ]; 22 22 23 23 buildInputs = [ bluez gtk3 pythonPackages.python librsvg 24 - gnome.adwaita-icon-theme iproute2 networkmanager ] 24 + gnome.adwaita-icon-theme networkmanager ] 25 25 ++ pythonPath 26 26 ++ lib.optional withPulseAudio libpulseaudio; 27 27 ··· 36 36 configureFlags = [ 37 37 "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 38 38 "--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user" 39 + # Don't check for runtime dependency `ip` during the configure 40 + "--disable-runtime-deps-check" 39 41 (lib.enableFeature withPulseAudio "pulseaudio") 40 42 ]; 41 43