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

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