2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-12-27 13:14:54 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, launch-ros, launch-testing-ros, pythonPackages, rclpy, sensor-msgs, std-msgs, trajectory-msgs }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros2-controllers-test-nodes";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "4.18.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/rolling/ros2_controllers_test_nodes/4.18.0-2.tar.gz";
|
|
|
|
name = "4.18.0-2.tar.gz";
|
|
|
|
sha256 = "87a1bda78e6b66ee06e01a694655c5ff3fad6b58ddc826741b4e966ecaeacd52";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2024-12-27 13:14:54 +00:00
|
|
|
checkInputs = [ launch-ros launch-testing-ros pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ rclpy sensor-msgs std-msgs trajectory-msgs ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Demo nodes for showing and testing functionalities of the ros2_control framework.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|