nix-ros-overlay/distros/rolling/tuw-multi-robot-msgs/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cppcheck, ament-cmake-gtest, ament-lint-auto, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-rolling-tuw-multi-robot-msgs";
version = "0.2.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/tuw_msgs-release/archive/release/rolling/tuw_multi_robot_msgs/0.2.5-1.tar.gz";
name = "0.2.5-1.tar.gz";
sha256 = "0b00aa5009527101d127cdede45ef87fc673de0a65c0f8b8c1d547c208b2c465";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "The tuw_multi_robot_msgs package contains messages for sending graph, route and sync data over topics.";
license = with lib.licenses; [ bsdOriginal ];
};
}