mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
16 lines
357 B
Nix
16 lines
357 B
Nix
{ plasmaPackage, extra-cmake-modules, qtscript, qtdeclarative
|
|
, kcoreaddons, ki18n, kdeclarative, kservice, plasma-framework
|
|
, krunner
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "milou";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
propagatedBuildInputs = [
|
|
kdeclarative ki18n krunner plasma-framework qtdeclarative qtscript
|
|
kcoreaddons kservice
|
|
];
|
|
}
|