nixpkgs/pkgs/applications/kde/kmahjongg.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
475 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 = {
description = "Mahjongg solitaire";
homepage = "https://apps.kde.org/kmahjongg/";
2019-12-25 17:43:17 +00:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ ];
2019-12-25 17:43:17 +00:00
};
}