2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, builtin-interfaces, rosidl-core-generators, rosidl-core-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-service-msgs";
|
|
|
|
version = "2.0.2-r2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/rcl_interfaces-release/archive/release/jazzy/service_msgs/2.0.2-2.tar.gz";
|
|
|
|
name = "2.0.2-2.tar.gz";
|
|
|
|
sha256 = "e8ed013609de3a49cc303fee5db2394eac8abbd7dcbe5c803bd7ae748fc14e59";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rosidl-core-generators ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-core-runtime ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-core-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Messages definitions common among all ROS services";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|