16 lines
345 B
Nix
16 lines
345 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
|
|
];
|
|
}
|