summary refs log tree commit diff
path: root/pkgs/applications/kde/kmahjongg.nix
blob: b51d0d147e2ec13f4637851209f354d93853600d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kdeclarative
, knewstuff
, libkdegames
, libkmahjongg
}:

mkDerivation {
  name = "kmahjongg";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ genesis ];
  };
}