faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
15 lines
430 B
Nix
15 lines
430 B
Nix
{ mkDerivation, extra-cmake-modules, kdoctools, kcmutils
|
|
, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui
|
|
, plasma-framework, plasma-workspace, qtx11extras
|
|
, fetchpatch
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "khotkeys";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kcmutils kdbusaddons kdelibs4support kglobalaccel ki18n kio kxmlgui
|
|
plasma-framework plasma-workspace qtx11extras
|
|
];
|
|
}
|