mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
16 lines
363 B
Nix
16 lines
363 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
boost, kconfig, kcoreaddons, kdbusaddons, ki18n, kio, kglobalaccel,
|
|
kwindowsystem, kxmlgui, kcrash
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kactivitymanagerd";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
boost kconfig kcoreaddons kdbusaddons kglobalaccel ki18n kio kwindowsystem
|
|
kxmlgui kcrash
|
|
];
|
|
}
|