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/jazzy/canopen-core/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, boost, canopen-interfaces, lely-core-libraries, lifecycle-msgs, rclcpp, rclcpp-components, rclcpp-lifecycle, yaml-cpp-vendor }:
buildRosPackage {
pname = "ros-jazzy-canopen-core";
version = "0.3.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_canopen-release/archive/release/jazzy/canopen_core/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "3cb9ef3ed2a0f0807afd1a87e054d2272e9611b21854705aaf3f018ef3a96336";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ];
propagatedBuildInputs = [ boost canopen-interfaces lely-core-libraries lifecycle-msgs rclcpp rclcpp-components rclcpp-lifecycle yaml-cpp-vendor ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Core ros2_canopen functionalities such as DeviceContainer and master";
license = with lib.licenses; [ asl20 ];
};
}