1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/kde-frameworks-5.15/baloo.nix

26 lines
743 B
Nix
Raw Normal View History

2015-10-10 16:01:52 +01:00
{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig
, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime
2015-10-18 15:24:59 +01:00
, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid
2015-09-27 16:02:10 +01:00
}:
kdeFramework {
2015-09-27 16:02:10 +01:00
name = "baloo";
2015-10-18 15:24:59 +01:00
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
2015-09-27 16:02:10 +01:00
buildInputs = [
2015-10-10 18:29:20 +01:00
kconfig kcrash kdbusaddons lmdb qtquick1 solid
2015-09-27 16:02:10 +01:00
];
propagatedBuildInputs = [
2015-10-10 18:29:20 +01:00
kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase
2015-09-27 16:02:10 +01:00
];
postInstall = ''
2015-10-18 15:24:59 +01: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 16:02:10 +01:00
'';
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}