mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
23 lines
636 B
Nix
23 lines
636 B
Nix
{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig
|
|
, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n
|
|
, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kactivities";
|
|
nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
|
|
buildInputs = [
|
|
boost kcmutils kconfig kcoreaddons kdbusaddons kservice
|
|
kxmlgui
|
|
];
|
|
propagatedBuildInputs = [
|
|
kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kactivitymanagerd"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|