32 lines
943 B
Nix
32 lines
943 B
Nix
{ stdenv, fetchurl, cmake, irrlicht, libpng, bzip2, sqlite
|
|
, libjpeg, libXxf86vm, libGLU_combined, openal, libvorbis, xlibsWrapper, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "voxelands-${version}";
|
|
version = "1512.00";
|
|
|
|
src = fetchurl {
|
|
url = "http://voxelands.com/downloads/${name}-src.tar.bz2";
|
|
sha256 = "0bims0y0nyviv2f2nxfj37s3258cjbfp9xd97najz0yylnk3qdfw";
|
|
};
|
|
|
|
cmakeFlags = [
|
|
"-DIRRLICHT_INCLUDE_DIR=${irrlicht}/include/irrlicht"
|
|
"-DCMAKE_C_FLAGS_RELEASE=-DNDEBUG"
|
|
"-DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG"
|
|
];
|
|
|
|
buildInputs = [
|
|
cmake irrlicht libpng bzip2 libjpeg sqlite
|
|
libXxf86vm libGLU_combined openal libvorbis xlibsWrapper pkgconfig
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://voxelands.com/;
|
|
description = "Infinite-world block sandbox game based on Minetest";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|