587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
15 lines
385 B
Nix
15 lines
385 B
Nix
{
|
|
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];
|
|
}
|