2021-07-23 13:01:27 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-07-23 13:01:27 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-updater, fuse-constraints, fuse-core, fuse-graphs, fuse-models, fuse-variables, geometry-msgs, nav-msgs, pluginlib, roscpp, roslint, rostest, std-srvs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-fuse-optimizers";
|
|
|
|
version = "0.4.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/locusrobotics/fuse-release/archive/release/noetic/fuse_optimizers/0.4.2-1.tar.gz";
|
|
|
|
name = "0.4.2-1.tar.gz";
|
|
|
|
sha256 = "7327fd3bd1de8a049b782e839bf4c0878467ed38693e249c845a9d004e6bb5a9";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-07-23 13:01:27 +00:00
|
|
|
checkInputs = [ fuse-models geometry-msgs nav-msgs roslint rostest ];
|
|
|
|
propagatedBuildInputs = [ diagnostic-updater fuse-constraints fuse-core fuse-graphs fuse-variables pluginlib roscpp std-srvs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "The fuse_optimizers package provides a set of optimizer implementations. An optimizer is the object responsible
|
2021-07-23 13:01:27 +00:00
|
|
|
for coordinating the sensors and motion model inputs, computing the optimal state values, and providing access to
|
2024-03-23 14:09:26 +00:00
|
|
|
to the optimal state via the publishers.";
|
2021-07-23 13:01:27 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|