libccd: init at 2.1
This commit is contained in:
parent
cba07da6b1
commit
4e0d914db7
|
@ -0,0 +1,23 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libccd";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "danfis";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0sfmn5pd7k5kyhbxnd689xmsa5v843r7sska96dlysqpljd691jc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for collision detection between two convex shapes";
|
||||
homepage = "https://github.com/danfis/libccd";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ lopsided98 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -15522,6 +15522,8 @@ in
|
|||
|
||||
libcbor = callPackage ../development/libraries/libcbor { };
|
||||
|
||||
libccd = callPackage ../development/libraries/libccd { };
|
||||
|
||||
libcec = callPackage ../development/libraries/libcec {
|
||||
libraspberrypi = null;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue