2022-06-09 18:50:37 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-06-09 18:50:37 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, microstrain-inertial-msgs, rclcpp, rclcpp-components, rclpy, sensor-msgs, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-microstrain-inertial-examples";
|
2023-12-22 13:30:27 +00:00
|
|
|
version = "3.2.0-r2";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-12-22 13:30:27 +00:00
|
|
|
url = "https://github.com/ros2-gbp/microstrain_inertial-release/archive/release/humble/microstrain_inertial_examples/3.2.0-2.tar.gz";
|
|
|
|
name = "3.2.0-2.tar.gz";
|
|
|
|
sha256 = "8a4cb3ed789c01d092d831139c56fee736fd7261018eb8a4d63488b7bb7b1b50";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-06-09 18:50:37 -04:00
|
|
|
propagatedBuildInputs = [ microstrain-inertial-msgs rclcpp rclcpp-components rclpy sensor-msgs std-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Example listener for Parker LORD Sensing inertial device driver ros_mscl (C++).'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|