1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/ros2-controllers-test-nodes/default.nix

25 lines
854 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# 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";
version = "4.16.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_controllers-release/archive/release/rolling/ros2_controllers_test_nodes/4.16.0-1.tar.gz";
name = "4.16.0-1.tar.gz";
sha256 = "8af81c138913a1c7f0e644fd71976bb716bddc2c0c834d11648038b2bcb3500f";
};
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 ];
};
}