2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
|
|
# 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";
|
2022-11-04 13:38:03 +00:00
|
|
|
version = "2.7.0-r1";
|
2022-06-09 18:50:37 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-11-04 13:38:03 +00:00
|
|
|
url = "https://github.com/ros2-gbp/microstrain_inertial-release/archive/release/humble/microstrain_inertial_examples/2.7.0-1.tar.gz";
|
|
|
|
name = "2.7.0-1.tar.gz";
|
|
|
|
sha256 = "26744f2afb89c48f7824592a2a9ca262c2edf2b5a715bfda446d77af8742f122";
|
2022-06-09 18:50:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|