nixpkgs/pkgs/games/xmoto/default.nix

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

67 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-19 22:15:14 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, gettext, makeWrapper, bzip2
, curl, libjpeg, libxml2, xz, lua, ode, libGL, libpng, SDL, SDL_mixer, SDL_net
, SDL_ttf, sqlite, libxdg_basedir, zlib }:
stdenv.mkDerivation rec {
pname = "xmoto";
2021-07-19 22:15:14 +00:00
version = "0.6.1";
2021-07-19 22:15:14 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "00f5ha79lfa2iiaz66wl0hl5dapa1l15qdr7m7knzi0ll7j6z66n";
};
2021-07-19 22:15:14 +00:00
patches = [
# Fix build with Nix
(fetchpatch {
url = "https://github.com/xmoto/xmoto/commit/536dcc7ec77a4c4c454b86220e85b1cb3cd1c7f7.patch";
sha256 = "0h9lld668jrbmrqva89zqwp63jiagjj86prkxzx6372p3kk9y7g7";
})
];
2021-07-19 22:15:14 +00:00
nativeBuildInputs = [
cmake
gettext
makeWrapper
2020-04-14 08:00:12 +00:00
];
2018-03-02 06:35:18 +00:00
2021-07-19 22:15:14 +00:00
buildInputs = [
bzip2
curl
libjpeg
libxml2
xz
lua
ode
libGL
libpng
SDL
SDL_mixer
SDL_net
SDL_ttf
sqlite
libxdg_basedir
zlib
];
preFixup = ''
wrapProgram "$out/bin/xmoto" \
--prefix XDG_DATA_DIRS : "$out/share/"
'';
meta = with lib; {
2021-07-19 22:15:14 +00:00
description = "A challenging 2D motocross platform game, where physics play an important role";
mainProgram = "xmoto";
2021-07-19 22:15:14 +00:00
longDescription = ''
X-Moto is a challenging 2D motocross platform game, where physics plays an all important role in the gameplay.
You need to control your bike to its limits, if you want to have a chance to finish the most difficult challenges.
'';
homepage = "https://xmoto.tuxfamily.org";
maintainers = with maintainers; [ raskin pSub ];
2021-07-19 22:15:14 +00:00
platforms = platforms.all;
license = licenses.gpl2Plus;
};
}