mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.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-pytest, ament-cmake-ros, ament-lint-auto, ament-lint-common, ceres-solver, fuse-core, pluginlib, rclcpp }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-fuse-variables";
|
|
version = "1.1.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/fuse-release/archive/release/jazzy/fuse_variables/1.1.1-1.tar.gz";
|
|
name = "1.1.1-1.tar.gz";
|
|
sha256 = "910913884058711906dc70ae6ae30572b9f1644d81d580c209490e3be23231b7";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-ros ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common rclcpp ];
|
|
propagatedBuildInputs = [ ceres-solver fuse-core pluginlib rclcpp ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = "The fuse_variables package provides a set of commonly used variable types, such as 2D and 3D positions, \\
|
|
orientations, velocities, and accelerations.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|