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

mkDerivation {
  name = "kmediaplayer";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ kparts kxmlgui ];
}