mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
31 lines
408 B
Nix
31 lines
408 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, boost
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kio
|
|
, kglobalaccel
|
|
, kwindowsystem
|
|
, kxmlgui
|
|
, kcrash
|
|
, qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kactivitymanagerd";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
boost
|
|
kconfig
|
|
kcoreaddons
|
|
kdbusaddons
|
|
kglobalaccel
|
|
ki18n
|
|
kio
|
|
kwindowsystem
|
|
kxmlgui
|
|
kcrash
|
|
];
|
|
}
|