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
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, eigen, eigen3-cmake-module, geometry-msgs, rclcpp, rmf-building-map-msgs, rmf-dispenser-msgs, rmf-fleet-msgs, rmf-ingestor-msgs, std-msgs, tf2-ros }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmf-robot-sim-common";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "2.4.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmf_simulation-release/archive/release/rolling/rmf_robot_sim_common/2.4.1-1.tar.gz";
|
|
|
|
name = "2.4.1-1.tar.gz";
|
|
|
|
sha256 = "d2b21add6660b03a6f3612da17c89762e637c7f00c268823379be1379d7bc491";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2023-06-19 17:15:23 -04:00
|
|
|
buildInputs = [ ament-cmake eigen3-cmake-module ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ eigen geometry-msgs rclcpp rmf-building-map-msgs rmf-dispenser-msgs rmf-fleet-msgs rmf-ingestor-msgs std-msgs tf2-ros ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-07-26 13:34:25 +00:00
|
|
|
description = "Common utility functions for Gazebo-classic and Gazebo RMF plugins";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|