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/jazzy/flex-sync/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-clang-format, ament-cmake, ament-cmake-clang-format, ament-cmake-gtest, ament-lint-auto, ament-lint-common, geometry-msgs, rclcpp, rclcpp-components, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-flex-sync";
version = "2.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/flex_sync-release/archive/release/jazzy/flex_sync/2.0.0-1.tar.gz";
name = "2.0.0-1.tar.gz";
sha256 = "69af1fac994fefca59b6c48227aad7fb377dfbbb7a91e83a8ad9dd87eed31c46";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-clang-format ament-cmake-clang-format ament-cmake-gtest ament-lint-auto ament-lint-common geometry-msgs std-msgs ];
propagatedBuildInputs = [ ament-cmake-clang-format rclcpp rclcpp-components rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "ros2 package for syncing variable number of topics";
license = with lib.licenses; [ asl20 ];
};
}