mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
26 lines
1.2 KiB
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 ];
|
|
};
|
|
}
|