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/humble/rtabmap-demos/default.nix

26 lines
948 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, nav2-bringup, rtabmap-odom, rtabmap-rviz-plugins, rtabmap-slam, rtabmap-util, rtabmap-viz, turtlebot3-gazebo }:
buildRosPackage {
pname = "ros-humble-rtabmap-demos";
version = "0.21.3-r1";
src = fetchurl {
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/humble/rtabmap_demos/0.21.3-1.tar.gz";
name = "0.21.3-1.tar.gz";
sha256 = "f639712b66d69c3bd4f2fee80ed3fe303fb34132818c49bfde8bb7de84f9b12a";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ nav2-bringup rtabmap-odom rtabmap-rviz-plugins rtabmap-slam rtabmap-util rtabmap-viz turtlebot3-gazebo ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''RTAB-Map's demo launch files.'';
license = with lib.licenses; [ bsdOriginal ];
};
}