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.
17 lines
352 B
Nix
17 lines
352 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kcoreaddons, kdeclarative, ki18n, krunner, kservice, plasma-framework,
|
|
qtscript, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "milou";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kcoreaddons kdeclarative ki18n krunner kservice plasma-framework
|
|
qtdeclarative qtscript
|
|
];
|
|
}
|