summary refs log tree commit diff
path: root/pkgs/applications/kde/libkdegames.nix
blob: 8e96bc1ad56c5ce529c1ff2e5350370ef82c5025 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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 ];
  };
}