1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/fuse-graphs/default.nix

26 lines
1 KiB
Nix

# Copyright 2025 Open Source Robotics Foundation
# 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.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/fuse-release/archive/release/rolling/fuse_graphs/1.2.1-1.tar.gz";
name = "1.2.1-1.tar.gz";
sha256 = "bebd5c38aeedbc2dbcf065e6a113a773165d4c73fda39848e1957a44e1f039f8";
};
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 ];
};
}