about summary refs log tree commit diff
path: root/pkgs/applications/kde/kmahjongg.nix
blob: 1c2e46c211242c0390d774f4c4763af30d4228b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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";
    mainProgram = "kmahjongg";
    homepage = "https://apps.kde.org/kmahjongg/";
    license = with lib.licenses; [ gpl2 ];
    maintainers = with lib.maintainers; [ ];
  };
}