biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / kde / kmahjongg.nix
blob1c2e46c211242c0390d774f4c4763af30d4228b6
1 { lib
2 , mkDerivation
3 , extra-cmake-modules
4 , kdoctools
5 , kdeclarative
6 , knewstuff
7 , libkdegames
8 , libkmahjongg
9 }:
11 mkDerivation {
12   pname = "kmahjongg";
13   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
14   buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
15   meta = {
16     description = "Mahjongg solitaire";
17     mainProgram = "kmahjongg";
18     homepage = "https://apps.kde.org/kmahjongg/";
19     license = with lib.licenses; [ gpl2 ];
20     maintainers = with lib.maintainers; [ ];
21   };