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-rolling-zenoh-cpp-vendor";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "0.7.0-r1";
|
2025-01-03 13:42:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmw_zenoh-release/archive/release/rolling/zenoh_cpp_vendor/0.7.0-1.tar.gz";
|
|
|
|
name = "0.7.0-1.tar.gz";
|
|
|
|
sha256 = "08126c4f078c43aa78a0b4989ed6b9d2f5803998a5c2733c6a91d3dbfecbb5f8";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|