nix-ros-overlay/distros/humble/microstrain-inertial-examples/default.nix

25 lines
944 B
Nix
Raw Normal View History

# 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";
version = "2.7.0-r1";
src = fetchurl {
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";
};
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 ];
};
}