1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-23 15:30:18 +03:00
nix-ros-overlay/dashing/pcl-conversions/default.nix
2019-09-06 12:16:22 -04:00

26 lines
976 B
Nix

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