python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / liquidfun / package.nix
blob84974f233890d30915ad874dcecb5b6dea1e36b5
2   lib,
3   stdenv,
4   requireFile,
5   cmake,
6   libGLU,
7   libGL,
8   libX11,
9   libXi,
12 stdenv.mkDerivation rec {
13   pname = "liquidfun";
14   version = "1.1.0";
16   src = requireFile {
17     url = "https://github.com/google/liquidfun/releases/download/v${version}/liquidfun-${version}";
18     sha256 = "5011a000eacd6202a47317c489e44aa753a833fb562d970e7b8c0da9de01df86";
19     name = "liquidfun-${version}.tar.gz";
20   };
22   nativeBuildInputs = [ cmake ];
23   buildInputs = [
24     libGLU
25     libGL
26     libX11
27     libXi
28   ];
30   sourceRoot = "liquidfun/Box2D";
32   preConfigurePhases = [ "preConfigure" ];
34   preConfigure = ''
35     sed -i Box2D/Common/b2Settings.h -e 's@b2_maxPolygonVertices .*@b2_maxPolygonVertices 15@'
36     substituteInPlace Box2D/CMakeLists.txt --replace "Common/b2GrowableStack.h" "Common/b2GrowableStack.h Common/b2GrowableBuffer.h"
37   '';
39   configurePhase = ''
40     mkdir Build
41     cd Build;
42     cmake -DBOX2D_INSTALL=ON -DBOX2D_BUILD_SHARED=ON -DCMAKE_INSTALL_PREFIX=$out ..
43   '';
45   meta = with lib; {
46     description = "2D physics engine based on Box2D";
47     maintainers = with maintainers; [ qknight ];
48     platforms = platforms.linux;
49     hydraPlatforms = [ ];
50     license = licenses.bsd2;
51     homepage = "https://google.github.io/liquidfun/";
52   };