mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 07:30:25 +03:00
27 lines
1,018 B
Nix
27 lines
1,018 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, sensor-msgs, message-filters, std-msgs, pcl-msgs, ament-cmake, pcl, eigen, rclcpp, ament-cmake-gtest }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-pcl-conversions";
|
||
|
version = "2.1.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/perception_pcl-release/archive/release/eloquent/pcl_conversions/2.1.0-1.tar.gz";
|
||
|
name = "2.1.0-1.tar.gz";
|
||
|
sha256 = "4f3a74163e827b205fb807534510f6e919298c8363be84608f11ae4b4bdde4b9";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ sensor-msgs message-filters std-msgs pcl-msgs pcl eigen rclcpp ];
|
||
|
checkInputs = [ ament-cmake-gtest ];
|
||
|
propagatedBuildInputs = [ sensor-msgs message-filters std-msgs pcl-msgs pcl eigen rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Provides conversions from PCL data types and ROS message types'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|