mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
ac8e5edada
This replaces use of `builderDefsPackage`. Also change to download tarball from GitHub as it is the new upstream home.
34 lines
905 B
Nix
34 lines
905 B
Nix
{ stdenv, fetchurl, unzip, cmake, mesa, freeglut, libX11, xproto, inputproto
|
|
, libXi, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "box2d-${version}";
|
|
version = "2.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/erincatto/Box2D/archive/v${version}.tar.gz";
|
|
sha256 = "1dmbswh4x2n5l3c9h0k72m0z4rdpzfy1xl8m8p3rf5rwkvk3bkg2";
|
|
};
|
|
|
|
sourceRoot = "Box2D-${version}/Box2D";
|
|
|
|
buildInputs = [
|
|
unzip cmake mesa freeglut libX11 xproto inputproto libXi pkgconfig
|
|
];
|
|
|
|
cmakeFlags = [ "-DBOX2D_INSTALL=ON" "-DBOX2D_BUILD_SHARED=ON" ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace Box2D/Common/b2Settings.h \
|
|
--replace 'b2_maxPolygonVertices 8' 'b2_maxPolygonVertices 15'
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "2D physics engine";
|
|
homepage = http://box2d.org/;
|
|
maintainers = [ maintainers.raskin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.zlib;
|
|
};
|
|
}
|