python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / interpreters / love / 11.nix
blobbb8f88379fad87bc7175a78f45c045489caac4c7
1 { lib, stdenv, fetchFromGitHub, pkg-config
2 , SDL2, libGLU, libGL, openal, luajit
3 , libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg
4 , libtheora, which, autoconf, automake, libtool
5 }:
7 stdenv.mkDerivation rec {
8   pname = "love";
9   version = "11.4";
11   src = fetchFromGitHub {
12     owner = "love2d";
13     repo = "love";
14     rev = version;
15     sha256 = "0kpdp6v8m8j0r7ppyy067shr0lfgrlh0dwb7ccws76d389vizwhb";
16   };
18   nativeBuildInputs = [ pkg-config autoconf automake ];
19   buildInputs = [
20     SDL2 libGLU libGL openal luajit libdevil freetype physfs libmodplug mpg123
21     libvorbis libogg libtheora which libtool
22   ];
24   preConfigure = "$shell ./platform/unix/automagic";
26   configureFlags = [
27     "--with-lua=luajit"
28   ];
30   NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg"; # needed since luajit-2.1.0-beta3
32   meta = {
33     homepage = "https://love2d.org";
34     description = "A Lua-based 2D game engine/scripting language";
35     license = lib.licenses.zlib;
36     platforms = lib.platforms.linux;
37     maintainers = [ lib.maintainers.raskin ];
38   };