a944afd061
GitOrigin-RevId: 2247d824fe07f16325596acc7faa286502faffd1
19 lines
384 B
Nix
19 lines
384 B
Nix
{ lib
|
|
, mkDerivation
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kdeclarative
|
|
, knewstuff
|
|
, libkdegames
|
|
, libkmahjongg
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kmahjongg";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|