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/galactic/iceoryx-binding-c/default.nix

24 lines
779 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake, iceoryx-posh, iceoryx-utils }:
buildRosPackage {
pname = "ros-galactic-iceoryx-binding-c";
version = "1.0.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/iceoryx-release/archive/release/galactic/iceoryx_binding_c/1.0.0-2.tar.gz";
name = "1.0.0-2.tar.gz";
sha256 = "a70c36142dc8d16509aec92c184790ee6e6715461719d74763b4ca1fe6f67509";
};
buildType = "cmake";
buildInputs = [ iceoryx-posh iceoryx-utils ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding'';
license = with lib.licenses; [ asl20 ];
};
}