2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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-08 13:41:18 +00:00
|
|
|
version = "2.0.5-r4";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/iceoryx-release/archive/release/rolling/iceoryx_binding_c/2.0.5-4.tar.gz";
|
|
|
|
name = "2.0.5-4.tar.gz";
|
|
|
|
sha256 = "a2e7ec6691a5ac4aa45c912d475aebd5d94d8d7910837f3ab517b8c5fa27b1d7";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ cmake iceoryx-hoofs iceoryx-posh ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|