mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 09:52:22 +03:00
28 lines
1.3 KiB
Nix
28 lines
1.3 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# 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-jazzy-nonpersistent-voxel-layer";
|
|
version = "2.5.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/nonpersistent_voxel_layer-release/archive/release/jazzy/nonpersistent_voxel_layer/2.5.0-1.tar.gz";
|
|
name = "2.5.0-1.tar.gz";
|
|
sha256 = "5754f92a30176eae30a4519ea57407b0d584792bbf9ade8a1d08f691d4f6082f";
|
|
};
|
|
|
|
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 = {
|
|
description = "include
|
|
This package provides an implementation of a 3D costmap that takes in sensor
|
|
data from the world, builds a 3D occupancy grid of the data for only one iteration.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|