1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-23 15:30:18 +03:00
nix-ros-overlay/distros/rolling/moveit-simple-controller-manager/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# 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, control-msgs, moveit-common, moveit-core, pluginlib, rclcpp, rclcpp-action }:
buildRosPackage {
pname = "ros-rolling-moveit-simple-controller-manager";
version = "2.7.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/rolling/moveit_simple_controller_manager/2.7.3-1.tar.gz";
name = "2.7.3-1.tar.gz";
sha256 = "eaffcb976b0e3138f29391d179e9f4cdf0551cdfce460f5f62fd462ce4e2c9f2";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ control-msgs moveit-common moveit-core pluginlib rclcpp rclcpp-action ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A generic, simple controller manager plugin for MoveIt.'';
license = with lib.licenses; [ bsd3 ];
};
}