24 lines
682 B
Nix
24 lines
682 B
Nix
|
{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig
|
||
|
, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice
|
||
|
, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia
|
||
|
, taglib
|
||
|
}:
|
||
|
|
||
|
plasmaPackage rec {
|
||
|
name = "plasma-mediacenter";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kconfig kcoreaddons kguiaddons kservice
|
||
|
qtdeclarative qtmultimedia taglib
|
||
|
];
|
||
|
propagatedBuildInputs = [
|
||
|
baloo kactivities kdeclarative kfilemetadata ki18n kio
|
||
|
plasma-framework
|
||
|
];
|
||
|
# All propagatedBuildInputs should be present in the profile because
|
||
|
# wrappers cannot be used here.
|
||
|
propagatedUserEnvPkgs = propagatedBuildInputs;
|
||
|
}
|