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

26 lines
882 B
Nix
Raw Normal View History

# 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-iron-hpp-fcl";
version = "2.4.4-r1";
src = fetchurl {
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";
};
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 ];
};
}