1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 06:31:44 +03:00
nix-ros-overlay/dashing/spatio-temporal-voxel-layer/default.nix

26 lines
1.3 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, geometry-msgs, laser-geometry, message-filters, nav2-costmap-2d, openexr, openvdb, pcl, pcl-conversions, pluginlib, rclcpp, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs, std-srvs, tbb, tf2-geometry-msgs, tf2-ros, visualization-msgs }:
buildRosPackage {
pname = "ros-dashing-spatio-temporal-voxel-layer";
version = "2.0.1-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release/archive/release/dashing/spatio_temporal_voxel_layer/2.0.1-1.tar.gz";
name = "2.0.1-1.tar.gz";
sha256 = "a5044b06b0637afd95a26f690d61176fde2f217e6a0141f0f9225701d517c34e";
};
buildType = "ament_cmake";
buildInputs = [ rosidl-default-generators ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs laser-geometry message-filters nav2-costmap-2d openexr openvdb pcl pcl-conversions pluginlib rclcpp rosidl-default-runtime sensor-msgs std-msgs std-srvs tbb tf2-geometry-msgs tf2-ros visualization-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''The spatio-temporal 3D obstacle costmap package'';
license = with lib.licenses; [ lgpl21 ];
};
}