aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/kshisen.nix
blob: 7909ed8b2a385a503b370e24b56174f775ab707b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, libkmahjongg }:

mkDerivation {
  name = "kshisen";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org.kde.kshisen";
    description = "KShisen is a solitaire-like game played using the standard set of Mahjong tiles";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    libkmahjongg
    kdoctools
    ki18n
    kio
  ];
}