mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1 KiB
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-jazzy-fuse-graphs";
|
|
version = "1.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/fuse-release/archive/release/jazzy/fuse_graphs/1.1.1-1.tar.gz";
|
|
name = "1.1.1-1.tar.gz";
|
|
sha256 = "669e21a7ea036f0f6d3d772b100089c4a347700cf71d5f9a96e17a0c7e1b2c56";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|