nixpkgs/pkgs/development/interpreters/love/0.10.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2019-11-10 16:44:34 +00:00
{ stdenv, fetchFromBitbucket, pkgconfig, SDL2, libGLU, libGL, openal, luajit,
2016-02-14 21:14:00 +00:00
libdevil, freetype, physfs, libmodplug, mpg123, libvorbis, libogg,
libtheora, which, autoconf, automake, libtool
}:
let
pname = "love";
2017-02-13 11:49:08 +00:00
version = "0.10.2";
2016-02-14 21:14:00 +00:00
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2016-02-14 21:14:00 +00:00
name = "${pname}-${version}";
src = fetchFromBitbucket {
owner = "rude";
repo = "love";
2019-09-08 23:38:31 +00:00
rev = version;
2017-02-13 11:49:08 +00:00
sha256 = "19yfmlcx6w8yi4ndm5lni8lrsvnn77bxw5py0dc293nzzlaqa9ym";
2016-02-14 21:14:00 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2016-02-14 21:14:00 +00:00
buildInputs = [
2019-11-10 16:44:34 +00:00
SDL2 libGLU libGL openal luajit libdevil freetype physfs libmodplug mpg123
2016-02-14 21:14:00 +00:00
libvorbis libogg libtheora autoconf which libtool automake
];
preConfigure = "$shell ./platform/unix/automagic";
configureFlags = [
"--with-lua=luajit"
];
2019-10-30 00:12:09 +00:00
NIX_CFLAGS_COMPILE = "-DluaL_reg=luaL_Reg"; # needed since luajit-2.1.0-beta3
2016-02-14 21:14:00 +00:00
meta = {
homepage = "http://love2d.org";
2016-02-14 21:14:00 +00:00
description = "A Lua-based 2D game engine/scripting language";
license = stdenv.lib.licenses.zlib;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.raskin ];
};
}