2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-cpp, fastcdr, geometry-msgs, rapidjson, rclcpp, rosbag2-cpp, sensor-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rosx-introspection";
|
2024-08-02 13:27:09 +00:00
|
|
|
version = "1.0.2-r1";
|
2024-07-26 13:34:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-08-02 13:27:09 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosx_introspection-release/archive/release/jazzy/rosx_introspection/1.0.2-1.tar.gz";
|
|
|
|
name = "1.0.2-1.tar.gz";
|
|
|
|
sha256 = "e75fd9f7062589565d6a461931ea12f3508ca590e037be720f9a08d2ec58f9b7";
|
2024-07-26 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ geometry-msgs sensor-msgs ];
|
|
|
|
propagatedBuildInputs = [ ament-index-cpp fastcdr rapidjson rclcpp rosbag2-cpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Successor of ros_type_introspection";
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|