mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
21 lines
528 B
Nix
21 lines
528 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
|
|
];
|
|
}
|