2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-lint-auto, canopen-interfaces, lifecycle-msgs, rclpy, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-canopen-utils";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "0.3.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_canopen-release/archive/release/jazzy/canopen_utils/0.3.0-1.tar.gz";
|
|
|
|
name = "0.3.0-1.tar.gz";
|
|
|
|
sha256 = "1286e4369ca551c8cdf7555c151db943f90b2d45bdf0804afbd8011292651fab";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ canopen-interfaces lifecycle-msgs rclpy std-msgs ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Utils for working with ros2_canopen.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|