mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
818 B
Nix
24 lines
818 B
Nix
|
|
# 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";
|
|
version = "0.3.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rmw_zenoh-release/archive/release/rolling/zenoh_cpp_vendor/0.3.0-1.tar.gz";
|
|
name = "0.3.0-1.tar.gz";
|
|
sha256 = "710aef872acedcc4eb53050f338d440a1511197b3c44a81c4b8bfcb9131f638f";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|