1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/rolling/rmf-robot-sim-gz-plugins/default.nix

25 lines
1.2 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, eigen, gz-gui-vendor, gz-msgs-vendor, gz-plugin-vendor, gz-rendering-vendor, gz-sim-vendor, gz-transport-vendor, qt5, rclcpp, rmf-building-map-msgs, rmf-building-sim-gz-plugins, rmf-fleet-msgs, rmf-robot-sim-common }:
buildRosPackage {
pname = "ros-rolling-rmf-robot-sim-gz-plugins";
version = "2.4.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_simulation-release/archive/release/rolling/rmf_robot_sim_gz_plugins/2.4.1-1.tar.gz";
name = "2.4.1-1.tar.gz";
sha256 = "f0f76b2ccb4744d002ca9ad1c1f7a1a2b4eb492e4f7453f8fd44122a1a180d7a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ eigen gz-gui-vendor gz-msgs-vendor gz-plugin-vendor gz-rendering-vendor gz-sim-vendor gz-transport-vendor qt5.qtbase qt5.qtdeclarative rclcpp rmf-building-map-msgs rmf-building-sim-gz-plugins rmf-fleet-msgs rmf-robot-sim-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "ROS 2 Gazebo plugins for TeleportIngestors and TeleportDispensers";
license = with lib.licenses; [ asl20 ];
};
}