summary refs log blame commit diff
path: root/pkgs/applications/kde/kmahjongg.nix
blob: a0c277ec0917a433cdc9029b2d8161519a9965a7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                     
                      


                                                                    

                                                 
                                          
                                            

    
{ 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; [ ];
  };
}