1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/pcl-msgs/default.nix

26 lines
978 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-iron-pcl-msgs";
version = "1.0.0-r8";
src = fetchurl {
url = "https://github.com/ros2-gbp/pcl_msgs-release/archive/release/iron/pcl_msgs/1.0.0-8.tar.gz";
name = "1.0.0-8.tar.gz";
sha256 = "cd4aab8e7b91853e416f6c101a1f86b74d137872ce5d1cb028855a3ba99b41b1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ rosidl-default-runtime sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "Package containing PCL (Point Cloud Library)-related ROS messages.";
license = with lib.licenses; [ bsdOriginal ];
};
}