2022-08-17 00:13:41 +00:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-08-17 00:13:41 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, assimp, boost, cmake, doxygen, eigen, eigenpy, git, octomap, python3, python3Packages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-hpp-fcl";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "2.3.0-r1";
|
2022-08-17 00:13:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/foxy/hpp-fcl/2.3.0-1.tar.gz";
|
|
|
|
name = "2.3.0-1.tar.gz";
|
|
|
|
sha256 = "ec60c2f1d44c733b6a825b5730b5d564115e5806292b725a18f41671ed577fad";
|
2022-08-17 00:13:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ cmake doxygen git python3Packages.lxml ];
|
2022-08-17 00:13:41 +00:00
|
|
|
propagatedBuildInputs = [ assimp boost eigen eigenpy octomap python3 python3Packages.numpy ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''An extension of the Flexible Collision Library.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|