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/humble/hpp-fcl/default.nix

26 lines
882 B
Nix
Raw Normal View History

# Copyright 2022 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-humble-hpp-fcl";
version = "2.1.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/humble/hpp-fcl/2.1.1-1.tar.gz";
name = "2.1.1-1.tar.gz";
sha256 = "5e279d564b5ef012da158c8576453e72a99d71507fd010860db4ba7642f26d6e";
};
buildType = "cmake";
buildInputs = [ 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 ];
};
}