nix-ros-overlay/distros/foxy/imu-tools/default.nix
2022-06-11 13:21:09 -04:00

24 lines
810 B
Nix

# Copyright 2022 Open Source Robotics Foundation
# 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-foxy-imu-tools";
version = "2.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/imu_tools-release/archive/release/foxy/imu_tools/2.0.2-1.tar.gz";
name = "2.0.2-1.tar.gz";
sha256 = "f36db5f5d7dcc16202cbad8e30ba863e813c5301a4017c9d7bbb8cc0fdc96251";
};
buildType = "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" ];
};
}