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