tracker: enable strictDeps

Enable strictDeps and fix "dbus-run-session: command not found" error
during test phase.
This commit is contained in:
Alexandre Iooss 2023-03-04 13:10:09 +01:00
parent e70131ba24
commit 92b9dce61b

View file

@ -44,6 +44,8 @@ stdenv.mkDerivation rec {
patchShebangs utils/data-generators/cc/generate
'';
strictDeps = true;
depsBuildBuild = [
pkg-config
];
@ -79,6 +81,10 @@ stdenv.mkDerivation rec {
systemd
];
nativeCheckInputs = [
dbus
];
mesonFlags = [
"-Ddocs=true"
(lib.mesonEnable "introspection" withIntrospection)