about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.14/kdegames/kajongg.nix
blob: cea4fb38b4fbc593f669c285df93cd9b310f947f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ kde, kdelibs, libkdegames, pythonPackages, sqlite,  pykde4 }:
kde rec {

  buildInputs = [ kdelibs libkdegames pythonPackages.python pythonPackages.wrapPython sqlite ] ++ pythonPath;

  pythonPath = [ pythonPackages.twisted pykde4 ];

  postInstall = "wrapPythonPrograms";

  meta = {
    description = "An ancient Chinese board game for 4 players";
  };
}