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
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, pythonPackages, rclpy, std-msgs, trajectory-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-ros2-controllers-test-nodes";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "4.4.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/rolling/ros2_controllers_test_nodes/4.4.0-1.tar.gz";
|
|
|
|
name = "4.4.0-1.tar.gz";
|
|
|
|
sha256 = "a9291b38e3655b7da746605725df75ce365644f1e1c1bfe19f25fa2501643111";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ rclpy std-msgs trajectory-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Demo nodes for showing and testing functionalities of the ros2_control framework.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|