python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / kde / kshisen.nix
blob791e95af6905f42ad1465ba83ff2018da2a6f9ba
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, libkmahjongg }:
3 mkDerivation {
4   pname = "kshisen";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.kshisen";
7     description = "A solitaire-like game played using the standard set of Mahjong tiles";
8     maintainers = with maintainers; [ freezeboy ];
9     license = licenses.gpl2Plus;
10     platforms = platforms.linux;
11   };
12   nativeBuildInputs = [
13     extra-cmake-modules
14   ];
15   buildInputs = [
16     libkdegames
17     libkmahjongg
18     kdoctools
19     ki18n
20     kio
21   ];