mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
fd29f6685f
Stay consistent with other multiple output packages.
18 lines
492 B
Nix
18 lines
492 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
kcmutils, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui,
|
|
plasma-framework, plasma-workspace, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "khotkeys";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kcmutils kdbusaddons kdelibs4support kglobalaccel ki18n kio kxmlgui
|
|
plasma-framework plasma-workspace qtx11extras
|
|
];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
enableParallelBuilding = false;
|
|
}
|