2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, cmake, iceoryx-hoofs, iceoryx-posh }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-iceoryx-binding-c";
|
2024-03-22 13:05:17 +00:00
|
|
|
version = "2.0.5-r5";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-22 13:05:17 +00:00
|
|
|
url = "https://github.com/ros2-gbp/iceoryx-release/archive/release/rolling/iceoryx_binding_c/2.0.5-5.tar.gz";
|
|
|
|
name = "2.0.5-5.tar.gz";
|
|
|
|
sha256 = "fe5e5b0284eec1c021790bdc66eb096d1f30dc631c32a46048392dc228992d8f";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake iceoryx-hoofs iceoryx-posh ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|