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-07-26 13:34:25 +00:00
|
|
|
version = "2.4.4-r1";
|
2023-06-19 17:15:23 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/iron/hpp-fcl/2.4.4-1.tar.gz";
|
|
|
|
name = "2.4.4-1.tar.gz";
|
|
|
|
sha256 = "208814712a1fea77583b47521a2c991d8d9080294c63fe586a6f10e8b8fe55c1";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|