mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
27 lines
1.1 KiB
Nix
27 lines
1.1 KiB
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-cmake-gtest, ament-lint-auto, ament-lint-common, asio, asio-cmake-module, io-context, lifecycle-msgs, rclcpp, rclcpp-components, rclcpp-lifecycle, std-msgs, udp-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-udp-driver";
|
||
|
version = "1.2.0-r4";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/transport_drivers-release/archive/release/jazzy/udp_driver/1.2.0-4.tar.gz";
|
||
|
name = "1.2.0-4.tar.gz";
|
||
|
sha256 = "24bb7344572abc3fd27c9b2e05d35e7c89869dbf9ea19069c318900276056dff";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake-auto asio-cmake-module ];
|
||
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ asio io-context lifecycle-msgs rclcpp rclcpp-components rclcpp-lifecycle std-msgs udp-msgs ];
|
||
|
nativeBuildInputs = [ ament-cmake-auto asio-cmake-module ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A library to write Synchronous and Asynchronous networking applications, ROS and ROS2 nodes";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|