nixpkgs/pkgs/applications/kde/kmahjongg.nix

20 lines
385 B
Nix
Raw Normal View History

2019-12-25 17:43:17 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, kdoctools
, kdeclarative
, knewstuff
, libkdegames
, libkmahjongg
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kmahjongg";
2019-12-25 17:43:17 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kdeclarative libkmahjongg knewstuff libkdegames ];
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
2019-12-25 17:43:17 +00:00
};
}