python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / kde / kmines.nix
blob66131df26c16ab47b9f2924829e39425d71d2a66
1 { mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kdoctools, ki18n, kio }:
3 mkDerivation {
4   pname = "kmines";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/games/org.kde.kmines";
7     description = "A classic Minesweeper game";
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     kconfig
18     kcrash
19     kio
20     kdoctools
21     ki18n
22   ];