ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
25 lines
899 B
Nix
25 lines
899 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kauth, kconfig, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n,
|
|
kidletime, kio, lmdb, qtbase, qtdeclarative, solid,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "baloo";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kauth kconfig kcrash kdbusaddons ki18n kio kidletime lmdb qtdeclarative
|
|
solid
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
propagatedBuildInputs = [ kcoreaddons kfilemetadata qtbase ];
|
|
|
|
# kde-baloo.service uses `ExecCondition=@KDE_INSTALL_FULL_BINDIR@/kde-systemd-start-condition ...`
|
|
# which comes from the "plasma-workspace" derivation, but KDE_INSTALL_* all point at the "baloo" one
|
|
# (`${lib.getBin pkgs.plasma-workspace}` would cause infinite recursion)
|
|
postUnpack = ''
|
|
substituteInPlace "$sourceRoot"/src/file/kde-baloo.service.in \
|
|
--replace @KDE_INSTALL_FULL_BINDIR@ /run/current-system/sw/bin
|
|
'';
|
|
}
|