1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/rolling/iceoryx-binding-c/default.nix

25 lines
783 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, iceoryx-hoofs, iceoryx-posh }:
buildRosPackage {
pname = "ros-rolling-iceoryx-binding-c";
version = "2.0.5-r4";
src = fetchurl {
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";
};
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 ];
};
}