python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / xmoto / default.nix
blob5909c3f20ee465bef44fa8f69677fac0bab12004
1 { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, gettext, makeWrapper, bzip2
2 , curl, libjpeg, libxml2, xz, lua, ode, libGL, libpng, SDL, SDL_mixer, SDL_net
3 , SDL_ttf, sqlite, libxdg_basedir, zlib }:
5 stdenv.mkDerivation rec {
6   pname = "xmoto";
7   version = "0.6.1";
9   src = fetchFromGitHub {
10     owner = pname;
11     repo = pname;
12     rev = version;
13     sha256 = "00f5ha79lfa2iiaz66wl0hl5dapa1l15qdr7m7knzi0ll7j6z66n";
14   };
16   patches = [
17     # Fix build with Nix
18     (fetchpatch {
19       url = "https://github.com/xmoto/xmoto/commit/536dcc7ec77a4c4c454b86220e85b1cb3cd1c7f7.patch";
20       sha256 = "0h9lld668jrbmrqva89zqwp63jiagjj86prkxzx6372p3kk9y7g7";
21     })
22   ];
24   nativeBuildInputs = [
25     cmake
26     gettext
27     makeWrapper
28   ];
30   buildInputs = [
31     bzip2
32     curl
33     libjpeg
34     libxml2
35     xz
36     lua
37     ode
38     libGL
39     libpng
40     SDL
41     SDL_mixer
42     SDL_net
43     SDL_ttf
44     sqlite
45     libxdg_basedir
46     zlib
47   ];
49   preFixup = ''
50     wrapProgram "$out/bin/xmoto" \
51       --prefix XDG_DATA_DIRS : "$out/share/"
52   '';
54   meta = with lib; {
55     description = "A challenging 2D motocross platform game, where physics play an important role";
56     longDescription = ''
57       X-Moto is a challenging 2D motocross platform game, where physics plays an all important role in the gameplay.
58       You need to control your bike to its limits, if you want to have a chance to finish the most difficult challenges.
59     '';
60     homepage = "https://xmoto.tuxfamily.org";
61     maintainers = with maintainers; [ raskin pSub ];
62     platforms = platforms.all;
63     license = licenses.gpl2Plus;
64   };