nixpkgs/pkgs/desktops/plasma-5.4/plasma-mediacenter.nix

24 lines
682 B
Nix
Raw Normal View History

2015-10-10 16:52:10 +02:00
{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig
, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice
, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia
2015-09-27 17:03:00 +02:00
, taglib
}:
plasmaPackage rec {
2015-09-27 17:03:00 +02:00
name = "plasma-mediacenter";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kconfig kcoreaddons kguiaddons kservice
2015-10-10 18:25:16 +02:00
qtdeclarative qtmultimedia taglib
2015-09-27 17:03:00 +02:00
];
2015-10-10 18:50:36 +02:00
propagatedBuildInputs = [
2015-10-10 19:29:20 +02:00
baloo kactivities kdeclarative kfilemetadata ki18n kio
plasma-framework
2015-10-10 18:50:36 +02:00
];
# All propagatedBuildInputs should be present in the profile because
# wrappers cannot be used here.
propagatedUserEnvPkgs = propagatedBuildInputs;
2015-09-27 17:03:00 +02:00
}