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/humble/point-cloud-msg-wrapper/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-auto, ament-cmake-gtest, ament-lint-auto, ament-lint-common, geometry-msgs, sensor-msgs }:
buildRosPackage {
pname = "ros-humble-point-cloud-msg-wrapper";
version = "1.0.7-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/point_cloud_msg_wrapper-release/archive/release/humble/point_cloud_msg_wrapper/1.0.7-3.tar.gz";
name = "1.0.7-3.tar.gz";
sha256 = "71bb7c1fb11d01afceb6500137678ed6330d29a43c14db3efd50274f62b5a313";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ament-cmake-auto ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common geometry-msgs ];
propagatedBuildInputs = [ sensor-msgs ];
nativeBuildInputs = [ ament-cmake-auto ];
meta = {
description = "A point cloud message wrapper that allows for simple and safe PointCloud2 msg usage";
license = with lib.licenses; [ asl20 ];
};
}