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

25 lines
884 B
Nix

# Copyright 2025 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-jazzy-hpp-fcl";
version = "2.4.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/jazzy/hpp-fcl/2.4.5-1.tar.gz";
name = "2.4.5-1.tar.gz";
sha256 = "2f7685458d63c52c4a8b6899e7e4ec86c1bc70288d55d868d1a5976824ccc027";
};
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 ];
};
}