1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/rmf-robot-sim-common/default.nix

26 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-jazzy-rmf-robot-sim-common";
version = "2.3.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_simulation-release/archive/release/jazzy/rmf_robot_sim_common/2.3.2-1.tar.gz";
name = "2.3.2-1.tar.gz";
sha256 = "4ca33857b982746827b515e3f4afbfebdc5e389d60a16a9cbbc944bd604137ad";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake eigen3-cmake-module ];
propagatedBuildInputs = [ eigen geometry-msgs rclcpp rmf-building-map-msgs rmf-dispenser-msgs rmf-fleet-msgs rmf-ingestor-msgs std-msgs tf2-ros ];
nativeBuildInputs = [ ament-cmake eigen3-cmake-module ];
meta = {
description = "Common utility functions for Gazebo-classic and Gazebo RMF plugins";
license = with lib.licenses; [ asl20 ];
};
}