2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 05:16:46 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, sensor-msgs, message-filters, std-msgs, pcl-msgs, ament-cmake, pcl, eigen, rclcpp, ament-cmake-gtest }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-pcl-conversions";
|
|
|
|
version = "2.0.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 05:16:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/perception_pcl-release/archive/release/dashing/pcl_conversions/2.0.0-1.tar.gz";
|
2019-09-06 12:16:03 -04:00
|
|
|
name = "2.0.0-1.tar.gz";
|
2019-12-09 05:16:46 +00:00
|
|
|
sha256 = "7e5a799ac5e1a196d385a9247cffabe2b8589c554b22a4a1cb10896ff3bfcb07";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 05:16:46 +00:00
|
|
|
buildInputs = [ sensor-msgs message-filters std-msgs pcl-msgs pcl eigen rclcpp ];
|
2019-09-04 17:11:04 -04:00
|
|
|
checkInputs = [ ament-cmake-gtest ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ sensor-msgs message-filters std-msgs pcl-msgs pcl eigen rclcpp ];
|
2019-09-04 17:11:04 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Provides conversions from PCL data types and ROS message types'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|