mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
905 B
Nix
25 lines
905 B
Nix
|
|
# 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 }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-rtabmap-demos";
|
|
version = "0.21.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/iron/rtabmap_demos/0.21.5-1.tar.gz";
|
|
name = "0.21.5-1.tar.gz";
|
|
sha256 = "466d84cfa5f6b04911ec5def9171009160448885a3e256c648febed07366c691";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ nav2-bringup rtabmap-odom rtabmap-rviz-plugins rtabmap-slam rtabmap-util rtabmap-viz ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "RTAB-Map's demo launch files.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|