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/iron/imu-transformer/default.nix

27 lines
1,022 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, geometry-msgs, message-filters, rclcpp, rclcpp-components, sensor-msgs, tf2-geometry-msgs, tf2-ros, tf2-sensor-msgs }:
buildRosPackage {
pname = "ros-iron-imu-transformer";
version = "0.4.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/imu_pipeline-release/archive/release/iron/imu_transformer/0.4.1-1.tar.gz";
name = "0.4.1-1.tar.gz";
sha256 = "8c997f2ad4c2243aad4fc2e660560aa7c8856dc0679c50e4bcf0ee59a5ee88cd";
};
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" ];
};
}