nix-ros-overlay/distros/foxy/moveit-ros-benchmarks/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1,022 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, boost, moveit-common, moveit-ros-planning, moveit-ros-warehouse, pluginlib, rclcpp, tf2-eigen }:
buildRosPackage {
pname = "ros-foxy-moveit-ros-benchmarks";
version = "2.2.3-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/foxy/moveit_ros_benchmarks/2.2.3-1.tar.gz";
name = "2.2.3-1.tar.gz";
sha256 = "48c06d2ddf70a9fa6de2d98fd00e245606b775cfa5e24ad8bff4c2dfda86839e";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake moveit-common ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ boost moveit-ros-planning moveit-ros-warehouse pluginlib rclcpp tf2-eigen ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Enhanced tools for benchmarks in MoveIt'';
license = with lib.licenses; [ bsdOriginal ];
};
}