mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
882 B
Nix
25 lines
882 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-iron-hpp-fcl";
|
|
version = "2.4.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/hpp_fcl-release/archive/release/iron/hpp-fcl/2.4.5-1.tar.gz";
|
|
name = "2.4.5-1.tar.gz";
|
|
sha256 = "2a3bf2a349c93b34e8f79c12c223e499745833fc96fe700bab75428c5f327481";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|