1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/imu-transformer/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, geometry-msgs, message-filters, rclcpp, rclcpp-components, sensor-msgs, tf2-geometry-msgs, tf2-ros, tf2-sensor-msgs }:
buildRosPackage {
pname = "ros-rolling-imu-transformer";
version = "0.5.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/imu_pipeline-release/archive/release/rolling/imu_transformer/0.5.1-1.tar.gz";
name = "0.5.1-1.tar.gz";
sha256 = "0c0383844159541d263fe9a7c097b867ff9714b8b409a305d5716d39afb836f5";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ geometry-msgs tf2-geometry-msgs ];
propagatedBuildInputs = [ message-filters rclcpp rclcpp-components sensor-msgs tf2-ros tf2-sensor-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Node/components to transform sensor_msgs::Imu data from one frame into another.";
license = with lib.licenses; [ "GPL" ];
};
}