1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/humble/iceoryx-binding-c/default.nix
2022-06-11 13:21:09 -04:00

24 lines
775 B
Nix

# Copyright 2022 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.2-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/iceoryx-release/archive/release/humble/iceoryx_binding_c/2.0.2-3.tar.gz";
name = "2.0.2-3.tar.gz";
sha256 = "4e56fa33acbb34cdc6b41369154a889b06d0abf38d7dca0d84f414a36dfa967c";
};
buildType = "cmake";
buildInputs = [ iceoryx-hoofs iceoryx-posh ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding'';
license = with lib.licenses; [ asl20 ];
};
}