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.
12 lines
259 B
Nix
12 lines
259 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
kconfig, kconfigwidgets, ki18n, qtx11extras,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kgamma5";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ kconfig kconfigwidgets ki18n qtx11extras ];
|
|
}
|