mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
943 B
Nix
25 lines
943 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, rtabmap-costmap-plugins, rtabmap-msgs, rtabmap-odom, rtabmap-rviz-plugins, rtabmap-slam, rtabmap-util, rtabmap-viz }:
|
|
buildRosPackage {
|
|
pname = "ros-noetic-rtabmap-launch";
|
|
version = "0.21.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/noetic/rtabmap_launch/0.21.10-1.tar.gz";
|
|
name = "0.21.10-1.tar.gz";
|
|
sha256 = "03dd5a56835c06b11435d963b55d3613964e05b2451cac5344bcc775855eca89";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ catkin ];
|
|
propagatedBuildInputs = [ rtabmap-costmap-plugins rtabmap-msgs rtabmap-odom rtabmap-rviz-plugins rtabmap-slam rtabmap-util rtabmap-viz ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = "RTAB-Map's main launch files.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|