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/foxy/moveit-ros-benchmarks/default.nix

26 lines
1,010 B
Nix

# Copyright 2021 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.1-r1";
src = fetchurl {
url = "https://github.com/moveit/moveit2-release/archive/release/foxy/moveit_ros_benchmarks/2.2.1-1.tar.gz";
name = "2.2.1-1.tar.gz";
sha256 = "f87cd28ea01ab9df58fd5253f114e6a64bea499066f554575adf465cbe6fb20d";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}