05bdbc55ff
Adapted from <https://apps.kde.org/>.
22 lines
475 B
Nix
22 lines
475 B
Nix
{ 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; [ ];
|
|
};
|
|
}
|