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

mkDerivation {
  pname = "kmahjongg";
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
  meta = {
    description = "Mahjongg solitaire";
    homepage = "https://apps.kde.org/kmahjongg/";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ ];
  };
}