1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/hpp-fcl/default.nix

25 lines
890 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, assimp, boost, cmake, doxygen, eigen, eigenpy, git, octomap, python3, python3Packages }:
buildRosPackage {
pname = "ros-rolling-hpp-fcl";
version = "2.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/rolling/hpp-fcl/2.4.0-1.tar.gz";
name = "2.4.0-1.tar.gz";
sha256 = "e551b0cec7a802bd5797db41241a1f34a9ce0190b74f9c7bb5183f5fac3b577b";
};
buildType = "cmake";
buildInputs = [ cmake doxygen git python3Packages.lxml ];
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 ];
};
}