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, ament-cmake-ros, builtin-interfaces, rcl-interfaces, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rosapi-msgs";
|
2023-10-06 13:48:50 +00:00
|
|
|
version = "1.3.2-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-10-06 13:48:50 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosbridge_suite-release/archive/release/rolling/rosapi_msgs/1.3.2-1.tar.gz";
|
|
|
|
name = "1.3.2-1.tar.gz";
|
|
|
|
sha256 = "d265f93a806631ef45db03b3ef66c449bab42924ca32d4bd7623a2e054f93640";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros rosidl-default-generators ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces rcl-interfaces rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Provides service calls for getting ros meta-information, like list of
|
|
|
|
topics, services, params, etc.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|