summary refs log blame commit diff
path: root/pkgs/applications/kde/libkdegames.nix
blob: 8e96bc1ad56c5ce529c1ff2e5350370ef82c5025 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14



                     









                 
                        

                                                        
                                                                 






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

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