Unverified Commit 083d8954 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #258555 from rexxDigital/reactphysics3d

reactphysics3d: init at 0.9.0
parents d2c4f9a4 61db791a
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14804,6 +14804,12 @@
    githubId = 165283;
    name = "Alexey Kutepov";
  };
  rexxDigital = {
    email = "joellarssonpriv@gmail.com";
    github = "rexxDigital";
    githubId = 44014925;
    name = "Rexx Larsson";
  };
  rgnns = {
    email = "jglievano@gmail.com";
    github = "rgnns";
+23 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation (finalAttrs: {
  pname = "reactphysics3d";
  version = "0.9.0";

  src = fetchFromGitHub {
    owner = "DanielChappuis";
    repo = "reactphysics3d";
    rev = "v${finalAttrs.version}";
    hash = "sha256-AUdsUXsygsGfS8H+AHEV1fSrrX7zGmfsaTONYUG3zqk=";
  };

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "An open source C++ physics engine library";
    homepage = "https://www.reactphysics3d.com";
    maintainers = with maintainers; [ rexxDigital ];
    license = licenses.zlib;
    platforms = platforms.all;
  };
})