summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.7/kdegames.nix
blob: 03ecfbd88b4b1d05895306bcf904914701348385 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ kde, kdelibs, qca2, twisted, pythonPackages, sip, makeWrapper, pykde4,
  openal, libsndfile, qhull, sqlite, pkgconfig }:

kde rec {
  buildInputs = [ kdelibs qca2 pythonPackages.python pythonPackages.wrapPython
    openal libsndfile qhull sqlite ] ++ pythonPath;

  pythonPath = [ pythonPackages.twisted pykde4 ];

  buildNativeInputs = [ pkgconfig ];

  # TODO: ggz

  postInstall = "wrapPythonPrograms";

  meta = {
    description = "KDE Games";
    license = "GPL";
  };
}