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/zenoh-cpp-vendor/default.nix

25 lines
814 B
Nix
Raw Normal View History

# 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";
version = "0.2.2-r1";
src = fetchurl {
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";
};
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 ];
};
}