1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/jazzy/mola-imu-preintegration/default.nix

26 lines
795 B
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, mola-common, mrpt-libobs }:
buildRosPackage {
pname = "ros-jazzy-mola-imu-preintegration";
version = "1.8.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/mola_state_estimation-release/archive/release/jazzy/mola_imu_preintegration/1.8.0-1.tar.gz";
name = "1.8.0-1.tar.gz";
sha256 = "7ddf3f79fd1d27184a5474e453c488e68ef2a4f996ae7d14dd328e7099ec6dca";
};
buildType = "cmake";
buildInputs = [ cmake ];
propagatedBuildInputs = [ mola-common mrpt-libobs ];
nativeBuildInputs = [ cmake ];
meta = {
description = "Integrator of IMU angular velocity readings";
license = with lib.licenses; [ gpl3Only ];
};
}