2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-09-09 14:55:58 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, sensor-msgs, tf2-ros, ament-cmake-auto, tf2, eigen3-cmake-module, eigen }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-tf2-sensor-msgs";
|
2019-09-09 14:55:58 -04:00
|
|
|
version = "0.11.5-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-09 14:55:58 -04:00
|
|
|
url = "https://github.com/ros2-gbp/geometry2-release/archive/release/dashing/tf2_sensor_msgs/0.11.5-1.tar.gz";
|
|
|
|
name = "0.11.5-1.tar.gz";
|
|
|
|
sha256 = "3dfbac1e98b1a45ac96f6638137d14b3480642c5587883d9f5ec35d2778f5775";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ tf2 sensor-msgs tf2-ros eigen ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-09-09 14:55:58 -04:00
|
|
|
propagatedBuildInputs = [ sensor-msgs tf2-ros tf2 eigen3-cmake-module eigen ];
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|