summary refs log blame commit diff
path: root/pkgs/applications/kde/libkdegames.nix
blob: 494b193b8326e7c172c5aa20d4223d3436b472f1 (plain) (tree)

























                                                                                 
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kdelibs4support
, qtdeclarative
, kdeclarative
, kdnssd
, knewstuff
, openal
, libsndfile
, qtquickcontrols
}:

mkDerivation {
  name = "libkdegames";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kdelibs4support qtdeclarative kdeclarative kdnssd knewstuff openal libsndfile
    qtquickcontrols
  ];
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ lheckemann ];
  };
}