about summary refs log tree commit diff
path: root/pkgs/kde/frameworks/baloo/default.nix
blob: 40ab00ebd193d6372efc448fee88852ed7d90238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkKdeDerivation,
  qtdeclarative,
  lmdb,
}:
mkKdeDerivation {
  pname = "baloo";

  # kde-systemd-start-condition is not part of baloo
  postPatch = ''
    substituteInPlace src/file/kde-baloo.service.in --replace-fail @KDE_INSTALL_FULL_BINDIR@/kde-systemd-start-condition /run/current-system/sw/bin/kde-systemd-start-condition
  '';

  extraBuildInputs = [qtdeclarative lmdb];
}