2019-09-04 17:11:04 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-09-04 17:11:04 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-gtest, eigen, eigen3-cmake-module, sensor-msgs, tf2, tf2-ros }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tf2-sensor-msgs";
|
2019-12-10 14:03:58 -05:00
|
|
|
version = "0.11.6-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-10 14:03:58 -05:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/dashing/tf2_sensor_msgs/0.11.6-1.tar.gz";
|
|
|
|
name = "0.11.6-1.tar.gz";
|
|
|
|
sha256 = "fec49970a85aba89ad7f1f3261e2be173a4fe40ea059a9b23d2670fb8130953e";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ eigen eigen3-cmake-module sensor-msgs tf2 tf2-ros ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-auto eigen3-cmake-module ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Small lib to transform sensor_msgs with tf. Most notably, PointCloud2'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|