reactphysics3d: init at 0.9.0
This commit is contained in:
parent
029ffb46fb
commit
61db791a8a
23
pkgs/by-name/re/reactphysics3d/package.nix
Normal file
23
pkgs/by-name/re/reactphysics3d/package.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user