about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kmediaplayer.nix
blob: 278a4240ab9139d17e3a1a426925ca0564e97d05 (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 ];
  propagatedBuildInputs = [ kparts kxmlgui ];
}