nix-ros-overlay/distros/jazzy/imu-pipeline/default.nix

25 lines
780 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, imu-processors, imu-transformer }:
buildRosPackage {
pname = "ros-jazzy-imu-pipeline";
version = "0.5.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/imu_pipeline-release/archive/release/jazzy/imu_pipeline/0.5.0-3.tar.gz";
name = "0.5.0-3.tar.gz";
sha256 = "fe0758e23fbe75c468330eeb65db42e73ba8a702d5a3e73e15b28ad2017c1d23";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ imu-processors imu-transformer ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "imu_pipeline";
license = with lib.licenses; [ bsdOriginal "GPL" ];
};
}