2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, imu-complementary-filter, imu-filter-madgwick, rviz-imu-plugin }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-imu-tools";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "2.1.3-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/imu_tools-release/archive/release/rolling/imu_tools/2.1.3-2.tar.gz";
|
|
|
|
name = "2.1.3-2.tar.gz";
|
|
|
|
sha256 = "06f17018e5afa1b3e5845f24d7510ea4514d594d752822656e4da417a5134ff3";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
propagatedBuildInputs = [ imu-complementary-filter imu-filter-madgwick rviz-imu-plugin ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Various tools for IMU devices'';
|
|
|
|
license = with lib.licenses; [ "BSD-&-GPL" ];
|
|
|
|
};
|
|
|
|
}
|