1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/rolling/pcl-conversions/default.nix

27 lines
965 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, eigen, message-filters, pcl, pcl-msgs, rclcpp, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-rolling-pcl-conversions";
version = "2.4.0-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/perception_pcl-release/archive/release/rolling/pcl_conversions/2.4.0-4.tar.gz";
name = "2.4.0-4.tar.gz";
sha256 = "4fb7632ab079b20eb78739e19414523c82058571966f9a26b6b0c46445f93be1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ eigen message-filters pcl pcl-msgs rclcpp sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Provides conversions from PCL data types and ROS message types'';
license = with lib.licenses; [ bsdOriginal ];
};
}