2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-30 13:28:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, mola-common, mrpt-libobs }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-mola-imu-preintegration";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "1.4.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/jazzy/mola_imu_preintegration/1.4.0-1.tar.gz";
|
|
|
|
name = "1.4.0-1.tar.gz";
|
|
|
|
sha256 = "2c13bd07ffe2192aafa14cb254eef876c4c3fde972af457c62a63549e0afc3d6";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake ];
|
2024-08-30 13:28:23 +00:00
|
|
|
propagatedBuildInputs = [ mola-common mrpt-libobs ];
|
2024-05-24 14:00:52 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Integrator of IMU angular velocity readings";
|
|
|
|
license = with lib.licenses; [ gpl3Only ];
|
|
|
|
};
|
|
|
|
}
|