mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 07:30:25 +03:00
27 lines
1,018 B
Nix
27 lines
1,018 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, control-msgs, moveit-common, moveit-core, pluginlib, rclcpp, rclcpp-action }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-iron-moveit-simple-controller-manager";
|
||
|
version = "2.7.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/moveit2-release/archive/release/iron/moveit_simple_controller_manager/2.7.4-1.tar.gz";
|
||
|
name = "2.7.4-1.tar.gz";
|
||
|
sha256 = "35fec67252b6c8d8769ab7492573e639f75e8110934461d2713abf7dd8cd95c5";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|