2023-05-02 16:50:22 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2023-05-02 16:50:22 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, ceres-solver, fuse-core, gbenchmark, pluginlib, rclcpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-fuse-graphs";
|
|
|
|
version = "1.0.1-r2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/fuse-release/archive/release/rolling/fuse_graphs/1.0.1-2.tar.gz";
|
|
|
|
name = "1.0.1-2.tar.gz";
|
|
|
|
sha256 = "a3cdbf496a374af2f1642c3f4c594d46f06db9e8719d1817e2fd645d36dd7bf1";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common gbenchmark ];
|
|
|
|
propagatedBuildInputs = [ ceres-solver fuse-core pluginlib rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The fuse_graphs package provides some concrete implementations of the fuse_core::Graph interface.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|