bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
23 lines
606 B
Nix
23 lines
606 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "reactphysics3d";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DanielChappuis";
|
|
repo = "reactphysics3d";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-LWBnrqDFhpzN/XUEGniZeViDq3R1MtmuU5CMCQ59VOY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Open source C++ physics engine library";
|
|
homepage = "https://www.reactphysics3d.com";
|
|
maintainers = with maintainers; [ rexxDigital ];
|
|
license = licenses.zlib;
|
|
platforms = platforms.all;
|
|
};
|
|
})
|