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

26 lines
975 B
Nix
Raw Normal View History

# Copyright 2024 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 = "3.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/microstrain_inertial-release/archive/release/humble/microstrain_inertial_examples/3.2.1-1.tar.gz";
name = "3.2.1-1.tar.gz";
sha256 = "f90261f4251c66420d2e7cd3892f15689ab42574dab2b57ea36817a1fce7f740";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}