mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
27 lines
1.3 KiB
Nix
27 lines
1.3 KiB
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, 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-eloquent-spatio-temporal-voxel-layer";
|
||
|
version = "2.1.2-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release/archive/release/eloquent/spatio_temporal_voxel_layer/2.1.2-2.tar.gz";
|
||
|
name = "2.1.2-2.tar.gz";
|
||
|
sha256 = "0be31caba7e291f424b112cdf26f1fff711a952a6836c1457a080c6ac1664860";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ rosidl-default-generators ];
|
||
|
checkInputs = [ ament-lint-auto ];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|