nix-ros-overlay/distros/humble/iceoryx-binding-c/default.nix

24 lines
779 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, iceoryx-hoofs, iceoryx-posh }:
buildRosPackage {
pname = "ros-humble-iceoryx-binding-c";
version = "2.0.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/iceoryx-release/archive/release/humble/iceoryx_binding_c/2.0.5-1.tar.gz";
name = "2.0.5-1.tar.gz";
sha256 = "ae235d26cde79de95dc7ea2a835097fbb936687a29a30f1c63a7c0bf68513b04";
};
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 ];
};
}