1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/humble/bondcpp/default.nix

28 lines
983 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, bond, pkg-config, rclcpp, rclcpp-lifecycle, smclib, util-linux }:
buildRosPackage {
pname = "ros-humble-bondcpp";
version = "3.0.2-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/bond_core-release/archive/release/humble/bondcpp/3.0.2-2.tar.gz";
name = "3.0.2-2.tar.gz";
sha256 = "ccafdeeec444c68f8b7cfa14a25e1f0f098f32d4f1baf57e82e39a085513c7fc";
};
buildType = "ament_cmake";
buildInputs = [ pkg-config ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ bond rclcpp rclcpp-lifecycle smclib util-linux ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''C++ implementation of bond, a mechanism for checking when
another process has terminated.'';
license = with lib.licenses; [ bsdOriginal ];
};
}