2025-01-03 13:42:37 +00:00
|
|
|
|
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-vendor-package, cargo, clang, git }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-zenoh-cpp-vendor";
|
2025-02-21 13:18:38 +00:00
|
|
|
version = "0.2.2-r1";
|
2025-01-03 13:42:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-21 13:18:38 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmw_zenoh-release/archive/release/jazzy/zenoh_cpp_vendor/0.2.2-1.tar.gz";
|
|
|
|
name = "0.2.2-1.tar.gz";
|
|
|
|
sha256 = "1e826d47fb9ab055ec58c23c411e3158cc5a0dd6fdbb6580c00ae1843f7a0ef5";
|
2025-01-03 13:42:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-vendor-package cargo clang git ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-vendor-package ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Vendor pkg to install zenoh-cpp";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|