2023-06-19 17:15:23 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-06-19 17:15:23 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, geometry-msgs, laser-geometry, map-msgs, nav-msgs, nav2-costmap-2d, nav2-msgs, nav2-voxel-grid, pluginlib, rclcpp, sensor-msgs, std-msgs, tf2, tf2-ros, visualization-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-iron-nonpersistent-voxel-layer";
|
|
|
|
version = "2.4.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/SteveMacenski/nonpersistent_voxel_layer-release/archive/release/iron/nonpersistent_voxel_layer/2.4.0-1.tar.gz";
|
|
|
|
name = "2.4.0-1.tar.gz";
|
|
|
|
sha256 = "bfaedaacd5484064881557b881eae9006200a8b034f3b6e27555f45a15c67a7a";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ geometry-msgs laser-geometry map-msgs nav-msgs nav2-costmap-2d nav2-msgs nav2-voxel-grid pluginlib rclcpp sensor-msgs std-msgs tf2 tf2-ros visualization-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "include
|
2023-06-19 17:15:23 -04:00
|
|
|
This package provides an implementation of a 3D costmap that takes in sensor
|
2024-03-23 14:09:26 +00:00
|
|
|
data from the world, builds a 3D occupancy grid of the data for only one iteration.";
|
2023-06-19 17:15:23 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|