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