mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
1.3 KiB
Nix
23 lines
1.3 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, costmap-2d, openexr, pluginlib, tf, sensor-msgs, catkin, message-filters, roscpp, tbb, message-generation, visualization-msgs, pcl-ros, std-msgs, dynamic-reconfigure, laser-geometry, pcl-conversions, geometry-msgs, openvdb }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-spatio-temporal-voxel-layer";
|
|
version = "1.2.1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/SteveMacenski/spatio_temporal_voxel_layer-release/archive/release/kinetic/spatio_temporal_voxel_layer/1.2.1-0.tar.gz;
|
|
sha256 = "01447433873335a28db5ee7146abec292d04aaa42d4bfe6a174a254e8ae48b18";
|
|
};
|
|
|
|
buildInputs = [ costmap-2d openexr pluginlib sensor-msgs message-filters roscpp tbb laser-geometry message-generation visualization-msgs pcl-ros std-msgs dynamic-reconfigure tf pcl-conversions geometry-msgs openvdb ];
|
|
propagatedBuildInputs = [ costmap-2d openexr pluginlib sensor-msgs message-filters roscpp tbb laser-geometry visualization-msgs pcl-ros std-msgs dynamic-reconfigure tf pcl-conversions geometry-msgs openvdb ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The spatio-temporal 3D obstacle costmap package'';
|
|
#license = lib.licenses.LGPL v2.1;
|
|
};
|
|
}
|