2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04: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-iron-hpp-fcl";
|
2024-08-02 13:27:09 +00:00
|
|
|
version = "2.4.5-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/iron/hpp-fcl/2.4.5-1.tar.gz";
|
|
|
|
name = "2.4.5-1.tar.gz";
|
|
|
|
sha256 = "2a3bf2a349c93b34e8f79c12c223e499745833fc96fe700bab75428c5f327481";
|
2023-06-19 17:15:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake doxygen git python3Packages.lxml ];
|
|
|
|
propagatedBuildInputs = [ assimp boost eigen eigenpy octomap python3 python3Packages.numpy ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "An extension of the Flexible Collision Library.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|