2025-04-25 13:38:11 +00:00
|
|
|
|
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, om-gravity-compensation-controller, om-joint-trajectory-command-broadcaster, om-spring-actuator-controller, open-manipulator-bringup, open-manipulator-description, open-manipulator-gui, open-manipulator-moveit-config, open-manipulator-playground, open-manipulator-teleop }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-open-manipulator";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "3.2.2-r1";
|
2025-04-25 13:38:11 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/open_manipulator-release/archive/release/rolling/open_manipulator/3.2.2-1.tar.gz";
|
|
|
|
name = "3.2.2-1.tar.gz";
|
|
|
|
sha256 = "698d362ccab1a60f988a8f5cb26bba71de2fae9fb5801c288f4b9091753f9c1b";
|
2025-04-25 13:38:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ om-gravity-compensation-controller om-joint-trajectory-command-broadcaster om-spring-actuator-controller open-manipulator-bringup open-manipulator-description open-manipulator-gui open-manipulator-moveit-config open-manipulator-playground open-manipulator-teleop ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "OpenMANIPULATOR meta ROS 2 package.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|