mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
1,001 B
Nix
25 lines
1,001 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, imu-filter-madgwick, realsense2-camera, rtabmap-odom, rtabmap-rviz-plugins, rtabmap-slam, rtabmap-util, rtabmap-viz, tf2-ros, velodyne }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-rtabmap-examples";
|
|
version = "0.21.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/introlab/rtabmap_ros-release/archive/release/iron/rtabmap_examples/0.21.5-1.tar.gz";
|
|
name = "0.21.5-1.tar.gz";
|
|
sha256 = "cb36384e246917f628e710af87fc722e664fd29b920892d9e9f6f438e03a662f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
propagatedBuildInputs = [ imu-filter-madgwick realsense2-camera rtabmap-odom rtabmap-rviz-plugins rtabmap-slam rtabmap-util rtabmap-viz tf2-ros velodyne ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "RTAB-Map's example launch files.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|