20 lines
385 B
Nix
20 lines
385 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 = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|