summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kmediaplayer.nix
blob: 5de26e0c8dcb25f32051c48ba5ea1a152516766c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ mkDerivation
, extra-cmake-modules
, kparts
, kxmlgui
}:

mkDerivation {
  name = "kmediaplayer";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kparts kxmlgui ];
}