nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix

26 lines
743 B
Nix
Raw Normal View History

2015-10-10 08:01:52 -07:00
{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig
, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime
2015-10-18 07:24:59 -07:00
, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid
2015-09-27 08:02:10 -07:00
}:
kdeFramework {
2015-09-27 08:02:10 -07:00
name = "baloo";
2015-10-18 07:24:59 -07:00
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
2015-09-27 08:02:10 -07:00
buildInputs = [
2015-10-10 10:29:20 -07:00
kconfig kcrash kdbusaddons lmdb qtquick1 solid
2015-09-27 08:02:10 -07:00
];
propagatedBuildInputs = [
2015-10-10 10:29:20 -07:00
kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase
2015-09-27 08:02:10 -07:00
];
postInstall = ''
2015-10-18 07:24:59 -07:00
wrapQtProgram "$out/bin/baloo_file"
wrapQtProgram "$out/bin/baloo_file_extractor"
wrapQtProgram "$out/bin/balooctl"
wrapQtProgram "$out/bin/baloosearch"
wrapQtProgram "$out/bin/balooshow"
2015-09-27 08:02:10 -07:00
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}